mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-21 20:46:14 -04:00
Added side kick, implosion, corner shot
This commit is contained in:
parent
f49da76667
commit
f3790b3334
10 changed files with 363 additions and 38 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue