Feature: implement post-combat rewards system with XP tracking and creature defeat logging

This commit is contained in:
Keith Solomon
2026-03-15 14:16:37 -05:00
parent d504008030
commit cf98636a52
7 changed files with 951 additions and 116 deletions

View File

@@ -215,6 +215,8 @@ export type RunState = {
dungeon: DungeonState;
adventurerSnapshot: AdventurerState;
activeCombat?: CombatState;
defeatedCreatureIds: string[];
xpGained: number;
log: LogEntry[];
pendingEffects: RuleEffect[];
};