mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-21 20:46:14 -04:00
Build 29045721
This commit is contained in:
parent
054b4a85c7
commit
6899b5cf36
6 changed files with 27 additions and 23 deletions
|
@ -11,8 +11,8 @@ android {
|
|||
applicationId = "me.lecaro.breakout"
|
||||
minSdk = 21
|
||||
targetSdk = 34
|
||||
versionCode = 29045711
|
||||
versionName = "29045711"
|
||||
versionCode = 29045721
|
||||
versionName = "29045721"
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
vectorDrawables {
|
||||
useSupportLibrary = true
|
||||
|
|
File diff suppressed because one or more lines are too long
6
dist/index.html
vendored
6
dist/index.html
vendored
|
@ -1303,8 +1303,8 @@ function restart(params) {
|
|||
(0, _recording.pauseRecording)();
|
||||
(0, _gameStateMutators.setLevel)(gameState, 0);
|
||||
}
|
||||
restart(window.location.search.includes('stressTest') ? {
|
||||
level: 'Bird',
|
||||
restart(window.location.search.includes("stressTest") ? {
|
||||
level: "Bird",
|
||||
perks: {
|
||||
sapper: 10,
|
||||
bigger_explosions: 1,
|
||||
|
@ -1362,7 +1362,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) {
|
||||
module.exports = JSON.parse("\"29045711\"");
|
||||
module.exports = JSON.parse("\"29045721\"");
|
||||
|
||||
},{}],"1u3Dx":[function(require,module,exports,__globalThis) {
|
||||
var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js");
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// The version of the cache.
|
||||
const VERSION = "29045711";
|
||||
const VERSION = "29045721";
|
||||
|
||||
// The name of the cache
|
||||
const CACHE_NAME = `breakout-71-${VERSION}`;
|
||||
|
|
|
@ -1 +1 @@
|
|||
"29045711"
|
||||
"29045721"
|
||||
|
|
34
src/game.ts
34
src/game.ts
|
@ -972,20 +972,24 @@ export function restart(params: RunParams) {
|
|||
setLevel(gameState, 0);
|
||||
}
|
||||
|
||||
restart(window.location.search.includes('stressTest') ? {
|
||||
level:'Bird',
|
||||
perks:{
|
||||
sapper:10,
|
||||
bigger_explosions:1,
|
||||
unbounded:1,
|
||||
pierce_color:1,
|
||||
pierce:20,
|
||||
multiball:6,
|
||||
base_combo:100,
|
||||
telekinesis:2,
|
||||
yoyo:2,
|
||||
metamorphosis:1
|
||||
}
|
||||
}:{});
|
||||
restart(
|
||||
window.location.search.includes("stressTest")
|
||||
? {
|
||||
level: "Bird",
|
||||
perks: {
|
||||
sapper: 10,
|
||||
bigger_explosions: 1,
|
||||
unbounded: 1,
|
||||
pierce_color: 1,
|
||||
pierce: 20,
|
||||
multiball: 6,
|
||||
base_combo: 100,
|
||||
telekinesis: 2,
|
||||
yoyo: 2,
|
||||
metamorphosis: 1,
|
||||
},
|
||||
}
|
||||
: {},
|
||||
);
|
||||
fitSize();
|
||||
tick();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue