aboutsummaryrefslogtreecommitdiff
path: root/building_guide/wandering_objects.md
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-09 16:09:35 -0400
committerhistoria <[not public]>2026-07-09 16:09:35 -0400
commitb8c90886ef1f3afb8d908aac89028bd177836cae (patch)
tree7e566a7e308e7531bbb7d6a3a39239e789f69a3c /building_guide/wandering_objects.md
parentc705ae942573984784ef501bf8198f61f5206ddd (diff)
downloadthehouseoficarus-b8c90886ef1f3afb8d908aac89028bd177836cae.tar.gz
feat(admin): multi-select with shift+drag for common bulk operations
Diffstat (limited to 'building_guide/wandering_objects.md')
-rw-r--r--building_guide/wandering_objects.md37
1 files changed, 0 insertions, 37 deletions
diff --git a/building_guide/wandering_objects.md b/building_guide/wandering_objects.md
deleted file mode 100644
index a106a0c..0000000
--- a/building_guide/wandering_objects.md
+++ /dev/null
@@ -1,37 +0,0 @@
-## Wandering Objects
-
-Fishing spots that move between rooms (**the filename is the ID** — `fishing_spot.yaml` → `fishing_spot`, no `id:` field):
-```yaml
-# data/objects/fishing_spot.yaml
-name: fishing spot
-gather:
- skill: fishing
- tools:
- - fishing_rod
- bait: fishing_bait
- success:
- base: 0.30
- per_level: 0.01
- cap: 0.90
- gather_message: "You cast your line into the water..."
- drops:
- - item_id: raw_trout
- level: 5
- xp: 20
- weight: 100
- message: "You catch a raw trout!"
-```
-
-```yaml
-# In a room:
-objects:
- - id: fishing_spot
- wander_rooms: [7, 8, 9]
- wander_interval: 12
-```
-
-Objects teleport between rooms in their `wander_rooms` list. Players gathering from a
-wandering object are silently interrupted when it moves.
-
----
-