Advertisement
Guest User

TokenStore

a guest
Oct 20th, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.19 KB | None | 0 0
  1. #
  2. # Slots go from 1 - 52 starting in the top left corner of the Inventory
  3. # All Materials can be found under http://jd.bukkit.org/rb/apidocs/org/bukkit/Material.html , Spaces have to be replaced by an underscore _
  4. # Colors can be found under http://jd.bukkit.org/rb/apidocs/org/bukkit/ChatColor.html
  5. # Enchantments can be found under http://jd.bukkit.org/rb/apidocs/org/bukkit/enchantments/Enchantment.html
  6. # Data can be found under http://www.minecraftwiki.net/wiki/Data_values
  7. shopName: Megashop
  8. shopNameColor: GRAY
  9. tokenName: Token
  10. tokenNameColor: GOLD
  11. tokenDropChance: 1
  12. signName: MegaShop
  13. itemlist:
  14. - Chestplate of Secrets
  15. - Golden Apple of Wisdom
  16. - Chestplate of Oblivion
  17. - Chestplate of Oblivion
  18. - Leggings of Oblivion
  19. - Boots of Oblivion
  20. - The Helmet Of Thorin
  21. items:
  22.   Golden Apple of Wisdom:
  23.     Permission: Tokens.*
  24.     Permission-Only: false
  25.     Data: 1
  26.     Amount: 1
  27.     Enchantments: []
  28.     EnchantmentStrengths: []
  29.     ColorName: GOLD
  30.     ColorDescription: WHITE
  31.     Material: GOLDEN_APPLE
  32.     Slot: 3
  33.     Cost: 500
  34.     Description: This Apple knows a lot of secrets,;maybe you should try eating it?
  35.   Chestplate of Secrets:
  36.     Data: 0
  37.     Amount: 1
  38.     Enchantments:
  39.    - THORNS
  40.     EnchantmentStrengths:
  41.    - 1
  42.     ColorName: RED
  43.     ColorDescription: MAGIC
  44.     Material: IRON_CHESTPLATE
  45.     Slot: 1
  46.     Cost: 50
  47.     Description: Hold me in your Hands and Leftclick;and I shall tell you my secrets!
  48.   Chestplate of Oblivion:
  49.     Data: 0
  50.     Amount: 1
  51.     Enchantments:
  52.    - FIRE_ASPECT
  53.     - THORNS
  54.     - PROTECTION
  55.     EnchantmentStrengths:
  56.    - 2
  57.     - 2
  58.     - 2
  59.     ColorName: RED
  60.     ColorDescription: DARK_RED
  61.     Material: DIAMOND_CHESTPLATE
  62.     Slot: 4
  63.     Cost: 100
  64.     Description: Forged from the depths of hell,; use this chestplate to bring glory to you and your faction.
  65.   Leggings of Oblivion:
  66.     Data: 0
  67.     Amount: 1
  68.     Enchantments:
  69.    - FIRE_ASPECT
  70.     - THORNS
  71.     - PROTECTION
  72.     EnchantmentStrengths:
  73.    - 2
  74.     - 2
  75.     - 2
  76.     ColorName: RED
  77.     ColorDescription: DARK_RED
  78.     Material: DIAMOND_LEGGINGS
  79.     Slot: 5
  80.     Cost: 100
  81.     Description: Forged from the depths of hell,; use this chestplate to bring glory to you and your faction.
  82.   Boots Of Oblivion:
  83.     Data: 0
  84.     Amount: 1
  85.     Enchantments:
  86.    - FIRE_ASPECT
  87.     - THORNS
  88.     - PROTECTION
  89.     EnchantmentStrengths:
  90.    - 2
  91.     - 2
  92.     - 2
  93.     ColorName: RED
  94.     ColorDescription: DARK_RED
  95.     Material: DIAMOND_BOOTS
  96.     Slot: 6
  97.     Cost: 100
  98.     Description: Forged from the depths of hell,; use this chestplate to bring glory to you and your faction.
  99.   The Helmet Of Thorin:
  100.     Data: 0
  101.     Amount: 1
  102.     Enchantments:
  103.    - PROTECTION
  104.     - FIRE_PROTECTION
  105.     - BLAST_PROTECTION
  106.     - UNBREAKING
  107.     EnchantmentStrength:
  108.    - 4
  109.     - 1
  110.     - 2
  111.     - 3
  112.     Colorname: Blue
  113.     Color Description: Grey
  114.     Material: DIAMOND_HELMET
  115.     Slot: 9
  116.     Cost: 100
  117.     Description: Forged by the one and only Thorin.; This helmet has took countless amount of blows.
  118. selling:
  119.   Item:
  120.     Material: GOLDEN_APPLE:1
  121.     Data: 0
  122.     Slot: 3
  123.     Value: 250
  124.   Items:
  125.     Material: GOLDEN_APPLE
  126.     Data: 1
  127.     Slot: 5
  128.     Value: 50
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement