ShatteredSword/src/shattered_sword/sword_enums.ts
2022-04-03 20:31:06 -04:00

18 lines
536 B
TypeScript

export enum Player_Events {
PLAYER_MOVE = "PlayerMove",
PLAYER_JUMP = "PlayerJump",
PLAYER_ATTACK = "PlayerAttack",
PLAYER_DASH = "PlayerDash",
PLAYER_HEAL = "PlayerHeal",
LEVEL_START = "LevelStart",
LEVEL_END = "LevelEnd",
PLAYER_KILLED = "PlayerKilled",
ENEMY_KILLED = "EnemyKilled",
PLAYER_HIT_ENEMY = "PlayerHitEnemy",
BOSS_KILLED = "BossKilled",
}
export enum Damage_Type {
NORMAL_DAMAGE = "NormalDamage",
ENVIRONMENT_DAMAGE = "EnvironmentDamage",
DOT_DAMAGE = "DOTDamage",
}