aboutsummaryrefslogtreecommitdiff
path: root/worldbuilding_guide/construction.md
diff options
context:
space:
mode:
Diffstat (limited to 'worldbuilding_guide/construction.md')
-rw-r--r--worldbuilding_guide/construction.md25
1 files changed, 20 insertions, 5 deletions
diff --git a/worldbuilding_guide/construction.md b/worldbuilding_guide/construction.md
index 799057a..d4ba840 100644
--- a/worldbuilding_guide/construction.md
+++ b/worldbuilding_guide/construction.md
@@ -125,7 +125,24 @@ Located in room 16 (Construction Site). Talk behavior sells a house plot for 10
```yaml
id: estate_broker
name: estate broker
-behavior: estate_broker_talk
+talk:
+ nodes:
+ start:
+ message: "\"Interested in a house?\""
+ options:
+ - text: "\"How much?\""
+ goto: offer
+ - text: "\"No thanks.\""
+ end: true
+ offer:
+ message: "\"10 credits for a plot.\""
+ action:
+ cost: 10
+ set_player_flags:
+ owns_house_local_neighborhood: "local_neighborhood"
+ options:
+ - text: "\"Deal!\""
+ end: true
unique: true
```
@@ -196,10 +213,8 @@ This enables automatic support through the unified production system (`advancePr
| `data/items/planks.yaml` - `mahogany_planks.yaml` | Plank items (4 tiers) |
| `data/items/wooden_shelf.yaml` - `mahogany_table.yaml` | Furniture items (7 items) |
| `data/recipes/construct_planks.yaml` - `construct_mahogany_table.yaml` | Construction recipes (11 recipes) |
-| `data/mobs/estate_broker.yaml` | Estate broker mob |
-| `data/mobs/sawmill_operator.yaml` | Sawmill operator mob |
-| `data/behaviors/estate_broker_talk.yaml` | Broker talk behavior |
-| `data/behaviors/sawmill_operator_talk.yaml` | Sawmill operator talk behavior |
+| `data/mobs/estate_broker.yaml` | Estate broker mob (talk inline) |
+| `data/mobs/sawmill_operator.yaml` | Sawmill operator mob (talk inline) |
| `data/rooms/16.yaml` | Construction Site (updated) |
| `data/rooms/170.yaml` | Local Neighborhood |
| `data/rooms/171.yaml` | Lumberyard |