aboutsummaryrefslogtreecommitdiff
path: root/worldbuilding_guide/rooms.md
diff options
context:
space:
mode:
authorworkhorse <workhorse@localhost.localdomain>2026-06-19 20:24:52 -0400
committerworkhorse <workhorse@localhost.localdomain>2026-06-19 20:24:52 -0400
commit8ee8982b8759bcae116647cc993867f4c8b0a6ce (patch)
treeee01f7b1d745cbc94d9981108a1209527487b3e5 /worldbuilding_guide/rooms.md
parent2bec24859af8f03c80a0a58e3240519942450167 (diff)
downloadthehouseoficarus-8ee8982b8759bcae116647cc993867f4c8b0a6ce.tar.gz
reorganized items, objects, and rooms in directories. oranized module names. added startup checks.
Diffstat (limited to 'worldbuilding_guide/rooms.md')
-rw-r--r--worldbuilding_guide/rooms.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/worldbuilding_guide/rooms.md b/worldbuilding_guide/rooms.md
index f6e74ea..3d6db7d 100644
--- a/worldbuilding_guide/rooms.md
+++ b/worldbuilding_guide/rooms.md
@@ -67,14 +67,14 @@ exits:
blocked_message: "The bridge is out, and the toll collector blocks the path."
```
-### Spawns — ground items that respawn
+### Item Spawns — ground items that respawn
```yaml
-spawns:
- - item_id: bronze_pickaxe
+item_spawns:
+ - id: bronze_pickaxe
quantity: 1
respawn_ticks: 30 # reappears 30 ticks (18 seconds) after being picked up
- - item_id: copper_ore
+ - id: copper_ore
quantity: 3
respawn_ticks: 50
```