@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
22 lines (21 loc) • 680 B
TypeScript
export declare const POWER_UP_NAME: {
readonly BATTLE_GOD: "Battle God";
readonly BATTLE_STAR: "Battle Star";
readonly BATTLE_SHOT: "Battle Shot";
readonly BATTLE_NITRO: "Battle Nitro";
readonly BATTLE_PULSE: "Battle Pulse";
readonly BATTLE_TRAP: "Battle Trap";
readonly BATTLE_SHIELD: "Battle Shield";
readonly BATTLE_TURBO: "Battle Turbo";
readonly BATTLE_BLUE_SHOT: "Battle Blue Shot";
};
export declare const POWER_UP_TYPE: {
readonly Damage: "Damage";
readonly Shield: "Shield";
readonly Speed: "Speed";
};
export declare const POWER_UP_TARGET: {
readonly Self: "Self";
readonly Any: "Any";
readonly All: "All";
};