aboutsummaryrefslogtreecommitdiff
path: root/data/behaviors/general_store.yaml
diff options
context:
space:
mode:
authorworkhorse <workhorse@localhost.localdomain>2026-06-19 03:57:06 -0400
committerworkhorse <workhorse@localhost.localdomain>2026-06-19 03:57:06 -0400
commit52a3ce6a4b4a254dc5d3067979a09e93c060fa20 (patch)
tree167c62990013733bc8669c1387078bc86ea48db5 /data/behaviors/general_store.yaml
parentfbd1c30d7b9777c9df6653f0c393afa7a7dfa519 (diff)
downloadthehouseoficarus-52a3ce6a4b4a254dc5d3067979a09e93c060fa20.tar.gz
feat: shops and rough assassin skill
Diffstat (limited to 'data/behaviors/general_store.yaml')
-rw-r--r--data/behaviors/general_store.yaml49
1 files changed, 49 insertions, 0 deletions
diff --git a/data/behaviors/general_store.yaml b/data/behaviors/general_store.yaml
new file mode 100644
index 0000000..657e842
--- /dev/null
+++ b/data/behaviors/general_store.yaml
@@ -0,0 +1,49 @@
+id: general_store
+type: talk
+nodes:
+ start:
+ message: "\"Welcome to the General Store! Need any supplies?\""
+ options:
+ - text: "\"I'd like to browse.\""
+ goto: shop
+ - text: "\"Goodbye.\""
+ end: true
+ shop:
+ message: "\"Take your time. What can I get you?\""
+ action:
+ shop:
+ message: "What would you like to buy or sell?"
+ items:
+ - item_id: fishing_rod
+ buy_price: 10
+ sell_price: 2
+ - item_id: fishing_bait
+ buy_price: 2
+ sell_price: 0
+ - item_id: matches
+ buy_price: 10
+ sell_price: 2
+ - item_id: firesteel
+ buy_price: 40
+ sell_price: 10
+ - item_id: lighter
+ buy_price: 30
+ sell_price: 7
+ - item_id: hammer
+ buy_price: 20
+ sell_price: 5
+ - item_id: knife
+ buy_price: 10
+ sell_price: 2
+ - item_id: chisel
+ buy_price: 10
+ sell_price: 2
+ - item_id: bread
+ buy_price: 10
+ sell_price: 2
+ - item_id: bowstring
+ buy_price: 20
+ sell_price: 5
+ options:
+ - text: "\"I'm done.\""
+ goto: start