Swap replicator and BOGO coupon

This commit is contained in:
thepaperpilot 2023-05-12 10:59:26 -05:00
parent cf5cfbace0
commit 01b357a6a2
2 changed files with 8 additions and 8 deletions

View file

@ -198,11 +198,11 @@ export const tools = {
>;
export const relics = {
dirt: "Replicator",
dirt: "BOGO Coupon",
sand: "Metal Detector",
gravel: "Neural Networks",
wood: "Mining Laser",
stone: "BOGO Coupon",
stone: "Replicator",
coal: "Planar Intelligence",
copper: "Efficient Code",
iron: "Trade Agreements",
@ -257,7 +257,7 @@ export const passives = {
},
dirtRelic: {
description: (empowered: boolean) =>
empowered ? "Upgrades apply thrice" : "Upgrades apply twice"
empowered ? "2 free levels for repeatables" : "1 free level for repeatables"
},
sandRelic: {
description: (empowered: boolean) =>
@ -275,7 +275,7 @@ export const passives = {
},
stoneRelic: {
description: (empowered: boolean) =>
empowered ? "2 free levels for repeatables" : "1 free level for repeatables"
empowered ? "Upgrades apply thrice" : "Upgrades apply twice"
},
coalRelic: {
description: (empowered: boolean) =>

View file

@ -313,9 +313,9 @@ export function createPlane(
previewModifier
});
resourceModifiers.push(
modifier(() => main.toolNodes.value.dirtRelic != null)
modifier(() => main.toolNodes.value.stoneRelic != null)
);
resourceModifiers.push(modifier(() => isEmpowered("dirtRelic")));
resourceModifiers.push(modifier(() => isEmpowered("stoneRelic")));
upgrades.push(upgrade);
}
features.push(upgrades);
@ -434,9 +434,9 @@ export function createPlane(
visibility: repeatableVisibility,
bonusAmount: () =>
Decimal.gt(repeatable.amount.value, 0)
? isEmpowered("stoneRelic")
? isEmpowered("dirtRelic")
? 2
: main.toolNodes.value.stoneRelic != null
: main.toolNodes.value.dirtRelic != null
? 1
: 0
: 0