mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-07 09:29:04 +00:00
18 lines
264 B
TypeScript
18 lines
264 B
TypeScript
|
export enum StatusEffect {
|
||
|
NONE,
|
||
|
POISON,
|
||
|
TOXIC,
|
||
|
PARALYSIS,
|
||
|
SLEEP,
|
||
|
FREEZE,
|
||
|
BURN
|
||
|
}
|
||
|
|
||
|
export class Status {
|
||
|
public statusType: StatusEffect;
|
||
|
public turnCount: integer;
|
||
|
|
||
|
constructor(statusType: StatusEffect) {
|
||
|
this.statusType = statusType;
|
||
|
}
|
||
|
}
|