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/weapons_shop.yaml | 43 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 data/behaviors/weapons_shop.yaml (limited to 'data/behaviors/weapons_shop.yaml') diff --git a/data/behaviors/weapons_shop.yaml b/data/behaviors/weapons_shop.yaml new file mode 100644 index 0000000..d12a4e6 --- /dev/null +++ b/data/behaviors/weapons_shop.yaml @@ -0,0 +1,43 @@ +id: weapons_shop +type: talk +nodes: + start: + message: "\"Welcome to the Smithy! Finest weapons and armor on the asteroid.\"" + options: + - text: "\"Show me what you've got.\"" + goto: shop + - text: "\"Nothing right now.\"" + end: true + shop: + message: "\"Here's the current inventory. All quality guaranteed.\"" + action: + shop: + message: "The Smithy — buy or sell weapons and armor." + items: + - item_id: bronze_sword + buy_price: 25 + sell_price: 6 + - item_id: iron_sword + buy_price: 60 + sell_price: 15 + - item_id: bronze_axe + buy_price: 20 + sell_price: 5 + - item_id: iron_axe + buy_price: 50 + sell_price: 12 + - item_id: bronze_pickaxe + buy_price: 20 + sell_price: 5 + - item_id: iron_pickaxe + buy_price: 50 + sell_price: 12 + - item_id: bronze_med_helm + buy_price: 16 + sell_price: 4 + - item_id: iron_med_helm + buy_price: 40 + sell_price: 10 + options: + - text: "\"That's all for now.\"" + goto: start \ No newline at end of file -- cgit v1.2.3