This commit is contained in:
Renan LE CARO 2025-04-08 08:57:41 +02:00
parent 8eb2e049c8
commit e1c20627bc
15 changed files with 302 additions and 56 deletions

View file

@ -541,7 +541,7 @@ export const rawUpgrades = [
threshold: 120000,
giftable: false,
id: "ghost_coins",
max: 1,
max: 3,
name: t("upgrades.ghost_coins.name"),
help: (lvl: number) => t("upgrades.ghost_coins.help", { lvl }),
fullHelp: t("upgrades.ghost_coins.fullHelp"),
@ -611,6 +611,17 @@ export const rawUpgrades = [
help: (lvl: number) => t("upgrades.side_kick.help", { lvl, loss: lvl * 2 }),
fullHelp: t("upgrades.side_kick.fullHelp"),
},
{
requires: "",
threshold: 150000,
giftable: true,
id: "side_flip",
max: 3,
name: t("upgrades.side_flip.name"),
help: (lvl: number) => t("upgrades.side_flip.help", { lvl, loss: lvl * 2 }),
fullHelp: t("upgrades.side_flip.fullHelp"),
},
{
requires: "",
threshold: 155000,
@ -663,4 +674,14 @@ export const rawUpgrades = [
help: (lvl: number) => t("upgrades.limitless.help", { lvl }),
fullHelp: t("upgrades.limitless.fullHelp"),
},
{
requires: "",
threshold: 180000,
giftable: false,
id: "minefield",
max: 3,
name: t("upgrades.minefield.name"),
help: (lvl: number) => t("upgrades.minefield.help", { lvl }),
fullHelp: t("upgrades.minefield.fullHelp"),
},
] as const;