This commit is contained in:
Renan LE CARO 2025-03-23 16:21:56 +01:00
parent 054b4a85c7
commit 6899b5cf36
6 changed files with 27 additions and 23 deletions

View file

@ -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();