Alter average level formula

pull/1/head
Flashfyre 2023-04-19 11:14:47 -04:00
parent 2fbb533ca2
commit 64076a842d
1 changed files with 2 additions and 2 deletions

View File

@ -13,10 +13,10 @@ export class Battle {
} }
private getLevelForWave(): number { private getLevelForWave(): number {
let averageLevel = 1 + this.waveIndex * 0.5; let averageLevel = 1 + this.waveIndex / 2 + Math.pow(this.waveIndex / 25, 2);
if (!(this.waveIndex % 10)) if (!(this.waveIndex % 10))
return Math.floor(averageLevel * 1.25); return Math.floor(averageLevel * 1.2);
const deviation = 10 / this.waveIndex; const deviation = 10 / this.waveIndex;