19 lines
289 B
TypeScript
19 lines
289 B
TypeScript
|
export enum BattleAction{
|
||
|
ChargeRight,
|
||
|
ChargeLeft,
|
||
|
MoveRight,
|
||
|
MoveLeft,
|
||
|
AttackRightHigh,
|
||
|
AttackRightMid,
|
||
|
AttackRightLow,
|
||
|
AttackLeftHigh,
|
||
|
AttackLeftMid,
|
||
|
AttackLeftLow,
|
||
|
Wait,
|
||
|
}
|
||
|
|
||
|
export enum CharacterState{
|
||
|
Idle,
|
||
|
Recovering,
|
||
|
Training,
|
||
|
}
|