blob: e79ee1bed65eaf14a28346cce0c5b71ec942bcd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
## 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.
|