This commit is contained in:
Renan LE CARO 2025-05-04 15:43:58 +02:00
parent 06aac98954
commit 4df70f6591
6 changed files with 2613 additions and 2550 deletions

View file

@ -355,3 +355,11 @@ export function zoneLeftBorderX(gameState: GameState) {
export function zoneRightBorderX(gameState: GameState) {
return gameState.canvasWidth - gameState.offsetXRoundedDown + 1;
}
export function base_combo_from_stronger_foundation(perkLevel:number){
let base = 1
for(let i = 0;i<perkLevel;i++){
base+=3+i
}
return base
}