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 /data/behaviors/tool_shed_talk.yaml | |
| parent | 3a58125d14bb307f861b38c6c5b0a63babde7e08 (diff) | |
| download | thehouseoficarus-0ea4eec5dd2122c6704216971eb1249276297867.tar.gz | |
shop fixes, 'toggle' completely removed, movement speed increased
Diffstat (limited to 'data/behaviors/tool_shed_talk.yaml')
| -rw-r--r-- | data/behaviors/tool_shed_talk.yaml | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/data/behaviors/tool_shed_talk.yaml b/data/behaviors/tool_shed_talk.yaml deleted file mode 100644 index 87db9fa..0000000 --- a/data/behaviors/tool_shed_talk.yaml +++ /dev/null @@ -1,86 +0,0 @@ -id: tool_shed_talk -type: talk -nodes: - start: - message: "The tool shed is open. What would you like to do?" - options: - - text: "Store rake" - goto: store_rake - condition: - has_item: rake - - text: "Store spade" - goto: store_spade - condition: - has_item: spade - - text: "Store watering can" - goto: store_watering_can - condition: - has_item: watering_can - - text: "Retrieve rake" - goto: retrieve_rake - condition: - player_flag: tool_shed_rake - - text: "Retrieve spade" - goto: retrieve_spade - condition: - player_flag: tool_shed_spade - - text: "Retrieve watering can" - goto: retrieve_watering_can - condition: - player_flag: tool_shed_watering_can - - text: "Never mind" - end: true - store_rake: - message: "You store the rake in the tool shed." - action: - take_item: rake - set_player_flags: - tool_shed_rake: true - options: - - text: "Continue" - goto: start - store_spade: - message: "You store the spade in the tool shed." - action: - take_item: spade - set_player_flags: - tool_shed_spade: true - options: - - text: "Continue" - goto: start - store_watering_can: - message: "You store the watering can in the tool shed." - action: - take_item: watering_can - set_player_flags: - tool_shed_watering_can: true - options: - - text: "Continue" - goto: start - retrieve_rake: - message: "You retrieve the rake from the tool shed." - action: - give_item: rake - set_player_flags: - tool_shed_rake: false - options: - - text: "Continue" - goto: start - retrieve_spade: - message: "You retrieve the spade from the tool shed." - action: - give_item: spade - set_player_flags: - tool_shed_spade: false - options: - - text: "Continue" - goto: start - retrieve_watering_can: - message: "You retrieve the watering can from the tool shed." - action: - give_item: watering_can - set_player_flags: - tool_shed_watering_can: false - options: - - text: "Continue" - goto: start |
