mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-20 12:15:06 -04:00
Build 29060283
This commit is contained in:
parent
8104b8d4a9
commit
eb05f7d182
6 changed files with 11 additions and 9 deletions
|
@ -29,8 +29,8 @@ android {
|
||||||
applicationId = "me.lecaro.breakout"
|
applicationId = "me.lecaro.breakout"
|
||||||
minSdk = 21
|
minSdk = 21
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionCode = 29060272
|
versionCode = 29060283
|
||||||
versionName = "29060272"
|
versionName = "29060283"
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables {
|
vectorDrawables {
|
||||||
useSupportLibrary = true
|
useSupportLibrary = true
|
||||||
|
|
File diff suppressed because one or more lines are too long
5
dist/index.html
vendored
5
dist/index.html
vendored
|
@ -1475,7 +1475,7 @@ const upgrades = (0, _upgrades.rawUpgrades).map((u)=>({
|
||||||
}));
|
}));
|
||||||
|
|
||||||
},{"./data/palette.json":"ktRBU","./data/levels.json":"8JSUc","./data/version.json":"iyP6E","./upgrades":"1u3Dx","./getLevelBackground":"7OIPf","./levelIcon":"6rQoT","@parcel/transformer-js/src/esmodule-helpers.js":"gkKU3"}],"iyP6E":[function(require,module,exports,__globalThis) {
|
},{"./data/palette.json":"ktRBU","./data/levels.json":"8JSUc","./data/version.json":"iyP6E","./upgrades":"1u3Dx","./getLevelBackground":"7OIPf","./levelIcon":"6rQoT","@parcel/transformer-js/src/esmodule-helpers.js":"gkKU3"}],"iyP6E":[function(require,module,exports,__globalThis) {
|
||||||
module.exports = JSON.parse("\"29060272\"");
|
module.exports = JSON.parse("\"29060283\"");
|
||||||
|
|
||||||
},{}],"1u3Dx":[function(require,module,exports,__globalThis) {
|
},{}],"1u3Dx":[function(require,module,exports,__globalThis) {
|
||||||
var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js");
|
var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js");
|
||||||
|
@ -2930,7 +2930,8 @@ function resetCombo(gameState, x, y) {
|
||||||
return lost;
|
return lost;
|
||||||
}
|
}
|
||||||
function increaseCombo(gameState, by, x, y) {
|
function increaseCombo(gameState, by, x, y) {
|
||||||
if (by > 0) gameState.combo += by;
|
if (by <= 0) return;
|
||||||
|
gameState.combo += by;
|
||||||
if ((0, _options.isOptionOn)("comboIncreaseTexts") && typeof x !== "undefined" && typeof y !== "undefined") makeText(gameState, x, y, "gold", "+" + by, 25, 400 + by);
|
if ((0, _options.isOptionOn)("comboIncreaseTexts") && typeof x !== "undefined" && typeof y !== "undefined") makeText(gameState, x, y, "gold", "+" + by, 25, 400 + by);
|
||||||
}
|
}
|
||||||
function decreaseCombo(gameState, by, x, y) {
|
function decreaseCombo(gameState, by, x, y) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// The version of the cache.
|
// The version of the cache.
|
||||||
const VERSION = "29060272";
|
const VERSION = "29060283";
|
||||||
|
|
||||||
// The name of the cache
|
// The name of the cache
|
||||||
const CACHE_NAME = `breakout-71-${VERSION}`;
|
const CACHE_NAME = `breakout-71-${VERSION}`;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
"29060272"
|
"29060283"
|
||||||
|
|
|
@ -222,9 +222,10 @@ export function increaseCombo(
|
||||||
x: number,
|
x: number,
|
||||||
y: number,
|
y: number,
|
||||||
) {
|
) {
|
||||||
if (by > 0) {
|
if (by <= 0) {
|
||||||
gameState.combo += by;
|
return;
|
||||||
}
|
}
|
||||||
|
gameState.combo += by;
|
||||||
if (
|
if (
|
||||||
isOptionOn("comboIncreaseTexts") &&
|
isOptionOn("comboIncreaseTexts") &&
|
||||||
typeof x !== "undefined" &&
|
typeof x !== "undefined" &&
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue