mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-24 09:21:48 +00:00
Setup first milestone
This commit is contained in:
parent
a7dc928d11
commit
ea941348e4
3 changed files with 39 additions and 6 deletions
|
@ -10,17 +10,22 @@ import { createBar, GenericBar } from "features/bars/bar";
|
||||||
import { BoardNode, BoardNodeLink, createBoard, Shape } from "features/boards/board";
|
import { BoardNode, BoardNodeLink, createBoard, Shape } from "features/boards/board";
|
||||||
import { createClickable } from "features/clickables/clickable";
|
import { createClickable } from "features/clickables/clickable";
|
||||||
import { jsx } from "features/feature";
|
import { jsx } from "features/feature";
|
||||||
|
import { createMilestone } from "features/milestones/milestone";
|
||||||
import MainDisplay from "features/resources/MainDisplay.vue";
|
import MainDisplay from "features/resources/MainDisplay.vue";
|
||||||
import { createResource } from "features/resources/resource";
|
import { createResource } from "features/resources/resource";
|
||||||
import { createTab } from "features/tabs/tab";
|
import { createTab } from "features/tabs/tab";
|
||||||
import { createTabFamily } from "features/tabs/tabFamily";
|
import { createTabFamily } from "features/tabs/tabFamily";
|
||||||
import { globalBus } from "game/events";
|
import { globalBus } from "game/events";
|
||||||
import { BaseLayer, createLayer } from "game/layers";
|
import { BaseLayer, createLayer } from "game/layers";
|
||||||
import { createAdditiveModifier, createSequentialModifier } from "game/modifiers";
|
import {
|
||||||
|
createAdditiveModifier,
|
||||||
|
createMultiplicativeModifier,
|
||||||
|
createSequentialModifier
|
||||||
|
} from "game/modifiers";
|
||||||
import { persistent } from "game/persistence";
|
import { persistent } from "game/persistence";
|
||||||
import Decimal, { DecimalSource, format, formatWhole } from "util/bignum";
|
import Decimal, { DecimalSource, format, formatWhole } from "util/bignum";
|
||||||
import { Direction } from "util/common";
|
import { Direction } from "util/common";
|
||||||
import { render, renderRow } from "util/vue";
|
import { render, renderCol, renderRow } from "util/vue";
|
||||||
import { computed, ref, unref, watchEffect } from "vue";
|
import { computed, ref, unref, watchEffect } from "vue";
|
||||||
import "./styles/routing.css";
|
import "./styles/routing.css";
|
||||||
|
|
||||||
|
@ -403,6 +408,17 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
))
|
))
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
const milestone1 = createMilestone(() => ({
|
||||||
|
display: {
|
||||||
|
requirement: "1 City Solved",
|
||||||
|
effectDisplay: "Each city solved doubles manual and auto processing speed"
|
||||||
|
},
|
||||||
|
shouldEarn() {
|
||||||
|
return Decimal.gte(citiesCompleted.value, 2);
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
const milestones = { milestone1 };
|
||||||
|
|
||||||
const houses = createSequentialModifier(() => [
|
const houses = createSequentialModifier(() => [
|
||||||
createAdditiveModifier(() => ({
|
createAdditiveModifier(() => ({
|
||||||
addend: citiesCompleted,
|
addend: citiesCompleted,
|
||||||
|
@ -426,11 +442,23 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
const computedMinWeight = computed(() => minWeight.apply(2));
|
const computedMinWeight = computed(() => minWeight.apply(2));
|
||||||
const manualBoost = createSequentialModifier(() => []);
|
const manualBoost = createSequentialModifier(() => []);
|
||||||
const computedManualBoost = computed(() => manualBoost.apply(1));
|
const computedManualBoost = computed(() => manualBoost.apply(1));
|
||||||
const manualCooldown = createSequentialModifier(() => []);
|
const manualCooldown = createSequentialModifier(() => [
|
||||||
|
createMultiplicativeModifier(() => ({
|
||||||
|
multiplier: () => Decimal.pow(0.5, citiesCompleted.value),
|
||||||
|
description: "1 City Solved",
|
||||||
|
enabled: milestone1.earned
|
||||||
|
}))
|
||||||
|
]);
|
||||||
const computedManualCooldown = computed(() => manualCooldown.apply(1));
|
const computedManualCooldown = computed(() => manualCooldown.apply(1));
|
||||||
const redundantCooldown = createSequentialModifier(() => []);
|
const redundantCooldown = createSequentialModifier(() => []);
|
||||||
const computedRedundantCooldown = computed(() => redundantCooldown.apply(10));
|
const computedRedundantCooldown = computed(() => redundantCooldown.apply(10));
|
||||||
const autoProcessing = createSequentialModifier(() => []);
|
const autoProcessing = createSequentialModifier(() => [
|
||||||
|
createMultiplicativeModifier(() => ({
|
||||||
|
multiplier: () => Decimal.pow(2, citiesCompleted.value),
|
||||||
|
description: "1 City Solved",
|
||||||
|
enabled: milestone1.earned
|
||||||
|
}))
|
||||||
|
]);
|
||||||
const computedAutoProcessing = computed(() => autoProcessing.apply(1));
|
const computedAutoProcessing = computed(() => autoProcessing.apply(1));
|
||||||
|
|
||||||
const [generalTab, generalTabCollapsed] = createCollapsibleModifierSections(() => [
|
const [generalTab, generalTabCollapsed] = createCollapsibleModifierSections(() => [
|
||||||
|
@ -568,6 +596,12 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
</div>
|
</div>
|
||||||
))
|
))
|
||||||
}))
|
}))
|
||||||
|
}),
|
||||||
|
improvements: () => ({
|
||||||
|
display: "Improvements",
|
||||||
|
tab: createTab(() => ({
|
||||||
|
display: jsx(() => renderCol(...Object.values(milestones)))
|
||||||
|
}))
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
.routes-list {
|
.routes-list {
|
||||||
margin-top: 60px !important;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
|
@ -156,7 +156,7 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-family-container > :nth-child(2) {
|
.tab-family-container > :nth-child(2) {
|
||||||
margin-top: 20px;
|
margin-top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-body > .tab-family-container > :nth-child(2) {
|
.modal-body > .tab-family-container > :nth-child(2) {
|
||||||
|
|
Loading…
Reference in a new issue