From 0ea4eec5dd2122c6704216971eb1249276297867 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 19 Jun 2026 18:20:26 -0400 Subject: shop fixes, 'toggle' completely removed, movement speed increased --- worldbuilding_guide/mobs.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'worldbuilding_guide/mobs.md') diff --git a/worldbuilding_guide/mobs.md b/worldbuilding_guide/mobs.md index 3826dda..70afa6a 100644 --- a/worldbuilding_guide/mobs.md +++ b/worldbuilding_guide/mobs.md @@ -74,13 +74,19 @@ ranged_defense: 3 ### Protected/Unique Mobs -Mob with a behavior — can be talked to, toggled, etc: +Mob with talk behavior — can be talked to via `talk:` inline config: ```yaml id: "guard" name: "Guard" -behavior: guard_talk # links to data/behaviors/guard_talk.yaml -unique: true # displays as "Guard" not "a guard" -protected: true # cannot be attacked +talk: # inline talk config (no separate behavior file) + nodes: + start: + message: "\"Halt! Who goes there?\"" + options: + - text: "\"Just passing through.\"" + end: true +unique: true # displays as "Guard" not "a guard" +protected: true # cannot be attacked attack: 5 strength: 5 defense: 5 -- cgit v1.2.3