mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-24 14:06:16 -04:00
wip
This commit is contained in:
parent
3a9e06207e
commit
88d746e7a1
15 changed files with 372 additions and 48 deletions
|
@ -862,4 +862,25 @@ export const rawUpgrades = [
|
|||
help: (lvl: number) => t("upgrades.sticky_coins.tooltip"),
|
||||
fullHelp: t("upgrades.sticky_coins.verbose_description"),
|
||||
},
|
||||
{
|
||||
requires: "",
|
||||
threshold: 235000,
|
||||
gift: false,
|
||||
id: "double_or_nothing",
|
||||
max: 3,
|
||||
name: t("upgrades.double_or_nothing.name"),
|
||||
help: (lvl: number) => t("upgrades.double_or_nothing.tooltip",
|
||||
{percent: lvl*10, multiplier:1+lvl}),
|
||||
fullHelp: t("upgrades.double_or_nothing.verbose_description"),
|
||||
},
|
||||
{
|
||||
requires: "",
|
||||
threshold: 240000,
|
||||
gift: false,
|
||||
id: "wrap_left",
|
||||
max: 1,
|
||||
name: t("upgrades.wrap_left.name"),
|
||||
help: () => t("upgrades.wrap_left.tooltip"),
|
||||
fullHelp: t("upgrades.wrap_left.verbose_description"),
|
||||
},
|
||||
] as const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue