diff options
Diffstat (limited to 'worldbuilding_guide/wandering_objects.md')
| -rw-r--r-- | worldbuilding_guide/wandering_objects.md | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/worldbuilding_guide/wandering_objects.md b/worldbuilding_guide/wandering_objects.md index 9a47ed2..f1f91c5 100644 --- a/worldbuilding_guide/wandering_objects.md +++ b/worldbuilding_guide/wandering_objects.md @@ -5,7 +5,23 @@ Fishing spots that move between rooms: # data/objects/fishing_spot.yaml id: fishing_spot name: fishing spot -behavior: fish_trout +gather: + skill: fishing + level: 1 + xp: 10 + base_wait: 4 + 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 + weight: 100 + message: "You catch a raw trout!" ``` ```yaml |
