From 8ee8982b8759bcae116647cc993867f4c8b0a6ce Mon Sep 17 00:00:00 2001 From: workhorse Date: Fri, 19 Jun 2026 20:24:52 -0400 Subject: reorganized items, objects, and rooms in directories. oranized module names. added startup checks. --- worldbuilding_guide/items.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'worldbuilding_guide/items.md') 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. -- cgit v1.2.3