aboutsummaryrefslogtreecommitdiff
path: root/worldbuilding_guide/index.md
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-24 20:58:25 -0400
committerhistoria <[not public]>2026-06-24 20:58:25 -0400
commit9d4b799db4868bcab291b83599ff088763cd4ed6 (patch)
tree252f0fcc779acf35243983d643d6399ee2e0cd0b /worldbuilding_guide/index.md
parentd25638d98fe63efdeab570ef77e6a6a97f2d7a60 (diff)
downloadthehouseoficarus-9d4b799db4868bcab291b83599ff088763cd4ed6.tar.gz
feat: new type of non-violent 'combat': work
Diffstat (limited to 'worldbuilding_guide/index.md')
-rw-r--r--worldbuilding_guide/index.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/worldbuilding_guide/index.md b/worldbuilding_guide/index.md
deleted file mode 100644
index e79ee1b..0000000
--- a/worldbuilding_guide/index.md
+++ /dev/null
@@ -1,17 +0,0 @@
-## Quick Reference
-
-| What you want | Where to put it |
-|---|---|
-| A room | `data/rooms/<id>.yaml` |
-| An item (sword, ore, key) | `data/items/<id>.yaml` |
-| A mob (NPC, monster) | `data/mobs/<id>.yaml` |
-| An interactive object (rock, lever, door) | `data/objects/<id>.yaml` |
-| A shared drop table | `data/drops/<id>.yaml` |
-| A crafting recipe | In the output item's YAML under a `craft:` block |
-| A help topic | `data/help/<id>.yaml` |
-| A science module | `data/modules/<id>.yaml` |
-| An agility course | `data/courses/<id>.yaml` |
-| A player house | `data/rooms/player_housing/<id>.yaml` |
-
-Behaviors (gather, talk, use) are defined **inline** in object and mob YAML
-under `gather:`, `talk:`, or `use:` keys. There is no separate behavior directory.