mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 09:02:47 +02:00
13 lines
198 B
TypeScript
13 lines
198 B
TypeScript
/** Enum representing all non-volatile status effects. */
|
|
// TODO: Remove StatusEffect.FAINT
|
|
export enum StatusEffect {
|
|
NONE,
|
|
POISON,
|
|
TOXIC,
|
|
PARALYSIS,
|
|
SLEEP,
|
|
FREEZE,
|
|
BURN,
|
|
FAINT,
|
|
}
|