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/construction.md | |
| parent | 3a58125d14bb307f861b38c6c5b0a63babde7e08 (diff) | |
| download | thehouseoficarus-0ea4eec5dd2122c6704216971eb1249276297867.tar.gz | |
shop fixes, 'toggle' completely removed, movement speed increased
Diffstat (limited to 'worldbuilding_guide/construction.md')
| -rw-r--r-- | worldbuilding_guide/construction.md | 25 |
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 | |
