mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-06-16 19:25:06 -04:00
wip
This commit is contained in:
parent
06aac98954
commit
4df70f6591
6 changed files with 2613 additions and 2550 deletions
|
@ -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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue