diff options
| author | historia <[not public]> | 2026-06-19 18:20:26 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-19 18:20:26 -0400 |
| commit | 0ea4eec5dd2122c6704216971eb1249276297867 (patch) | |
| tree | 430fbbef04e837820f1d031c190f52ecd6112e25 /worldbuilding_guide/mobs.md | |
| parent | 3a58125d14bb307f861b38c6c5b0a63babde7e08 (diff) | |
| download | thehouseoficarus-0ea4eec5dd2122c6704216971eb1249276297867.tar.gz | |
shop fixes, 'toggle' completely removed, movement speed increased
Diffstat (limited to 'worldbuilding_guide/mobs.md')
| -rw-r--r-- | worldbuilding_guide/mobs.md | 14 |
1 files changed, 10 insertions, 4 deletions
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 |
