Balancing

This commit is contained in:
thepaperpilot 2022-12-23 22:55:12 -06:00
parent f861787a27
commit e4f5032632

View file

@ -41,7 +41,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
const name = "Reindeer"; const name = "Reindeer";
const color = "saddlebrown"; const color = "saddlebrown";
const feedGoal = 2.5e3; const feedGoal = 1.5e3;
const timeSinceFocus = persistent<number>(0); const timeSinceFocus = persistent<number>(0);
@ -84,6 +84,9 @@ const layer = createLayer(id, function (this: BaseLayer) {
if (!currTargets.value[roll]) { if (!currTargets.value[roll]) {
currTargets.value[roll] = true; currTargets.value[roll] = true;
targetsSelected++; targetsSelected++;
if (upgrade8.bought.value) {
selectedReindeer.onClick();
}
} }
} }
} }
@ -327,7 +330,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
const upgrade1 = createUpgrade(() => ({ const upgrade1 = createUpgrade(() => ({
resource: trees.logs, resource: trees.logs,
cost: 0, cost: 1e97,
style: { style: {
width: "160px" width: "160px"
}, },
@ -339,7 +342,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const upgrade2 = createUpgrade(() => ({ const upgrade2 = createUpgrade(() => ({
resource: coal.coal, resource: coal.coal,
cost: 0, cost: 1e167,
style: { style: {
width: "160px" width: "160px"
}, },
@ -351,7 +354,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const upgrade3 = createUpgrade(() => ({ const upgrade3 = createUpgrade(() => ({
resource: paper.paper, resource: paper.paper,
cost: 0, cost: 1e117,
style: { style: {
width: "160px" width: "160px"
}, },
@ -363,7 +366,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const upgrade4 = createUpgrade(() => ({ const upgrade4 = createUpgrade(() => ({
resource: boxes.boxes, resource: boxes.boxes,
cost: 0, cost: 1e102,
style: { style: {
width: "160px" width: "160px"
}, },
@ -375,7 +378,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const upgrade5 = createUpgrade(() => ({ const upgrade5 = createUpgrade(() => ({
resource: metal.metal, resource: metal.metal,
cost: 0, cost: 1e67,
style: { style: {
width: "160px" width: "160px"
}, },
@ -387,7 +390,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const upgrade6 = createUpgrade(() => ({ const upgrade6 = createUpgrade(() => ({
resource: cloth.cloth, resource: cloth.cloth,
cost: 0, cost: 1e20,
style: { style: {
width: "160px" width: "160px"
}, },
@ -399,7 +402,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const upgrade7 = createUpgrade(() => ({ const upgrade7 = createUpgrade(() => ({
resource: oil.oil, resource: oil.oil,
cost: 0, cost: 4e25,
style: { style: {
width: "160px" width: "160px"
}, },
@ -411,7 +414,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const upgrade8 = createUpgrade(() => ({ const upgrade8 = createUpgrade(() => ({
resource: plastic.plastic, resource: plastic.plastic,
cost: 0, cost: 1e22,
style: { style: {
width: "160px" width: "160px"
}, },
@ -422,7 +425,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
})); }));
const upgrade9 = createUpgrade(() => ({ const upgrade9 = createUpgrade(() => ({
resource: dyes.dyes.white.amount, resource: dyes.dyes.white.amount,
cost: 0, cost: 7.5e7,
style: { style: {
width: "160px" width: "160px"
}, },