Make ladders work

This commit is contained in:
2025-02-02 22:26:56 -08:00
parent c23a7b6d75
commit 047248adb6
10 changed files with 172 additions and 122 deletions

View File

@ -79,7 +79,7 @@ function governing(track: Track, difficulty: Difficulty): SkillGoverning {
let cost: number
switch(difficulty) {
case 0: underTarget = 5; target = 15; cost = 50; break;
case 1: underTarget = 50; target = 100; cost = 100; break;
case 1: underTarget = 15; target = 40; cost = 100; break;
case 2: underTarget = 100; target = 150; cost = 250; break;
case 3: underTarget = 175; target = 250; cost = 500; break;
}