Ending selector, VN sequences

This commit is contained in:
2025-02-08 15:36:11 -08:00
parent 047248adb6
commit 3631144f3c
13 changed files with 470 additions and 22 deletions

View File

@ -132,6 +132,14 @@ export class PlayerProgress {
});
return skillsAvailable.slice(0, 6)
}
getLearnedSkills() {
let learnedSkills = []
for (let s of this.#skillsLearned.values()) {
learnedSkills.push({id: s})
}
return learnedSkills;
}
}
let active: PlayerProgress = new PlayerProgress();