Skip to content

Commit a58d957

Browse files
authored
refactor: slowly unravel manifests for items and recipes (#15)
1 parent a4a931b commit a58d957

33 files changed

Lines changed: 395 additions & 395 deletions

assets/items/coal.item.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
id = "coal"
2+
name = "Coal"
3+
stack_size = 100

assets/items/iron_ingot.item.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
id = "iron_ingot"
2+
name = "Iron Ingot"
3+
stack_size = 50

assets/items/iron_ore.item.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
id = "iron_ore"
2+
name = "Iron Ore"
3+
stack_size = 60

assets/items/iron_plate.item.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
id = "iron_plate"
2+
name = "Iron Plate"
3+
stack_size = 30

assets/manifest/items.toml

Lines changed: 0 additions & 27 deletions
This file was deleted.

assets/manifest/recipes.toml

Lines changed: 0 additions & 27 deletions
This file was deleted.

assets/manifest/structures.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ power.sockets = 4
1515

1616
[constructor]
1717
name = "Constructor"
18-
recipe.default_recipe = "iron_plates"
18+
recipe.default_recipe = "iron_plate"
1919
power.consumption = 15
2020
conveyor_holes = [
2121
{ direction = "inbound", translation = [-18, -12, 10] },

assets/recipes/coal.recipe.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
id = "coal"
2+
name = "Coal"
3+
output.coal = 1
4+
duration = "1s"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
id = "iron_ore"
2+
name = "Iron Ore"
3+
output.iron_ore = 1
4+
duration = "1s"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
id = "iron_plate"
2+
name = "Iron Plate"
3+
input.iron_ingot = 30
4+
output.iron_plate = 15
5+
duration = "30s"
6+
tags = [
7+
{ kind = "structure_id", value = "constructor" },
8+
]

0 commit comments

Comments
 (0)