Clairvoyant perks, hps adjusments

This commit is contained in:
Renan LE CARO 2025-03-23 19:11:01 +01:00
parent 3745b527f5
commit af02565bf1
12 changed files with 238 additions and 104 deletions

View file

@ -275,9 +275,9 @@ export const rawUpgrades = [
threshold: 15000,
giftable: false,
id: "pierce_color",
max: 1,
max: 4,
name: t("upgrades.pierce_color.name"),
help: (lvl: number) => t("upgrades.pierce_color.help"),
help: (lvl: number) => t("upgrades.pierce_color.help",{lvl}),
fullHelp: t("upgrades.pierce_color.fullHelp"),
},
{
@ -575,4 +575,15 @@ export const rawUpgrades = [
help: (lvl: number) => t("upgrades.passive_income.help"),
fullHelp: t("upgrades.passive_income.fullHelp"),
},
{
requires: "",
rejects: "",
threshold: 145000,
giftable: false,
id: "clairvoyant",
max: 1,
name: t("upgrades.clairvoyant.name"),
help: (lvl: number) => t("upgrades.clairvoyant.help"),
fullHelp: t("upgrades.clairvoyant.fullHelp"),
},
] as const;