Skip to content

Commit

Permalink
Update multipliers
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Damer committed Aug 7, 2024
1 parent 9b9411f commit 5e2db52
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/types/TowerGame.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ export const TypeToGuessMax = {
}

export const TypeToMultipliers = {
[TowerType.easy]: [1.4, 2.1, 3, 4.4, 6.5, 9.4, 13.8, 20, 29.2],
[TowerType.hard]: [3, 7, 14, 27, 53, 103, 200, 389, 755],
[TowerType.easy]: [1.2, 1.4, 2.1, 3, 4.4, 6.5, 9.4, 13.8, 20, 29.2],
[TowerType.hard]: [
1.96, 3.76, 7.3, 14.16, 27.47, 53.31, 103.42, 200.63, 389.21, 755.12,
],
}

export const towerHeight = (towerType: TowerType) =>
Expand Down

0 comments on commit 5e2db52

Please sign in to comment.