mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-24 17:31:54 +00:00
set goal to 750
This commit is contained in:
parent
57d7b71188
commit
613c1342ed
1 changed files with 6 additions and 3 deletions
|
@ -65,7 +65,7 @@ const id = "factory";
|
||||||
// what is the actual day?
|
// what is the actual day?
|
||||||
const day = 18;
|
const day = 18;
|
||||||
|
|
||||||
const toyGoal = 1e3;
|
const toyGoal = 750;
|
||||||
|
|
||||||
// 20x20 block size
|
// 20x20 block size
|
||||||
// TODO: unhardcode stuff
|
// TODO: unhardcode stuff
|
||||||
|
@ -413,12 +413,15 @@ const factory = createLayer(id, () => {
|
||||||
key: "ctrl+shift+2",
|
key: "ctrl+shift+2",
|
||||||
name: "Clothes Maker",
|
name: "Clothes Maker",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Turns 5 thread and 1 dye into 1 clothes every second.",
|
description: "Turns 2 threads, 3 cloth, and 1 dye into 1 clothes every second.",
|
||||||
energyCost: 20,
|
energyCost: 20,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
inputs: {
|
inputs: {
|
||||||
thread: {
|
thread: {
|
||||||
amount: 5
|
amount: 2
|
||||||
|
},
|
||||||
|
cloth: {
|
||||||
|
amount: 3,
|
||||||
},
|
},
|
||||||
dye: {
|
dye: {
|
||||||
amount: 1
|
amount: 1
|
||||||
|
|
Loading…
Reference in a new issue