feat: support runestone rewards in achievement system (#190)
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 1m4s
CI / Lint, Build & Test (pull_request) Successful in 1m11s

- Add runestones field to AchievementReward type
- Update tick engine to accumulate and apply runestone rewards
  when achievements unlock, alongside the existing crystal rewards
This commit is contained in:
2026-03-31 18:00:21 -07:00
committed by Naomi Carrigan
parent 218a150540
commit 010b4ea1da
2 changed files with 21 additions and 15 deletions
+2 -1
View File
@@ -20,7 +20,8 @@ interface AchievementCondition {
}
interface AchievementReward {
crystals?: number;
crystals?: number;
runestones?: number;
}
interface Achievement {