mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-24 09:21:48 +00:00
change seconds to tick
This commit is contained in:
parent
55e3c07e2c
commit
e8124b94c3
1 changed files with 11 additions and 11 deletions
|
@ -267,7 +267,7 @@ const factory = createLayer(id, () => {
|
||||||
key: "1",
|
key: "1",
|
||||||
name: "Wood Machine",
|
name: "Wood Machine",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Produces 1 wood every 1 second.",
|
description: "Produces 1 wood per tick.",
|
||||||
energyCost: 10,
|
energyCost: 10,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
outputs: {
|
outputs: {
|
||||||
|
@ -282,7 +282,7 @@ const factory = createLayer(id, () => {
|
||||||
key: "2",
|
key: "2",
|
||||||
name: "Cloth Machine",
|
name: "Cloth Machine",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Produces 1 cloth every 1 second.",
|
description: "Produces 1 cloth per tick.",
|
||||||
energyCost: 10,
|
energyCost: 10,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
outputs: {
|
outputs: {
|
||||||
|
@ -297,7 +297,7 @@ const factory = createLayer(id, () => {
|
||||||
key: "3",
|
key: "3",
|
||||||
name: "Dye Machine",
|
name: "Dye Machine",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Produces 1 dye every 1 second.",
|
description: "Produces 1 dye per tick.",
|
||||||
energyCost: 10,
|
energyCost: 10,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
outputs: {
|
outputs: {
|
||||||
|
@ -312,7 +312,7 @@ const factory = createLayer(id, () => {
|
||||||
key: "4",
|
key: "4",
|
||||||
name: "Metal Machine",
|
name: "Metal Machine",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Produces 1 metal every 1 second.",
|
description: "Produces 1 metal per tick.",
|
||||||
energyCost: 10,
|
energyCost: 10,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
outputs: {
|
outputs: {
|
||||||
|
@ -327,7 +327,7 @@ const factory = createLayer(id, () => {
|
||||||
key: "5",
|
key: "5",
|
||||||
name: "Plastic Machine",
|
name: "Plastic Machine",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Produces 1 plastic every 1 second.",
|
description: "Produces 1 plastic per tick.",
|
||||||
energyCost: 10,
|
energyCost: 10,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
outputs: {
|
outputs: {
|
||||||
|
@ -341,7 +341,7 @@ const factory = createLayer(id, () => {
|
||||||
key: "shift+1",
|
key: "shift+1",
|
||||||
name: "Sawmill",
|
name: "Sawmill",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Turns 1 wood into 1 plank every second.",
|
description: "Turns 1 wood into 1 plank per tick.",
|
||||||
energyCost: 2,
|
energyCost: 2,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
inputs: {
|
inputs: {
|
||||||
|
@ -360,7 +360,7 @@ const factory = createLayer(id, () => {
|
||||||
key: "shift+2",
|
key: "shift+2",
|
||||||
name: "Thread Spinner",
|
name: "Thread Spinner",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Turns 1 cloth into 1 thread every second.",
|
description: "Turns 1 cloth into 1 thread per tick.",
|
||||||
energyCost: 2,
|
energyCost: 2,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
inputs: {
|
inputs: {
|
||||||
|
@ -384,7 +384,7 @@ const factory = createLayer(id, () => {
|
||||||
() =>
|
() =>
|
||||||
`Turns 1 plastic into ${
|
`Turns 1 plastic into ${
|
||||||
toys.milestones.milestone5.earned.value ? "2 wheels" : "1 wheel"
|
toys.milestones.milestone5.earned.value ? "2 wheels" : "1 wheel"
|
||||||
} every second.`
|
} per tick.`
|
||||||
),
|
),
|
||||||
energyCost: 2,
|
energyCost: 2,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
|
@ -404,7 +404,7 @@ const factory = createLayer(id, () => {
|
||||||
key: "ctrl+shift+1",
|
key: "ctrl+shift+1",
|
||||||
name: "Wooden Block Maker",
|
name: "Wooden Block Maker",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Turns 1 plank into 1 wooden block every second.",
|
description: "Turns 1 plank into 1 wooden block per tick.",
|
||||||
energyCost: 20,
|
energyCost: 20,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
inputs: {
|
inputs: {
|
||||||
|
@ -424,7 +424,7 @@ const factory = createLayer(id, () => {
|
||||||
key: "ctrl+shift+2",
|
key: "ctrl+shift+2",
|
||||||
name: "Clothes Maker",
|
name: "Clothes Maker",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Turns 2 threads, 3 cloth, and 1 dye into 1 clothes every second.",
|
description: "Turns 2 threads, 3 cloth, and 1 dye into 1 clothes per tick.",
|
||||||
energyCost: 20,
|
energyCost: 20,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
inputs: {
|
inputs: {
|
||||||
|
@ -450,7 +450,7 @@ const factory = createLayer(id, () => {
|
||||||
key: "ctrl+shift+3",
|
key: "ctrl+shift+3",
|
||||||
name: "Trucks Maker",
|
name: "Trucks Maker",
|
||||||
type: "processor",
|
type: "processor",
|
||||||
description: "Turns 2 metal and 4 wheels into 1 truck every second.",
|
description: "Turns 2 metal and 4 wheels into 1 truck per tick.",
|
||||||
energyCost: 20,
|
energyCost: 20,
|
||||||
tick: 1,
|
tick: 1,
|
||||||
inputs: {
|
inputs: {
|
||||||
|
|
Loading…
Reference in a new issue