feat(combat): add the Slice 0.6 action and event-type enum members

This commit is contained in:
Bastian Wagner
2026-08-20 21:12:46 +02:00
parent eed247d318
commit 6f1afaf5a3
3 changed files with 9 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
// Only ATTACK is implemented in Slice 0.3. Future slices add HEAVY_STRIKE,
// SHIELD_BASH, DEFEND, POTION, FLEE as real members with their own
// CombatEngineService cases — do not add them here until their behavior ships.
export enum CombatAction {
ATTACK = 'ATTACK',
HEAVY_STRIKE = 'HEAVY_STRIKE',
SHIELD_BASH = 'SHIELD_BASH',
DEFEND = 'DEFEND',
POTION = 'POTION',
}