mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-22 04:56:15 -04:00
wip
This commit is contained in:
parent
a89a61e35b
commit
054b4a85c7
2 changed files with 30 additions and 2 deletions
16
dist/index.html
vendored
16
dist/index.html
vendored
|
@ -1303,7 +1303,21 @@ function restart(params) {
|
||||||
(0, _recording.pauseRecording)();
|
(0, _recording.pauseRecording)();
|
||||||
(0, _gameStateMutators.setLevel)(gameState, 0);
|
(0, _gameStateMutators.setLevel)(gameState, 0);
|
||||||
}
|
}
|
||||||
restart({});
|
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();
|
fitSize();
|
||||||
tick();
|
tick();
|
||||||
|
|
||||||
|
|
16
src/game.ts
16
src/game.ts
|
@ -972,6 +972,20 @@ export function restart(params: RunParams) {
|
||||||
setLevel(gameState, 0);
|
setLevel(gameState, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
restart({});
|
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();
|
fitSize();
|
||||||
tick();
|
tick();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue