Files
ashen-realms/apps/api/src/combat/status-effect.enum.ts
Bastian Wagner 081c9f83f9 docs
2026-08-22 16:41:47 +02:00

10 lines
259 B
TypeScript

/**
* Ongoing effects a combatant can carry between rounds (spec §4).
*
* Only the Feral Road Hound's Bleeding exists in this slice; the enum is the
* extension point later status effects hang off.
*/
export enum StatusEffectType {
BLEED = 'BLEED',
}