Raise costs for skills prohibited by wish

This commit is contained in:
2025-02-08 22:00:28 -08:00
parent 1902f6e70b
commit 8c917df618
7 changed files with 142 additions and 14 deletions

View File

@ -141,6 +141,10 @@ export class PlayerProgress {
this.#blood -= amt;
}
getWish(): Wish | null {
return this.#wish
}
getAvailableSkills(): Skill[] {
// Sort by cost, then by name, then trim down to first 6
let skillsAvailable = [...this.#untrimmedSkillsAvailable];