mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-04-03 14:20:57 +00:00
Merge branch 'main' of https://github.com/thepaperpilot/Advent-Incremental into main
This commit is contained in:
commit
8b948736a5
5 changed files with 92 additions and 16 deletions
src
|
@ -41,6 +41,7 @@ import trees from "./trees";
|
||||||
import dyes from "./dyes";
|
import dyes from "./dyes";
|
||||||
import management from "./management";
|
import management from "./management";
|
||||||
import wrappingPaper from "./wrapping-paper";
|
import wrappingPaper from "./wrapping-paper";
|
||||||
|
import plastic from "./plastic";
|
||||||
|
|
||||||
interface BetterFertilizerUpgOptions {
|
interface BetterFertilizerUpgOptions {
|
||||||
canAfford: () => boolean;
|
canAfford: () => boolean;
|
||||||
|
@ -275,6 +276,9 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
if (management.elfTraining.fertilizerElfTraining.milestones[2].earned.value) {
|
if (management.elfTraining.fertilizerElfTraining.milestones[2].earned.value) {
|
||||||
cost = cost.div(Decimal.add(trees.totalLogs.value, Math.E).ln());
|
cost = cost.div(Decimal.add(trees.totalLogs.value, Math.E).ln());
|
||||||
}
|
}
|
||||||
|
if (management.elfTraining.coalDrillElfTraining.milestones[2].earned.value) {
|
||||||
|
cost = cost.div(10);
|
||||||
|
}
|
||||||
return cost;
|
return cost;
|
||||||
},
|
},
|
||||||
display: jsx(() => (
|
display: jsx(() => (
|
||||||
|
@ -417,7 +421,40 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
style: { color: colorText },
|
style: { color: colorText },
|
||||||
visibility: () => showIf(oil.depthMilestones[4].earned.value)
|
visibility: () => showIf(oil.depthMilestones[4].earned.value)
|
||||||
}));
|
}));
|
||||||
const row3upgrades = [efficientSmelther];
|
const arsonistAssistance = createUpgrade(() => ({
|
||||||
|
resource: noPersist(coal),
|
||||||
|
cost: 1e45,
|
||||||
|
display: {
|
||||||
|
title: "Arsonist Assistance",
|
||||||
|
description: "Every elf at or above level 5 doubles ash gain"
|
||||||
|
},
|
||||||
|
style: { color: colorText },
|
||||||
|
visibility: () =>
|
||||||
|
showIf(management.elfTraining.coalDrillElfTraining.milestones[3].earned.value)
|
||||||
|
}));
|
||||||
|
const refinedCoal = createUpgrade(() => ({
|
||||||
|
resource: noPersist(coal),
|
||||||
|
cost: 1e50,
|
||||||
|
display: {
|
||||||
|
title: "Refined Coal",
|
||||||
|
description: "Refineries boost coal gain"
|
||||||
|
},
|
||||||
|
style: { color: colorText },
|
||||||
|
visibility: () =>
|
||||||
|
showIf(management.elfTraining.coalDrillElfTraining.milestones[3].earned.value)
|
||||||
|
}));
|
||||||
|
const coloredFire = createUpgrade(() => ({
|
||||||
|
resource: noPersist(coal),
|
||||||
|
cost: 1e55,
|
||||||
|
display: {
|
||||||
|
title: "Colored Fire",
|
||||||
|
description: "Green dye also affects small fire synergy"
|
||||||
|
},
|
||||||
|
style: { color: colorText },
|
||||||
|
visibility: () =>
|
||||||
|
showIf(management.elfTraining.coalDrillElfTraining.milestones[3].earned.value)
|
||||||
|
}));
|
||||||
|
const row3upgrades = [efficientSmelther, arsonistAssistance, refinedCoal, coloredFire];
|
||||||
|
|
||||||
const heatedCutters = createBuyable(() => ({
|
const heatedCutters = createBuyable(() => ({
|
||||||
resource: noPersist(coal),
|
resource: noPersist(coal),
|
||||||
|
@ -600,7 +637,11 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
if (management.elfTraining.smallfireElfTraining.milestones[0].earned.value) {
|
if (management.elfTraining.smallfireElfTraining.milestones[0].earned.value) {
|
||||||
v = Decimal.div(buildBonfire.amount.value, 10).add(v);
|
v = Decimal.div(buildBonfire.amount.value, 10).add(v);
|
||||||
}
|
}
|
||||||
return Decimal.div(v, 10000).add(1);
|
let multi = Decimal.div(v, 10000).add(1);
|
||||||
|
if (coloredFire.bought.value) {
|
||||||
|
multi = Decimal.add(multi, dyes.dyes.green.amount.value);
|
||||||
|
}
|
||||||
|
return multi;
|
||||||
},
|
},
|
||||||
description: "Small Fires Synergy",
|
description: "Small Fires Synergy",
|
||||||
enabled: elves.elves.smallFireElf.bought
|
enabled: elves.elves.smallFireElf.bought
|
||||||
|
@ -643,7 +684,14 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
supportLowNumbers: true
|
supportLowNumbers: true
|
||||||
})),
|
})),
|
||||||
createMultiplicativeModifier(() => ({
|
createMultiplicativeModifier(() => ({
|
||||||
multiplier: () => Decimal.mul(oil.depth.value, 0.25).add(1),
|
multiplier: () =>
|
||||||
|
Decimal.mul(oil.depth.value, 0.25)
|
||||||
|
.pow(
|
||||||
|
management.elfTraining.coalDrillElfTraining.milestones[4].earned.value
|
||||||
|
? 1.5
|
||||||
|
: 1
|
||||||
|
)
|
||||||
|
.add(1),
|
||||||
description: "5m Well Depth",
|
description: "5m Well Depth",
|
||||||
enabled: oil.depthMilestones[0].earned
|
enabled: oil.depthMilestones[0].earned
|
||||||
})),
|
})),
|
||||||
|
@ -652,6 +700,16 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
description: "Heavy Extractor",
|
description: "Heavy Extractor",
|
||||||
enabled: () => Decimal.gt(oil.activeExtractor.value, 0)
|
enabled: () => Decimal.gt(oil.activeExtractor.value, 0)
|
||||||
})),
|
})),
|
||||||
|
createMultiplicativeModifier(() => ({
|
||||||
|
multiplier: Decimal.add(coal.value, 1).log10().add(1).sqrt(),
|
||||||
|
description: "Peppermint Level 2",
|
||||||
|
enabled: management.elfTraining.coalDrillElfTraining.milestones[1].earned
|
||||||
|
})),
|
||||||
|
createMultiplicativeModifier(() => ({
|
||||||
|
multiplier: Decimal.add(plastic.buildRefinery.amount.value, 1).sqrt(),
|
||||||
|
description: "Refined Coal",
|
||||||
|
enabled: refinedCoal.bought
|
||||||
|
})),
|
||||||
createExponentialModifier(() => ({
|
createExponentialModifier(() => ({
|
||||||
exponent: 1.05,
|
exponent: 1.05,
|
||||||
description: "Jack Level 2",
|
description: "Jack Level 2",
|
||||||
|
@ -725,6 +783,11 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
description: "Mining boots",
|
description: "Mining boots",
|
||||||
enabled: cloth.metalUpgrades.metalUpgrade1.bought
|
enabled: cloth.metalUpgrades.metalUpgrade1.bought
|
||||||
})),
|
})),
|
||||||
|
createMultiplicativeModifier(() => ({
|
||||||
|
multiplier: () => Decimal.pow(2, management.level5Elves.value),
|
||||||
|
description: "Arson Assistance",
|
||||||
|
enabled: arsonistAssistance.bought
|
||||||
|
})),
|
||||||
createExponentialModifier(() => ({
|
createExponentialModifier(() => ({
|
||||||
exponent: 1.1,
|
exponent: 1.1,
|
||||||
description: "Joy Level 2",
|
description: "Joy Level 2",
|
||||||
|
@ -874,6 +937,9 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
betterFertilizer,
|
betterFertilizer,
|
||||||
unlockKiln,
|
unlockKiln,
|
||||||
efficientSmelther,
|
efficientSmelther,
|
||||||
|
arsonistAssistance,
|
||||||
|
refinedCoal,
|
||||||
|
coloredFire,
|
||||||
heatedCutters,
|
heatedCutters,
|
||||||
heatedPlanters,
|
heatedPlanters,
|
||||||
moreFertilizer,
|
moreFertilizer,
|
||||||
|
|
|
@ -801,12 +801,10 @@ const layer = createLayer(id, () => {
|
||||||
visibility: () => showIf(clothElfMilestones[2].earned.value && main.day.value >= 13),
|
visibility: () => showIf(clothElfMilestones[2].earned.value && main.day.value >= 13),
|
||||||
shouldEarn: () => clothElfTraining.level.value >= 4,
|
shouldEarn: () => clothElfTraining.level.value >= 4,
|
||||||
onComplete() {
|
onComplete() {
|
||||||
(["red", "yellow", "blue"] as const).forEach(
|
(["red", "yellow", "blue"] as const).forEach(dyeColor => {
|
||||||
dyeColor => {
|
dyes.dyes[dyeColor].amount.value = 0;
|
||||||
dyes.dyes[dyeColor].amount.value = 0;
|
dyes.dyes[dyeColor].buyable.amount.value = 0;
|
||||||
dyes.dyes[dyeColor].buyable.amount.value = 0;
|
});
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
})),
|
})),
|
||||||
createMilestone(() => ({
|
createMilestone(() => ({
|
||||||
|
@ -837,7 +835,7 @@ const layer = createLayer(id, () => {
|
||||||
createMilestone(() => ({
|
createMilestone(() => ({
|
||||||
display: {
|
display: {
|
||||||
requirement: "Peppermint Level 3",
|
requirement: "Peppermint Level 3",
|
||||||
effectDisplay: "The coal drill cost is decreased"
|
effectDisplay: "The coal drill cost is 10x cheaper"
|
||||||
},
|
},
|
||||||
visibility: () => showIf(coalDrillElfMilestones[1].earned.value),
|
visibility: () => showIf(coalDrillElfMilestones[1].earned.value),
|
||||||
shouldEarn: () => coalDrillElfTraining.level.value >= 3
|
shouldEarn: () => coalDrillElfTraining.level.value >= 3
|
||||||
|
@ -854,7 +852,7 @@ const layer = createLayer(id, () => {
|
||||||
createMilestone(() => ({
|
createMilestone(() => ({
|
||||||
display: {
|
display: {
|
||||||
requirement: "Peppermint Level 5",
|
requirement: "Peppermint Level 5",
|
||||||
effectDisplay: "Well depth boosts coal gain more"
|
effectDisplay: "Well depth boosts coal gain an additional half time"
|
||||||
},
|
},
|
||||||
visibility: () =>
|
visibility: () =>
|
||||||
showIf(coalDrillElfMilestones[3].earned.value && main.day.value >= 13),
|
showIf(coalDrillElfMilestones[3].earned.value && main.day.value >= 13),
|
||||||
|
|
|
@ -84,7 +84,12 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
|
|
||||||
const activeHeavy = persistent<DecimalSource>(0);
|
const activeHeavy = persistent<DecimalSource>(0);
|
||||||
const heavyCoal = computed(() =>
|
const heavyCoal = computed(() =>
|
||||||
Decimal.times(Decimal.pow(activeHeavy.value, heavy2Power.value).pow(2), 1e14)
|
Decimal.times(
|
||||||
|
Decimal.pow(activeHeavy.value, heavy2Power.value).pow(
|
||||||
|
management.elfTraining.coalDrillElfTraining.milestones[0].earned.value ? 2.5 : 2
|
||||||
|
),
|
||||||
|
1e14
|
||||||
|
)
|
||||||
);
|
);
|
||||||
const heavyPower = computed(() =>
|
const heavyPower = computed(() =>
|
||||||
Decimal.times(Decimal.pow(activeHeavy.value, heavy2Power.value), 1)
|
Decimal.times(Decimal.pow(activeHeavy.value, heavy2Power.value), 1)
|
||||||
|
@ -102,8 +107,13 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
<br />
|
<br />
|
||||||
A large drill specialized at deep mining.
|
A large drill specialized at deep mining.
|
||||||
<br />
|
<br />
|
||||||
Consumes 1e14*(Heavy Drills amount)<sup>2</sup> coal/sec for (Heavy Drills amount)
|
Consumes 1e14*(Heavy Drills amount)
|
||||||
drill power.
|
<sup>
|
||||||
|
{management.elfTraining.coalDrillElfTraining.milestones[0].earned.value
|
||||||
|
? 2.5
|
||||||
|
: 2}
|
||||||
|
</sup>{" "}
|
||||||
|
coal/sec for (Heavy Drills amount) drill power.
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
Currently:
|
Currently:
|
||||||
|
|
|
@ -140,6 +140,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
// Mobile, use single tab mode
|
// Mobile, use single tab mode
|
||||||
player.tabs.splice(1, Infinity, layer ?? "trees");
|
player.tabs.splice(1, Infinity, layer ?? "trees");
|
||||||
}
|
}
|
||||||
|
layers[layer ?? "trees"]!.minimized.value = false;
|
||||||
},
|
},
|
||||||
onUnlockLayer() {
|
onUnlockLayer() {
|
||||||
if (layer) {
|
if (layer) {
|
||||||
|
@ -291,7 +292,8 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
layer: null, // "wrapping paper"
|
layer: null, // "wrapping paper"
|
||||||
symbol: wrappingPaperSymbol,
|
symbol: wrappingPaperSymbol,
|
||||||
story: "You'll need to produce wrapping paper so the presents can be wrapped. The elves are getting a bit bored of their boring old workstations, so you decide to let them decorate with some wrapping paper.",
|
story: "You'll need to produce wrapping paper so the presents can be wrapped. The elves are getting a bit bored of their boring old workstations, so you decide to let them decorate with some wrapping paper.",
|
||||||
completedStory: "You've produced enough wrapping paper, and the elves are happy with their new workstations. However, some will need more than just wrapping paper to decorate."
|
completedStory:
|
||||||
|
"You've produced enough wrapping paper, and the elves are happy with their new workstations. However, some will need more than just wrapping paper to decorate."
|
||||||
})),
|
})),
|
||||||
createDay(() => ({
|
createDay(() => ({
|
||||||
day: 16,
|
day: 16,
|
||||||
|
|
|
@ -70,7 +70,7 @@ ul {
|
||||||
/* Scrollbar stuff */
|
/* Scrollbar stuff */
|
||||||
|
|
||||||
* {
|
* {
|
||||||
scrollbar-color: #ffffff0f var(--accent1);
|
scrollbar-color: var(--accent1) #ffffff0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
|
|
Loading…
Add table
Reference in a new issue