@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
24 lines (21 loc) • 523 B
text/typescript
export const POWER_UP_NAME = {
BATTLE_GOD: 'Battle God',
BATTLE_STAR: 'Battle Star',
BATTLE_SHOT: 'Battle Shot',
BATTLE_NITRO: 'Battle Nitro',
BATTLE_PULSE: 'Battle Pulse',
BATTLE_TRAP: 'Battle Trap',
BATTLE_SHIELD: 'Battle Shield',
BATTLE_TURBO: 'Battle Turbo',
BATTLE_BLUE_SHOT: 'Battle Blue Shot',
} as const;
export const POWER_UP_TYPE = {
Damage: 'Damage',
Shield: 'Shield',
Speed: 'Speed',
} as const;
export const POWER_UP_TARGET = {
Self: 'Self',
Any: 'Any',
All: 'All',
} as const;