KF-MMO-Server/enums.ts

19 lines
289 B
TypeScript
Raw Normal View History

2023-09-14 16:59:21 +08:00
export enum BattleAction{
ChargeRight,
ChargeLeft,
MoveRight,
MoveLeft,
AttackRightHigh,
AttackRightMid,
AttackRightLow,
AttackLeftHigh,
AttackLeftMid,
AttackLeftLow,
Wait,
}
export enum CharacterState{
Idle,
Recovering,
Training,
}