mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-21 12:36:15 -04:00
Build 29041544
This commit is contained in:
parent
e8621614ee
commit
5e4faf2878
14 changed files with 423 additions and 274 deletions
|
@ -3,6 +3,7 @@ import { t } from "./i18n/i18n";
|
|||
export const rawUpgrades = [
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 0,
|
||||
giftable: false,
|
||||
id: "extra_life",
|
||||
|
@ -16,6 +17,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 0,
|
||||
id: "streak_shots",
|
||||
giftable: true,
|
||||
|
@ -27,6 +29,7 @@ export const rawUpgrades = [
|
|||
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 0,
|
||||
id: "base_combo",
|
||||
giftable: true,
|
||||
|
@ -38,6 +41,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 0,
|
||||
giftable: false,
|
||||
id: "slow_down",
|
||||
|
@ -48,6 +52,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 0,
|
||||
giftable: false,
|
||||
id: "bigger_puck",
|
||||
|
@ -58,6 +63,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 0,
|
||||
giftable: false,
|
||||
id: "viscosity",
|
||||
|
@ -69,6 +75,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 0,
|
||||
id: "left_is_lava",
|
||||
giftable: true,
|
||||
|
@ -80,6 +87,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 0,
|
||||
id: "right_is_lava",
|
||||
giftable: true,
|
||||
|
@ -90,6 +98,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 0,
|
||||
id: "top_is_lava",
|
||||
giftable: true,
|
||||
|
@ -100,6 +109,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 0,
|
||||
giftable: false,
|
||||
id: "skip_last",
|
||||
|
@ -113,6 +123,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 500,
|
||||
id: "telekinesis",
|
||||
giftable: true,
|
||||
|
@ -126,6 +137,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 1000,
|
||||
giftable: false,
|
||||
id: "coin_magnet",
|
||||
|
@ -139,6 +151,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 1500,
|
||||
id: "multiball",
|
||||
giftable: true,
|
||||
|
@ -149,6 +162,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 2000,
|
||||
giftable: false,
|
||||
id: "smaller_puck",
|
||||
|
@ -162,6 +176,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 3000,
|
||||
id: "pierce",
|
||||
giftable: true,
|
||||
|
@ -172,6 +187,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 4000,
|
||||
id: "picky_eater",
|
||||
giftable: true,
|
||||
|
@ -182,6 +198,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 5000,
|
||||
giftable: false,
|
||||
id: "metamorphosis",
|
||||
|
@ -192,6 +209,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 6000,
|
||||
id: "compound_interest",
|
||||
giftable: true,
|
||||
|
@ -202,6 +220,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 7000,
|
||||
id: "hot_start",
|
||||
giftable: true,
|
||||
|
@ -216,6 +235,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 9000,
|
||||
id: "sapper",
|
||||
giftable: true,
|
||||
|
@ -229,6 +249,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 11000,
|
||||
id: "bigger_explosions",
|
||||
giftable: false,
|
||||
|
@ -239,6 +260,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 13000,
|
||||
giftable: false,
|
||||
id: "extra_levels",
|
||||
|
@ -249,6 +271,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 15000,
|
||||
giftable: false,
|
||||
id: "pierce_color",
|
||||
|
@ -259,6 +282,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 18000,
|
||||
giftable: false,
|
||||
id: "soft_reset",
|
||||
|
@ -295,6 +319,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 30000,
|
||||
giftable: false,
|
||||
id: "puck_repulse_ball",
|
||||
|
@ -308,6 +333,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 35000,
|
||||
giftable: false,
|
||||
id: "wind",
|
||||
|
@ -319,6 +345,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 40000,
|
||||
giftable: false,
|
||||
id: "sturdy_bricks",
|
||||
|
@ -332,6 +359,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 45000,
|
||||
giftable: false,
|
||||
id: "respawn",
|
||||
|
@ -343,6 +371,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 50000,
|
||||
giftable: false,
|
||||
id: "one_more_choice",
|
||||
|
@ -353,6 +382,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 55000,
|
||||
giftable: false,
|
||||
id: "instant_upgrade",
|
||||
|
@ -363,6 +393,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 60000,
|
||||
giftable: false,
|
||||
id: "concave_puck",
|
||||
|
@ -373,6 +404,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 65000,
|
||||
giftable: false,
|
||||
id: "helium",
|
||||
|
@ -383,6 +415,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 70000,
|
||||
giftable: false,
|
||||
id: "asceticism",
|
||||
|
@ -393,6 +426,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 75000,
|
||||
giftable: false,
|
||||
id: "unbounded",
|
||||
|
@ -403,16 +437,18 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 80000,
|
||||
giftable: false,
|
||||
id: "shunt",
|
||||
max: 3,
|
||||
name: t("upgrades.shunt.name"),
|
||||
help: (lvl: number) => t("upgrades.shunt.help",{percent:lvl*25}),
|
||||
help: (lvl: number) => t("upgrades.shunt.help", { percent: lvl * 25 }),
|
||||
fullHelp: t("upgrades.shunt.fullHelp"),
|
||||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 85000,
|
||||
giftable: false,
|
||||
id: "yoyo",
|
||||
|
@ -423,6 +459,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 90000,
|
||||
giftable: false,
|
||||
id: "nbricks",
|
||||
|
@ -433,6 +470,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 95000,
|
||||
giftable: false,
|
||||
id: "etherealcoins",
|
||||
|
@ -453,6 +491,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 105000,
|
||||
giftable: false,
|
||||
id: "zen",
|
||||
|
@ -484,6 +523,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 120000,
|
||||
giftable: false,
|
||||
id: "ghost_coins",
|
||||
|
@ -504,6 +544,7 @@ export const rawUpgrades = [
|
|||
},
|
||||
{
|
||||
requires: "",
|
||||
rejects: "",
|
||||
threshold: 130000,
|
||||
giftable: false,
|
||||
id: "ball_attracts_coins",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue