mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2025-03-20 13:20:33 +00:00
Swap replicator and BOGO coupon
This commit is contained in:
parent
cf5cfbace0
commit
01b357a6a2
2 changed files with 8 additions and 8 deletions
|
@ -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) =>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue