From 52a3ce6a4b4a254dc5d3067979a09e93c060fa20 Mon Sep 17 00:00:00 2001 From: workhorse Date: Fri, 19 Jun 2026 03:57:06 -0400 Subject: feat: shops and rough assassin skill --- data/behaviors/general_store.yaml | 49 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 data/behaviors/general_store.yaml (limited to 'data/behaviors/general_store.yaml') 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 -- cgit v1.2.3