Skip to content

Commit 6f179d0

Browse files
committed
Remove unused PseudoCoin upgrade
1 parent 9de4544 commit 6f179d0

4 files changed

Lines changed: 2 additions & 70 deletions

File tree

src/PseudoCoinUpgrades.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export type PseudoCoinUpgradeNames =
2121
| 'BASE_OBTAINIUM_BUFF'
2222
| 'RED_GENERATION_BUFF'
2323
| 'RED_LUCK_BUFF'
24-
| 'REBORN_ELO_BUFF'
2524

2625
export type PseudoCoinUpgrades = Record<PseudoCoinUpgradeNames, number>
2726
export type PseudoCoinUpgradeEffects = Record<PseudoCoinUpgradeNames, number>
@@ -45,7 +44,6 @@ export const PCoinUpgrades: PseudoCoinUpgrades = {
4544
'BASE_OBTAINIUM_BUFF': 0,
4645
'RED_GENERATION_BUFF': 0,
4746
'RED_LUCK_BUFF': 0,
48-
'REBORN_ELO_BUFF': 0
4947
}
5048

5149
export const PCoinUpgradeEffects: PseudoCoinUpgradeEffects = {
@@ -65,7 +63,6 @@ export const PCoinUpgradeEffects: PseudoCoinUpgradeEffects = {
6563
BASE_OBTAINIUM_BUFF: 0,
6664
RED_GENERATION_BUFF: 1,
6765
RED_LUCK_BUFF: 0,
68-
REBORN_ELO_BUFF: 1
6966
}
7067

7168
export const initializePCoinCache = async () => {
@@ -142,9 +139,6 @@ export const updatePCoinEffects = (name: PseudoCoinUpgradeNames, level: number)
142139
case 'RED_LUCK_BUFF':
143140
PCoinUpgradeEffects.RED_LUCK_BUFF = level * 20
144141
break
145-
case 'REBORN_ELO_BUFF':
146-
PCoinUpgradeEffects.REBORN_ELO_BUFF = 1 + level * 0.06
147-
break
148142
}
149143
}
150144

@@ -204,10 +198,6 @@ export const displayPCoinEffect = (name: PseudoCoinUpgradeNames, level: number)
204198
)
205199
case 'RED_LUCK_BUFF':
206200
return String(i18next.t('pseudoCoins.upgradeEffects.RED_LUCK_BUFF', { amount: 20 * level }))
207-
case 'REBORN_ELO_BUFF':
208-
return String(
209-
i18next.t('pseudoCoins.upgradeEffects.REBORN_ELO_BUFF', { amount: format(1 + 0.06 * level, 2, true) })
210-
)
211201
}
212202
}
213203

@@ -293,10 +283,5 @@ export const showCostAndEffect = (name: PseudoCoinUpgradeNames) => {
293283
cost: 'Cost: 100/150/200/250/300 PseudoCoins',
294284
effect: 'Effect: 20/40/60/80/100 Red Luck'
295285
}
296-
case 'REBORN_ELO_BUFF':
297-
return {
298-
cost: 'Cost: 100/150/200/250/300 PseudoCoins',
299-
effect: 'Effect: 1.06/1.12/1.18/1.24/1.30x Reborn ELO'
300-
}
301286
}
302287
}

src/Statistics.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3231,11 +3231,6 @@ export const rebornELOCreationSpeedMultStats: NumberStatLine[] = [
32313231
i18n: 'EffectiveELO',
32323232
stat: () => calculateEffectiveAntELO()
32333233
},
3234-
{
3235-
i18n: 'PseudoCoins',
3236-
stat: () => PCoinUpgradeEffects.REBORN_ELO_BUFF,
3237-
color: 'gold'
3238-
},
32393234
{
32403235
i18n: 'CoinUpgrade24',
32413236
stat: () => 1 + 0.1 * player.upgrades[124]

src/mock/browser.ts

Lines changed: 0 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1398,51 +1398,6 @@ const GETHandlers = [
13981398
level: 1,
13991399
cost: 100
14001400
},
1401-
{
1402-
upgradeId: 20,
1403-
maxLevel: 5,
1404-
name: 'Multi-Level',
1405-
description: 'Reborn ELO is created 6% faster per level',
1406-
internalName: 'REBORN_ELO_BUFF',
1407-
level: 5,
1408-
cost: 300
1409-
},
1410-
{
1411-
upgradeId: 20,
1412-
maxLevel: 5,
1413-
name: 'Multi-Level',
1414-
description: 'Reborn ELO is created 6% faster per level',
1415-
internalName: 'REBORN_ELO_BUFF',
1416-
level: 4,
1417-
cost: 250
1418-
},
1419-
{
1420-
upgradeId: 20,
1421-
maxLevel: 5,
1422-
name: 'Multi-Level',
1423-
description: 'Reborn ELO is created 6% faster per level',
1424-
internalName: 'REBORN_ELO_BUFF',
1425-
level: 3,
1426-
cost: 200
1427-
},
1428-
{
1429-
upgradeId: 20,
1430-
maxLevel: 5,
1431-
name: 'Multi-Level',
1432-
description: 'Reborn ELO is created 6% faster per level',
1433-
internalName: 'REBORN_ELO_BUFF',
1434-
level: 2,
1435-
cost: 150
1436-
},
1437-
{
1438-
upgradeId: 20,
1439-
maxLevel: 5,
1440-
name: 'Multi-Level',
1441-
description: 'Reborn ELO is created 6% faster per level',
1442-
internalName: 'REBORN_ELO_BUFF',
1443-
level: 1,
1444-
cost: 100
1445-
}
14461401
],
14471402
playerUpgrades: [],
14481403
tier: 0

translations/en.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6958,7 +6958,6 @@
69586958
"extraInfo": "Each tick, you generate <<#00DDFF|Reborn ELO>> equal to <br><<yellow | SpeedMult * TickLength>><br><<yellow|TickLength>> is the time since previous tick (in seconds)",
69596959
"Base": "Base Multiplier:",
69606960
"EffectiveELO": "Effective Ant ELO:",
6961-
"PseudoCoins": "PseudoCoin Upgrade:",
69626961
"AntQueens": "Queen Ant Purchased:",
69636962
"AntLordRoyals": "Lord Royal Ant Purchased:",
69646963
"AntAlmighties": "ALMIGHTY Ant Purchased:",
@@ -7439,8 +7438,7 @@
74397438
"BASE_OFFERING_BUFF": "Abundant Harvests",
74407439
"BASE_OBTAINIUM_BUFF": "Super Literate Scientists",
74417440
"RED_LUCK_BUFF": "Golden Fuzzy Dice",
7442-
"RED_GENERATION_BUFF": "Century-Aged Red Ambrosia",
7443-
"REBORN_ELO_BUFF": "A Fabergé Phoenix Egg"
7441+
"RED_GENERATION_BUFF": "Century-Aged Red Ambrosia"
74447442
},
74457443
"upgradeEffects": {
74467444
"INSTANT_UNLOCK_1": "The Plastic Talisman is <<gold | {{descriptor}}>> always unlocked! <<orange | Level Cap +{{amount}}>>",
@@ -7458,8 +7456,7 @@
74587456
"BASE_OFFERING_BUFF": "Base Offering Gain is increased by <<gold | {{amount}}>>",
74597457
"BASE_OBTAINIUM_BUFF": "Base Obtainium Gain is increased by <<gold | {{amount}}>>",
74607458
"RED_LUCK_BUFF": "Red Luck is increased by <<gold | {{amount}}>>",
7461-
"RED_GENERATION_BUFF": "Red Bar Point gain is multiplied by <<gold | {{amount}}>>",
7462-
"REBORN_ELO_BUFF": "Reborn ELO Creation Speed is multiplied by <<gold | {{amount}}>>"
7459+
"RED_GENERATION_BUFF": "Red Bar Point gain is multiplied by <<gold | {{amount}}>>"
74637460
},
74647461
"consumables": {
74657462
"tipReceived": "{{offlineTime}} people tipped you in the last minute!",

0 commit comments

Comments
 (0)