mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-16 07:56:22 -05:00
33 lines
885 B
TypeScript
33 lines
885 B
TypeScript
export const MAX_LDE_INTENSITY = 21;
|
|
export const MAX_AP = 57;
|
|
|
|
export const DAMAGE_RECEIVERS = [
|
|
"Bomb_TorpedoBullet", // Torpedo
|
|
"Chariot", // Crab Tank
|
|
"Gachihoko_Barrier", // Rainmaker Shield
|
|
"GreatBarrier_Barrier", // Big Bubbler Shield
|
|
"GreatBarrier_WeakPoint", // Big Bubbler Weak Point
|
|
"InkRail", // InkRail
|
|
"NiceBall_Armor", // Booyah Bomb Armor
|
|
"ShockSonar", // Wave Breaker
|
|
"Sponge_Versus", // Sponge
|
|
"Wsb_Flag", // Squid Beakon
|
|
"Wsb_Shield", // Splash Wall
|
|
"Wsb_Sprinkler", // Sprinkler
|
|
"BulletUmbrellaCanopyCompact", // Undercover Brella Canopy
|
|
"BulletUmbrellaCanopyNormal", // Splat Brella Canopy
|
|
"BulletUmbrellaCanopyWide", // Tenta Brella Canopy
|
|
] as const;
|
|
|
|
export const DAMAGE_TYPE = [
|
|
"NORMAL_MIN",
|
|
"NORMAL_MAX",
|
|
"DIRECT",
|
|
"FULL_CHARGE",
|
|
"MAX_CHARGE",
|
|
"TAP_SHOT",
|
|
"DISTANCE",
|
|
"BOMB_NORMAL",
|
|
"BOMB_DIRECT",
|
|
] as const;
|