mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +00:00
Finished balancing
This commit is contained in:
parent
1d2c61409c
commit
8a90cd45f7
1 changed files with 57 additions and 10 deletions
|
@ -89,6 +89,7 @@ import Toy from "./Toy.vue";
|
||||||
import toys from "./toys";
|
import toys from "./toys";
|
||||||
import trees from "./trees";
|
import trees from "./trees";
|
||||||
import workshop from "./workshop";
|
import workshop from "./workshop";
|
||||||
|
import ribbon from "./ribbon";
|
||||||
|
|
||||||
const id = "factory";
|
const id = "factory";
|
||||||
|
|
||||||
|
@ -262,9 +263,15 @@ const factory = createLayer(id, () => {
|
||||||
enabled: () => computedToyMultiplier.value.gt(1)
|
enabled: () => computedToyMultiplier.value.gt(1)
|
||||||
})),
|
})),
|
||||||
createMultiplicativeModifier(() => ({
|
createMultiplicativeModifier(() => ({
|
||||||
multiplier: Decimal.div(boxes.buyables3.presentBuyable.amount.value, 10).add(1).pow(2),
|
multiplier: () =>
|
||||||
description: "Carry boxes in... presents?",
|
Decimal.div(boxes.buyables3.presentBuyable.amount.value, 10).add(1).pow(2),
|
||||||
|
description: "Carry presents in boxes",
|
||||||
enabled: carryPresents.bought
|
enabled: carryPresents.bought
|
||||||
|
})),
|
||||||
|
createMultiplicativeModifier(() => ({
|
||||||
|
multiplier: () => Decimal.add(ribbon.ribbon.value, 1),
|
||||||
|
description: "With a bow",
|
||||||
|
enabled: bowUpgrade.bought
|
||||||
}))
|
}))
|
||||||
]);
|
]);
|
||||||
const computedPresentMultipliers = computed(() => presentMultipliers.apply(1));
|
const computedPresentMultipliers = computed(() => presentMultipliers.apply(1));
|
||||||
|
@ -830,7 +837,10 @@ const factory = createLayer(id, () => {
|
||||||
computedToyMultiplier.value
|
computedToyMultiplier.value
|
||||||
)} toys of any type (from storage) to produce ${formatWhole(
|
)} toys of any type (from storage) to produce ${formatWhole(
|
||||||
computedPresentMultipliers.value
|
computedPresentMultipliers.value
|
||||||
)} presents every tick.`
|
)} presents every tick.` +
|
||||||
|
(catalysts.bought.value
|
||||||
|
? " You can feed it wheels, buttons, stuffing, and circuit boards to increase its output."
|
||||||
|
: "")
|
||||||
),
|
),
|
||||||
tick: 1,
|
tick: 1,
|
||||||
energyCost: 50,
|
energyCost: 50,
|
||||||
|
@ -850,7 +860,20 @@ const factory = createLayer(id, () => {
|
||||||
},
|
},
|
||||||
catalysts: computed(() => {
|
catalysts: computed(() => {
|
||||||
if (!catalysts.bought.value) return [] as ResourceNames[];
|
if (!catalysts.bought.value) return [] as ResourceNames[];
|
||||||
return ["block", "clothes", "trucks", "bear", "shovelBucket", "console"];
|
return {
|
||||||
|
wheel: {
|
||||||
|
amount: 1
|
||||||
|
},
|
||||||
|
buttons: {
|
||||||
|
amount: 1
|
||||||
|
},
|
||||||
|
stuffing: {
|
||||||
|
amount: 1
|
||||||
|
},
|
||||||
|
circuitBoard: {
|
||||||
|
amount: 1
|
||||||
|
}
|
||||||
|
};
|
||||||
}),
|
}),
|
||||||
canProduce: computed(() => {
|
canProduce: computed(() => {
|
||||||
return Object.values(allToys).some(i =>
|
return Object.values(allToys).some(i =>
|
||||||
|
@ -860,8 +883,17 @@ const factory = createLayer(id, () => {
|
||||||
onProduce(times, stock) {
|
onProduce(times, stock) {
|
||||||
const value = Object.values(allToys);
|
const value = Object.values(allToys);
|
||||||
|
|
||||||
// TODO: use catalysts to multiply present gain
|
let sumCatalysts: DecimalSource = catalysts.bought.value
|
||||||
// catalysts are essentally excess inputs
|
? (["wheel", "buttons", "stuffing", "circuitBoard"] as const)
|
||||||
|
.map(c => stock?.[c] ?? 0)
|
||||||
|
.reduce(Decimal.add, Decimal.dZero)
|
||||||
|
.add(1)
|
||||||
|
: 1;
|
||||||
|
if (stock) {
|
||||||
|
(["wheel", "buttons", "stuffing", "circuitBoard"] as const).forEach(
|
||||||
|
c => delete stock[c]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
while (times > 0) {
|
while (times > 0) {
|
||||||
while (Decimal.lt(value[toysIndex].value, computedToyMultiplier.value)) {
|
while (Decimal.lt(value[toysIndex].value, computedToyMultiplier.value)) {
|
||||||
|
@ -871,7 +903,11 @@ const factory = createLayer(id, () => {
|
||||||
toysIndex = (toysIndex + 1) % value.length;
|
toysIndex = (toysIndex + 1) % value.length;
|
||||||
toyToPick.value = Decimal.sub(toyToPick.value, computedToyMultiplier.value);
|
toyToPick.value = Decimal.sub(toyToPick.value, computedToyMultiplier.value);
|
||||||
times--;
|
times--;
|
||||||
presents.value = Decimal.add(presents.value, computedPresentMultipliers.value);
|
presents.value = Decimal.add(
|
||||||
|
presents.value,
|
||||||
|
Decimal.times(computedPresentMultipliers.value, sumCatalysts)
|
||||||
|
);
|
||||||
|
sumCatalysts = 1;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
visible: main.days[presentsDay - 1].opened
|
visible: main.days[presentsDay - 1].opened
|
||||||
|
@ -1025,7 +1061,7 @@ const factory = createLayer(id, () => {
|
||||||
inputs?: Stock;
|
inputs?: Stock;
|
||||||
/** amount it produces */
|
/** amount it produces */
|
||||||
outputs?: Stock;
|
outputs?: Stock;
|
||||||
catalysts?: ProcessedComputable<ResourceNames[]>;
|
catalysts?: ProcessedComputable<Stock>;
|
||||||
|
|
||||||
/** on produce, do something */
|
/** on produce, do something */
|
||||||
onProduce?: (
|
onProduce?: (
|
||||||
|
@ -1308,6 +1344,16 @@ const factory = createLayer(id, () => {
|
||||||
},
|
},
|
||||||
visibility: () => showIf(carryPresents.bought.value)
|
visibility: () => showIf(carryPresents.bought.value)
|
||||||
}));
|
}));
|
||||||
|
const bowUpgrade = createUpgrade(() => ({
|
||||||
|
resource: noPersist(presents),
|
||||||
|
cost: 1e7,
|
||||||
|
display: {
|
||||||
|
title: "With a bow",
|
||||||
|
description:
|
||||||
|
"These presents need ribbon to make the bows, right? Multiply present gain by the amount of ribbon you have"
|
||||||
|
},
|
||||||
|
visibility: () => showIf(catalysts.bought.value)
|
||||||
|
}));
|
||||||
const factoryBuyables = { expandFactory, oilFuel, carryToys };
|
const factoryBuyables = { expandFactory, oilFuel, carryToys };
|
||||||
const factoryBuyables2 = { carryBoxes };
|
const factoryBuyables2 = { carryBoxes };
|
||||||
const upgrades = [
|
const upgrades = [
|
||||||
|
@ -1427,7 +1473,7 @@ const factory = createLayer(id, () => {
|
||||||
}))
|
}))
|
||||||
],
|
],
|
||||||
[betterFactory, betterLighting, excitmentUpgrade, carryPresents],
|
[betterFactory, betterLighting, excitmentUpgrade, carryPresents],
|
||||||
[catalysts]
|
[catalysts, bowUpgrade]
|
||||||
];
|
];
|
||||||
|
|
||||||
// pixi
|
// pixi
|
||||||
|
@ -2182,7 +2228,8 @@ const factory = createLayer(id, () => {
|
||||||
(compHovered.value as FactoryComponentProcessor).inputStock,
|
(compHovered.value as FactoryComponentProcessor).inputStock,
|
||||||
{
|
{
|
||||||
...(FACTORY_COMPONENTS[compHovered.value.type].inputs ?? {}),
|
...(FACTORY_COMPONENTS[compHovered.value.type].inputs ?? {}),
|
||||||
...(FACTORY_COMPONENTS[compHovered.value.type].catalysts ?? {})
|
...(unref(FACTORY_COMPONENTS[compHovered.value.type].catalysts) ??
|
||||||
|
{})
|
||||||
},
|
},
|
||||||
"Inputs:"
|
"Inputs:"
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in a new issue