Advertisement
Marcely99

Marcely's Bedwars upgrade-shop

Dec 19th, 2017 (edited)
2,925
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.86 KB | None | 0 0
  1. #########################
  2. ## Visit the wiki page for further info: https://s.marcely.de/mbww10
  3. #########################
  4.  
  5. # Do not change this
  6. file-version: 1
  7.  
  8. # Change the layout of the shop here
  9. # The purpose of a layout configure how the upgrade shop displays all the upgrades
  10. # You are able to choose between:
  11. # - Normal
  12. # - NormalV2
  13. # - Hypixel
  14. # - HypixelV2
  15. layout-name: NormalV2
  16.  
  17. # You may also display players playing Minecraft's Bedrock Edition a different layout
  18. # Use "equally" to display the same layout as with the "layout-name" config
  19. layout-name-bedrock: equally
  20.  
  21. upgrades:
  22.   sharpness:
  23.     levels:
  24.       lvl-1:
  25.         icon: iron_sword
  26.         handler: bedwars:sharpness
  27.         amplifier: 1.0
  28.         duration: 0
  29.         price:
  30.           spawner: diamond
  31.           amount: 8
  32.   protection:
  33.     levels:
  34.       lvl-1:
  35.         icon: iron_chestplate
  36.         handler: bedwars:armor_protection
  37.         amplifier: 1.0
  38.         duration: 0
  39.         price:
  40.           spawner: diamond
  41.           amount: 4
  42.       lvl-2:
  43.         icon: iron_chestplate
  44.         handler: bedwars:armor_protection
  45.         amplifier: 2.0
  46.         duration: 0
  47.         price:
  48.           spawner: diamond
  49.           amount: 8
  50.       lvl-3:
  51.         icon: iron_chestplate
  52.         handler: bedwars:armor_protection
  53.         amplifier: 3.0
  54.         duration: 0
  55.         price:
  56.           spawner: diamond
  57.           amount: 12
  58.       lvl-4:
  59.         icon: iron_chestplate
  60.         handler: bedwars:armor_protection
  61.         amplifier: 4.0
  62.         duration: 0
  63.         price:
  64.           spawner: diamond
  65.           amount: 16
  66.   haste:
  67.     levels:
  68.       lvl-1:
  69.         icon: gold_pickaxe
  70.         handler: bedwars:haste
  71.         amplifier: 1.0
  72.         duration: 0
  73.         price:
  74.           spawner: diamond
  75.           amount: 2
  76.       lvl-2:
  77.         icon: gold_pickaxe
  78.         handler: bedwars:haste
  79.         amplifier: 2.0
  80.         duration: 0
  81.         price:
  82.           spawner: diamond
  83.           amount: 4
  84.   spawner-multiplier:
  85.     levels:
  86.       lvl-1:
  87.         icon: furnace
  88.         handler: bedwars:spawner_multiplier
  89.         amplifier: 1.5
  90.         duration: 0
  91.         price:
  92.           spawner: diamond
  93.           amount: 2
  94.       lvl-2:
  95.         icon: furnace
  96.         handler: bedwars:spawner_multiplier
  97.         amplifier: 2.0
  98.         duration: 0
  99.         price:
  100.           spawner: diamond
  101.           amount: 4
  102.       lvl-3:
  103.         icon: furnace
  104.         handler: bedwars:spawner_multiplier
  105.         amplifier: 2.5
  106.         duration: 0
  107.         price:
  108.           spawner: diamond
  109.           amount: 6
  110.       lvl-4:
  111.         icon: furnace
  112.         handler: bedwars:spawner_multiplier
  113.         amplifier: 3.0
  114.         duration: 0
  115.         price:
  116.           spawner: diamond
  117.           amount: 8
  118.   heal-pool:
  119.     levels:
  120.       lvl-1:
  121.         icon: beacon
  122.         handler: bedwars:heal_pool
  123.         amplifier: 1.0
  124.         duration: 0
  125.         price:
  126.           spawner: diamond
  127.           amount: 1
  128.   regular-trap:
  129.     price-auto-scale: true
  130.     repeatable-level:
  131.       icon: tripwire_hook
  132.       handler: bedwars:regular_trap
  133.       amplifier: 1.0
  134.       duration: 10
  135.       price:
  136.         spawner: diamond
  137.         amount: 1
  138.   counter-offensive-trap:
  139.     price-auto-scale: true
  140.     repeatable-level:
  141.       icon: feather
  142.       handler: bedwars:counter_offensive_trap
  143.       amplifier: 1.0
  144.       duration: 15
  145.       price:
  146.         spawner: diamond
  147.         amount: 1
  148.   alarm-trap:
  149.     price-auto-scale: true
  150.     repeatable-level:
  151.       icon: redstone_torch_off
  152.       handler: bedwars:alarm_trap
  153.       amplifier: 1.0
  154.       duration: 0
  155.       price:
  156.         spawner: diamond
  157.         amount: 1
  158.   mining-fatigue-trap:
  159.     price-auto-scale: true
  160.     repeatable-level:
  161.       icon: wood_pickaxe
  162.       handler: bedwars:mining_fatigue_trap
  163.       amplifier: 1.0
  164.       duration: 8
  165.       price:
  166.         spawner: diamond
  167.         amount: 1
  168.  
  169.  
  170. # The max amount of traps a team can own at one time
  171. max-traps-queueable: 3
  172.  
  173. # The minimum time between a teams trap triggers
  174. trap-trigger-queue-duration: 15
  175.  
  176. # Colors used to build upgrade icons (names, and lore)
  177. upgrade-name-purchased-color: GREEN
  178. upgrade-name-purchasable-color: YELLOW
  179. upgrade-name-cannot-purchase-color: RED
  180. upgrade-levels-purchased-color: GREEN
  181. upgrade-levels-unpurchased-color: GRAY
  182.  
  183. # The levels placeholder displays all the levels with an upgrade
  184. upgrade-levels-placeholder-format: '{purchase-color}Tier {level}: {level-name} {level-roman},
  185.   &b{price-amount} {price-type}'
  186.  
  187. # Lore format used in the shop for upgrades with more than one level
  188. upgrade-multi-level-lore:
  189. - '&7{description}'
  190. - ' '
  191. - '{levels}'
  192. - ' '
  193. - '{buy-state}'
  194.  
  195. # Lore format used in the shop for upgrades with a single level
  196. upgrade-single-level-lore:
  197. - '&7{description}'
  198. - ' '
  199. - '&7Cost: &b{price-amount} {price-type}'
  200. - ' '
  201. - '{buy-state}'
  202.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement