mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-03-14 01:51:40 +00:00
Balancing
This commit is contained in:
parent
e047d1f672
commit
0e8d63557b
2 changed files with 12 additions and 5 deletions
|
@ -686,8 +686,12 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
<Spacer />
|
||||
{masteryEffectActive.value ? (
|
||||
<>
|
||||
Decoration effect: Performing any action performs all actions and spinning
|
||||
doesn't spend wool
|
||||
<div class="decoration-effect">
|
||||
Decoration effect:
|
||||
<br />
|
||||
Performing any action performs all actions and spinning doesn't spend
|
||||
wool
|
||||
</div>
|
||||
<Spacer />
|
||||
</>
|
||||
) : null}
|
||||
|
|
|
@ -5,6 +5,7 @@ import { createBar, GenericBar } from "features/bars/bar";
|
|||
import { createClickable } from "features/clickables/clickable";
|
||||
import { jsx, showIf } from "features/feature";
|
||||
import { createMilestone } from "features/milestones/milestone";
|
||||
import MainDisplay from "features/resources/MainDisplay.vue";
|
||||
import { createResource } from "features/resources/resource";
|
||||
import { globalBus } from "game/events";
|
||||
import { createLayer, layers } from "game/layers";
|
||||
|
@ -31,10 +32,11 @@ const layer = createLayer(id, () => {
|
|||
const ribbon = createResource<DecimalSource>(0, "Ribbon");
|
||||
|
||||
const currentDyeCost = computed(() =>
|
||||
Decimal.pow(10, ribbon.value).times(
|
||||
Decimal.times(
|
||||
ribbon.value,
|
||||
[dyes.dyes.orange, dyes.dyes.green, dyes.dyes.purple].includes(currentDyeType.value)
|
||||
? 1e3
|
||||
: 1e9
|
||||
? 2e6
|
||||
: 1e13
|
||||
)
|
||||
);
|
||||
const currentDyeType = computed(
|
||||
|
@ -260,6 +262,7 @@ const layer = createLayer(id, () => {
|
|||
{render(dayProgress)}
|
||||
{render(modifiersModal)}
|
||||
<Spacer />
|
||||
<MainDisplay resource={ribbon} color={color} />
|
||||
{render(makeRibbon)}
|
||||
<Spacer />
|
||||
{render(enterMasteryButton)}
|
||||
|
|
Loading…
Add table
Reference in a new issue