aboutsummaryrefslogtreecommitdiff
path: root/data/behaviors/weapons_shop.yaml
blob: d12a4e69b28be373315a5d8a1187b9be23e4b55a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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