aboutsummaryrefslogtreecommitdiff
path: root/data/behaviors/sawmill_operator_talk.yaml
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-19 13:28:06 -0400
committerhistoria <[not public]>2026-06-19 13:28:06 -0400
commit3a58125d14bb307f861b38c6c5b0a63babde7e08 (patch)
treebd89e866447d55e6dffd447d8ef5fabf9b8fbe9d /data/behaviors/sawmill_operator_talk.yaml
parent575a71dcfed3b9fa44af244836f638a23df05a9a (diff)
downloadthehouseoficarus-3a58125d14bb307f861b38c6c5b0a63babde7e08.tar.gz
feat: all skills kind of implemented, random prototype content added
Diffstat (limited to 'data/behaviors/sawmill_operator_talk.yaml')
-rw-r--r--data/behaviors/sawmill_operator_talk.yaml37
1 files changed, 37 insertions, 0 deletions
diff --git a/data/behaviors/sawmill_operator_talk.yaml b/data/behaviors/sawmill_operator_talk.yaml
new file mode 100644
index 0000000..338ee61
--- /dev/null
+++ b/data/behaviors/sawmill_operator_talk.yaml
@@ -0,0 +1,37 @@
+id: sawmill_operator_talk
+type: talk
+nodes:
+ start:
+ message: "Welcome to the lumberyard! I can turn your logs into planks — for a small fee, of course. What can I do for ya?"
+ options:
+ - text: "Turn all my logs into planks."
+ condition:
+ any_of:
+ - has_item: logs
+ - has_item: oak_logs
+ - has_item: teak_logs
+ - has_item: mahogany_logs
+ next: prices
+ - text: "What are your prices?"
+ next: prices
+ - text: "Nothing for now."
+ next: goodbye
+ prices:
+ message: "Here's what I charge per log:\n Regular logs: 5 credits\n Oak logs: 10 credits\n Teak logs: 20 credits\n Mahogany logs: 40 credits\n\nWant me to process your logs?"
+ options:
+ - text: "Yes, process all my logs."
+ condition:
+ any_of:
+ - has_item: logs
+ - has_item: oak_logs
+ - has_item: teak_logs
+ - has_item: mahogany_logs
+ next: process
+ - text: "No thanks."
+ next: goodbye
+ process:
+ message: ""
+ action:
+ sawmill: true
+ goodbye:
+ message: "Come back anytime you need more planks!"