swords_shop.yml

guis:
  swordsShop:
    displayname: '&a&lSwords Shop'
    size: 54
    empty_slots:
      id: 3
      material: STAINED_GLASS_PANE
    slots:
      10:
        material: WOOD_SWORD
        displayname: '&aWooden sword'
        price: 10
        click_action:
          type: BUY_ITEM
          run_action:
            - ''
          items:
            WOOD_SWORD:
              amount: 1
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'
      12:
        material: STONE_SWORD
        displayname: '&aStone sword'
        price: 30
        click_action:
          type: BUY_ITEM
          run_action:
            - ''
          items:
            STONE_SWORD:
              amount: 1
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'
      14:
        material: IRON_SWORD
        displayname: '&aIron sword'
        price: 50
        click_action:
          type: BUY_ITEM
          run_action:
            - ''
          items:
            IRON_SWORD:
              amount: 1
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'
      16:
        material: DIAMOND_SWORD
        displayname: '&aDiamond sword'
        price: 100
        click_action:
          type: BUY_ITEM
          run_action:
            - ''
          items:
            DIAMOND_SWORD:
              amount: 1
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'
      28:
        material: ENCHANTED_BOOK
        displayname: '&aUnbreaking I'
        price: 25
        click_action:
          type: BUY_SWORD_ENCHANT
          run_action:
            - 'DURABILITY;1'
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'
      29:
        material: ENCHANTED_BOOK
        displayname: '&aUnbreaking II'
        price: 35
        click_action:
          type: BUY_SWORD_ENCHANT
          run_action:
            - 'DURABILITY;2'
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'
      30:
        material: ENCHANTED_BOOK
        displayname: '&aSharpness I'
        price: 20
        click_action:
          type: BUY_SWORD_ENCHANT
          run_action:
            - 'DAMAGE_ALL;1'
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'
      31:
        material: ENCHANTED_BOOK
        displayname: '&aSharpness III'
        price: 40
        click_action:
          type: BUY_SWORD_ENCHANT
          run_action:
            - 'DAMAGE_ALL;3'
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'
      32:
        material: ENCHANTED_BOOK
        displayname: '&aSharpness V'
        price: 80
        click_action:
          type: BUY_SWORD_ENCHANT
          run_action:
            - 'DAMAGE_ALL;5'
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'
      33:
        material: ENCHANTED_BOOK
        displayname: '&aFire aspect I'
        price: 100
        click_action:
          type: BUY_SWORD_ENCHANT
          run_action:
            - 'FIRE_ASPECT;1'
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'
      34:
        material: ENCHANTED_BOOK
        displayname: '&aFire aspect II'
        price: 150
        click_action:
          type: BUY_SWORD_ENCHANT
          run_action:
            - 'FIRE_ASPECT;2'
        lore:
          - '&7Price: &a{PRICE} &7coins'
          - '&7Right click to buy item'

Last updated