mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +00:00
upg row 2 effects
This commit is contained in:
parent
e462a2ae61
commit
59d5c46b74
1 changed files with 4 additions and 4 deletions
|
@ -357,7 +357,7 @@ const factory = createLayer(id, () => {
|
||||||
tick: 1,
|
tick: 1,
|
||||||
outputs: {
|
outputs: {
|
||||||
dye: {
|
dye: {
|
||||||
amount: 1
|
amount: computed(() => (upgrades[1][1].bought.value ? 4 : 1))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} as FactoryComponentDeclaration,
|
} as FactoryComponentDeclaration,
|
||||||
|
@ -387,7 +387,7 @@ const factory = createLayer(id, () => {
|
||||||
tick: 1,
|
tick: 1,
|
||||||
outputs: {
|
outputs: {
|
||||||
plastic: {
|
plastic: {
|
||||||
amount: 1
|
amount: computed(() => (upgrades[1][2].bought.value ? 4 : 1))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} as FactoryComponentDeclaration,
|
} as FactoryComponentDeclaration,
|
||||||
|
@ -572,7 +572,7 @@ const factory = createLayer(id, () => {
|
||||||
},
|
},
|
||||||
outputs: {
|
outputs: {
|
||||||
block: {
|
block: {
|
||||||
amount: 1,
|
amount: computed(() => (upgrades[1][0].bought.value ? 3 : 1)),
|
||||||
resource: toys.woodenBlocks
|
resource: toys.woodenBlocks
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -703,7 +703,7 @@ const factory = createLayer(id, () => {
|
||||||
},
|
},
|
||||||
outputs: {
|
outputs: {
|
||||||
console: {
|
console: {
|
||||||
amount: 1,
|
amount: computed(() => (upgrades[1][1].bought.value ? 3 : 1)),
|
||||||
resource: consoles
|
resource: consoles
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue