mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-22 04:56:15 -04:00
Build 29045721
This commit is contained in:
parent
054b4a85c7
commit
6899b5cf36
6 changed files with 27 additions and 23 deletions
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