This commit is contained in:
Renan LE CARO 2025-03-23 16:19:29 +01:00
parent a89a61e35b
commit 054b4a85c7
2 changed files with 30 additions and 2 deletions

16
dist/index.html vendored
View file

@ -1303,7 +1303,21 @@ function restart(params) {
(0, _recording.pauseRecording)();
(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();
tick();

View file

@ -972,6 +972,20 @@ export function restart(params: RunParams) {
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();
tick();