Added side kick, implosion, corner shot

This commit is contained in:
Renan LE CARO 2025-03-23 22:19:11 +01:00
parent f49da76667
commit f3790b3334
10 changed files with 363 additions and 38 deletions

View file

@ -586,4 +586,37 @@ export const rawUpgrades = [
help: (lvl: number) => t("upgrades.clairvoyant.help"),
fullHelp: t("upgrades.clairvoyant.fullHelp"),
},
{
requires: "",
rejects: "",
threshold: 150000,
giftable: true,
id: "side_kick",
max: 3,
name: t("upgrades.side_kick.name"),
help: (lvl: number) => t("upgrades.side_kick.help",{lvl}),
fullHelp: t("upgrades.side_kick.fullHelp"),
},
{
requires: "",
rejects: "",
threshold: 155000,
giftable: false,
id: "implosions",
max: 1,
name: t("upgrades.implosions.name"),
help: (lvl: number) => t("upgrades.implosions.help"),
fullHelp: t("upgrades.implosions.fullHelp"),
},
{
requires: "",
rejects: "",
threshold: 160000,
giftable: false,
id: "corner_shot",
max: 1,
name: t("upgrades.corner_shot.name"),
help: (lvl: number) => t("upgrades.corner_shot.help"),
fullHelp: t("upgrades.corner_shot.fullHelp"),
},
] as const;