diff options
Diffstat (limited to 'worldbuilding_guide/items.md')
| -rw-r--r-- | worldbuilding_guide/items.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/worldbuilding_guide/items.md b/worldbuilding_guide/items.md index a1ca8c1..2e36349 100644 --- a/worldbuilding_guide/items.md +++ b/worldbuilding_guide/items.md @@ -149,10 +149,10 @@ color: "222" ticks: 2 made_from: - items: [pot_of_flour] - qty: 1 + quantity: 1 byproducts: [empty_pot] - items: [bucket_of_water, pitcher_of_water] - qty: 1 + quantity: 1 byproducts: [empty_bucket, empty_pitcher] ``` @@ -169,10 +169,10 @@ Use `""` for items that produce no byproduct: ```yaml made_from: - items: [pot_of_flour, loose_flour] - qty: 1 + quantity: 1 byproducts: [empty_pot, ""] # pot returns empty_pot, loose flour returns nothing - items: [bucket_of_water] - qty: 1 + quantity: 1 byproducts: [empty_bucket] ``` @@ -181,10 +181,10 @@ Omit `byproducts` entirely if no items in that slot produce a byproduct: ```yaml made_from: - items: [pot_of_flour] - qty: 1 + quantity: 1 byproducts: [empty_pot] # returns empty_pot - items: [salt] - qty: 1 # no byproducts field — salt is consumed entirely + quantity: 1 # no byproducts field — salt is consumed entirely ``` See also `recipes.md` for station-based recipes. |
