Guest User

Untitled

a guest
Jun 26th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 199.12 KB | None | 0 0
  1. # DeluxeMenus 1.10.5 main configuration file
  2. #
  3. # check_updates: <true/false>
  4. # Should DeluxeMenus check if there are any updates available on Spigot and inform ops there is an update available.
  5. #
  6. # ==============================================================
  7. #
  8. # PER ITEM PERMISSION AND PRIORITY INFO:
  9. #
  10. # Per item permissions and priorities are optional.
  11. # High priority = 1, Lowest priority = 2147483647.
  12. # This allows you to show different items for a specific menu slot depending on the highest priority
  13. # item permission a player has. This makes your menus very dynamic :)
  14. #
  15. # You CAN NOT specify a permission without a priority!
  16. # You CAN specify a priority without a permission.
  17. # You should always create a low priority item without a permission which will act as the no permission
  18. # item if a player does not have permission for any of the items that require permission, otherwise
  19. # no item will be set in the slot if a player does not have permission for any of the permission items.
  20. #
  21. # ==============================================================
  22. #
  23. # GUI menu configuration:
  24. #
  25. # You can create as many GUI menus you like.
  26. # Every menu name must be unique. There can not be duplicate menu names!
  27. # Players must have permission for a GUI menu to open one!
  28. # Ops should automatically have permission for any GUI menu.
  29. #
  30. # Permission to open a GUI menu is: deluxemenus.guimenu.<menuName>
  31. #
  32. # You specify the command which opens the GUI menu. Make sure this command
  33. # does not conflict with any existing commands on your server!
  34. # A GUI menu without an open command specified will not be loaded!
  35. #
  36. # GUI menus configuration layout:
  37. #
  38. # gui_menus:
  39. # <menuName>:
  40. # menu_title: '<title of menu goes here>'
  41. # command: <command to open this menu goes here>
  42. # inventory_type: '<add this option if you want to create a menu of a different InventoryType aside from chest>'
  43. # open_requirement:
  44. # requirements:
  45. # <unique name for this requirement>:
  46. # type: <type for this requirement>
  47. # <unique options per requirement type would go here>
  48. # deny_commands:
  49. # - '[message] you do not meet requirements to open this menu'
  50. # size: <size of this menu, increments of 9, max size is 54>
  51. # update_interval: <time in seconds this gui should update for a player if an item is set to uodate placeholders>
  52. # items:
  53. # <item identifier>:
  54. # material: <name or id>
  55. # material: head-<name of player>
  56. # material: hdb-<HeadDatabase id> (requires plugin HeadDatabase)
  57. # data: <integer, used for data values for wool etc>
  58. # amount: <amount of this item to show>
  59. # slot: <slot number to put this item, slots start at 0 and end at 53 for a size 54 inventory>
  60. # priority: <this is used if you have multiple items set for the same slot>
  61. # view_requirement: <see view requirement info below. The lowest priority item a player meets all view requirements for will be shown>
  62. # update: <true/false if this item should update placeholders on the interval set for the gui menu this item is in>
  63. # hide_attributes: <true/false if this item should display item attributes>
  64. # hide_enchantments: <true/false if this item should display item enchantment / level> (useful for 'enchantment glow' items)
  65. # hide_effects: <true/false if this item should display item effect attributes>
  66. # hide_unbreakable: <true/false if this item should display item unbreakable attributes>
  67. # banner_meta: (this is used if you want to display a custom banner with specific patterns)
  68. # - <dyecolor>;<PatternType> (more information on where to find DyeColor and PatternType names below)
  69. # - 'RED;BASE'
  70. # - 'WHITE;CREEPER'
  71. # display_name: <display name to show for this item>
  72. # lore:
  73. # - 'placeholders can be used in the name and lore'
  74. # - '%<any placeholder from Papi>% shows the viewer values'
  75. # enchantments: valid enchantment names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  76. # - '<ENCHANTMENT>;<LEVEL>'
  77. # - 'SILK_TOUCH;1'
  78. # left_click_commands:
  79. # - '[close]'
  80. # left_click_requirement: <see how to use this option below>
  81. # right_click_commands:
  82. # - '[player] spawn'
  83. # right_click_requirement: <see how to use this option below>
  84. #
  85. #
  86. # You can specify if a GUI menu should be loaded from another file:
  87. #
  88. # gui_menus:
  89. # <menuName>:
  90. # file: 'menuName.yml'
  91. #
  92. # This allows you to keep your config clean and not have tons of GUI menus cluttering it.
  93. # The file format the GUI menu is loaded from must end in .yml
  94. # GUI menus loaded from other configuration files must follow a specific format as well...
  95. # To get started loading GUI menus from different files, simply create a GUI menu in this config and specify the file it will load from.
  96. # After that is done, use /dm reload and DeluxeMenus will create a folder and file specific to the GUI menu you specified.
  97. # If the file specified is created by DeluxeMenus (because it did not exist), a default GUI menu layout will be saved to that file.
  98. # From here you can edit it to your liking and use /dm reload to update your GUI menu!
  99. #
  100. # This loading from external config files is only available for gui menus and will not work for click menus yet....
  101. #
  102. # banner_meta must be listed with a specific format:
  103. # banner_meta:
  104. # - <DyeColor>;<PatternType>
  105. #
  106. # Valid DyeColor names can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/DyeColor.html
  107. # Valid PatternTypes can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/block/banner/PatternType.html
  108. # ==============================================================
  109. #
  110. # Requirement information
  111. #
  112. # Requirements can be set as the following:
  113. #
  114. # open_requirement: This requirement is checked when a menu is opened
  115. # view_requirement: This requirement determines if an item should be set in a menu slot
  116. # left_click_requirement: This requirement is checked when an item is left clicked
  117. # right_click_requirement: This requirement is checked when an item is right clicked
  118. #
  119. # Requirement types:
  120. # javascript - Evaluates a javascript expression that must return true or false
  121. # configuration options:
  122. # expression
  123. #
  124. # has item - Checks if a player has a specific item
  125. # configuration options:
  126. # material
  127. # amount
  128. # data
  129. # name
  130. # lore
  131. #
  132. # has money - Checks if a player has enough money (Vault required)
  133. # configuration options:
  134. # amount
  135. #
  136. # has permission - Checks if a player has a specific permission
  137. # configuration options:
  138. # permission
  139. #
  140. # string contains - Checks if a string contains another string
  141. # configuration options:
  142. # input
  143. # output
  144. #
  145. # string equals - Checks if a string equals another string
  146. # configuration options:
  147. # input
  148. # output
  149. #
  150. # stringequalsignorecase - Checks if a string equals another string ignoring case
  151. # configuration options:
  152. # input
  153. # output
  154. #
  155. # > - Checks if a number is greater than another number
  156. # configuration options:
  157. # input
  158. # output
  159. #
  160. # >= - Checks if a number is greater than or equal to another number
  161. # configuration options:
  162. # input
  163. # output
  164. #
  165. # == - Checks if a number is equal to another number
  166. # configuration options:
  167. # input
  168. # output
  169. #
  170. # <= - Checks if a number is less than or equal to another number
  171. # configuration options:
  172. # input
  173. # output
  174. #
  175. # < - Checks if a number is less than another number
  176. # configuration options:
  177. # input
  178. # output
  179. #
  180. #
  181. #
  182. # So why would we want to use requirements?
  183. # By default, DeluxeMenus does not require a player meet any conditions to open your menu.
  184. # If you want to require a menu need a certain permission node for it to be accessed, or a certain amount of money
  185. # for a menu to be opened, You do that with an 'open_requirement'.
  186. # Below is an example of how you would deny opening a menu if the viewer does not have permission:
  187. #
  188. # menu_title: 'Menu that requires permission to open'
  189. # open_command: testmenu
  190. # size: 9
  191. # open_requirement:
  192. # requirements:
  193. # this_requirement_name:
  194. # type: has permission
  195. # permission: 'testmenu.open'
  196. # deny_commands:
  197. # - '[message] you do not have permission to open testmenu'
  198. #
  199. #
  200. # Below is a full example of use cases for requirements:
  201. #
  202. # menu_title: 'Menu that requires permission to open'
  203. # open_command: testmenu
  204. # size: 9
  205. # open_requirement:
  206. # requirements:
  207. # this_requirement_name:
  208. # type: has permission
  209. # permission: 'testmenu.open'
  210. # deny_commands:
  211. # - '[message] you do not have permission to open testmenu'
  212. # items:
  213. # mymenuitem:
  214. # priority: 2
  215. # material: DIRT
  216. # slot: 0
  217. # name 'You dont have 100 diamonds to view this item'
  218. # mymenuitem:
  219. # priority: 1
  220. # material: DIAMOND
  221. # slot: 0
  222. # name 'You have lots of diamonds so you can see this item'
  223. # view_requirement:
  224. # requirements:
  225. # diamond_requirement:
  226. # type: has item
  227. # material: diamond
  228. # amount: 100
  229. # left_click_requirement:
  230. # requirements:
  231. # money_requirement:
  232. # type: '>='
  233. # input: '%vault_eco_balance_fixed%'
  234. # output: 1000
  235. # deny_commands:
  236. # - '[message] you only have %vault_eco_balance_fixed%'
  237. # left_click_commands:
  238. # - '[message] you have over 1000 dollars!'
  239. # right_click_requirement:
  240. # requirements:
  241. # staff_requirement:
  242. # type: string equals
  243. # input: '%vault_rank%'
  244. # output: staff
  245. # deny_commands:
  246. # - '[message] you are not staff'
  247. # right_click_commands:
  248. # - '[message] you are staff'
  249. #
  250. # deny_commands: are optional and will be executed if the requirement is not met.
  251. # ==============================================================
  252. #
  253. #
  254. # You do not need to specify item options that you don't use!
  255. # The only required entries for a gui menu item to be valid are:
  256. #
  257. # A valid material
  258. # A valid slot
  259. #
  260. # Every item in the items list must have a unique <item identifier>
  261. #
  262. # If you choose to update placeholders for a specific item, you must specify update_interval: <time>
  263. # in the GUI menu options for the specific GUI menu.
  264. # Only GUI menus with at least one item that has update: true will update those specific items placeholders.
  265. #
  266. # Every click_command must start with a specific identifier to know what to do for the execution.
  267. # Valid click_command identifiers:
  268. #
  269. # [console] - Execute a command from the console
  270. # Usage: - '[console] <command with no slash>'
  271. #
  272. # [player] - Execute a command for the menu viewer
  273. # Usage: - '[player] <command with no slash>'
  274. #
  275. # [commandevent] - Fire a PlayerCommandPreprocessEvent for commands that do not use the bukkit command system
  276. # Usage: - '[commandevent] <command with no slash>'
  277. #
  278. # [message] - Send a message to the menu viewer
  279. # Usage: - [message] <message to send to the player
  280. #
  281. # [openguimenu] - Open a GUI menu (can only be used in GUI menu click_commands)
  282. # Usage: - '[openguimenu] <guiMenuName>'
  283. #
  284. # [connect] - Connect to the specified bungee server
  285. # Usage: - '[connect] <serverName>'
  286. #
  287. # [close] - Close the viewers open menu
  288. # Usage: - '[close]
  289. #
  290. # [refresh] - Refresh items in the current menu view
  291. # Usage: - '[refresh]
  292. #
  293. # [broadcastsound] - Broadcast a sound to the server
  294. # Usage: - '[broadcastsound]
  295. #
  296. # [sound] - Play a sound for a the specific player
  297. # Usage: - '[sound]
  298. #
  299. # [json] - Send a json message to the menu viewer
  300. # Usage: - '[json] {"text":"message"}'
  301. #
  302. #
  303. #
  304. # You can delay any of the click command being performed by ending the command with
  305. # <delay=(time in TICKS)>
  306. # example:
  307. # - '[close]'
  308. # - '[message] it has been 5 seconds since the menu closed!<delay=100>'
  309. # - '[message] it has been 10 seconds since the menu closed!<delay=200>'
  310. #
  311. # A delay should NOT be added to the [close] or [openguimenu] actions
  312. # as it could potentially cause unknown issues or glitches with menus.
  313. debug: false
  314. check_updates: true
  315. gui_menus:
  316. warp:
  317. menu_title: Warps
  318. open_command:
  319. - warp
  320. - warps
  321. - ewarp
  322. - ewarps
  323. size: 36
  324. items:
  325. '2':
  326. material: 153
  327. data: 0
  328. slot: 16
  329. display_name: '&f&lNether Warp'
  330. lore:
  331. - '&7Right clicking this will &nteleport&7 you the public'
  332. - '&7nether warp. PvP will be &ndisabled&7 in the'
  333. - '&7spawn area.'
  334. - ''
  335. - '&f&nAdditional Information'
  336. - '&f&l* &7PvP &a&l&nENABLED'
  337. - '&f&l* &7Has a 5 second warp up time.'
  338. - '&f&l* &7Dont move when teleporting!'
  339. - ''
  340. - '&7&o(( You will not be able to teleport with combat tag. ))'
  341. left_click_commands:
  342. - '[player] warp nether'
  343. right_click_commands:
  344. - '[player] warp nether'
  345. '3':
  346. material: 17
  347. data: 0
  348. slot: 11
  349. display_name: '&f&lWoods Warp'
  350. lore:
  351. - '&7Right clicking this will &nteleport&7 you the public'
  352. - '&7woods warp. PvP will be &ndisabled&7 in the'
  353. - '&7spawn area.'
  354. - ''
  355. - '&f&nAdditional Information'
  356. - '&f&l* &7PvP &a&l&nENABLED'
  357. - '&f&l* &7Has a 5 second warp up time.'
  358. - '&f&l* &7Dont move when teleporting!'
  359. - ''
  360. - '&7&o(( You will not be able to teleport with combat tag. ))'
  361. left_click_commands:
  362. - '[player] warp woods'
  363. right_click_commands:
  364. - '[player] warp woods'
  365. '4':
  366. material: SAND
  367. data: 0
  368. slot: 12
  369. display_name: '&f&lDesert Warp'
  370. lore:
  371. - '&7Right clicking this will &nteleport&7 you the public'
  372. - '&7desert warp. PvP will be &ndisabled&7 in the'
  373. - '&7spawn area.'
  374. - ''
  375. - '&f&nAdditional Information'
  376. - '&f&l* &7PvP &a&l&nENABLED'
  377. - '&f&l* &7Has a 5 second warp up time.'
  378. - '&f&l* &7Dont move when teleporting!'
  379. - ''
  380. - '&7&o(( You will not be able to teleport with combat tag. ))'
  381. left_click_commands:
  382. - '[player] warp desert'
  383. right_click_commands:
  384. - '[player] warp desert'
  385. '5':
  386. material: 80
  387. data: 0
  388. slot: 13
  389. display_name: '&f&lSnowy Warp'
  390. lore:
  391. - '&7Right clicking this will &nteleport&7 you the public'
  392. - '&7snowy warp. PvP will be &ndisabled&7 in the'
  393. - '&7spawn area.'
  394. - ''
  395. - '&f&nAdditional Information'
  396. - '&f&l* &7PvP &a&l&nENABLED'
  397. - '&f&l* &7Has a 5 second warp up time.'
  398. - '&f&l* &7Dont move when teleporting!'
  399. - ''
  400. - '&7&o(( You will not be able to teleport with combat tag. ))'
  401. left_click_commands:
  402. - '[player] warp icey'
  403. right_click_commands:
  404. - '[player] warp icey'
  405. '6':
  406. material: STONE
  407. data: 0
  408. slot: 14
  409. display_name: '&f&lMountains Warp'
  410. lore:
  411. - '&7Right clicking this will &nteleport&7 you the public'
  412. - '&7mountains warp. PvP will be &ndisabled&7 in the'
  413. - '&7spawn area.'
  414. - ''
  415. - '&f&nAdditional Information'
  416. - '&f&l* &7PvP &a&l&nENABLED'
  417. - '&f&l* &7Has a 5 second warp up time.'
  418. - '&f&l* &7Dont move when teleporting!'
  419. - ''
  420. - '&7&o(( You will not be able to teleport with combat tag. ))'
  421. left_click_commands:
  422. - '[player] warp mountains'
  423. right_click_commands:
  424. - '[player] warp mountains'
  425. '7':
  426. material: GRASS
  427. data: 0
  428. slot: 15
  429. display_name: '&f&lPlains Warp'
  430. lore:
  431. - '&7Right clicking this will &nteleport&7 you the public'
  432. - '&7plains warp. PvP will be &ndisabled&7 in the'
  433. - '&7spawn area.'
  434. - ''
  435. - '&f&nAdditional Information'
  436. - '&f&l* &7PvP &a&l&nENABLED'
  437. - '&f&l* &7Has a 5 second warp up time.'
  438. - '&f&l* &7Dont move when teleporting!'
  439. - ''
  440. - '&7&o(( You will not be able to teleport with combat tag. ))'
  441. left_click_commands:
  442. - '[player] warp plains'
  443. right_click_commands:
  444. - '[player] warp plains'
  445. '8':
  446. material: 18
  447. data: 0
  448. slot: 20
  449. display_name: '&f&lForest Warp'
  450. lore:
  451. - '&7Right clicking this will &nteleport&7 you the public'
  452. - '&7forest warp. PvP will be &ndisabled&7 in the'
  453. - '&7spawn area.'
  454. - ''
  455. - '&f&nAdditional Information'
  456. - '&f&l* &7PvP &a&l&nENABLED'
  457. - '&f&l* &7Has a 5 second warp up time.'
  458. - '&f&l* &7Dont move when teleporting!'
  459. - ''
  460. - '&7&o(( You will not be able to teleport with combat tag. ))'
  461. left_click_commands:
  462. - '[player] warp forest'
  463. right_click_commands:
  464. - '[player] warp forest'
  465. '9':
  466. material: DIAMOND_SWORD
  467. data: 0
  468. slot: 23
  469. display_name: '&f&lKoTH Warp'
  470. lore:
  471. - '&7Right clicking this will &nteleport&7 you the public'
  472. - '&7KoTH warp. PvP will be &ndisabled&7 in the'
  473. - '&7spawn area.'
  474. - ''
  475. - '&f&nAdditional Information'
  476. - '&f&l* &7PvP &a&l&nENABLED'
  477. - '&f&l* &7Has a 5 second warp up time.'
  478. - '&f&l* &7Dont move when teleporting!'
  479. - ''
  480. - '&7&o(( You will not be able to teleport with combat tag. ))'
  481. left_click_commands:
  482. - '[player] warp koth'
  483. right_click_commands:
  484. - '[player] warp koth'
  485. '10':
  486. material: DIAMOND
  487. data: 0
  488. slot: 24
  489. display_name: '&f&lShop Warp'
  490. lore:
  491. - '&7Right clicking this will &nteleport&7 you the public'
  492. - '&7shop warp. PvP will be &ndisabled&7 in the'
  493. - '&7spawn area.'
  494. - ''
  495. - '&f&nAdditional Information'
  496. - '&f&l* &7PvP &4&l&nDISABLED'
  497. - '&f&l* &7Has a 5 second warp up time.'
  498. - '&f&l* &7Dont move when teleporting!'
  499. - ''
  500. - '&7&o(( You will not be able to teleport with combat tag. ))'
  501. left_click_commands:
  502. - '[player] warp shop'
  503. right_click_commands:
  504. - '[player] warp shop'
  505. '11':
  506. material: IRON_SWORD
  507. data: 0
  508. slot: 22
  509. display_name: '&f&lOutpost Warp'
  510. lore:
  511. - '&7Right clicking this will &nteleport&7 you the public'
  512. - '&7Outpost warp. PvP will be &ndisabled&7 in the'
  513. - '&7spawn area.'
  514. - ''
  515. - '&f&nAdditional Information'
  516. - '&f&l* &7PvP &a&l&nENABLED'
  517. - '&f&l* &7Has a 5 second warp up time.'
  518. - '&f&l* &7Dont move when teleporting!'
  519. - ''
  520. - '&7&o(( You will not be able to teleport with combat tag. ))'
  521. left_click_commands:
  522. - '[player] warp outpost'
  523. right_click_commands:
  524. - '[player] warp outpost'
  525. '12':
  526. material: STONE_SWORD
  527. data: 0
  528. slot: 21
  529. display_name: '&f&lTotem Warp'
  530. lore:
  531. - '&7Right clicking this will &nteleport&7 you the public'
  532. - '&7Totem warp. PvP will be &ndisabled&7 in the'
  533. - '&7spawn area.'
  534. - ''
  535. - '&f&nAdditional Information'
  536. - '&f&l* &7PvP &a&l&nENABLED'
  537. - '&f&l* &7Has a 5 second warp up time.'
  538. - '&f&l* &7Dont move when teleporting!'
  539. - ''
  540. - '&7&o(( You will not be able to teleport with combat tag. ))'
  541. left_click_commands:
  542. - '[player] warp totem'
  543. right_click_commands:
  544. - '[player] warp totem'
  545. spawn:
  546. menu_title: Spawn
  547. open_command:
  548. - spawn
  549. - espawn
  550. size: 9
  551. items:
  552. '1':
  553. material: 399
  554. data: 0
  555. slot: 2
  556. display_name: '&f&lNorth-East Spawn'
  557. lore:
  558. - '&7Teleport to the &nNorth-East&7 position of the'
  559. - '&7map.'
  560. - ''
  561. - '&f&l* &7Map Size &f&n12k x 12k'
  562. - '&f&l* &7Map Position &f&nNorth-East'
  563. - '&f&l* &7Map Coordinates &f&nX» 4000 Y» -4000'
  564. - '&f&l* &7Main Biomes &f&nPlains + Desert'
  565. - '&f&l* &7PvP &f&nDisabled'
  566. - ''
  567. - '&7&o(( You will not be able to teleport when in combat. ))'
  568. left_click_commands:
  569. - '[player] warp NorthEastSpawn'
  570. right_click_commands:
  571. - '[player] warp NorthEastSpawn'
  572. '2':
  573. material: 399
  574. data: 0
  575. slot: 3
  576. display_name: '&f&lNorth-West Spawn'
  577. lore:
  578. - '&7Teleport to the &nNorth-West&7 position of the'
  579. - '&7map.'
  580. - ''
  581. - '&f&l* &7Map Size &f&n12k x 12k'
  582. - '&f&l* &7Map Position &f&nNorth-West'
  583. - '&f&l* &7Map Coordinates &f&nX» -4000 Y» -4000'
  584. - '&f&l* &7Main Biomes &f&nPlains + Forrest'
  585. - '&f&l* &7PvP &f&nDisabled'
  586. - ''
  587. - '&7&o(( You will not be able to teleport when in combat. ))'
  588. left_click_commands:
  589. - '[player] warp NorthWestSpawn'
  590. right_click_commands:
  591. - '[player] warp NorthWestSpawn'
  592. '3':
  593. material: 399
  594. data: 0
  595. slot: 4
  596. display_name: '&f&lCenter Spawn'
  597. lore:
  598. - '&7Teleport to the &nCenter&7 position of the'
  599. - '&7map.'
  600. - ''
  601. - '&f&l* &7Map Size &f&n12k x 12k'
  602. - '&f&l* &7Map Position &f&nCenter'
  603. - '&f&l* &7Map Coordinates &f&nX» 0 Y» 0'
  604. - '&f&l* &7Main Biomes &f&nPlains, Forrest + Mushrooms'
  605. - '&f&l* &7PvP &f&nDisabled'
  606. - ''
  607. - '&7&o(( You will not be able to teleport when in combat. ))'
  608. left_click_commands:
  609. - '[player] warp CenterSpawn'
  610. right_click_commands:
  611. - '[player] warp CenterSpawn'
  612. '4':
  613. material: 399
  614. data: 0
  615. slot: 5
  616. display_name: '&f&lSouth-East Spawn'
  617. lore:
  618. - '&7Teleport to the &nSouth-East&7 position of the'
  619. - '&7map.'
  620. - ''
  621. - '&f&l* &7Map Size &f&n12k x 12k'
  622. - '&f&l* &7Map Position &f&nSouth-East'
  623. - '&f&l* &7Map Coordinates &f&nX» 4000 Y» 4000'
  624. - '&f&l* &7Main Biomes &f&nPlains'
  625. - '&f&l* &7PvP &f&nDisabled'
  626. - ''
  627. - '&7&o(( You will not be able to teleport when in combat. ))'
  628. left_click_commands:
  629. - '[player] warp SouthEastSpawn'
  630. right_click_commands:
  631. - '[player] warp SouthEastSpawn'
  632. '5':
  633. material: 399
  634. data: 0
  635. slot: 6
  636. display_name: '&f&lSouth-West Spawn'
  637. lore:
  638. - '&7Teleport to the &nNorth-West&7 position of the'
  639. - '&7map.'
  640. - ''
  641. - '&f&l* &7Map Size &f&n12k x 12k'
  642. - '&f&l* &7Map Position &f&nSouth-West'
  643. - '&f&l* &7Map Coordinates &f&nX» -4000 Y» 4000'
  644. - '&f&l* &7Main Biomes &f&nPlains + Mushrooms'
  645. - '&f&l* &7PvP &f&nDisabled'
  646. - ''
  647. - '&7&o(( You will not be able to teleport when in combat. ))'
  648. left_click_commands:
  649. - '[player] warp SouthWestSpawn'
  650. right_click_commands:
  651. - '[player] warp SouthWestSpawn'
  652. Kits:
  653. menu_title: '&7&lKits Menu'
  654. open_command:
  655. - kit
  656. - kits
  657. size: 27
  658. items:
  659. citizenavailable:
  660. material: chest
  661. data: 0
  662. slot: 11
  663. priority: 2
  664. update: true
  665. hide_attributes: true
  666. view_requirement:
  667. requirements:
  668. warrior_available:
  669. type: string equals ignorecase
  670. input: '%essentials_kit_is_available_citizen%'
  671. output: 'yes'
  672. display_name: '&f&lCitizen Loot Pouch &7&l(Unlocked)'
  673. lore:
  674. - '&7This legendary loot pouch is filled with'
  675. - '&7rare items to use throughout the world.'
  676. - '&7This kit contains many items which are '
  677. - '&7found by users who have purchased rank'
  678. - '&8:&7Citizen&8: &7from &nstore.novawars.net'
  679. - '&7'
  680. - '&f&nIncludes..'
  681. - '&f&l* &7Enchanted Armour Set (Lvl III)'
  682. - '&f&l* &7Enchanted Equiptment Set (Lvl III)'
  683. - '&f&l* &7Healables / Consumables'
  684. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  685. - '&f&l* &7And Several More..'
  686. - '&7'
  687. - '&f&lTIP: &7Make sure your inventory is empty'
  688. - '&7before you redeem your loot pouch.'
  689. left_click_commands:
  690. - '[player] kit citizen'
  691. - '[close]'
  692. right_click_commands:
  693. - '[player] kit citizen'
  694. - '[close]'
  695. citizencooldown:
  696. material: stained_glass_pane
  697. data: 1
  698. slot: 11
  699. priority: 3
  700. update: true
  701. display_name: '&f&lCitizen Loot Pouch &7&l(Cooldown)'
  702. lore:
  703. - '&7This legendary loot pouch is filled with'
  704. - '&7rare items to use throughout the world.'
  705. - '&7This kit contains many items which are '
  706. - '&7found by users who have purchased rank'
  707. - '&8:&7Citizen&8: &7from &nstore.novawars.net'
  708. - '&7'
  709. - '&f&nIncludes..'
  710. - '&f&l* &7Enchanted Armour Set (Lvl III)'
  711. - '&f&l* &7Enchanted Equiptment Set (Lvl III)'
  712. - '&f&l* &7Healables / Consumables'
  713. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  714. - '&f&l* &7And Several More..'
  715. - '&7'
  716. - '&7This kit is currently on &ncooldown&7! It will be'
  717. - '&7available in &f&l&n%essentials_kit_time_until_available_citizen%'
  718. left_click_commands:
  719. - '[player] kit citizen'
  720. - '[close]'
  721. right_click_commands:
  722. - '[player] kit citizen'
  723. - '[close]'
  724. warrioravailable:
  725. material: chest
  726. data: 0
  727. slot: 11
  728. priority: 2
  729. update: true
  730. hide_attributes: true
  731. view_requirement:
  732. requirements:
  733. warrior_available:
  734. type: string equals ignorecase
  735. input: '%essentials_kit_is_available_warrior%'
  736. output: 'yes'
  737. display_name: '&f&lWarrior Loot Pouch &7&l(Unlocked)'
  738. lore:
  739. - '&7This legendary loot pouch is filled with'
  740. - '&7rare items to use throughout the world.'
  741. - '&7This kit contains many items which are '
  742. - '&7found by users who have purchased rank'
  743. - '&8:&6Warrior&8: &7from &nstore.novawars.net'
  744. - '&7'
  745. - '&f&nIncludes..'
  746. - '&f&l* &7Enchanted Armour Set (Lvl IV)'
  747. - '&f&l* &7Enchanted Equiptment Set (Lvl IV)'
  748. - '&f&l* &7Healables / Consumables'
  749. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  750. - '&f&l* &7And Several More..'
  751. - '&7'
  752. - '&f&lTIP: &7Make sure your inventory is empty'
  753. - '&7before you redeem your loot pouch.'
  754. left_click_commands:
  755. - '[player] kit warrior'
  756. - '[close]'
  757. right_click_commands:
  758. - '[player] kit warrior'
  759. - '[close]'
  760. warriorcooldown:
  761. material: stained_glass_pane
  762. data: 1
  763. slot: 11
  764. priority: 3
  765. update: true
  766. display_name: '&f&lWarrior Loot Pouch &7&l(Cooldown)'
  767. lore:
  768. - '&7This legendary loot pouch is filled with'
  769. - '&7rare items to use throughout the world.'
  770. - '&7This kit contains many items which are '
  771. - '&7found by users who have purchased rank'
  772. - '&8:&6Warrior&8: &7from &nstore.novawars.net'
  773. - '&7'
  774. - '&f&nIncludes..'
  775. - '&f&l* &7Enchanted Armour Set (Lvl IV)'
  776. - '&f&l* &7Enchanted Equiptment Set (Lvl IV)'
  777. - '&f&l* &7Healables / Consumables'
  778. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  779. - '&f&l* &7And Several More..'
  780. - '&7'
  781. - '&7This kit is currently on &ncooldown&7! It will be'
  782. - '&7available in &f&l&n%essentials_kit_time_until_available_warrior%'
  783. left_click_commands:
  784. - '[player] kit warrior'
  785. - '[close]'
  786. right_click_commands:
  787. - '[player] kit warrior'
  788. - '[close]'
  789. warriornopermission:
  790. material: 160
  791. data: 14
  792. slot: 11
  793. priority: 1
  794. update: true
  795. hide_attributes: true
  796. view_requirement:
  797. requirements:
  798. warrior_nopermission:
  799. type: string equals ignorecase
  800. input: '%essentials_has_kit_warrior%'
  801. output: 'no'
  802. display_name: '&f&lWarrior Loot Pouch &7&l(Locked)'
  803. lore:
  804. - '&7This legendary loot pouch is filled with'
  805. - '&7rare items to use throughout the world.'
  806. - '&7This kit contains many items which are '
  807. - '&7found by users who have purchased rank'
  808. - '&8:&6Warrior&8: &7from &nstore.novawars.net'
  809. - '&7'
  810. - '&f&nIncludes..'
  811. - '&f&l* &7Enchanted Armour Set (Lvl IV)'
  812. - '&f&l* &7Enchanted Equiptment Set (Lvl IV)'
  813. - '&f&l* &7Healables / Consumables'
  814. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  815. - '&f&l* &7And Several More..'
  816. - '&7'
  817. - '&7This kit is currently &c&nLocked&7! In order to'
  818. - '&7redeem this kit, you must purchase &8:&6Warrior&8:'
  819. - '&7rank from &nstore.novawars.net'
  820. rogueavailable:
  821. material: chest
  822. data: 0
  823. slot: 12
  824. priority: 2
  825. update: true
  826. hide_attributes: true
  827. view_requirement:
  828. requirements:
  829. rogue_available:
  830. type: string equals ignorecase
  831. input: '%essentials_kit_is_available_rogue%'
  832. output: 'yes'
  833. display_name: '&f&lRogue Loot Pouch &7&l(Unlocked)'
  834. lore:
  835. - '&7This legendary loot pouch is filled with'
  836. - '&7rare items to use throughout the world.'
  837. - '&7This kit contains many items which are '
  838. - '&7found by users who have purchased rank'
  839. - '&8:&aRogue&8: &7from &nstore.novawars.net'
  840. - '&7'
  841. - '&f&nIncludes..'
  842. - '&f&l* &7Enchanted Armour Set (Lvl V)'
  843. - '&f&l* &7Enchanted Equiptment Set (Lvl V)'
  844. - '&f&l* &7Healables / Consumables'
  845. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  846. - '&f&l* &7And Several More..'
  847. - '&7'
  848. - '&f&lTIP: &7Make sure your inventory is empty'
  849. - '&7before you redeem your loot pouch.'
  850. left_click_commands:
  851. - '[player] kit rogue'
  852. - '[close]'
  853. right_click_commands:
  854. - '[player] kit rogue'
  855. - '[close]'
  856. roguecooldown:
  857. material: stained_glass_pane
  858. data: 1
  859. slot: 12
  860. priority: 3
  861. update: true
  862. display_name: '&f&lRogue Loot Pouch &7&l(Cooldown)'
  863. lore:
  864. - '&7This legendary loot pouch is filled with'
  865. - '&7rare items to use throughout the world.'
  866. - '&7This kit contains many items which are '
  867. - '&7found by users who have purchased rank'
  868. - '&8:&aRogue&8: &7from &nstore.novawars.net'
  869. - '&7'
  870. - '&f&nIncludes..'
  871. - '&f&l* &7Enchanted Armour Set (Lvl V)'
  872. - '&f&l* &7Enchanted Equiptment Set (Lvl V)'
  873. - '&f&l* &7Healables / Consumables'
  874. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  875. - '&f&l* &7And Several More..'
  876. - '&7'
  877. - '&7This kit is currently on &ncooldown&7! It will be'
  878. - '&7available in &f&l&n%essentials_kit_time_until_available_rogue%'
  879. left_click_commands:
  880. - '[player] kit rogue'
  881. - '[close]'
  882. right_click_commands:
  883. - '[player] kit rogue'
  884. - '[close]'
  885. roguenopermission:
  886. material: 160
  887. data: 14
  888. slot: 12
  889. priority: 1
  890. update: true
  891. hide_attributes: true
  892. view_requirement:
  893. requirements:
  894. rogue_nopermission:
  895. type: string equals ignorecase
  896. input: '%essentials_has_kit_rogue%'
  897. output: 'no'
  898. display_name: '&f&lRogue Loot Pouch &7&l(Locked)'
  899. lore:
  900. - '&7This legendary loot pouch is filled with'
  901. - '&7rare items to use throughout the world.'
  902. - '&7This kit contains many items which are '
  903. - '&7found by users who have purchased rank'
  904. - '&8:&aRogue&8: &7from &nstore.novawars.net'
  905. - '&7'
  906. - '&f&nIncludes..'
  907. - '&f&l* &7Enchanted Armour Set (Lvl V)'
  908. - '&f&l* &7Enchanted Equiptment Set (Lvl V)'
  909. - '&f&l* &7Healables / Consumables'
  910. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  911. - '&f&l* &7And Several More..'
  912. - '&7'
  913. - '&7This kit is currently &c&nLocked&7! In order to'
  914. - '&7redeem this kit, you must purchase &8:&aRogue&8:'
  915. - '&7rank from &nstore.novawars.net'
  916. sargentavailable:
  917. material: chest
  918. data: 0
  919. slot: 13
  920. priority: 2
  921. update: true
  922. hide_attributes: true
  923. view_requirement:
  924. requirements:
  925. sargent_available:
  926. type: string equals ignorecase
  927. input: '%essentials_kit_is_available_sargent%'
  928. output: 'yes'
  929. display_name: '&f&lSargent Loot Pouch &7&l(Unlocked)'
  930. lore:
  931. - '&7This legendary loot pouch is filled with'
  932. - '&7rare items to use throughout the world.'
  933. - '&7This kit contains many items which are '
  934. - '&7found by users who have purchased rank'
  935. - '&8:&cSargent&8: &7from &nstore.novawars.net'
  936. - '&7'
  937. - '&f&nIncludes..'
  938. - '&f&l* &7Enchanted Armour Set (Lvl VI)'
  939. - '&f&l* &7Enchanted Equiptment Set (Lvl VI)'
  940. - '&f&l* &7Healables / Consumables'
  941. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  942. - '&f&l* &7And Several More..'
  943. - '&7'
  944. - '&f&lTIP: &7Make sure your inventory is empty'
  945. - '&7before you redeem your loot pouch.'
  946. left_click_commands:
  947. - '[player] kit senior'
  948. - '[close]'
  949. right_click_commands:
  950. - '[player] kit senior'
  951. - '[close]'
  952. sargentcooldown:
  953. material: stained_glass_pane
  954. data: 1
  955. slot: 13
  956. priority: 3
  957. update: true
  958. display_name: '&f&lSargent Loot Pouch &7&l(Cooldown)'
  959. lore:
  960. - '&7This legendary loot pouch is filled with'
  961. - '&7rare items to use throughout the world.'
  962. - '&7This kit contains many items which are '
  963. - '&7found by users who have purchased rank'
  964. - '&8:&cSargent&8: &7from &nstore.novawars.net'
  965. - '&7'
  966. - '&f&nIncludes..'
  967. - '&f&l* &7Enchanted Armour Set (Lvl VI)'
  968. - '&f&l* &7Enchanted Equiptment Set (Lvl VI)'
  969. - '&f&l* &7Healables / Consumables'
  970. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  971. - '&f&l* &7And Several More..'
  972. - '&7'
  973. - '&7This kit is currently on &ncooldown&7! It will be'
  974. - '&7available in &f&l&n%essentials_kit_time_until_available_sargent%'
  975. left_click_commands:
  976. - '[player] kit sargent'
  977. - '[close]'
  978. right_click_commands:
  979. - '[player] kit sargent'
  980. - '[close]'
  981. sargentnopermission:
  982. material: 160
  983. data: 14
  984. slot: 13
  985. priority: 1
  986. update: true
  987. hide_attributes: true
  988. view_requirement:
  989. requirements:
  990. senior_nopermission:
  991. type: string equals ignorecase
  992. input: '%essentials_has_kit_sargent%'
  993. output: 'no'
  994. display_name: '&f&lSargent Loot Pouch &7&l(Locked)'
  995. lore:
  996. - '&7This legendary loot pouch is filled with'
  997. - '&7rare items to use throughout the world.'
  998. - '&7This kit contains many items which are '
  999. - '&7found by users who have purchased rank'
  1000. - '&8:&cSargent&8: &7from &nstore.novawars.net'
  1001. - '&7'
  1002. - '&f&nIncludes..'
  1003. - '&f&l* &7Enchanted Armour Set (Lvl VI)'
  1004. - '&f&l* &7Enchanted Equiptment Set (Lvl VI)'
  1005. - '&f&l* &7Healables / Consumables'
  1006. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  1007. - '&f&l* &7And Several More..'
  1008. - '&7'
  1009. - '&7This kit is currently &c&nLocked&7! In order to'
  1010. - '&7redeem this kit, you must purchase &8:&cSargent&8:'
  1011. - '&7rank from &nstore.novawars.net'
  1012. overlordavailable:
  1013. material: chest
  1014. data: 0
  1015. slot: 14
  1016. priority: 2
  1017. update: true
  1018. hide_attributes: true
  1019. view_requirement:
  1020. requirements:
  1021. overlord_available:
  1022. type: string equals ignorecase
  1023. input: '%essentials_kit_is_available_overlord%'
  1024. output: 'yes'
  1025. display_name: '&f&lOverlord Loot Pouch &7&l(Unlocked)'
  1026. lore:
  1027. - '&7This legendary loot pouch is filled with'
  1028. - '&7rare items to use throughout the world.'
  1029. - '&7This kit contains many items which are '
  1030. - '&7found by users who have purchased rank'
  1031. - '&8:&4Overlord&8: &7from &nstore.novawars.net'
  1032. - '&7'
  1033. - '&f&nIncludes..'
  1034. - '&f&l* &7Enchanted Armour Set (Lvl VII)'
  1035. - '&f&l* &7Enchanted Equiptment Set (Lvl VII)'
  1036. - '&f&l* &7Healables / Consumables'
  1037. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  1038. - '&f&l* &7And Several More..'
  1039. - '&7'
  1040. - '&f&lTIP: &7Make sure your inventory is empty'
  1041. - '&7before you redeem your loot pouch.'
  1042. left_click_commands:
  1043. - '[player] kit overlord'
  1044. - '[close]'
  1045. right_click_commands:
  1046. - '[player] kit overlord'
  1047. - '[close]'
  1048. overlordcooldown:
  1049. material: stained_glass_pane
  1050. data: 1
  1051. slot: 14
  1052. priority: 3
  1053. update: true
  1054. display_name: '&f&lOverlord Loot Pouch &7&l(Cooldown)'
  1055. lore:
  1056. - '&7This legendary loot pouch is filled with'
  1057. - '&7rare items to use throughout the world.'
  1058. - '&7This kit contains many items which are '
  1059. - '&7found by users who have purchased rank'
  1060. - '&8:&4Overlord&8: &7from &nstore.novawars.net'
  1061. - '&7'
  1062. - '&f&nIncludes..'
  1063. - '&f&l* &7Enchanted Armour Set (Lvl VII)'
  1064. - '&f&l* &7Enchanted Equiptment Set (Lvl VII)'
  1065. - '&f&l* &7Healables / Consumables'
  1066. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  1067. - '&f&l* &7And Several More..'
  1068. - '&7'
  1069. - '&7This kit is currently on &ncooldown&7! It will be'
  1070. - '&7available in &f&l&n%essentials_kit_time_until_available_overlord%'
  1071. left_click_commands:
  1072. - '[player] kit overlord'
  1073. - '[close]'
  1074. right_click_commands:
  1075. - '[player] kit overlord'
  1076. - '[close]'
  1077. overlordnopermission:
  1078. material: 160
  1079. data: 14
  1080. slot: 14
  1081. priority: 1
  1082. update: true
  1083. hide_attributes: true
  1084. view_requirement:
  1085. requirements:
  1086. overlord_nopermission:
  1087. type: string equals ignorecase
  1088. input: '%essentials_has_kit_overlord%'
  1089. output: 'no'
  1090. display_name: '&f&lOverlord Loot Pouch &7&l(Locked)'
  1091. lore:
  1092. - '&7This legendary loot pouch is filled with'
  1093. - '&7rare items to use throughout the world.'
  1094. - '&7This kit contains many items which are '
  1095. - '&7found by users who have purchased rank'
  1096. - '&8:&4Overlord&8: &7from &nstore.novawars.net'
  1097. - '&7'
  1098. - '&f&nIncludes..'
  1099. - '&f&l* &7Enchanted Armour Set (Lvl VII)'
  1100. - '&f&l* &7Enchanted Equiptment Set (Lvl VII)'
  1101. - '&f&l* &7Healables / Consumables'
  1102. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  1103. - '&f&l* &7And Several More..'
  1104. - '&7'
  1105. - '&7This kit is currently &c&nLocked&7! In order to'
  1106. - '&7redeem this kit, you must purchase &8:&4Overlord&8:'
  1107. - '&7rank from &nstore.novawars.net'
  1108. anarchistavailable:
  1109. material: chest
  1110. data: 0
  1111. slot: 15
  1112. priority: 2
  1113. update: true
  1114. hide_attributes: true
  1115. view_requirement:
  1116. requirements:
  1117. anarchist_available:
  1118. type: string equals ignorecase
  1119. input: '%essentials_kit_is_available_anarchist%'
  1120. output: 'yes'
  1121. display_name: '&f&lAnarchist Loot Pouch &7&l(Unlocked)'
  1122. lore:
  1123. - '&7This legendary loot pouch is filled with'
  1124. - '&7rare items to use throughout the world.'
  1125. - '&7This kit contains many items which are '
  1126. - '&7found by users who have purchased rank'
  1127. - '&8:&3Anarchist&8: &7from &nstore.novawars.net'
  1128. - '&7'
  1129. - '&f&nIncludes..'
  1130. - '&f&l* &7Enchanted Armour Set (Lvl VIII)'
  1131. - '&f&l* &7Enchanted Equiptment Set (Lvl VIII)'
  1132. - '&f&l* &7Healables / Consumables'
  1133. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  1134. - '&f&l* &7And Several More..'
  1135. - '&7'
  1136. - '&f&lTIP: &7Make sure your inventory is empty'
  1137. - '&7before you redeem your loot pouch.'
  1138. left_click_commands:
  1139. - '[player] kit anarchist'
  1140. - '[close]'
  1141. right_click_commands:
  1142. - '[player] kit anarchist'
  1143. - '[close]'
  1144. anarchistcooldown:
  1145. material: stained_glass_pane
  1146. data: 1
  1147. slot: 15
  1148. priority: 3
  1149. update: true
  1150. display_name: '&f&lAnarchist Loot Pouch &7&l(Cooldown)'
  1151. lore:
  1152. - '&7This legendary loot pouch is filled with'
  1153. - '&7rare items to use throughout the world.'
  1154. - '&7This kit contains many items which are '
  1155. - '&7found by users who have purchased rank'
  1156. - '&8:&3Anarchist&8: &7from &nstore.novawars.net'
  1157. - '&7'
  1158. - '&f&nIncludes..'
  1159. - '&f&l* &7Enchanted Armour Set (Lvl VIII)'
  1160. - '&f&l* &7Enchanted Equiptment Set (Lvl VIII)'
  1161. - '&f&l* &7Healables / Consumables'
  1162. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  1163. - '&f&l* &7And Several More..'
  1164. - '&7'
  1165. - '&7This kit is currently on &ncooldown&7! It will be'
  1166. - '&7available in &f&l&n%essentials_kit_time_until_available_anarchist%'
  1167. left_click_commands:
  1168. - '[player] kit anarchist'
  1169. - '[close]'
  1170. right_click_commands:
  1171. - '[player] kit anarchist'
  1172. - '[close]'
  1173. anarchistnopermission:
  1174. material: 160
  1175. data: 14
  1176. slot: 15
  1177. priority: 1
  1178. update: true
  1179. hide_attributes: true
  1180. view_requirement:
  1181. requirements:
  1182. anarchist_nopermission:
  1183. type: string equals ignorecase
  1184. input: '%essentials_has_kit_anarchist%'
  1185. output: 'no'
  1186. display_name: '&f&lAnarchist Loot Pouch &7&l(Locked)'
  1187. lore:
  1188. - '&7This legendary loot pouch is filled with'
  1189. - '&7rare items to use throughout the world.'
  1190. - '&7This kit contains many items which are '
  1191. - '&7found by users who have purchased rank'
  1192. - '&8:&3Anarchist&8: &7from &nstore.novawars.net'
  1193. - '&7'
  1194. - '&f&nIncludes..'
  1195. - '&f&l* &7Enchanted Armour Set (Lvl VIII)'
  1196. - '&f&l* &7Enchanted Equiptment Set (Lvl VIII)'
  1197. - '&f&l* &7Healables / Consumables'
  1198. - '&f&l* &7Raiding Supplies (Redstone / TnT)'
  1199. - '&f&l* &7And Several More..'
  1200. - '&7'
  1201. - '&7This kit is currently &c&nLocked&7! In order to'
  1202. - '&7redeem this kit, you must purchase &8:&3Anarchist&8:'
  1203. - '&7rank from &nstore.novawars.net'
  1204. onceavailable:
  1205. material: chest
  1206. data: 0
  1207. slot: 16
  1208. priority: 2
  1209. update: true
  1210. hide_attributes: true
  1211. view_requirement:
  1212. requirements:
  1213. once_available:
  1214. type: string equals ignorecase
  1215. input: '%essentials_kit_is_available_once%'
  1216. output: 'yes'
  1217. display_name: '&f&lOnce Loot Pouch &7&l(Unlocked)'
  1218. lore:
  1219. - '&7This legendary loot pouch is filled with'
  1220. - '&7rare items to use throughout the world.'
  1221. - '&7This kit contains many items which are '
  1222. - '&7only redeemable &nOnce&7!'
  1223. - '&7'
  1224. - '&f&nIncludes..'
  1225. - '&f&l* &7Enchanted Armour Set (Lvl XIV)'
  1226. - '&f&l* &72x Pig Spawner'
  1227. - '&f&l* &72x Cow Spawner'
  1228. - '&f&l* &72x Sheep Spawner'
  1229. - '&f&l* &716x Hopper'
  1230. - '&7'
  1231. - '&f&lTIP: &7Make sure your inventory is empty'
  1232. - '&7before you redeem your loot pouch.'
  1233. left_click_commands:
  1234. - '[player] kit once'
  1235. - '[close]'
  1236. right_click_commands:
  1237. - '[player] kit corporal'
  1238. - '[close]'
  1239. oncecooldown:
  1240. material: 160
  1241. data: 14
  1242. slot: 16
  1243. priority: 3
  1244. update: true
  1245. display_name: '&f&lOnce Loot Pouch &7&l(Locked)'
  1246. lore:
  1247. - '&7This legendary loot pouch is filled with'
  1248. - '&7rare items to use throughout the world.'
  1249. - '&7This kit contains many items which are '
  1250. - '&7only redeemable &nOnce&7!'
  1251. - '&7'
  1252. - '&f&nIncludes..'
  1253. - '&f&l* &7Enchanted Armour Set (Lvl XIV)'
  1254. - '&f&l* &72x Pig Spawner'
  1255. - '&f&l* &72x Cow Spawner'
  1256. - '&f&l* &72x Sheep Spawner'
  1257. - '&f&l* &716x Hopper'
  1258. - '&7'
  1259. - '&7This kit has been permanantly &c&nLocked&7! It was only'
  1260. - '&7a one time use kit.'
  1261. left_click_commands:
  1262. - '[close]'
  1263. right_click_commands:
  1264. - '[close]'
  1265. oncenopermission:
  1266. material: 160
  1267. data: 14
  1268. slot: 16
  1269. priority: 1
  1270. update: true
  1271. hide_attributes: true
  1272. view_requirement:
  1273. requirements:
  1274. once_nopermission:
  1275. type: string equals ignorecase
  1276. input: '%essentials_has_kit_once%'
  1277. output: 'no'
  1278. display_name: '&f&lOnce Loot Pouch &7&l(Locked)'
  1279. lore:
  1280. - '&7This legendary loot pouch is filled with'
  1281. - '&7rare items to use throughout the world.'
  1282. - '&7This kit contains many items which are '
  1283. - '&7only redeemable &nOnce&7!'
  1284. - '&7'
  1285. - '&f&nIncludes..'
  1286. - '&f&l* &7Enchanted Armour Set (Lvl XIV)'
  1287. - '&f&l* &72x Pig Spawner'
  1288. - '&f&l* &72x Cow Spawner'
  1289. - '&f&l* &72x Sheep Spawner'
  1290. - '&f&l* &716x Hopper'
  1291. - '&7'
  1292. - '&7This kit has been permanantly &c&nLocked&7! It was only'
  1293. - '&7a one time use kit.'
  1294. help:
  1295. menu_title: '&7&lServer Support'
  1296. open_command:
  1297. - help
  1298. - support
  1299. - ehelp
  1300. size: 27
  1301. items:
  1302. '1':
  1303. material: CHEST
  1304. slot: 10
  1305. update: true
  1306. display_name: '&f&lServer Kits'
  1307. lore:
  1308. - '&7You can obtain server kits which contain'
  1309. - '&7several items on a weekly basis. The higher'
  1310. - '&7rank that you have, the better kits you'
  1311. - '&7will get. You can purchase a rank at'
  1312. - '&7&nstore.novawars.net'
  1313. - '&7'
  1314. - '&e(!) &7Type /Kit to view the kit menu'
  1315. '2':
  1316. material: GRASS
  1317. slot: 11
  1318. update: true
  1319. display_name: '&f&lServer Warps'
  1320. lore:
  1321. - '&7You can teleport to specific biomes'
  1322. - '&7across the whole map, or you can'
  1323. - '&7teleport to specific parts of the world'
  1324. - '&7for example, the nether.'
  1325. - '&7'
  1326. - '&e(!) &7Type /Warp to view the warp menu'
  1327. '3':
  1328. material: DIAMOND_SWORD
  1329. slot: 12
  1330. update: true
  1331. display_name: '&f&lServer Events'
  1332. lore:
  1333. - '&7We have many events which take place daily'
  1334. - '&7on the server, you can find details of each'
  1335. - '&7one listed below.'
  1336. - '&7'
  1337. - '&f&lKoTH'
  1338. - '&7King Of The Hill takes place at specific times'
  1339. - '&7of the day, 2AM, 10AM, 4PM and 9PM GMT. You'
  1340. - '&7can get rewards such as Ranks, Crate keys,'
  1341. - '&7Commands, Cluescrolls and more.'
  1342. - '&7'
  1343. - '&f&lOutpost'
  1344. - '&7The outpost event is contantly on, and will'
  1345. - '&7always be rewarding the controling faction'
  1346. - '&7Type /outpost for more details'
  1347. - '&7'
  1348. - '&f&lEnvoy Event'
  1349. - '&7The Envoy event occurs every 4 hours, and'
  1350. - '&7several lootcrates will drop all around'
  1351. - '&7spawn, in the warzone. You open them for'
  1352. - '&7rewards such as Ranks, Tags and Money Pouches'
  1353. '4':
  1354. material: OBSIDIAN
  1355. slot: 14
  1356. update: true
  1357. display_name: '&f&lFaction Top'
  1358. lore:
  1359. - '&7You can compete with other factions'
  1360. - '&7to become the top faction, and being in'
  1361. - '&7the top 3, you will get buycraft vouchers'
  1362. - '&7to spend on the server store!'
  1363. - '&7'
  1364. - '&e(!) &7Type /F top to view the top factions'
  1365. '5':
  1366. material: RAW_FISH
  1367. slot: 15
  1368. update: true
  1369. display_name: '&f&lCustom Fishing'
  1370. lore:
  1371. - '&7We have taken fishing to the next level'
  1372. - '&7by giving you the ability to fish out'
  1373. - '&7crate charms to use at the crates!'
  1374. - '&7'
  1375. - '&e(!) &7Type /wild to find a place to fish!'
  1376. '7':
  1377. material: STONE
  1378. slot: 16
  1379. update: true
  1380. display_name: '&f&lRandom Teleport'
  1381. lore:
  1382. - '&7If you want to teleport to places'
  1383. - '&7on the map, you can use the command'
  1384. - '&7and you will be teleported into a'
  1385. - '&7random place on the map!'
  1386. - '&7'
  1387. - '&e(!) &7Type /wild to find a random place!'
  1388. '8':
  1389. material: BOOK
  1390. slot: 22
  1391. update: true
  1392. display_name: '&f&lExtra Support'
  1393. lore:
  1394. - '&7If we did not manage to answer'
  1395. - '&7your query, you can always ask for'
  1396. - '&7instant support in the chat, otherwise'
  1397. - '&7you can ask for support on these websites'
  1398. - '&7'
  1399. - '&f&lFORUMS: &7Forums.NovaWars.Net'
  1400. - '&f&lDISCORD: &7http://discord.gg/NhvH63R'
  1401. ranks:
  1402. menu_title: '&f&lServer Ranks'
  1403. open_command:
  1404. - ranks
  1405. - perks
  1406. size: 9
  1407. items:
  1408. panes2:
  1409. material: 160
  1410. data: 8
  1411. slots:
  1412. - 0
  1413. - 8
  1414. display_name: ' '
  1415. '1':
  1416. material: BOOK
  1417. slot: 2
  1418. update: true
  1419. display_name: '&f&l* &f&lWarrior Rank &f&l*'
  1420. lore:
  1421. - '&7Purchase the &f&nWarrior Rank&7 at &7&nstore.novawars.net&7'
  1422. - '&f '
  1423. - '&f&lPERKS:'
  1424. - '&f» &eLevel 4 Enchanted Armour Set'
  1425. - '&f» &e3 Player Vaults | 3 Auction Positions | 3 Set-Homes.'
  1426. - '&f» &eAbility to use 15 GenBuckets at once.'
  1427. - '&f» &eAbility to receive Warrior Weekly Rewards.'
  1428. - '&e'
  1429. - '&f&lCOMMANDS:'
  1430. - '&f» &e/Enderchest'
  1431. - '&f» &e/Recipe'
  1432. - '&f» &e/Workbench'
  1433. - '&f» &e/Ignore'
  1434. - '&6'
  1435. - '&7This rank also has access to the &f"&8:&6Warrior&8:&f" &7tag'
  1436. - '&7and has the ability to join when the server is full!'
  1437. '2':
  1438. material: BOOK
  1439. slot: 3
  1440. update: true
  1441. display_name: '&f&l* &a&lRogue Rank &f&l*'
  1442. lore:
  1443. - '&7Purchase the &a&nRogue Rank&7 at &7&nstore.novawars.net&7'
  1444. - '&f '
  1445. - '&f&lPERKS:'
  1446. - '&f» &eLevel 5 Enchanted Armour Set'
  1447. - '&f» &e4 Player Vaults | 4 Auction Positions | 4 Set-Homes.'
  1448. - '&f» &eAbility to use 17 GenBuckets at once.'
  1449. - '&f» &eAbility to receive Rogue Weekly Rewards.'
  1450. - '&e'
  1451. - '&f&lCOMMANDS:'
  1452. - '&f» &e/Near'
  1453. - '&f» &e/Nickname'
  1454. - '&6'
  1455. - '&7This rank also has access to the &f"&8:&aRogue&8:&f" &7tag'
  1456. - '&7and has the ability to join when the server is full!'
  1457. '3':
  1458. material: BOOK
  1459. slot: 4
  1460. update: true
  1461. display_name: '&f&l* &c&lSargent Rank &f&l*'
  1462. lore:
  1463. - '&7Purchase the &c&nSargent Rank&7 at &7&nstore.novawars.net&7'
  1464. - '&f '
  1465. - '&f&lPERKS:'
  1466. - '&f» &eLevel 6 Enchanted Armour Set'
  1467. - '&f» &e5 Player Vaults | 5 Auction Positions | 5 Set-Homes.'
  1468. - '&f» &eAbility to use 20 GenBuckets at once.'
  1469. - '&f» &eAbility to receive Sargent Weekly Rewards.'
  1470. - '&f» &eAbility to Use Silk-Touch to break spawners.'
  1471. - '&e'
  1472. - '&f&lCOMMANDS:'
  1473. - '&f» &e/Back'
  1474. - '&f» &e/Feed'
  1475. - '&6'
  1476. - '&7This rank also has access to the &f"&8:&cSargent&8:&f" &7tag'
  1477. - '&7and has the ability to join when the server is full!'
  1478. '4':
  1479. material: BOOK
  1480. slot: 5
  1481. update: true
  1482. display_name: '&f&l* &4&lOverlord Rank &f&l*'
  1483. lore:
  1484. - '&7Purchase the &4&nOverlord Rank&7 at &7&nstore.novawars.net&7'
  1485. - '&f '
  1486. - '&f&lPERKS:'
  1487. - '&f» &eLevel 7 Enchanted Armour Set'
  1488. - '&f» &e6 Player Vaults | 6 Auction Positions | 6 Set-Homes.'
  1489. - '&f» &eAbility to use 25 GenBuckets at once.'
  1490. - '&f» &eAbility to receive Overlord Weekly Rewards.'
  1491. - '&e'
  1492. - '&f&lCOMMANDS:'
  1493. - '&f» &e/Time set (Day | Night)'
  1494. - '&f» &e/FPSBoost'
  1495. - '&f» &e/Smelt'
  1496. - '&6'
  1497. - '&7This rank also has access to the &f"&8:&4Overlord&8:&f" &7tag'
  1498. - '&7and has the ability to join when the server is full!'
  1499. '5':
  1500. material: BOOK
  1501. slot: 6
  1502. update: true
  1503. display_name: '&f&l* &3&lAnarchist Rank &f&l*'
  1504. lore:
  1505. - '&7Purchase the &3&nAnarchist Rank&7 at &7&nstore.novawars.net&7'
  1506. - '&f '
  1507. - '&f&lPERKS:'
  1508. - '&f» &eLevel 8 Enchanted Armour Set'
  1509. - '&f» &e7 Player Vaults | 7 Auction Positions | 7 Set-Homes.'
  1510. - '&f» &eAbility to use 28 GenBuckets at once.'
  1511. - '&f» &eAbility to receive Anarchist Weekly Rewards.'
  1512. - '&e'
  1513. - '&f&lCOMMANDS:'
  1514. - '&f» &e/Heal'
  1515. - '&f» &e/Fix'
  1516. - '&f» &e/TntFill'
  1517. - '&f» &e/Sell Hand'
  1518. - '&6'
  1519. - '&7This rank also has access to the &f"&8:&3Anarchist&8:&f" &7tag'
  1520. - '&7and has the ability to join when the server is full!'
  1521. shop:
  1522. menu_title: Shop
  1523. open_command:
  1524. - shop
  1525. - shops
  1526. size: 36
  1527. items:
  1528. '1':
  1529. material: 379
  1530. data: 0
  1531. slot: 9
  1532. display_name: '&7&lBrewing Shop'
  1533. lore:
  1534. - '&7This shop sells all of the &nBrewing Materials&7'
  1535. - '&7you will ever need. Some items include gunpowder,'
  1536. - '&7blaze rods, nether wart, ect.'
  1537. - '&7Become a merchant and brew your elixir!'
  1538. - ''
  1539. - '&f&l* &7Right click to open the shop'
  1540. left_click_commands:
  1541. - '[player] brewing'
  1542. right_click_commands:
  1543. - '[player] brewing'
  1544. '2':
  1545. material: 351
  1546. data: 1
  1547. slot: 10
  1548. display_name: '&1&lDecoration Shop'
  1549. lore:
  1550. - '&7This shop sells all of the &nDecoration Materials&7'
  1551. - '&7you will ever need. Some items include glass,'
  1552. - '&7dyes, clay, ect.'
  1553. - '&7Become the most colourful player!'
  1554. - ''
  1555. - '&f&l* &7Right click to open the shop'
  1556. left_click_commands:
  1557. - '[player] color'
  1558. right_click_commands:
  1559. - '[player] color'
  1560. '3':
  1561. material: GRASS
  1562. data: 0
  1563. slot: 11
  1564. display_name: '&f&lMaterial Shop'
  1565. lore:
  1566. - '&7This shop sells all of the &nMaterials&7'
  1567. - '&7you will ever need. Some items include stone,'
  1568. - '&7bookshelves, prismarine, ect.'
  1569. - '&7Spruce up your base with some decoration!'
  1570. - ''
  1571. - '&f&l* &7Right click to open the shop'
  1572. left_click_commands:
  1573. - '[player] decor'
  1574. right_click_commands:
  1575. - '[player] decor'
  1576. '4':
  1577. material: 373
  1578. data: 0
  1579. slot: 12
  1580. display_name: '&8&lElixir Shop'
  1581. lore:
  1582. - '&7This shop sells all of the &nElixir Potions&7'
  1583. - '&7you will ever need. Some elixirs include fused,'
  1584. - '&7haste, magmatic, ect.'
  1585. - '&7Custom potion effects, whats more to love?'
  1586. - ''
  1587. - '&f&l* &7Right click to open the shop'
  1588. left_click_commands:
  1589. - '[player] elixirs'
  1590. right_click_commands:
  1591. - '[player] elixirs'
  1592. '5':
  1593. material: WHEAT
  1594. data: 0
  1595. slot: 13
  1596. display_name: '&f&lFarming Shop'
  1597. lore:
  1598. - '&7This shop sells all of the &nFarming Products&7'
  1599. - '&7you will ever need. Some items include wheat,'
  1600. - '&7seeds, saplings, ect.'
  1601. - '&7Sell your crops for $$'
  1602. - ''
  1603. - '&f&l* &7Right click to open the shop'
  1604. left_click_commands:
  1605. - '[player] farming'
  1606. right_click_commands:
  1607. - '[player] farming'
  1608. '6':
  1609. material: RAW_FISH
  1610. data: 0
  1611. slot: 14
  1612. display_name: '&3&lFishing Shop'
  1613. lore:
  1614. - '&7This shop sells all of the &nFishing Supplies&7'
  1615. - '&7you will ever need. Some items include salmon,'
  1616. - '&7fishing rod, clownfish, ect.'
  1617. - '&7Fisherman, Fish, Money!'
  1618. - ''
  1619. - '&f&l* &7Right click to open the shop'
  1620. left_click_commands:
  1621. - '[player] fish'
  1622. right_click_commands:
  1623. - '[player] fish'
  1624. '7':
  1625. material: 325
  1626. data: 0
  1627. slot: 15
  1628. display_name: '&5&lMiscellaneous Shop'
  1629. lore:
  1630. - '&7This shop sells all of the &nMiscellaneous items&7'
  1631. - '&7you will ever need. Some items include chests,'
  1632. - '&7buckets, hoppers, ect.'
  1633. - '&7All odd items which can have some value!'
  1634. - ''
  1635. - '&f&l* &7Right click to open the shop'
  1636. left_click_commands:
  1637. - '[player] misc'
  1638. right_click_commands:
  1639. - '[player] misc'
  1640. '8':
  1641. material: BONE
  1642. data: 0
  1643. slot: 16
  1644. display_name: '&d&lMob-Drops Shop'
  1645. lore:
  1646. - '&7This shop sells all of the &nMob-Drop items&7'
  1647. - '&7you will ever need. Some items include string,'
  1648. - '&7raw meat, arrows, ect.'
  1649. - '&7Earn some fast cash by slaughtering animals!'
  1650. - ''
  1651. - '&f&l* &7Right click to open the shop'
  1652. left_click_commands:
  1653. - '[player] mob'
  1654. right_click_commands:
  1655. - '[player] mob'
  1656. '9':
  1657. material: DIAMOND
  1658. data: 0
  1659. slot: 17
  1660. display_name: '&a&lMineral Shop'
  1661. lore:
  1662. - '&7This shop sells all of the &nMinerals and ores&7'
  1663. - '&7you will ever need. Some items include diamond,'
  1664. - '&7emerald, iron, ect.'
  1665. - '&7We''ve all got to complete the clue, right?'
  1666. - ''
  1667. - '&f&l* &7Right click to open the shop'
  1668. left_click_commands:
  1669. - '[player] ore'
  1670. right_click_commands:
  1671. - '[player] ore'
  1672. '10':
  1673. material: 374
  1674. data: 0
  1675. slot: 21
  1676. display_name: '&b&lPotion Shop'
  1677. lore:
  1678. - '&7This shop sells all of the &nPotions&7'
  1679. - '&7you will ever need. Some items include speed,'
  1680. - '&7strength, regeneration, ect.'
  1681. - '&7Skip the brewing, heal yourself!'
  1682. - ''
  1683. - '&f&l* &7Right click to open the shop'
  1684. left_click_commands:
  1685. - '[player] potions'
  1686. right_click_commands:
  1687. - '[player] potions'
  1688. '11':
  1689. material: 52
  1690. data: 0
  1691. slot: 22
  1692. display_name: '&d&lSpawner Shop'
  1693. lore:
  1694. - '&7This shop sells all of the &nSpawners&7'
  1695. - '&7you will ever need. Some items include pig,'
  1696. - '&7Iron-Golem, Creeper, ect.'
  1697. - '&7Expensive spawners are value on FTOP!'
  1698. - ''
  1699. - '&f&l* &7Right click to open the shop'
  1700. left_click_commands:
  1701. - '[player] spawnershop'
  1702. right_click_commands:
  1703. - '[player] spawnershop'
  1704. '12':
  1705. material: TNT
  1706. data: 0
  1707. slot: 23
  1708. display_name: '&c&lRaid Shop'
  1709. lore:
  1710. - '&7This shop sells all of the &nRaiding Supplies&7'
  1711. - '&7you will ever need. Some items include TnT,'
  1712. - '&7redstone, obsidian, ect.'
  1713. - '&7Purchase raid materials.. dont craft them!'
  1714. - ''
  1715. - '&f&l* &7Right click to open the shop'
  1716. left_click_commands:
  1717. - '[player] raid'
  1718. right_click_commands:
  1719. - '[player] raid'
  1720. enchanter:
  1721. menu_title: Enchanter
  1722. open_command:
  1723. - enchanters
  1724. open_requirement: ENCHANTER.ENCHANT
  1725. size: 36
  1726. items:
  1727. ProjectileProtectionMain:
  1728. material: 403
  1729. data: 0
  1730. slot: 0
  1731. display_name: '&7&lProjectile Projectile (I-VIII)'
  1732. lore:
  1733. - '&7This shop sells all of the &nProjectile Protection&7'
  1734. - '&7&nEnchants&7 which can be applied to all'
  1735. - '&7armour pieces.'
  1736. - ''
  1737. - '&f&l* &7Right click to open the shop'
  1738. left_click_commands:
  1739. - '[openguimenu] ProjectileProtectionEnchants'
  1740. right_click_commands:
  1741. - '[openguimenu] ProjectileProtectionEnchants'
  1742. ProtectionMain:
  1743. material: 403
  1744. data: 0
  1745. slot: 1
  1746. display_name: '&7&lProtection (I-VIII)'
  1747. lore:
  1748. - '&7This shop sells all of the &nProtection&7'
  1749. - '&7&nEnchantments&7 which can be applied to'
  1750. - '&7all armour pieces.'
  1751. - ''
  1752. - '&f&l* &7Right click to open the shop'
  1753. left_click_commands:
  1754. - '[openguimenu] ProtectionEnchants'
  1755. right_click_commands:
  1756. - '[openguimenu] ProtectionEnchants'
  1757. FireProtectionMain:
  1758. material: 403
  1759. data: 0
  1760. slot: 2
  1761. display_name: '&7&lFire Projectile (I-VIII)'
  1762. lore:
  1763. - '&7This shop sells all of the &nFire Protection&7'
  1764. - '&7&nEnchants&7 which can be applied to all'
  1765. - '&7armour pieces.'
  1766. - ''
  1767. - '&f&l* &7Right click to open the shop'
  1768. left_click_commands:
  1769. - '[openguimenu] FireProtectionEnchants'
  1770. right_click_commands:
  1771. - '[openguimenu] FireProtectionEnchants'
  1772. BlastProtectionMain:
  1773. material: 403
  1774. data: 0
  1775. slot: 3
  1776. display_name: '&7&lBlast Projectile (I-VIII)'
  1777. lore:
  1778. - '&7This shop sells all of the &nBlast Protection&7'
  1779. - '&7&nEnchants&7 which can be applied to all'
  1780. - '&7armour pieces.'
  1781. - '&f&l* &7Right click to open the shop'
  1782. left_click_commands:
  1783. - '[openguimenu] BlastProtectionEnchants'
  1784. right_click_commands:
  1785. - '[openguimenu] BlastProtectionEnchants'
  1786. BaneofArthropodsMain:
  1787. material: 403
  1788. data: 0
  1789. slot: 4
  1790. display_name: '&7&lBane of Arthropods (I-VIII)'
  1791. lore:
  1792. - '&7This shop sells all of the &nBane of Arthropods&7'
  1793. - '&7&nEnchants&7 which can be applied to all'
  1794. - '&7armour pieces.'
  1795. - ''
  1796. - '&f&l* &7Right click to open the shop'
  1797. left_click_commands:
  1798. - '[openguimenu] BaneofArthropodsEnchants'
  1799. right_click_commands:
  1800. - '[openguimenu] BaneofArthropodsEnchants'
  1801. AquaAffinityMain:
  1802. material: 403
  1803. data: 0
  1804. slot: 5
  1805. display_name: '&7&lAqua Affinity (I-VIII)'
  1806. lore:
  1807. - '&7This shop sells all of the &nAqua Affinity&7'
  1808. - '&7&nEnchants&7 which can be applied to all'
  1809. - '&7armour pieces.'
  1810. - '&f&l* &7Right click to open the shop'
  1811. left_click_commands:
  1812. - '[openguimenu] AquaAffinityEnchants'
  1813. right_click_commands:
  1814. - '[openguimenu] AquaAffinityEnchants'
  1815. DepthStriderMain:
  1816. material: 403
  1817. data: 0
  1818. slot: 6
  1819. display_name: '&7&lDepth Strider (I-VIII)'
  1820. lore:
  1821. - '&7This shop sells all of the &nDepth Strider&7'
  1822. - '&7&nEnchants&7 which can be applied to all'
  1823. - '&7armour pieces.'
  1824. - ''
  1825. - '&f&l* &7Right click to open the shop'
  1826. left_click_commands:
  1827. - '[openguimenu] DepthStriderEnchants'
  1828. right_click_commands:
  1829. - '[openguimenu] DepthStriderEnchants'
  1830. EfficiencyMain:
  1831. material: 403
  1832. data: 0
  1833. slot: 7
  1834. display_name: '&7&lEfficiency (I-VIII)'
  1835. lore:
  1836. - '&7This shop sells all of the &nEfficiency&7'
  1837. - '&7&nEnchants&7 which can be applied to all'
  1838. - '&7armour pieces.'
  1839. - ''
  1840. - '&f&l* &7Right click to open the shop'
  1841. left_click_commands:
  1842. - '[openguimenu] EfficiencyEnchants'
  1843. right_click_commands:
  1844. - '[openguimenu] EfficiencyEnchants'
  1845. FeatherFallingMain:
  1846. material: 403
  1847. data: 0
  1848. slot: 8
  1849. display_name: '&7&lFeather Falling (I-VIII)'
  1850. lore:
  1851. - '&7This shop sells all of the &nFeather Falling&7'
  1852. - '&7&nEnchants&7 which can be applied to all'
  1853. - '&7armour pieces.'
  1854. - ''
  1855. - '&f&l* &7Right click to open the shop'
  1856. left_click_commands:
  1857. - '[openguimenu] FeatherFallingEnchants'
  1858. right_click_commands:
  1859. - '[openguimenu] FeatherFallingEnchants'
  1860. FireAspectMain:
  1861. material: 403
  1862. data: 0
  1863. slot: 9
  1864. display_name: '&7&lFire Aspect (I-VIII)'
  1865. lore:
  1866. - '&7This shop sells all of the &nFire Aspect&7'
  1867. - '&7&nEnchants&7 which can be applied to all'
  1868. - '&7armour pieces.'
  1869. - ''
  1870. - '&f&l* &7Right click to open the shop'
  1871. left_click_commands:
  1872. - '[openguimenu] FireAspectEnchants'
  1873. right_click_commands:
  1874. - '[openguimenu] FireAspectEnchants'
  1875. FlameMain:
  1876. material: 403
  1877. data: 0
  1878. slot: 10
  1879. display_name: '&7&lFlame (I-VIII)'
  1880. lore:
  1881. - '&7This shop sells all of the &nFlame Enchants&7'
  1882. - '&7which can be applied to bows.'
  1883. - ''
  1884. - '&f&l* &7Right click to open the shop'
  1885. left_click_commands:
  1886. - '[openguimenu] FlameEnchants'
  1887. right_click_commands:
  1888. - '[openguimenu] FlameEnchants'
  1889. FortuneMain:
  1890. material: 403
  1891. data: 0
  1892. slot: 11
  1893. display_name: '&7&lFortune (I-VIII)'
  1894. lore:
  1895. - '&7This shop sells all of the &nFortune Enchants&7'
  1896. - '&7which can be applied to all tools.'
  1897. - ''
  1898. - '&f&l* &7Right click to open the shop'
  1899. left_click_commands:
  1900. - '[openguimenu] FortuneEnchants'
  1901. right_click_commands:
  1902. - '[openguimenu] FortuneEnchants'
  1903. KnockbackMain:
  1904. material: 403
  1905. data: 0
  1906. slot: 12
  1907. display_name: '&7&lKnockback (I-VIII)'
  1908. lore:
  1909. - '&7This shop sells all of the &nKnockback Enchants&7'
  1910. - '&7which can be applied to swords and axes.'
  1911. - ''
  1912. - '&f&l* &7Right click to open the shop'
  1913. left_click_commands:
  1914. - '[openguimenu] KnockbackEnchants'
  1915. right_click_commands:
  1916. - '[openguimenu] KnockbackEnchants'
  1917. LootingMain:
  1918. material: 403
  1919. data: 0
  1920. slot: 13
  1921. display_name: '&7&lLooting (I-VIII)'
  1922. lore:
  1923. - '&7This shop sells all of the &nLooting Enchants&7'
  1924. - '&7which can be applied to swords.'
  1925. - ''
  1926. - '&f&l* &7Right click to open the shop'
  1927. left_click_commands:
  1928. - '[openguimenu] LootingEnchants'
  1929. right_click_commands:
  1930. - '[openguimenu] LootingEnchants'
  1931. LuckoftheSeaMain:
  1932. material: 403
  1933. data: 0
  1934. slot: 14
  1935. display_name: '&7&lLuck of the Sea (I-VIII)'
  1936. lore:
  1937. - '&7This shop sells all of the &nLuck of the&7'
  1938. - '&7&nSea Enchants which can be applied to'
  1939. - '&7fishing rods.'
  1940. - ''
  1941. - '&f&l* &7Right click to open the shop'
  1942. left_click_commands:
  1943. - '[openguimenu] LuckoftheSeaEnchants'
  1944. right_click_commands:
  1945. - '[openguimenu] LuckoftheSeaEnchants'
  1946. LureMain:
  1947. material: 403
  1948. data: 0
  1949. slot: 15
  1950. display_name: '&7&lLure (I-VIII)'
  1951. lore:
  1952. - '&7This shop sells all of the &nLure&7'
  1953. - '&7which can be applied to fishing rods.'
  1954. - ''
  1955. - '&f&l* &7Right click to open the shop'
  1956. left_click_commands:
  1957. - '[openguimenu] LureEnchants'
  1958. right_click_commands:
  1959. - '[openguimenu] LureEnchants'
  1960. PowerMain:
  1961. material: 403
  1962. data: 0
  1963. slot: 16
  1964. display_name: '&7&lPower (I-VIII)'
  1965. lore:
  1966. - '&7This shop sells all of the &nPower&7'
  1967. - '&7which can be applied to bows.'
  1968. - ''
  1969. - '&f&l* &7Right click to open the shop'
  1970. left_click_commands:
  1971. - '[openguimenu] PowerEnchants'
  1972. right_click_commands:
  1973. - '[openguimenu] PowerEnchants'
  1974. PunchMain:
  1975. material: 403
  1976. data: 0
  1977. slot: 16
  1978. display_name: '&7&lPunch (I-VIII)'
  1979. lore:
  1980. - '&7This shop sells all of the &nPunch&7'
  1981. - '&7which can be applied to bows.'
  1982. - ''
  1983. - '&f&l* &7Right click to open the shop'
  1984. left_click_commands:
  1985. - '[openguimenu] PunchEnchants'
  1986. right_click_commands:
  1987. - '[openguimenu] PunchEnchants'
  1988. RespirationMain:
  1989. material: 403
  1990. data: 0
  1991. slot: 17
  1992. display_name: '&7&lRespiration (I-VIII)'
  1993. lore:
  1994. - '&7This shop sells all of the &nRespiration&7'
  1995. - '&7which can be applied to helmets.'
  1996. - ''
  1997. - '&f&l* &7Right click to open the shop'
  1998. left_click_commands:
  1999. - '[openguimenu] RespirationEnchants'
  2000. right_click_commands:
  2001. - '[openguimenu] RespirationEnchants'
  2002. SharpnessMain:
  2003. material: 403
  2004. data: 0
  2005. slot: 20
  2006. display_name: '&7&lSharpness (I-VIII)'
  2007. lore:
  2008. - '&7This shop sells all of the &nSharpness&7'
  2009. - '&7which can be applied to swords and axes.'
  2010. - ''
  2011. - '&f&l* &7Right click to open the shop'
  2012. left_click_commands:
  2013. - '[openguimenu] SharpnessEnchants'
  2014. right_click_commands:
  2015. - '[openguimenu] SharpnessEnchants'
  2016. SilktouchMain:
  2017. material: 403
  2018. data: 0
  2019. slot: 21
  2020. display_name: '&7&lSilktouch (I)'
  2021. lore:
  2022. - '&7This shop sells all of the &nSilktouch&7'
  2023. - '&7which can be applied to all tools.'
  2024. - ''
  2025. - '&f&l* &7Right click to open the shop'
  2026. left_click_commands:
  2027. - '[openguimenu] SilktouchEnchants'
  2028. right_click_commands:
  2029. - '[openguimenu] SilktouchEnchants'
  2030. SmiteMain:
  2031. material: 403
  2032. data: 0
  2033. slot: 22
  2034. display_name: '&7&lSmite (I-VIII)'
  2035. lore:
  2036. - '&7This shop sells all of the &nSmite&7'
  2037. - '&7which can be applied to swords.'
  2038. - ''
  2039. - '&f&l* &7Right click to open the shop'
  2040. left_click_commands:
  2041. - '[openguimenu] SmiteEnchants'
  2042. right_click_commands:
  2043. - '[openguimenu] SmiteEnchants'
  2044. ThornsMain:
  2045. material: 403
  2046. data: 0
  2047. slot: 23
  2048. display_name: '&7&lThorns (I-VIII)'
  2049. lore:
  2050. - '&7This shop sells all of the &nThorns&7'
  2051. - '&7which can be applied to all'
  2052. - '&7armour pieces.'
  2053. - ''
  2054. - '&f&l* &7Right click to open the shop'
  2055. left_click_commands:
  2056. - '[openguimenu] ThornsEnchants'
  2057. right_click_commands:
  2058. - '[openguimenu] ThornsEnchants'
  2059. MiscellaneousMain:
  2060. material: 384
  2061. data: 0
  2062. slot: 31
  2063. display_name: '&7&lMiscellaneous Items'
  2064. lore:
  2065. - '&7This shop sells all of the &nMiscellaneous&7'
  2066. - '&7items such as enchantment bottles, books'
  2067. - '&7and other items'
  2068. - ''
  2069. - '&f&l* &7Right click to open the shop'
  2070. left_click_commands:
  2071. - '[player] misc'
  2072. right_click_commands:
  2073. - '[player] misc'
  2074. UnbreakingMain:
  2075. material: 403
  2076. data: 0
  2077. slot: 24
  2078. display_name: '&7&lUnbreaking (I-VIII)'
  2079. lore:
  2080. - '&7This shop sells all of the &nUnbreaking&7'
  2081. - '&7which can be applied to armour,'
  2082. - '&7weapons and tools.'
  2083. - ''
  2084. - '&f&l* &7Right click to open the shop'
  2085. left_click_commands:
  2086. - '[openguimenu] UnbreakingEnchants'
  2087. right_click_commands:
  2088. - '[openguimenu] UnbreakingEnchants'
  2089. ProjectileProtectionEnchants:
  2090. menu_title: Projectile Protection (I-VIII)
  2091. open_command:
  2092. - ProjectileProtection
  2093. open_requirement: ENCHANTER.ENCHANT
  2094. size: 9
  2095. items:
  2096. I:
  2097. material: 403
  2098. data: 0
  2099. slot: 0
  2100. display_name: '&7&lProjectile Protection Enchant (I)'
  2101. lore:
  2102. - '&7Upon purchasing, you will receive 1x'
  2103. - '&7Projectile Protection I enchantment'
  2104. - '&7book which can be applied to'
  2105. - '&7all Armour pieces.'
  2106. - ''
  2107. - '&f&l* &7Right click to open the shop'
  2108. left_click_commands:
  2109. - '[takemoney] 15000'
  2110. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:1}]}'
  2111. right_click_commands:
  2112. - '[takemoney] 15000'
  2113. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:1}]}'
  2114. II:
  2115. material: 403
  2116. data: 0
  2117. slot: 1
  2118. display_name: '&7&lProjectile Protection Enchant (II)'
  2119. lore:
  2120. - '&7Upon purchasing, you will receive 1x'
  2121. - '&7Projectile Protection II enchantment'
  2122. - '&7book which can be applied to'
  2123. - '&7all Armour pieces.'
  2124. - ''
  2125. - '&f&l* &7Right click to open the shop'
  2126. left_click_commands:
  2127. - '[takemoney] 25000'
  2128. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:2}]}'
  2129. right_click_commands:
  2130. - '[takemoney] 25000'
  2131. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:2}]}'
  2132. III:
  2133. material: 403
  2134. data: 0
  2135. slot: 2
  2136. display_name: '&7&lProjectile Protection Enchant (III)'
  2137. lore:
  2138. - '&7Upon purchasing, you will receive 1x'
  2139. - '&7Projectile Protection III enchantment'
  2140. - '&7book which can be applied to'
  2141. - '&7all Armour pieces.'
  2142. - ''
  2143. - '&f&l* &7Right click to open the shop'
  2144. left_click_commands:
  2145. - '[takemoney] 50000'
  2146. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:3}]}'
  2147. right_click_commands:
  2148. - '[takemoney] 50000'
  2149. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:3}]}'
  2150. IV:
  2151. material: 403
  2152. data: 0
  2153. slot: 3
  2154. display_name: '&7&lProjectile Protection Enchant (IV)'
  2155. lore:
  2156. - '&7Upon purchasing, you will receive 1x'
  2157. - '&7Projectile Protection IV enchantment'
  2158. - '&7book which can be applied to'
  2159. - '&7all Armour pieces.'
  2160. - ''
  2161. - '&f&l* &7Right click to open the shop'
  2162. left_click_commands:
  2163. - '[takemoney] 75000'
  2164. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:4}]}'
  2165. right_click_commands:
  2166. - '[takemoney] 75000'
  2167. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:4}]}'
  2168. V:
  2169. material: 403
  2170. data: 0
  2171. slot: 4
  2172. display_name: '&7&lProjectile Protection Enchant (V)'
  2173. lore:
  2174. - '&7Upon purchasing, you will receive 1x'
  2175. - '&7Projectile Protection V enchantment'
  2176. - '&7book which can be applied to'
  2177. - '&7all Armour pieces.'
  2178. - ''
  2179. - '&f&l* &7Right click to open the shop'
  2180. left_click_commands:
  2181. - '[takemoney] 100000'
  2182. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:5}]}'
  2183. right_click_commands:
  2184. - '[takemoney] 100000'
  2185. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:5}]}'
  2186. VI:
  2187. material: 403
  2188. data: 0
  2189. slot: 5
  2190. display_name: '&7&lProjectile Protection Enchant (VI)'
  2191. lore:
  2192. - '&7Upon purchasing, you will receive 1x'
  2193. - '&7Projectile Protection VI enchantment'
  2194. - '&7book which can be applied to'
  2195. - '&7all Armour pieces.'
  2196. - ''
  2197. - '&f&l* &7Right click to open the shop'
  2198. left_click_commands:
  2199. - '[takemoney] 135000'
  2200. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:6}]}'
  2201. right_click_commands:
  2202. - '[takemoney] 135000'
  2203. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:6}]}'
  2204. VII:
  2205. material: 403
  2206. data: 0
  2207. slot: 6
  2208. display_name: '&7&lProjectile Protection Enchant (VII)'
  2209. lore:
  2210. - '&7Upon purchasing, you will receive 1x'
  2211. - '&7Projectile Protection VII enchantment'
  2212. - '&7book which can be applied to'
  2213. - '&7all Armour pieces.'
  2214. - ''
  2215. - '&f&l* &7Right click to open the shop'
  2216. left_click_commands:
  2217. - '[takemoney] 175000'
  2218. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:7}]}'
  2219. right_click_commands:
  2220. - '[takemoney] 175000'
  2221. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:7}]}'
  2222. VIII:
  2223. material: 403
  2224. data: 0
  2225. slot: 7
  2226. display_name: '&7&lProjectile Protection Enchant (VIII)'
  2227. lore:
  2228. - '&7Upon purchasing, you will receive 1x'
  2229. - '&7Projectile Protection VIII enchantment'
  2230. - '&7book which can be applied to'
  2231. - '&7all Armour pieces.'
  2232. - ''
  2233. - '&f&l* &7Right click to open the shop'
  2234. left_click_commands:
  2235. - '[takemoney] 250000'
  2236. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:8}]}'
  2237. right_click_commands:
  2238. - '[takemoney] 250000'
  2239. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:8}]}'
  2240. ProtectionEnchants:
  2241. menu_title: Protection (I-VIII)
  2242. open_command:
  2243. - Protection
  2244. open_requirement: ENCHANTER.ENCHANT
  2245. size: 9
  2246. items:
  2247. I:
  2248. material: 403
  2249. data: 0
  2250. slot: 0
  2251. display_name: '&7&lProtection Enchant (I)'
  2252. lore:
  2253. - '&7Upon purchasing, you will receive'
  2254. - '&71x Protection I enchantment book'
  2255. - '&7which can be applied to all'
  2256. - '&7Armour pieces.'
  2257. - ''
  2258. - '&f&l* &7Right click to open the shop'
  2259. left_click_commands:
  2260. - '[takemoney] 15000'
  2261. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:1}]}'
  2262. right_click_commands:
  2263. - '[takemoney] 15000'
  2264. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:1}]}'
  2265. II:
  2266. material: 403
  2267. data: 0
  2268. slot: 1
  2269. display_name: '&7&lProtection Enchant (II)'
  2270. lore:
  2271. - '&7Upon purchasing, you will receive'
  2272. - '&71x Protection II enchantment book'
  2273. - '&7which can be applied to all'
  2274. - '&7Armour pieces.'
  2275. - ''
  2276. - '&f&l* &7Right click to open the shop'
  2277. left_click_commands:
  2278. - '[takemoney] 25000'
  2279. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:2}]}'
  2280. right_click_commands:
  2281. - '[takemoney] 25000'
  2282. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:2}]}'
  2283. III:
  2284. material: 403
  2285. data: 0
  2286. slot: 2
  2287. display_name: '&7&lProtection Enchant (III)'
  2288. lore:
  2289. - '&7Upon purchasing, you will receive'
  2290. - '&71x Protection III enchantment book'
  2291. - '&7which can be applied to all'
  2292. - '&7Armour pieces.'
  2293. - ''
  2294. - '&f&l* &7Right click to open the shop'
  2295. left_click_commands:
  2296. - '[takemoney] 50000'
  2297. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:3}]}'
  2298. right_click_commands:
  2299. - '[takemoney] 50000'
  2300. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:3}]}'
  2301. IV:
  2302. material: 403
  2303. data: 0
  2304. slot: 3
  2305. display_name: '&7&lProtection Enchant (IV)'
  2306. lore:
  2307. - '&7Upon purchasing, you will receive'
  2308. - '&71x Protection IV enchantment book'
  2309. - '&7which can be applied to all'
  2310. - '&7Armour pieces.'
  2311. - ''
  2312. - '&f&l* &7Right click to open the shop'
  2313. left_click_commands:
  2314. - '[takemoney] 75000'
  2315. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:4}]}'
  2316. right_click_commands:
  2317. - '[takemoney] 75000'
  2318. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:4}]}'
  2319. V:
  2320. material: 403
  2321. data: 0
  2322. slot: 4
  2323. display_name: '&7&lProtection Enchant (V)'
  2324. lore:
  2325. - '&7Upon purchasing, you will receive'
  2326. - '&71x Protection V enchantment book'
  2327. - '&7which can be applied to all'
  2328. - '&7Armour pieces.'
  2329. - ''
  2330. - '&f&l* &7Right click to open the shop'
  2331. left_click_commands:
  2332. - '[takemoney] 100000'
  2333. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:5}]}'
  2334. right_click_commands:
  2335. - '[takemoney] 100000'
  2336. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:5}]}'
  2337. VI:
  2338. material: 403
  2339. data: 0
  2340. slot: 5
  2341. display_name: '&7&lProtection Enchant (VI)'
  2342. lore:
  2343. - '&7Upon purchasing, you will receive'
  2344. - '&71x Protection VI enchantment book'
  2345. - '&7which can be applied to all'
  2346. - '&7Armour pieces.'
  2347. - ''
  2348. - '&f&l* &7Right click to open the shop'
  2349. left_click_commands:
  2350. - '[takemoney] 135000'
  2351. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:6}]}'
  2352. right_click_commands:
  2353. - '[takemoney] 135000'
  2354. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:6}]}'
  2355. VII:
  2356. material: 403
  2357. data: 0
  2358. slot: 6
  2359. display_name: '&7&lProtection Enchant (VII)'
  2360. lore:
  2361. - '&7Upon purchasing, you will receive'
  2362. - '&71x Protection VII'
  2363. - '&7enchantment book which can be applied to'
  2364. - '&7all Armour pieces.'
  2365. - ''
  2366. - '&f&l* &7Right click to open the shop'
  2367. left_click_commands:
  2368. - '[takemoney] 175000'
  2369. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:7}]}'
  2370. right_click_commands:
  2371. - '[takemoney] 175000'
  2372. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:7}]}'
  2373. VIII:
  2374. material: 403
  2375. data: 0
  2376. slot: 7
  2377. display_name: '&7&lProtection Enchant (VIII)'
  2378. lore:
  2379. - '&7Upon purchasing, you will receive'
  2380. - '&71x Protection VIII enchantment book'
  2381. - '&7which can be applied to all'
  2382. - '&7Armour pieces.'
  2383. - ''
  2384. - '&f&l* &7Right click to open the shop'
  2385. left_click_commands:
  2386. - '[takemoney] 250000'
  2387. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:8}]}'
  2388. right_click_commands:
  2389. - '[takemoney] 250000'
  2390. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:8}]}'
  2391. FireProtectionEnchants:
  2392. menu_title: Fire Protection (I-VIII)
  2393. open_command:
  2394. - FireProtection
  2395. open_requirement: ENCHANTER.ENCHANT
  2396. size: 9
  2397. items:
  2398. I:
  2399. material: 403
  2400. data: 0
  2401. slot: 0
  2402. display_name: '&7&lFire Protection Enchant (I)'
  2403. lore:
  2404. - '&7Upon purchasing, you will receive'
  2405. - '&71x Fire Protection I enchantment'
  2406. - '&7book which can be applied to all'
  2407. - '&7Armour pieces.'
  2408. - ''
  2409. - '&f&l* &7Right click to open the shop'
  2410. left_click_commands:
  2411. - '[takemoney] 15000'
  2412. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:1}]}'
  2413. right_click_commands:
  2414. - '[takemoney] 15000'
  2415. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:1}]}'
  2416. II:
  2417. material: 403
  2418. data: 0
  2419. slot: 1
  2420. display_name: '&7&lFire Protection Enchant (II)'
  2421. lore:
  2422. - '&7Upon purchasing, you will receive'
  2423. - '&71x Fire Protection II enchantment'
  2424. - '&7book which can be applied to all'
  2425. - '&7Armour pieces.'
  2426. - ''
  2427. - '&f&l* &7Right click to open the shop'
  2428. left_click_commands:
  2429. - '[takemoney] 25000'
  2430. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:2}]}'
  2431. right_click_commands:
  2432. - '[takemoney] 25000'
  2433. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:2}]}'
  2434. III:
  2435. material: 403
  2436. data: 0
  2437. slot: 2
  2438. display_name: '&7&lFire Protection Enchant (III)'
  2439. lore:
  2440. - '&7Upon purchasing, you will receive'
  2441. - '&71x Fire Protection III enchantment'
  2442. - '&7book which can be applied to all'
  2443. - '&7Armour pieces.'
  2444. - ''
  2445. - '&f&l* &7Right click to open the shop'
  2446. left_click_commands:
  2447. - '[takemoney] 50000'
  2448. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:3}]}'
  2449. right_click_commands:
  2450. - '[takemoney] 50000'
  2451. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:3}]}'
  2452. IV:
  2453. material: 403
  2454. data: 0
  2455. slot: 3
  2456. display_name: '&7&lFire Protection Enchant (IV)'
  2457. lore:
  2458. - '&7Upon purchasing, you will receive'
  2459. - '&71x Fire Protection IV enchantment'
  2460. - '&7book which can be applied to all'
  2461. - '&7Armour pieces.'
  2462. - ''
  2463. - '&f&l* &7Right click to open the shop'
  2464. left_click_commands:
  2465. - '[takemoney] 75000'
  2466. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:4}]}'
  2467. right_click_commands:
  2468. - '[takemoney] 75000'
  2469. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:4}]}'
  2470. V:
  2471. material: 403
  2472. data: 0
  2473. slot: 4
  2474. display_name: '&7&lFire Protection Enchant (V)'
  2475. lore:
  2476. - '&7Upon purchasing, you will receive'
  2477. - '&71x Fire Protection V enchantment'
  2478. - '&7book which can be applied to all'
  2479. - '&7Armour pieces.'
  2480. - ''
  2481. - '&f&l* &7Right click to open the shop'
  2482. left_click_commands:
  2483. - '[takemoney] 100000'
  2484. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:5}]}'
  2485. right_click_commands:
  2486. - '[takemoney] 100000'
  2487. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:5}]}'
  2488. VI:
  2489. material: 403
  2490. data: 0
  2491. slot: 5
  2492. display_name: '&7&lFire Protection Enchant (VI)'
  2493. lore:
  2494. - '&7Upon purchasing, you will receive'
  2495. - '&71x Fire Protection VI enchantment'
  2496. - '&7book which can be applied to all'
  2497. - '&7Armour pieces.'
  2498. - ''
  2499. - '&f&l* &7Right click to open the shop'
  2500. left_click_commands:
  2501. - '[takemoney] 135000'
  2502. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:6}]}'
  2503. right_click_commands:
  2504. - '[takemoney] 135000'
  2505. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:6}]}'
  2506. VII:
  2507. material: 403
  2508. data: 0
  2509. slot: 6
  2510. display_name: '&7&lFire Protection Enchant (VII)'
  2511. lore:
  2512. - '&7Upon purchasing, you will receive'
  2513. - '&71x Fire Protection VII enchantment'
  2514. - '&7book which can be applied to all'
  2515. - '&7Armour pieces.'
  2516. - ''
  2517. - '&f&l* &7Right click to open the shop'
  2518. left_click_commands:
  2519. - '[takemoney] 175000'
  2520. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:7}]}'
  2521. right_click_commands:
  2522. - '[takemoney] 175000'
  2523. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:7}]}'
  2524. VIII:
  2525. material: 403
  2526. data: 0
  2527. slot: 7
  2528. display_name: '&7&lFire Protection Enchant (VIII)'
  2529. lore:
  2530. - '&7Upon purchasing, you will receive'
  2531. - '&71x Fire Protection VIII enchantment'
  2532. - '&7book which can be applied to all'
  2533. - '&7Armour pieces.'
  2534. - ''
  2535. - '&f&l* &7Right click to open the shop'
  2536. left_click_commands:
  2537. - '[takemoney] 250000'
  2538. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:8}]}'
  2539. right_click_commands:
  2540. - '[takemoney] 250000'
  2541. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:8}]}'
  2542. BlastProtectionEnchants:
  2543. menu_title: Blast Protection (I-VIII)
  2544. open_command:
  2545. - BlastProtection
  2546. open_requirement: ENCHANTER.ENCHANT
  2547. size: 9
  2548. items:
  2549. I:
  2550. material: 403
  2551. data: 0
  2552. slot: 0
  2553. display_name: '&7&lBlast Protection Enchant (I)'
  2554. lore:
  2555. - '&7Upon purchasing, you will receive'
  2556. - '&71x Blast Protection I enchantment'
  2557. - '&7book which can be applied to all'
  2558. - '&7Armour pieces.'
  2559. - ''
  2560. - '&f* &7Right click to purchase book'
  2561. - '&f* &7Purchase cost: &f&n$Price'
  2562. left_click_commands:
  2563. - '[takemoney] 15000'
  2564. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:1}]}'
  2565. right_click_commands:
  2566. - '[takemoney] 15000'
  2567. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:1}]}'
  2568. II:
  2569. material: 403
  2570. data: 0
  2571. slot: 1
  2572. display_name: '&f&lBlast Protection Enchant (II)'
  2573. lore:
  2574. - '&7Upon purchasing, you will receive'
  2575. - '&71x Blast Protection II enchantment'
  2576. - '&7book which can be applied to all'
  2577. - '&7Armour pieces.'
  2578. - ''
  2579. - '&f* &7Right click to purchase book'
  2580. - '&f* &7Purchase cost: &f&n$Price'
  2581. left_click_commands:
  2582. - '[takemoney] 25000'
  2583. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:2}]}'
  2584. right_click_commands:
  2585. - '[takemoney] 25000'
  2586. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:2}]}'
  2587. III:
  2588. material: 403
  2589. data: 0
  2590. slot: 2
  2591. display_name: '&7&lBlast Protection Enchant (III)'
  2592. lore:
  2593. - '&7Upon purchasing, you will receive'
  2594. - '&71x Blast Protection III enchantment'
  2595. - '&7book which can be applied to all'
  2596. - '&7Armour pieces.'
  2597. - ''
  2598. - '&f* &7Right click to purchase book'
  2599. - '&f* &7Purchase cost: &f&n$Price'
  2600. left_click_commands:
  2601. - '[takemoney] 50000'
  2602. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:3}]}'
  2603. right_click_commands:
  2604. - '[takemoney] 50000'
  2605. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:3}]}'
  2606. IV:
  2607. material: 403
  2608. data: 0
  2609. slot: 3
  2610. display_name: '&7&lBlast Protection Enchant (IV)'
  2611. lore:
  2612. - '&7Upon purchasing, you will receive'
  2613. - '&71x Blast Protection IV enchantment'
  2614. - '&7book which can be applied to all'
  2615. - '&7Armour pieces.'
  2616. - ''
  2617. - '&f* &7Right click to purchase book'
  2618. - '&f* &7Purchase cost: &f&n$Price'
  2619. left_click_commands:
  2620. - '[takemoney] 75000'
  2621. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:4}]}'
  2622. right_click_commands:
  2623. - '[takemoney] 75000'
  2624. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:4}]}'
  2625. V:
  2626. material: 403
  2627. data: 0
  2628. slot: 4
  2629. display_name: '&7&lBlast Protection Enchant (V)'
  2630. lore:
  2631. - '&7Upon purchasing, you will receive'
  2632. - '&71x Blast Protection V enchantment'
  2633. - '&7book which can be applied to all'
  2634. - '&7Armour pieces.'
  2635. - ''
  2636. - '&f* &7Right click to purchase book'
  2637. - '&f* &7Purchase cost: &f&n$Price'
  2638. left_click_commands:
  2639. - '[takemoney] 100000'
  2640. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:5}]}'
  2641. right_click_commands:
  2642. - '[takemoney] 100000'
  2643. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:5}]}'
  2644. VI:
  2645. material: 403
  2646. data: 0
  2647. slot: 5
  2648. display_name: '&7&lBlast Protection Enchant (VI)'
  2649. lore:
  2650. - '&7Upon purchasing, you will receive'
  2651. - '&71x Blast Protection VI enchantment'
  2652. - '&7book which can be applied to all'
  2653. - '&7Armour pieces.'
  2654. - ''
  2655. - '&f* &7Right click to purchase book'
  2656. - '&f* &7Purchase cost: &f&n$Price'
  2657. left_click_commands:
  2658. - '[takemoney] 135000'
  2659. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:6}]}'
  2660. right_click_commands:
  2661. - '[takemoney] 135000'
  2662. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:6}]}'
  2663. VII:
  2664. material: 403
  2665. data: 0
  2666. slot: 6
  2667. display_name: '&7&lBlast Protection Enchant (VII)'
  2668. lore:
  2669. - '&7Upon purchasing, you will receive'
  2670. - '&71x Blast Protection VII enchantment'
  2671. - '&7book which can be applied to all'
  2672. - '&7Armour pieces.'
  2673. - ''
  2674. - '&f* &7Right click to purchase book'
  2675. - '&f* &7Purchase cost: &f&n$Price'
  2676. left_click_commands:
  2677. - '[takemoney] 175000'
  2678. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:7}]}'
  2679. right_click_commands:
  2680. - '[takemoney] 175000'
  2681. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:7}]}'
  2682. VIII:
  2683. material: 403
  2684. data: 0
  2685. slot: 7
  2686. display_name: '&7&lBlast Protection Enchant (VIII)'
  2687. lore:
  2688. - '&7Upon purchasing, you will receive'
  2689. - '&71x Blast Protection VIII enchantment'
  2690. - '&7book which can be applied to all'
  2691. - '&7Armour pieces.'
  2692. - ''
  2693. - '&f* &7Right click to purchase book'
  2694. - '&f* &7Purchase cost: &f&n$Price'
  2695. left_click_commands:
  2696. - '[takemoney] 250000'
  2697. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:8}]}'
  2698. right_click_commands:
  2699. - '[takemoney] 250000'
  2700. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:8}]}'
  2701. BaneofArthropodsEnchants:
  2702. menu_title: Bane of Arthropods (I-VIII)
  2703. open_command:
  2704. - BaneofArthropods
  2705. open_requirement: ENCHANTER.ENCHANT
  2706. size: 9
  2707. items:
  2708. I:
  2709. material: 403
  2710. data: 0
  2711. slot: 0
  2712. display_name: '&7&lBane of Arthropods Enchant (I)'
  2713. lore:
  2714. - '&7Upon purchasing, you will receive 1x'
  2715. - '&7Bane of Arthropods I enchantment'
  2716. - '&7book which can be applied to'
  2717. - '&7swords and axes.'
  2718. - ''
  2719. - '&f&l* &7Right click to open the shop'
  2720. left_click_commands:
  2721. - '[takemoney] 15000'
  2722. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:1}]}'
  2723. right_click_commands:
  2724. - '[takemoney] 15000'
  2725. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:1}]}'
  2726. II:
  2727. material: 403
  2728. data: 0
  2729. slot: 1
  2730. display_name: '&7&lBane of Arthropods Enchant (II)'
  2731. lore:
  2732. - '&7Upon purchasing, you will receive 1x'
  2733. - '&7Bane of Arthropods II enchantment'
  2734. - '&7book which can be applied to'
  2735. - '&7swords and axes.'
  2736. - ''
  2737. - '&f&l* &7Right click to open the shop'
  2738. left_click_commands:
  2739. - '[takemoney] 25000'
  2740. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:2}]}'
  2741. right_click_commands:
  2742. - '[takemoney] 25000'
  2743. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:2}]}'
  2744. III:
  2745. material: 403
  2746. data: 0
  2747. slot: 2
  2748. display_name: '&7&lBane of Arthropods Enchant (III)'
  2749. lore:
  2750. - '&7Upon purchasing, you will receive 1x'
  2751. - '&7Bane of Arthropods III enchantment'
  2752. - '&7book which can be applied to'
  2753. - '&7swords and axes.'
  2754. - ''
  2755. - '&f&l* &7Right click to open the shop'
  2756. left_click_commands:
  2757. - '[takemoney] 50000'
  2758. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:3}]}'
  2759. right_click_commands:
  2760. - '[takemoney] 50000'
  2761. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:3}]}'
  2762. IV:
  2763. material: 403
  2764. data: 0
  2765. slot: 3
  2766. display_name: '&7&lBane of Arthropods Enchant (IV)'
  2767. lore:
  2768. - '&7Upon purchasing, you will receive 1x'
  2769. - '&7Bane of Arthropods IV enchantment'
  2770. - '&7book which can be applied to'
  2771. - '&7swords and axes.'
  2772. - ''
  2773. - '&f&l* &7Right click to open the shop'
  2774. left_click_commands:
  2775. - '[takemoney] 75000'
  2776. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:4}]}'
  2777. right_click_commands:
  2778. - '[takemoney] 75000'
  2779. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:4}]}'
  2780. V:
  2781. material: 403
  2782. data: 0
  2783. slot: 4
  2784. display_name: '&7&lBane of Arthropods Enchant (V)'
  2785. lore:
  2786. - '&7Upon purchasing, you will receive 1x'
  2787. - '&7Bane of Arthropods V enchantment'
  2788. - '&7book which can be applied to'
  2789. - '&7swords and axes.'
  2790. - ''
  2791. - '&f&l* &7Right click to open the shop'
  2792. left_click_commands:
  2793. - '[takemoney] 100000'
  2794. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:5}]}'
  2795. right_click_commands:
  2796. - '[takemoney] 100000'
  2797. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:5}]}'
  2798. VI:
  2799. material: 403
  2800. data: 0
  2801. slot: 5
  2802. display_name: '&7&lBane of Arthropods Enchant (VI)'
  2803. lore:
  2804. - '&7Upon purchasing, you will receive 1x'
  2805. - '&7Bane of Arthropods VI enchantment'
  2806. - '&7book which can be applied to'
  2807. - '&7swords and axes.'
  2808. - ''
  2809. - '&f&l* &7Right click to open the shop'
  2810. left_click_commands:
  2811. - '[takemoney] 135000'
  2812. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:6}]}'
  2813. right_click_commands:
  2814. - '[takemoney] 135000'
  2815. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:6}]}'
  2816. VII:
  2817. material: 403
  2818. data: 0
  2819. slot: 6
  2820. display_name: '&7&lBane of Arthropods Enchant (VII)'
  2821. lore:
  2822. - '&7Upon purchasing, you will receive 1x'
  2823. - '&7Bane of Arthropods VII enchantment'
  2824. - '&7book which can be applied to'
  2825. - '&7swords and axes.'
  2826. - ''
  2827. - '&f&l* &7Right click to open the shop'
  2828. left_click_commands:
  2829. - '[takemoney] 175000'
  2830. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:7}]}'
  2831. right_click_commands:
  2832. - '[takemoney] 175000'
  2833. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:7}]}'
  2834. VIII:
  2835. material: 403
  2836. data: 0
  2837. slot: 7
  2838. display_name: '&7&lBane of Arthropods Enchant (VIII)'
  2839. lore:
  2840. - '&7Upon purchasing, you will receive 1x'
  2841. - '&7Bane of Arthropods VIII enchantment'
  2842. - '&7book which can be applied to'
  2843. - '&7swords and axes.'
  2844. - ''
  2845. - '&f&l* &7Right click to open the shop'
  2846. left_click_commands:
  2847. - '[takemoney] 250000'
  2848. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:8}]}'
  2849. right_click_commands:
  2850. - '[takemoney] 250000'
  2851. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:8}]}'
  2852. AquaAffinityEnchants:
  2853. menu_title: Aqua Affinity (I-VIII)
  2854. open_command:
  2855. - AquaAffinity
  2856. open_requirement: ENCHANTER.ENCHANT
  2857. size: 9
  2858. items:
  2859. I:
  2860. material: 403
  2861. data: 0
  2862. slot: 0
  2863. display_name: '&7&lAqua Affinity Enchant (I)'
  2864. lore:
  2865. - '&7Upon purchasing, you will receive'
  2866. - '&71x Aqua Affinity I enchantment'
  2867. - '&7book which can be applied to'
  2868. - '&7helmets.'
  2869. - ''
  2870. - '&f&l* &7Right click to open the shop'
  2871. left_click_commands:
  2872. - '[takemoney] 15000'
  2873. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:1}]}'
  2874. right_click_commands:
  2875. - '[takemoney] 15000'
  2876. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:1}]}'
  2877. II:
  2878. material: 403
  2879. data: 0
  2880. slot: 1
  2881. display_name: '&7&lAqua Affinity Enchant (II)'
  2882. lore:
  2883. - '&7Upon purchasing, you will receive'
  2884. - '&71x Aqua Affinity II enchantment'
  2885. - '&7book which can be applied to'
  2886. - '&7helmets.'
  2887. - ''
  2888. - '&f&l* &7Right click to open the shop'
  2889. left_click_commands:
  2890. - '[takemoney] 25000'
  2891. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:2}]}'
  2892. right_click_commands:
  2893. - '[takemoney] 25000'
  2894. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:2}]}'
  2895. III:
  2896. material: 403
  2897. data: 0
  2898. slot: 2
  2899. display_name: '&7&lAqua Affinity Enchant (III)'
  2900. lore:
  2901. - '&7Upon purchasing, you will receive'
  2902. - '&71x Aqua Affinity III enchantment'
  2903. - '&7book which can be applied to'
  2904. - '&7helmets.'
  2905. - ''
  2906. - '&f&l* &7Right click to open the shop'
  2907. left_click_commands:
  2908. - '[takemoney] 50000'
  2909. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:3}]}'
  2910. right_click_commands:
  2911. - '[takemoney] 50000'
  2912. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:3}]}'
  2913. IV:
  2914. material: 403
  2915. data: 0
  2916. slot: 3
  2917. display_name: '&7&lAqua Affinity Enchant (IV)'
  2918. lore:
  2919. - '&7Upon purchasing, you will receive'
  2920. - '&71x Aqua Affinity IV enchantment'
  2921. - '&7book which can be applied to'
  2922. - '&7helmets.'
  2923. - ''
  2924. - '&f&l* &7Right click to open the shop'
  2925. left_click_commands:
  2926. - '[takemoney] 75000'
  2927. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:4}]}'
  2928. right_click_commands:
  2929. - '[takemoney] 75000'
  2930. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:4}]}'
  2931. V:
  2932. material: 403
  2933. data: 0
  2934. slot: 4
  2935. display_name: '&7&lAqua Affinity Enchant (V)'
  2936. lore:
  2937. - '&7Upon purchasing, you will receive'
  2938. - '&71x Aqua Affinity V enchantment'
  2939. - '&7book which can be applied to'
  2940. - '&7helmets.'
  2941. - ''
  2942. - '&f&l* &7Right click to open the shop'
  2943. left_click_commands:
  2944. - '[takemoney] 100000'
  2945. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:5}]}'
  2946. right_click_commands:
  2947. - '[takemoney] 100000'
  2948. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:5}]}'
  2949. VI:
  2950. material: 403
  2951. data: 0
  2952. slot: 5
  2953. display_name: '&7&lAqua Affinity Enchant (VI)'
  2954. lore:
  2955. - '&7Upon purchasing, you will receive'
  2956. - '&71x Aqua Affinity VI enchantment'
  2957. - '&7book which can be applied to'
  2958. - '&7helmets.'
  2959. - ''
  2960. - '&f&l* &7Right click to open the shop'
  2961. left_click_commands:
  2962. - '[takemoney] 135000'
  2963. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:6}]}'
  2964. right_click_commands:
  2965. - '[takemoney] 135000'
  2966. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:6}]}'
  2967. VII:
  2968. material: 403
  2969. data: 0
  2970. slot: 6
  2971. display_name: '&7&lAqua Affinity Enchant (VII)'
  2972. lore:
  2973. - '&7Upon purchasing, you will receive'
  2974. - '&71x Aqua Affinity VII enchantment'
  2975. - '&7book which can be applied to'
  2976. - '&7helmets.'
  2977. - ''
  2978. - '&f&l* &7Right click to open the shop'
  2979. left_click_commands:
  2980. - '[takemoney] 175000'
  2981. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:7}]}'
  2982. right_click_commands:
  2983. - '[takemoney] 175000'
  2984. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:7}]}'
  2985. VIII:
  2986. material: 403
  2987. data: 0
  2988. slot: 7
  2989. display_name: '&7&lAqua Affinity Enchant (VIII)'
  2990. lore:
  2991. - '&7Upon purchasing, you will receive'
  2992. - '&71x Aqua Affinity VIII enchantment'
  2993. - '&7book which can be applied to'
  2994. - '&7helmets.'
  2995. - ''
  2996. - '&f&l* &7Right click to open the shop'
  2997. left_click_commands:
  2998. - '[takemoney] 250000'
  2999. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:8}]}'
  3000. right_click_commands:
  3001. - '[takemoney] 250000'
  3002. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:6,lvl:8}]}'
  3003. DepthStriderEnchants:
  3004. menu_title: Depth Strider (I-VIII)
  3005. open_command:
  3006. - DepthStrider
  3007. open_requirement: ENCHANTER.ENCHANT
  3008. size: 9
  3009. items:
  3010. I:
  3011. material: 403
  3012. data: 0
  3013. slot: 0
  3014. display_name: '&7&lDepth Strider Enchant (I)'
  3015. lore:
  3016. - '&7Upon purchasing, you will receive'
  3017. - '&71x Depth Strider I enchantment'
  3018. - '&7book which can be applied to'
  3019. - '&7boots.'
  3020. - ''
  3021. - '&f&l* &7Right click to open the shop'
  3022. left_click_commands:
  3023. - '[takemoney] 15000'
  3024. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:1}]}'
  3025. right_click_commands:
  3026. - '[takemoney] 15000'
  3027. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:1}]}'
  3028. II:
  3029. material: 403
  3030. data: 0
  3031. slot: 1
  3032. display_name: '&7&lDepth Strider Enchant (II)'
  3033. lore:
  3034. - '&7Upon purchasing, you will receive'
  3035. - '&71x Depth Strider II enchantment'
  3036. - '&7book which can be applied to'
  3037. - '&7boots.'
  3038. - ''
  3039. - '&f&l* &7Right click to open the shop'
  3040. left_click_commands:
  3041. - '[takemoney] 25000'
  3042. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:2}]}'
  3043. right_click_commands:
  3044. - '[takemoney] 25000'
  3045. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:2}]}'
  3046. III:
  3047. material: 403
  3048. data: 0
  3049. slot: 2
  3050. display_name: '&7&lDepth Strider Enchant (III)'
  3051. lore:
  3052. - '&7Upon purchasing, you will receive'
  3053. - '&71x Depth Strider III enchantment'
  3054. - '&7book which can be applied to'
  3055. - '&7boots.'
  3056. - ''
  3057. - '&f&l* &7Right click to open the shop'
  3058. left_click_commands:
  3059. - '[takemoney] 50000'
  3060. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:3}]}'
  3061. right_click_commands:
  3062. - '[takemoney] 50000'
  3063. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:3}]}'
  3064. IV:
  3065. material: 403
  3066. data: 0
  3067. slot: 3
  3068. display_name: '&7&lDepth Strider Enchant (IV)'
  3069. lore:
  3070. - '&7Upon purchasing, you will receive'
  3071. - '&71x Depth Strider IV enchantment'
  3072. - '&7book which can be applied to'
  3073. - '&7boots.'
  3074. - ''
  3075. - '&f&l* &7Right click to open the shop'
  3076. left_click_commands:
  3077. - '[takemoney] 75000'
  3078. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:4}]}'
  3079. right_click_commands:
  3080. - '[takemoney] 75000'
  3081. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:4}]}'
  3082. V:
  3083. material: 403
  3084. data: 0
  3085. slot: 4
  3086. display_name: '&7&lDepth Strider Enchant (V)'
  3087. lore:
  3088. - '&7Upon purchasing, you will receive'
  3089. - '&71x Depth Strider V enchantment'
  3090. - '&7book which can be applied to'
  3091. - '&7boots.'
  3092. - ''
  3093. - '&f&l* &7Right click to open the shop'
  3094. left_click_commands:
  3095. - '[takemoney] 100000'
  3096. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:5}]}'
  3097. right_click_commands:
  3098. - '[takemoney] 100000'
  3099. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:5}]}'
  3100. VI:
  3101. material: 403
  3102. data: 0
  3103. slot: 5
  3104. display_name: '&7&lDepth Strider Enchant (VI)'
  3105. lore:
  3106. - '&7Upon purchasing, you will receive'
  3107. - '&71x Depth Strider VI enchantment'
  3108. - '&7book which can be applied to'
  3109. - '&7boots.'
  3110. - ''
  3111. - '&f&l* &7Right click to open the shop'
  3112. left_click_commands:
  3113. - '[takemoney] 135000'
  3114. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:6}]}'
  3115. right_click_commands:
  3116. - '[takemoney] 135000'
  3117. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:6}]}'
  3118. VII:
  3119. material: 403
  3120. data: 0
  3121. slot: 6
  3122. display_name: '&7&lDepth Strider Enchant (VII)'
  3123. lore:
  3124. - '&7Upon purchasing, you will receive'
  3125. - '&71x Depth Strider VII enchantment'
  3126. - '&7book which can be applied to'
  3127. - '&7boots.'
  3128. - ''
  3129. - '&f&l* &7Right click to open the shop'
  3130. left_click_commands:
  3131. - '[takemoney] 175000'
  3132. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:7}]}'
  3133. right_click_commands:
  3134. - '[takemoney] 175000'
  3135. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:7}]}'
  3136. VIII:
  3137. material: 403
  3138. data: 0
  3139. slot: 7
  3140. display_name: '&7&lDepth Strider Enchant (VIII)'
  3141. lore:
  3142. - '&7Upon purchasing, you will receive'
  3143. - '&71x Depth Strider VIII enchantment'
  3144. - '&7book which can be applied to'
  3145. - '&7boots.'
  3146. - ''
  3147. - '&f&l* &7Right click to open the shop'
  3148. left_click_commands:
  3149. - '[takemoney] 250000'
  3150. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:8}]}'
  3151. right_click_commands:
  3152. - '[takemoney] 250000'
  3153. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:8,lvl:8}]}'
  3154. EfficiencyEnchants:
  3155. menu_title: Efficiency (I-VIII)
  3156. open_command:
  3157. - Efficiency
  3158. open_requirement: ENCHANTER.ENCHANT
  3159. size: 9
  3160. items:
  3161. I:
  3162. material: 403
  3163. data: 0
  3164. slot: 0
  3165. display_name: '&7&lEfficiency Enchant (I)'
  3166. lore:
  3167. - '&7Upon purchasing, you will receive'
  3168. - '&71x Efficiency I enchantment book'
  3169. - '&7which can be applied to'
  3170. - '&7all tools.'
  3171. - ''
  3172. - '&f&l* &7Right click to open the shop'
  3173. left_click_commands:
  3174. - '[takemoney] 15000'
  3175. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:1}]}'
  3176. right_click_commands:
  3177. - '[takemoney] 15000'
  3178. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:1}]}'
  3179. II:
  3180. material: 403
  3181. data: 0
  3182. slot: 1
  3183. display_name: '&7&lEfficiency Enchant (II)'
  3184. lore:
  3185. - '&7Upon purchasing, you will receive'
  3186. - '&71x Efficiency II enchantment book'
  3187. - '&7which can be applied to'
  3188. - '&7all tools.'
  3189. - ''
  3190. - '&f&l* &7Right click to open the shop'
  3191. left_click_commands:
  3192. - '[takemoney] 25000'
  3193. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:2}]}'
  3194. right_click_commands:
  3195. - '[takemoney] 25000'
  3196. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:2}]}'
  3197. III:
  3198. material: 403
  3199. data: 0
  3200. slot: 2
  3201. display_name: '&7&lEfficiency Enchant (III)'
  3202. lore:
  3203. - '&7Upon purchasing, you will receive'
  3204. - '&71x Efficiency III enchantment book'
  3205. - '&7which can be applied to'
  3206. - '&7all tools.'
  3207. - ''
  3208. - '&f&l* &7Right click to open the shop'
  3209. left_click_commands:
  3210. - '[takemoney] 50000'
  3211. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:3}]}'
  3212. right_click_commands:
  3213. - '[takemoney] 50000'
  3214. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:3}]}'
  3215. IV:
  3216. material: 403
  3217. data: 0
  3218. slot: 3
  3219. display_name: '&7&lEfficiency Enchant (IV)'
  3220. lore:
  3221. - '&7Upon purchasing, you will receive'
  3222. - '&71x Efficiency IV enchantment book'
  3223. - '&7which can be applied to'
  3224. - '&7all tools.'
  3225. - ''
  3226. - '&f&l* &7Right click to open the shop'
  3227. left_click_commands:
  3228. - '[takemoney] 75000'
  3229. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:4}]}'
  3230. right_click_commands:
  3231. - '[takemoney] 75000'
  3232. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:4}]}'
  3233. V:
  3234. material: 403
  3235. data: 0
  3236. slot: 4
  3237. display_name: '&7&lEfficiency Enchant (V)'
  3238. lore:
  3239. - '&7Upon purchasing, you will receive'
  3240. - '&71x Efficiency V enchantment book'
  3241. - '&7which can be applied to'
  3242. - '&7all tools.'
  3243. - ''
  3244. - '&f&l* &7Right click to open the shop'
  3245. left_click_commands:
  3246. - '[takemoney] 100000'
  3247. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:5}]}'
  3248. right_click_commands:
  3249. - '[takemoney] 100000'
  3250. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:5}]}'
  3251. VI:
  3252. material: 403
  3253. data: 0
  3254. slot: 5
  3255. display_name: '&7&lEfficiency Enchant (VI)'
  3256. lore:
  3257. - '&7Upon purchasing, you will receive'
  3258. - '&71x Efficiency VI enchantment book'
  3259. - '&7which can be applied to'
  3260. - '&7all tools.'
  3261. - ''
  3262. - '&f&l* &7Right click to open the shop'
  3263. left_click_commands:
  3264. - '[takemoney] 135000'
  3265. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:6}]}'
  3266. right_click_commands:
  3267. - '[takemoney] 135000'
  3268. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:6}]}'
  3269. VII:
  3270. material: 403
  3271. data: 0
  3272. slot: 6
  3273. display_name: '&7&lEfficiency Enchant (VII)'
  3274. lore:
  3275. - '&7Upon purchasing, you will receive'
  3276. - '&71x Efficiency VII enchantment book'
  3277. - '&7which can be applied to'
  3278. - '&7all tools.'
  3279. - ''
  3280. - '&f&l* &7Right click to open the shop'
  3281. left_click_commands:
  3282. - '[takemoney] 175000'
  3283. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:7}]}'
  3284. right_click_commands:
  3285. - '[takemoney] 175000'
  3286. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:7}]}'
  3287. VIII:
  3288. material: 403
  3289. data: 0
  3290. slot: 7
  3291. display_name: '&7&lEfficiency Enchant (VIII)'
  3292. lore:
  3293. - '&7Upon purchasing, you will receive'
  3294. - '&71x Efficiency VIII enchantment book'
  3295. - '&7which can be applied to'
  3296. - '&7all tools.'
  3297. - ''
  3298. - '&f&l* &7Right click to open the shop'
  3299. left_click_commands:
  3300. - '[takemoney] 250000'
  3301. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:8}]}'
  3302. right_click_commands:
  3303. - '[takemoney] 250000'
  3304. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:32,lvl:8}]}'
  3305. FeatherFallingEnchants:
  3306. menu_title: Feather Falling (I-VIII)
  3307. open_command:
  3308. - FeatherFalling
  3309. open_requirement: ENCHANTER.ENCHANT
  3310. size: 9
  3311. items:
  3312. I:
  3313. material: 403
  3314. data: 0
  3315. slot: 0
  3316. display_name: '&7&lFeather Falling Enchant (I)'
  3317. lore:
  3318. - '&7Upon purchasing, you will receive'
  3319. - '&71x Feather Falling I enchantment book'
  3320. - '&7which can be applied to boots.'
  3321. - ''
  3322. - '&f&l* &7Right click to open the shop'
  3323. left_click_commands:
  3324. - '[takemoney] 15000'
  3325. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:1}]}'
  3326. right_click_commands:
  3327. - '[takemoney] 15000'
  3328. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:1}]}'
  3329. II:
  3330. material: 403
  3331. data: 0
  3332. slot: 1
  3333. display_name: '&7&lFeather Falling Enchant (II)'
  3334. lore:
  3335. - '&7Upon purchasing, you will receive'
  3336. - '&71x Feather Falling II enchantment book'
  3337. - '&7which can be applied to boots.'
  3338. - ''
  3339. - '&f&l* &7Right click to open the shop'
  3340. left_click_commands:
  3341. - '[takemoney] 25000'
  3342. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:2}]}'
  3343. right_click_commands:
  3344. - '[takemoney] 25000'
  3345. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:2}]}'
  3346. III:
  3347. material: 403
  3348. data: 0
  3349. slot: 2
  3350. display_name: '&7&lFeather Falling Enchant (III)'
  3351. lore:
  3352. - '&7Upon purchasing, you will receive'
  3353. - '&71x Feather Falling III enchantment book'
  3354. - '&7which can be applied to boots.'
  3355. - ''
  3356. - '&f&l* &7Right click to open the shop'
  3357. left_click_commands:
  3358. - '[takemoney] 50000'
  3359. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:3}]}'
  3360. right_click_commands:
  3361. - '[takemoney] 50000'
  3362. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:3}]}'
  3363. IV:
  3364. material: 403
  3365. data: 0
  3366. slot: 3
  3367. display_name: '&7&lFeather Falling Enchant (IV)'
  3368. lore:
  3369. - '&7Upon purchasing, you will receive'
  3370. - '&71x Feather Falling IV enchantment book'
  3371. - '&7which can be applied to boots.'
  3372. - ''
  3373. - '&f&l* &7Right click to open the shop'
  3374. left_click_commands:
  3375. - '[takemoney] 75000'
  3376. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:4}]}'
  3377. right_click_commands:
  3378. - '[takemoney] 75000'
  3379. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:4}]}'
  3380. V:
  3381. material: 403
  3382. data: 0
  3383. slot: 4
  3384. display_name: '&7&lFeather Falling Enchant (V)'
  3385. lore:
  3386. - '&7Upon purchasing, you will receive'
  3387. - '&71x Feather Falling V enchantment book'
  3388. - '&7which can be applied to boots.'
  3389. - ''
  3390. - '&f&l* &7Right click to open the shop'
  3391. left_click_commands:
  3392. - '[takemoney] 100000'
  3393. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:5}]}'
  3394. right_click_commands:
  3395. - '[takemoney] 100000'
  3396. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:5}]}'
  3397. VI:
  3398. material: 403
  3399. data: 0
  3400. slot: 5
  3401. display_name: '&7&lFeather Falling Enchant (VI)'
  3402. lore:
  3403. - '&7Upon purchasing, you will receive'
  3404. - '&71x Feather Falling VI enchantment book'
  3405. - '&7which can be applied to boots.'
  3406. - ''
  3407. - '&f&l* &7Right click to open the shop'
  3408. left_click_commands:
  3409. - '[takemoney] 135000'
  3410. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:6}]}'
  3411. right_click_commands:
  3412. - '[takemoney] 135000'
  3413. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:6}]}'
  3414. VII:
  3415. material: 403
  3416. data: 0
  3417. slot: 6
  3418. display_name: '&7&lFeather Falling Enchant (VII)'
  3419. lore:
  3420. - '&7Upon purchasing, you will receive'
  3421. - '&71x Feather Falling VII enchantment book'
  3422. - '&7which can be applied to boots.'
  3423. - ''
  3424. - '&f&l* &7Right click to open the shop'
  3425. left_click_commands:
  3426. - '[takemoney] 175000'
  3427. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:7}]}'
  3428. right_click_commands:
  3429. - '[takemoney] 175000'
  3430. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:7}]}'
  3431. VIII:
  3432. material: 403
  3433. data: 0
  3434. slot: 7
  3435. display_name: '&7&lFeather Falling Enchant (VIII)'
  3436. lore:
  3437. - '&7Upon purchasing, you will receive'
  3438. - '&71x Feather Falling VIII enchantment book'
  3439. - '&7which can be applied to boots.'
  3440. - ''
  3441. - '&f&l* &7Right click to open the shop'
  3442. left_click_commands:
  3443. - '[takemoney] 250000'
  3444. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:8}]}'
  3445. right_click_commands:
  3446. - '[takemoney] 250000'
  3447. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:8}]}'
  3448. FireAspectEnchants:
  3449. menu_title: Fire Aspect (I-VIII)
  3450. open_command:
  3451. - FireAspect
  3452. open_requirement: ENCHANTER.ENCHANT
  3453. size: 9
  3454. items:
  3455. I:
  3456. material: 403
  3457. data: 0
  3458. slot: 0
  3459. display_name: '&7&lFire Aspect Enchant (I)'
  3460. lore:
  3461. - '&7Upon purchasing, you will receive'
  3462. - '&71x Fire Aspect I enchantment book'
  3463. - '&7which can be applied to swords.'
  3464. - ''
  3465. - '&f&l* &7Right click to open the shop'
  3466. left_click_commands:
  3467. - '[takemoney] 15000'
  3468. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:1}]}'
  3469. right_click_commands:
  3470. - '[takemoney] 15000'
  3471. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:1}]}'
  3472. II:
  3473. material: 403
  3474. data: 0
  3475. slot: 1
  3476. display_name: '&7&lFire Aspect Enchant (II)'
  3477. lore:
  3478. - '&7Upon purchasing, you will receive'
  3479. - '&71x Fire Aspect II enchantment book'
  3480. - '&7which can be applied to swords.'
  3481. - ''
  3482. - '&f&l* &7Right click to open the shop'
  3483. left_click_commands:
  3484. - '[takemoney] 25000'
  3485. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:2}]}'
  3486. right_click_commands:
  3487. - '[takemoney] 25000'
  3488. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:2}]}'
  3489. III:
  3490. material: 403
  3491. data: 0
  3492. slot: 2
  3493. display_name: '&7&lFire Aspect Enchant (III)'
  3494. lore:
  3495. - '&7Upon purchasing, you will receive'
  3496. - '&71x Fire Aspect III enchantment book'
  3497. - '&7which can be applied to swords.'
  3498. - ''
  3499. - '&f&l* &7Right click to open the shop'
  3500. left_click_commands:
  3501. - '[takemoney] 50000'
  3502. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:3}]}'
  3503. right_click_commands:
  3504. - '[takemoney] 50000'
  3505. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:3}]}'
  3506. IV:
  3507. material: 403
  3508. data: 0
  3509. slot: 3
  3510. display_name: '&7&lFire Aspect Enchant (IV)'
  3511. lore:
  3512. - '&7Upon purchasing, you will receive'
  3513. - '&71x Fire Aspect IV enchantment book'
  3514. - '&7which can be applied to swords.'
  3515. - ''
  3516. - '&f&l* &7Right click to open the shop'
  3517. left_click_commands:
  3518. - '[takemoney] 75000'
  3519. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:4}]}'
  3520. right_click_commands:
  3521. - '[takemoney] 75000'
  3522. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:4}]}'
  3523. V:
  3524. material: 403
  3525. data: 0
  3526. slot: 4
  3527. display_name: '&7&lFire Aspect Enchant (V)'
  3528. lore:
  3529. - '&7Upon purchasing, you will receive'
  3530. - '&71x Fire Aspect V enchantment book'
  3531. - '&7which can be applied to swords.'
  3532. - ''
  3533. - '&f&l* &7Right click to open the shop'
  3534. left_click_commands:
  3535. - '[takemoney] 100000'
  3536. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:5}]}'
  3537. right_click_commands:
  3538. - '[takemoney] 100000'
  3539. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:5}]}'
  3540. VI:
  3541. material: 403
  3542. data: 0
  3543. slot: 5
  3544. display_name: '&7&lFire Aspect Enchant (VI)'
  3545. lore:
  3546. - '&7Upon purchasing, you will receive'
  3547. - '&71x Fire Aspect VI enchantment book'
  3548. - '&7which can be applied to swords.'
  3549. - ''
  3550. - '&f&l* &7Right click to open the shop'
  3551. left_click_commands:
  3552. - '[takemoney] 135000'
  3553. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:6}]}'
  3554. right_click_commands:
  3555. - '[takemoney] 135000'
  3556. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:6}]}'
  3557. VII:
  3558. material: 403
  3559. data: 0
  3560. slot: 6
  3561. display_name: '&7&lFire Aspect Enchant (VII)'
  3562. lore:
  3563. - '&7Upon purchasing, you will receive'
  3564. - '&71x Fire Aspect VII enchantment book'
  3565. - '&7which can be applied to swords.'
  3566. - ''
  3567. - '&f&l* &7Right click to open the shop'
  3568. left_click_commands:
  3569. - '[takemoney] 175000'
  3570. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:7}]}'
  3571. right_click_commands:
  3572. - '[takemoney] 175000'
  3573. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:7}]}'
  3574. VIII:
  3575. material: 403
  3576. data: 0
  3577. slot: 7
  3578. display_name: '&7&lFire Aspect Enchant (VIII)'
  3579. lore:
  3580. - '&7Upon purchasing, you will receive'
  3581. - '&71x Fire Aspect VIII enchantment book'
  3582. - '&7which can be applied to swords.'
  3583. - ''
  3584. - '&f&l* &7Right click to open the shop'
  3585. left_click_commands:
  3586. - '[takemoney] 250000'
  3587. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:8}]}'
  3588. right_click_commands:
  3589. - '[takemoney] 250000'
  3590. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:20,lvl:8}]}'
  3591. FlameEnchants:
  3592. menu_title: Flame (I-VIII)
  3593. open_command:
  3594. - Flame
  3595. open_requirement: ENCHANTER.ENCHANT
  3596. size: 9
  3597. items:
  3598. I:
  3599. material: 403
  3600. data: 0
  3601. slot: 0
  3602. display_name: '&7&lFlame Enchant (I)'
  3603. lore:
  3604. - '&7Upon purchasing, you will receive'
  3605. - '&71x Flame I enchantment book'
  3606. - '&7which can be applied to bows.'
  3607. - ''
  3608. - '&f&l* &7Right click to open the shop'
  3609. left_click_commands:
  3610. - '[takemoney] 15000'
  3611. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:1}]}'
  3612. right_click_commands:
  3613. - '[takemoney] 15000'
  3614. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:1}]}'
  3615. II:
  3616. material: 403
  3617. data: 0
  3618. slot: 1
  3619. display_name: '&7&lFlame Enchant (II)'
  3620. lore:
  3621. - '&7Upon purchasing, you will receive'
  3622. - '&71x Flame II enchantment book'
  3623. - '&7which can be applied to bows.'
  3624. - ''
  3625. - '&f&l* &7Right click to open the shop'
  3626. left_click_commands:
  3627. - '[takemoney] 25000'
  3628. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:2}]}'
  3629. right_click_commands:
  3630. - '[takemoney] 25000'
  3631. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:2}]}'
  3632. III:
  3633. material: 403
  3634. data: 0
  3635. slot: 2
  3636. display_name: '&7&lFlame Enchant (III)'
  3637. lore:
  3638. - '&7Upon purchasing, you will receive'
  3639. - '&71x Flame III enchantment book'
  3640. - '&7which can be applied to bows.'
  3641. - ''
  3642. - '&f&l* &7Right click to open the shop'
  3643. left_click_commands:
  3644. - '[takemoney] 50000'
  3645. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:3}]}'
  3646. right_click_commands:
  3647. - '[takemoney] 50000'
  3648. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:3}]}'
  3649. IV:
  3650. material: 403
  3651. data: 0
  3652. slot: 3
  3653. display_name: '&7&lFlame Enchant (IV)'
  3654. lore:
  3655. - '&7Upon purchasing, you will receive'
  3656. - '&71x Flame IV enchantment book'
  3657. - '&7which can be applied to bows.'
  3658. - ''
  3659. - '&f&l* &7Right click to open the shop'
  3660. left_click_commands:
  3661. - '[takemoney] 75000'
  3662. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:4}]}'
  3663. right_click_commands:
  3664. - '[takemoney] 75000'
  3665. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:4}]}'
  3666. V:
  3667. material: 403
  3668. data: 0
  3669. slot: 4
  3670. display_name: '&7&lFlame Enchant (V)'
  3671. lore:
  3672. - '&7Upon purchasing, you will receive'
  3673. - '&71x Flame V enchantment book'
  3674. - '&7which can be applied to bows.'
  3675. - ''
  3676. - '&f&l* &7Right click to open the shop'
  3677. left_click_commands:
  3678. - '[takemoney] 100000'
  3679. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:5}]}'
  3680. right_click_commands:
  3681. - '[takemoney] 100000'
  3682. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:5}]}'
  3683. VI:
  3684. material: 403
  3685. data: 0
  3686. slot: 5
  3687. display_name: '&7&lFlame Enchant (VI)'
  3688. lore:
  3689. - '&7Upon purchasing, you will receive'
  3690. - '&71x Flame VI enchantment book'
  3691. - '&7which can be applied to bows.'
  3692. - ''
  3693. - '&f&l* &7Right click to open the shop'
  3694. left_click_commands:
  3695. - '[takemoney] 135000'
  3696. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:6}]}'
  3697. right_click_commands:
  3698. - '[takemoney] 135000'
  3699. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:6}]}'
  3700. VII:
  3701. material: 403
  3702. data: 0
  3703. slot: 6
  3704. display_name: '&7&lFlame Enchant (VII)'
  3705. lore:
  3706. - '&7Upon purchasing, you will receive'
  3707. - '&71x Flame VII enchantment book'
  3708. - '&7which can be applied to bows.'
  3709. - ''
  3710. - '&f&l* &7Right click to open the shop'
  3711. left_click_commands:
  3712. - '[takemoney] 175000'
  3713. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:7}]}'
  3714. right_click_commands:
  3715. - '[takemoney] 175000'
  3716. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:7}]}'
  3717. VIII:
  3718. material: 403
  3719. data: 0
  3720. slot: 7
  3721. display_name: '&7&lFlame Enchant (VIII)'
  3722. lore:
  3723. - '&7Upon purchasing, you will receive'
  3724. - '&71x Flame VIII enchantment book'
  3725. - '&7which can be applied to bows.'
  3726. - ''
  3727. - '&f&l* &7Right click to open the shop'
  3728. left_click_commands:
  3729. - '[takemoney] 250000'
  3730. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:8}]}'
  3731. right_click_commands:
  3732. - '[takemoney] 250000'
  3733. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:50,lvl:8}]}'
  3734. FortuneEnchants:
  3735. menu_title: Fortune (I-VIII)
  3736. open_command:
  3737. - Fortune
  3738. open_requirement: ENCHANTER.ENCHANT
  3739. size: 9
  3740. items:
  3741. I:
  3742. material: 403
  3743. data: 0
  3744. slot: 0
  3745. display_name: '&7&lFortune Enchant (I)'
  3746. lore:
  3747. - '&7Upon purchasing, you will receive'
  3748. - '&71x Fortune I enchantment book'
  3749. - '&7which can be applied to all tools.'
  3750. - ''
  3751. - '&f&l* &7Right click to open the shop'
  3752. left_click_commands:
  3753. - '[takemoney] 15000'
  3754. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:1}]}'
  3755. right_click_commands:
  3756. - '[takemoney] 15000'
  3757. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:1}]}'
  3758. II:
  3759. material: 403
  3760. data: 0
  3761. slot: 1
  3762. display_name: '&7&lFortune Enchant (II)'
  3763. lore:
  3764. - '&7Upon purchasing, you will receive'
  3765. - '&71x Fortune II enchantment book'
  3766. - '&7which can be applied to all tools.'
  3767. - ''
  3768. - '&f&l* &7Right click to open the shop'
  3769. left_click_commands:
  3770. - '[takemoney] 25000'
  3771. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:2}]}'
  3772. right_click_commands:
  3773. - '[takemoney] 25000'
  3774. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:2}]}'
  3775. III:
  3776. material: 403
  3777. data: 0
  3778. slot: 2
  3779. display_name: '&7&lFortune Enchant (III)'
  3780. lore:
  3781. - '&7Upon purchasing, you will receive'
  3782. - '&71x Fortune III enchantment book'
  3783. - '&7which can be applied to all tools.'
  3784. - ''
  3785. - '&f&l* &7Right click to open the shop'
  3786. left_click_commands:
  3787. - '[takemoney] 50000'
  3788. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:3}]}'
  3789. right_click_commands:
  3790. - '[takemoney] 50000'
  3791. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:3}]}'
  3792. IV:
  3793. material: 403
  3794. data: 0
  3795. slot: 3
  3796. display_name: '&7&lFortune Enchant (IV)'
  3797. lore:
  3798. - '&7Upon purchasing, you will receive'
  3799. - '&71x Fortune IV enchantment book'
  3800. - '&7which can be applied to all tools.'
  3801. - ''
  3802. - '&f&l* &7Right click to open the shop'
  3803. left_click_commands:
  3804. - '[takemoney] 75000'
  3805. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:4}]}'
  3806. right_click_commands:
  3807. - '[takemoney] 75000'
  3808. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:4}]}'
  3809. V:
  3810. material: 403
  3811. data: 0
  3812. slot: 4
  3813. display_name: '&7&lFortune Enchant (V)'
  3814. lore:
  3815. - '&7Upon purchasing, you will receive'
  3816. - '&71x Fortune V enchantment book'
  3817. - '&7which can be applied to all tools.'
  3818. - ''
  3819. - '&f&l* &7Right click to open the shop'
  3820. left_click_commands:
  3821. - '[takemoney] 100000'
  3822. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:5}]}'
  3823. right_click_commands:
  3824. - '[takemoney] 100000'
  3825. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:5}]}'
  3826. VI:
  3827. material: 403
  3828. data: 0
  3829. slot: 5
  3830. display_name: '&7&lFortune Enchant (VI)'
  3831. lore:
  3832. - '&7Upon purchasing, you will receive'
  3833. - '&71x Fortune VI enchantment book'
  3834. - '&7which can be applied to all tools.'
  3835. - ''
  3836. - '&f&l* &7Right click to open the shop'
  3837. left_click_commands:
  3838. - '[takemoney] 135000'
  3839. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:6}]}'
  3840. right_click_commands:
  3841. - '[takemoney] 135000'
  3842. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:6}]}'
  3843. VII:
  3844. material: 403
  3845. data: 0
  3846. slot: 6
  3847. display_name: '&7&lFortune Enchant (VII)'
  3848. lore:
  3849. - '&7Upon purchasing, you will receive'
  3850. - '&71x Fortune VII enchantment book'
  3851. - '&7which can be applied to all tools.'
  3852. - ''
  3853. - '&f&l* &7Right click to open the shop'
  3854. left_click_commands:
  3855. - '[takemoney] 175000'
  3856. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:7}]}'
  3857. right_click_commands:
  3858. - '[takemoney] 175000'
  3859. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:7}]}'
  3860. VIII:
  3861. material: 403
  3862. data: 0
  3863. slot: 7
  3864. display_name: '&7&lFortune Enchant (VIII)'
  3865. lore:
  3866. - '&7Upon purchasing, you will receive'
  3867. - '&71x Fortune VIII enchantment book'
  3868. - '&7which can be applied to all tools.'
  3869. - ''
  3870. - '&f&l* &7Right click to open the shop'
  3871. left_click_commands:
  3872. - '[takemoney] 250000'
  3873. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:8}]}'
  3874. right_click_commands:
  3875. - '[takemoney] 250000'
  3876. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:8}]}'
  3877. KnockbackEnchants:
  3878. menu_title: Knockback (I-VIII)
  3879. open_command:
  3880. - Knockback
  3881. open_requirement: ENCHANTER.ENCHANT
  3882. size: 9
  3883. items:
  3884. I:
  3885. material: 403
  3886. data: 0
  3887. slot: 0
  3888. display_name: '&7&lKnockback Enchant (I)'
  3889. lore:
  3890. - '&7Upon purchasing, you will receive'
  3891. - '&71x Knockback I enchantment book'
  3892. - '&7which can be applied to swords.'
  3893. - ''
  3894. - '&f&l* &7Right click to open the shop'
  3895. left_click_commands:
  3896. - '[takemoney] 15000'
  3897. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:1}]}'
  3898. right_click_commands:
  3899. - '[takemoney] 15000'
  3900. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:1}]}'
  3901. II:
  3902. material: 403
  3903. data: 0
  3904. slot: 1
  3905. display_name: '&7&lKnockback Enchant (II)'
  3906. lore:
  3907. - '&7Upon purchasing, you will receive'
  3908. - '&71x Knockback II enchantment book'
  3909. - '&7which can be applied to swords.'
  3910. - ''
  3911. - '&f&l* &7Right click to open the shop'
  3912. left_click_commands:
  3913. - '[takemoney] 25000'
  3914. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:2}]}'
  3915. right_click_commands:
  3916. - '[takemoney] 25000'
  3917. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:2}]}'
  3918. III:
  3919. material: 403
  3920. data: 0
  3921. slot: 2
  3922. display_name: '&7&lKnockback Enchant (III)'
  3923. lore:
  3924. - '&7Upon purchasing, you will receive'
  3925. - '&71x Knockback III enchantment book'
  3926. - '&7which can be applied to swords.'
  3927. - ''
  3928. - '&f&l* &7Right click to open the shop'
  3929. left_click_commands:
  3930. - '[takemoney] 50000'
  3931. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:3}]}'
  3932. right_click_commands:
  3933. - '[takemoney] 50000'
  3934. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:3}]}'
  3935. IV:
  3936. material: 403
  3937. data: 0
  3938. slot: 3
  3939. display_name: '&7&lKnockback Enchant (IV)'
  3940. lore:
  3941. - '&7Upon purchasing, you will receive'
  3942. - '&71x Knockback IV enchantment book'
  3943. - '&7which can be applied to swords.'
  3944. - ''
  3945. - '&f&l* &7Right click to open the shop'
  3946. left_click_commands:
  3947. - '[takemoney] 75000'
  3948. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:4}]}'
  3949. right_click_commands:
  3950. - '[takemoney] 75000'
  3951. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:4}]}'
  3952. V:
  3953. material: 403
  3954. data: 0
  3955. slot: 4
  3956. display_name: '&7&lKnockback Enchant (V)'
  3957. lore:
  3958. - '&7Upon purchasing, you will receive'
  3959. - '&71x Knockback V enchantment book'
  3960. - '&7which can be applied to swords.'
  3961. - ''
  3962. - '&f&l* &7Right click to open the shop'
  3963. left_click_commands:
  3964. - '[takemoney] 100000'
  3965. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:5}]}'
  3966. right_click_commands:
  3967. - '[takemoney] 100000'
  3968. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:5}]}'
  3969. VI:
  3970. material: 403
  3971. data: 0
  3972. slot: 5
  3973. display_name: '&7&lKnockback Enchant (VI)'
  3974. lore:
  3975. - '&7Upon purchasing, you will receive'
  3976. - '&71x Knockback VI enchantment book'
  3977. - '&7which can be applied to swords.'
  3978. - ''
  3979. - '&f&l* &7Right click to open the shop'
  3980. left_click_commands:
  3981. - '[takemoney] 135000'
  3982. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:6}]}'
  3983. right_click_commands:
  3984. - '[takemoney] 135000'
  3985. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:6}]}'
  3986. VII:
  3987. material: 403
  3988. data: 0
  3989. slot: 6
  3990. display_name: '&7&lKnockback Enchant (VII)'
  3991. lore:
  3992. - '&7Upon purchasing, you will receive'
  3993. - '&71x Knockback VII enchantment book'
  3994. - '&7which can be applied to swords.'
  3995. - ''
  3996. - '&f&l* &7Right click to open the shop'
  3997. left_click_commands:
  3998. - '[takemoney] 175000'
  3999. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:7}]}'
  4000. right_click_commands:
  4001. - '[takemoney] 175000'
  4002. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:7}]}'
  4003. VIII:
  4004. material: 403
  4005. data: 0
  4006. slot: 7
  4007. display_name: '&7&lKnockback Enchant (VIII)'
  4008. lore:
  4009. - '&7Upon purchasing, you will receive'
  4010. - '&71x Knockback VIII enchantment book'
  4011. - '&7which can be applied to swords.'
  4012. - ''
  4013. - '&f&l* &7Right click to open the shop'
  4014. left_click_commands:
  4015. - '[takemoney] 250000'
  4016. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:8}]}'
  4017. right_click_commands:
  4018. - '[takemoney] 250000'
  4019. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:19,lvl:8}]}'
  4020. LootingEnchants:
  4021. menu_title: Looting (I-VIII)
  4022. open_command:
  4023. - Looting
  4024. open_requirement: ENCHANTER.ENCHANT
  4025. size: 9
  4026. items:
  4027. I:
  4028. material: 403
  4029. data: 0
  4030. slot: 0
  4031. display_name: '&7&lLooting Enchant (I)'
  4032. lore:
  4033. - '&7Upon purchasing, you will receive'
  4034. - '&71x Looting I enchantment book'
  4035. - '&7which can be applied to swords.'
  4036. - ''
  4037. - '&f&l* &7Right click to open the shop'
  4038. left_click_commands:
  4039. - '[takemoney] 15000'
  4040. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:1}]}'
  4041. right_click_commands:
  4042. - '[takemoney] 15000'
  4043. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:1}]}'
  4044. II:
  4045. material: 403
  4046. data: 0
  4047. slot: 1
  4048. display_name: '&7&lLooting Enchant (II)'
  4049. lore:
  4050. - '&7Upon purchasing, you will receive'
  4051. - '&71x Looting II enchantment book'
  4052. - '&7which can be applied to swords.'
  4053. - ''
  4054. - '&f&l* &7Right click to open the shop'
  4055. left_click_commands:
  4056. - '[takemoney] 25000'
  4057. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:2}]}'
  4058. right_click_commands:
  4059. - '[takemoney] 25000'
  4060. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:2}]}'
  4061. III:
  4062. material: 403
  4063. data: 0
  4064. slot: 2
  4065. display_name: '&7&lLooting Enchant (III)'
  4066. lore:
  4067. - '&7Upon purchasing, you will receive'
  4068. - '&71x Looting III enchantment book'
  4069. - '&7which can be applied to swords.'
  4070. - ''
  4071. - '&f&l* &7Right click to open the shop'
  4072. left_click_commands:
  4073. - '[takemoney] 50000'
  4074. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:3}]}'
  4075. right_click_commands:
  4076. - '[takemoney] 50000'
  4077. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:3}]}'
  4078. IV:
  4079. material: 403
  4080. data: 0
  4081. slot: 3
  4082. display_name: '&7&lLooting Enchant (IV)'
  4083. lore:
  4084. - '&7Upon purchasing, you will receive'
  4085. - '&71x Looting IV enchantment book'
  4086. - '&7which can be applied to swords.'
  4087. - ''
  4088. - '&f&l* &7Right click to open the shop'
  4089. left_click_commands:
  4090. - '[takemoney] 75000'
  4091. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:4}]}'
  4092. right_click_commands:
  4093. - '[takemoney] 75000'
  4094. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:4}]}'
  4095. V:
  4096. material: 403
  4097. data: 0
  4098. slot: 4
  4099. display_name: '&7&lLooting Enchant (V)'
  4100. lore:
  4101. - '&7Upon purchasing, you will receive'
  4102. - '&71x Looting V enchantment book'
  4103. - '&7which can be applied to swords.'
  4104. - ''
  4105. - '&f&l* &7Right click to open the shop'
  4106. left_click_commands:
  4107. - '[takemoney] 100000'
  4108. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:5}]}'
  4109. right_click_commands:
  4110. - '[takemoney] 100000'
  4111. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:5}]}'
  4112. VI:
  4113. material: 403
  4114. data: 0
  4115. slot: 5
  4116. display_name: '&7&lLooting Enchant (VI)'
  4117. lore:
  4118. - '&7Upon purchasing, you will receive'
  4119. - '&71x Looting VI enchantment book'
  4120. - '&7which can be applied to swords.'
  4121. - ''
  4122. - '&f&l* &7Right click to open the shop'
  4123. left_click_commands:
  4124. - '[takemoney] 135000'
  4125. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:6}]}'
  4126. right_click_commands:
  4127. - '[takemoney] 135000'
  4128. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:6}]}'
  4129. VII:
  4130. material: 403
  4131. data: 0
  4132. slot: 6
  4133. display_name: '&7&lLooting Enchant (VII)'
  4134. lore:
  4135. - '&7Upon purchasing, you will receive'
  4136. - '&71x Looting VII enchantment book'
  4137. - '&7which can be applied to swords.'
  4138. - ''
  4139. - '&f&l* &7Right click to open the shop'
  4140. left_click_commands:
  4141. - '[takemoney] 175000'
  4142. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:7}]}'
  4143. right_click_commands:
  4144. - '[takemoney] 175000'
  4145. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:7}]}'
  4146. VIII:
  4147. material: 403
  4148. data: 0
  4149. slot: 7
  4150. display_name: '&7&lLooting Enchant (VIII)'
  4151. lore:
  4152. - '&7Upon purchasing, you will receive'
  4153. - '&71x Looting VIII enchantment book'
  4154. - '&7which can be applied to swords.'
  4155. - ''
  4156. - '&f&l* &7Right click to open the shop'
  4157. left_click_commands:
  4158. - '[takemoney] 250000'
  4159. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:8}]}'
  4160. right_click_commands:
  4161. - '[takemoney] 250000'
  4162. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:21,lvl:8}]}'
  4163. LuckoftheSeaEnchants:
  4164. menu_title: Luck of the Sea (I-VIII)
  4165. open_command:
  4166. - LuckoftheSea
  4167. open_requirement: ENCHANTER.ENCHANT
  4168. size: 9
  4169. items:
  4170. I:
  4171. material: 403
  4172. data: 0
  4173. slot: 0
  4174. display_name: '&7&lLuck of the Sea Enchant (I)'
  4175. lore:
  4176. - '&7Upon purchasing, you will receive'
  4177. - '&71x Luck of the Sea I enchantment book'
  4178. - '&7which can be applied to fishing rods.'
  4179. - ''
  4180. - '&f&l* &7Right click to open the shop'
  4181. left_click_commands:
  4182. - '[takemoney] 15000'
  4183. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:1}]}'
  4184. right_click_commands:
  4185. - '[takemoney] 15000'
  4186. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:1}]}'
  4187. II:
  4188. material: 403
  4189. data: 0
  4190. slot: 1
  4191. display_name: '&7&lLuck of the Sea Enchant (II)'
  4192. lore:
  4193. - '&7Upon purchasing, you will receive'
  4194. - '&71x Luck of the Sea II enchantment book'
  4195. - '&7which can be applied to fishing rods.'
  4196. - ''
  4197. - '&f&l* &7Right click to open the shop'
  4198. left_click_commands:
  4199. - '[takemoney] 25000'
  4200. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:2}]}'
  4201. right_click_commands:
  4202. - '[takemoney] 25000'
  4203. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:2}]}'
  4204. III:
  4205. material: 403
  4206. data: 0
  4207. slot: 2
  4208. display_name: '&7&lLuck of the Sea Enchant (III)'
  4209. lore:
  4210. - '&7Upon purchasing, you will receive'
  4211. - '&71x Luck of the Sea III enchantment book'
  4212. - '&7which can be applied to fishing rods.'
  4213. - ''
  4214. - '&f&l* &7Right click to open the shop'
  4215. left_click_commands:
  4216. - '[takemoney] 50000'
  4217. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:3}]}'
  4218. right_click_commands:
  4219. - '[takemoney] 50000'
  4220. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:3}]}'
  4221. IV:
  4222. material: 403
  4223. data: 0
  4224. slot: 3
  4225. display_name: '&7&lLuck of the Sea Enchant (IV)'
  4226. lore:
  4227. - '&7Upon purchasing, you will receive'
  4228. - '&71x Luck of the Sea IV enchantment book'
  4229. - '&7which can be applied to fishing rods.'
  4230. - ''
  4231. - '&f&l* &7Right click to open the shop'
  4232. left_click_commands:
  4233. - '[takemoney] 75000'
  4234. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:4}]}'
  4235. right_click_commands:
  4236. - '[takemoney] 75000'
  4237. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:4}]}'
  4238. V:
  4239. material: 403
  4240. data: 0
  4241. slot: 4
  4242. display_name: '&7&lLuck of the Sea Enchant (V)'
  4243. lore:
  4244. - '&7Upon purchasing, you will receive'
  4245. - '&71x Luck of the Sea V enchantment book'
  4246. - '&7which can be applied to fishing rods.'
  4247. - ''
  4248. - '&f&l* &7Right click to open the shop'
  4249. left_click_commands:
  4250. - '[takemoney] 100000'
  4251. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:5}]}'
  4252. right_click_commands:
  4253. - '[takemoney] 100000'
  4254. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:5}]}'
  4255. VI:
  4256. material: 403
  4257. data: 0
  4258. slot: 5
  4259. display_name: '&7&lLuck of the Sea Enchant (VI)'
  4260. lore:
  4261. - '&7Upon purchasing, you will receive'
  4262. - '&71x Luck of the Sea VI enchantment book'
  4263. - '&7which can be applied to fishing rods.'
  4264. - ''
  4265. - '&f&l* &7Right click to open the shop'
  4266. left_click_commands:
  4267. - '[takemoney] 135000'
  4268. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:6}]}'
  4269. right_click_commands:
  4270. - '[takemoney] 135000'
  4271. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:6}]}'
  4272. VII:
  4273. material: 403
  4274. data: 0
  4275. slot: 6
  4276. display_name: '&7&lLuck of the Sea Enchant (VII)'
  4277. lore:
  4278. - '&7Upon purchasing, you will receive'
  4279. - '&71x Luck of the Sea VII enchantment book'
  4280. - '&7which can be applied to fishing rods.'
  4281. - ''
  4282. - '&f&l* &7Right click to open the shop'
  4283. left_click_commands:
  4284. - '[takemoney] 175000'
  4285. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:7}]}'
  4286. right_click_commands:
  4287. - '[takemoney] 175000'
  4288. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:7}]}'
  4289. VIII:
  4290. material: 403
  4291. data: 0
  4292. slot: 7
  4293. display_name: '&7&lLuck of the Sea Enchant (VIII)'
  4294. lore:
  4295. - '&7Upon purchasing, you will receive'
  4296. - '&71x Luck of the Sea VIII enchantment book'
  4297. - '&7which can be applied to fishing rods.'
  4298. - ''
  4299. - '&f&l* &7Right click to open the shop'
  4300. left_click_commands:
  4301. - '[takemoney] 250000'
  4302. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:8}]}'
  4303. right_click_commands:
  4304. - '[takemoney] 250000'
  4305. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:61,lvl:8}]}'
  4306. LureEnchants:
  4307. menu_title: Lure (I-VIII)
  4308. open_command:
  4309. - Lure
  4310. open_requirement: ENCHANTER.ENCHANT
  4311. size: 9
  4312. items:
  4313. I:
  4314. material: 403
  4315. data: 0
  4316. slot: 0
  4317. display_name: '&7&lLure Enchant (I)'
  4318. lore:
  4319. - '&7Upon purchasing, you will receive'
  4320. - '&71x Lure I enchantment book'
  4321. - '&7which can be applied to fishing rods.'
  4322. - ''
  4323. - '&f&l* &7Right click to open the shop'
  4324. left_click_commands:
  4325. - '[takemoney] 15000'
  4326. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:1}]}'
  4327. right_click_commands:
  4328. - '[takemoney] 15000'
  4329. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:1}]}'
  4330. II:
  4331. material: 403
  4332. data: 0
  4333. slot: 1
  4334. display_name: '&7&lLure Enchant (II)'
  4335. lore:
  4336. - '&7Upon purchasing, you will receive'
  4337. - '&71x Lure II enchantment book'
  4338. - '&7which can be applied to fishing rods.'
  4339. - ''
  4340. - '&f&l* &7Right click to open the shop'
  4341. left_click_commands:
  4342. - '[takemoney] 25000'
  4343. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:2}]}'
  4344. right_click_commands:
  4345. - '[takemoney] 25000'
  4346. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:2}]}'
  4347. III:
  4348. material: 403
  4349. data: 0
  4350. slot: 2
  4351. display_name: '&7&lLure Enchant (III)'
  4352. lore:
  4353. - '&7Upon purchasing, you will receive'
  4354. - '&71x Lure III enchantment book'
  4355. - '&7which can be applied to fishing rods.'
  4356. - ''
  4357. - '&f&l* &7Right click to open the shop'
  4358. left_click_commands:
  4359. - '[takemoney] 50000'
  4360. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:3}]}'
  4361. right_click_commands:
  4362. - '[takemoney] 50000'
  4363. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:3}]}'
  4364. IV:
  4365. material: 403
  4366. data: 0
  4367. slot: 3
  4368. display_name: '&7&lLure Enchant (IV)'
  4369. lore:
  4370. - '&7Upon purchasing, you will receive'
  4371. - '&71x Lure IV enchantment book'
  4372. - '&7which can be applied to fishing rods.'
  4373. - ''
  4374. - '&f&l* &7Right click to open the shop'
  4375. left_click_commands:
  4376. - '[takemoney] 75000'
  4377. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:4}]}'
  4378. right_click_commands:
  4379. - '[takemoney] 75000'
  4380. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:4}]}'
  4381. V:
  4382. material: 403
  4383. data: 0
  4384. slot: 4
  4385. display_name: '&7&lLure Enchant (V)'
  4386. lore:
  4387. - '&7Upon purchasing, you will receive'
  4388. - '&71x Lure V enchantment book'
  4389. - '&7which can be applied to fishing rods.'
  4390. - ''
  4391. - '&f&l* &7Right click to open the shop'
  4392. left_click_commands:
  4393. - '[takemoney] 100000'
  4394. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:5}]}'
  4395. right_click_commands:
  4396. - '[takemoney] 100000'
  4397. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:5}]}'
  4398. VI:
  4399. material: 403
  4400. data: 0
  4401. slot: 5
  4402. display_name: '&7&lLure Enchant (VI)'
  4403. lore:
  4404. - '&7Upon purchasing, you will receive'
  4405. - '&71x Lure VI enchantment book'
  4406. - '&7which can be applied to fishing rods.'
  4407. - ''
  4408. - '&f&l* &7Right click to open the shop'
  4409. left_click_commands:
  4410. - '[takemoney] 135000'
  4411. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:6}]}'
  4412. right_click_commands:
  4413. - '[takemoney] 135000'
  4414. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:6}]}'
  4415. VII:
  4416. material: 403
  4417. data: 0
  4418. slot: 6
  4419. display_name: '&7&lLure Enchant (VII)'
  4420. lore:
  4421. - '&7Upon purchasing, you will receive'
  4422. - '&71x Lure VII enchantment book'
  4423. - '&7which can be applied to fishing rods.'
  4424. - ''
  4425. - '&f&l* &7Right click to open the shop'
  4426. left_click_commands:
  4427. - '[takemoney] 175000'
  4428. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:7}]}'
  4429. right_click_commands:
  4430. - '[takemoney] 175000'
  4431. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:7}]}'
  4432. VIII:
  4433. material: 403
  4434. data: 0
  4435. slot: 7
  4436. display_name: '&7&lLure Enchant (VIII)'
  4437. lore:
  4438. - '&7Upon purchasing, you will receive'
  4439. - '&71x Lure VIII enchantment book'
  4440. - '&7which can be applied to fishing rods.'
  4441. - ''
  4442. - '&f&l* &7Right click to open the shop'
  4443. left_click_commands:
  4444. - '[takemoney] 250000'
  4445. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:8}]}'
  4446. right_click_commands:
  4447. - '[takemoney] 250000'
  4448. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:62,lvl:8}]}'
  4449. PowerEnchant:
  4450. menu_title: Power (I-VIII)
  4451. open_command:
  4452. - Power
  4453. open_requirement: ENCHANTER.ENCHANT
  4454. size: 9
  4455. items:
  4456. I:
  4457. material: 403
  4458. data: 0
  4459. slot: 0
  4460. display_name: '&7&lPower Enchant (I)'
  4461. lore:
  4462. - '&7Upon purchasing, you will receive'
  4463. - '&71x Power I enchantment book'
  4464. - '&7which can be applied to bows.'
  4465. - ''
  4466. - '&f&l* &7Right click to open the shop'
  4467. left_click_commands:
  4468. - '[takemoney] 15000'
  4469. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:1}]}'
  4470. right_click_commands:
  4471. - '[takemoney] 15000'
  4472. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:1}]}'
  4473. II:
  4474. material: 403
  4475. data: 0
  4476. slot: 1
  4477. display_name: '&7&lPower Enchant (II)'
  4478. lore:
  4479. - '&7Upon purchasing, you will receive'
  4480. - '&71x Power II enchantment book'
  4481. - '&7which can be applied to bows.'
  4482. - ''
  4483. - '&f&l* &7Right click to open the shop'
  4484. left_click_commands:
  4485. - '[takemoney] 25000'
  4486. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:2}]}'
  4487. right_click_commands:
  4488. - '[takemoney] 25000'
  4489. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:2}]}'
  4490. III:
  4491. material: 403
  4492. data: 0
  4493. slot: 2
  4494. display_name: '&7&lPower Enchant (III)'
  4495. lore:
  4496. - '&7Upon purchasing, you will receive'
  4497. - '&71x Power III enchantment book'
  4498. - '&7which can be applied to bows.'
  4499. - ''
  4500. - '&f&l* &7Right click to open the shop'
  4501. left_click_commands:
  4502. - '[takemoney] 50000'
  4503. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:3}]}'
  4504. right_click_commands:
  4505. - '[takemoney] 50000'
  4506. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:3}]}'
  4507. IV:
  4508. material: 403
  4509. data: 0
  4510. slot: 3
  4511. display_name: '&7&lPower Enchant (IV)'
  4512. lore:
  4513. - '&7Upon purchasing, you will receive'
  4514. - '&71x Power IV enchantment book'
  4515. - '&7which can be applied to bows.'
  4516. - ''
  4517. - '&f&l* &7Right click to open the shop'
  4518. left_click_commands:
  4519. - '[takemoney] 75000'
  4520. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:4}]}'
  4521. right_click_commands:
  4522. - '[takemoney] 75000'
  4523. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:4}]}'
  4524. V:
  4525. material: 403
  4526. data: 0
  4527. slot: 4
  4528. display_name: '&7&lPower Enchant (V)'
  4529. lore:
  4530. - '&7Upon purchasing, you will receive'
  4531. - '&71x Power V enchantment book'
  4532. - '&7which can be applied to bows.'
  4533. - ''
  4534. - '&f&l* &7Right click to open the shop'
  4535. left_click_commands:
  4536. - '[takemoney] 100000'
  4537. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:5}]}'
  4538. right_click_commands:
  4539. - '[takemoney] 100000'
  4540. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:5}]}'
  4541. VI:
  4542. material: 403
  4543. data: 0
  4544. slot: 5
  4545. display_name: '&7&lPower Enchant (VI)'
  4546. lore:
  4547. - '&7Upon purchasing, you will receive'
  4548. - '&71x Power VI enchantment book'
  4549. - '&7which can be applied to bows.'
  4550. - ''
  4551. - '&f&l* &7Right click to open the shop'
  4552. left_click_commands:
  4553. - '[takemoney] 135000'
  4554. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:6}]}'
  4555. right_click_commands:
  4556. - '[takemoney] 135000'
  4557. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:6}]}'
  4558. VII:
  4559. material: 403
  4560. data: 0
  4561. slot: 6
  4562. display_name: '&7&lPower Enchant (VII)'
  4563. lore:
  4564. - '&7Upon purchasing, you will receive'
  4565. - '&71x Power VII enchantment book'
  4566. - '&7which can be applied to bows.'
  4567. - ''
  4568. - '&f&l* &7Right click to open the shop'
  4569. left_click_commands:
  4570. - '[takemoney] 175000'
  4571. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:7}]}'
  4572. right_click_commands:
  4573. - '[takemoney] 175000'
  4574. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:7}]}'
  4575. VIII:
  4576. material: 403
  4577. data: 0
  4578. slot: 7
  4579. display_name: '&7&lPower Enchant (VIII)'
  4580. lore:
  4581. - '&7Upon purchasing, you will receive'
  4582. - '&71x Power VIII enchantment book'
  4583. - '&7which can be applied to bows.'
  4584. - ''
  4585. - '&f&l* &7Right click to open the shop'
  4586. left_click_commands:
  4587. - '[takemoney] 250000'
  4588. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:8}]}'
  4589. right_click_commands:
  4590. - '[takemoney] 250000'
  4591. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:48,lvl:8}]}'
  4592. PunchEnchants:
  4593. menu_title: Punch (I-VIII)
  4594. open_command:
  4595. - Punch
  4596. open_requirement: ENCHANTER.ENCHANT
  4597. size: 9
  4598. items:
  4599. I:
  4600. material: 403
  4601. data: 0
  4602. slot: 0
  4603. display_name: '&7&lPunch Enchant (I)'
  4604. lore:
  4605. - '&7Upon purchasing, you will receive'
  4606. - '&71x Punch I enchantment book'
  4607. - '&7which can be applied to bows.'
  4608. - ''
  4609. - '&f&l* &7Right click to open the shop'
  4610. left_click_commands:
  4611. - '[takemoney] 15000'
  4612. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:1}]}'
  4613. right_click_commands:
  4614. - '[takemoney] 15000'
  4615. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:1}]}'
  4616. II:
  4617. material: 403
  4618. data: 0
  4619. slot: 1
  4620. display_name: '&7&lPunch Enchant (II)'
  4621. lore:
  4622. - '&7Upon purchasing, you will receive'
  4623. - '&71x Punch II enchantment book'
  4624. - '&7which can be applied to bows.'
  4625. - ''
  4626. - '&f&l* &7Right click to open the shop'
  4627. left_click_commands:
  4628. - '[takemoney] 25000'
  4629. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:2}]}'
  4630. right_click_commands:
  4631. - '[takemoney] 25000'
  4632. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:2}]}'
  4633. III:
  4634. material: 403
  4635. data: 0
  4636. slot: 2
  4637. display_name: '&7&lPunch Enchant (III)'
  4638. lore:
  4639. - '&7Upon purchasing, you will receive'
  4640. - '&71x Punch III enchantment book'
  4641. - '&7which can be applied to bows.'
  4642. - ''
  4643. - '&f&l* &7Right click to open the shop'
  4644. left_click_commands:
  4645. - '[takemoney] 50000'
  4646. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:3}]}'
  4647. right_click_commands:
  4648. - '[takemoney] 50000'
  4649. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:3}]}'
  4650. IV:
  4651. material: 403
  4652. data: 0
  4653. slot: 3
  4654. display_name: '&7&lPunch Enchant (IV)'
  4655. lore:
  4656. - '&7Upon purchasing, you will receive'
  4657. - '&71x Punch IV enchantment book'
  4658. - '&7which can be applied to bows.'
  4659. - ''
  4660. - '&f&l* &7Right click to open the shop'
  4661. left_click_commands:
  4662. - '[takemoney] 75000'
  4663. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:4}]}'
  4664. right_click_commands:
  4665. - '[takemoney] 75000'
  4666. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:4}]}'
  4667. V:
  4668. material: 403
  4669. data: 0
  4670. slot: 4
  4671. display_name: '&7&lPunch Enchant (V)'
  4672. lore:
  4673. - '&7Upon purchasing, you will receive'
  4674. - '&71x Punch V enchantment book'
  4675. - '&7which can be applied to bows.'
  4676. - ''
  4677. - '&f&l* &7Right click to open the shop'
  4678. left_click_commands:
  4679. - '[takemoney] 100000'
  4680. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:5}]}'
  4681. right_click_commands:
  4682. - '[takemoney] 100000'
  4683. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:5}]}'
  4684. VI:
  4685. material: 403
  4686. data: 0
  4687. slot: 5
  4688. display_name: '&7&lPunch Enchant (VI)'
  4689. lore:
  4690. - '&7Upon purchasing, you will receive'
  4691. - '&71x Punch VI enchantment book'
  4692. - '&7which can be applied to bows.'
  4693. - ''
  4694. - '&f&l* &7Right click to open the shop'
  4695. left_click_commands:
  4696. - '[takemoney] 135000'
  4697. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:6}]}'
  4698. right_click_commands:
  4699. - '[takemoney] 135000'
  4700. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:6}]}'
  4701. VII:
  4702. material: 403
  4703. data: 0
  4704. slot: 6
  4705. display_name: '&7&lPunch Enchant (VII)'
  4706. lore:
  4707. - '&7Upon purchasing, you will receive'
  4708. - '&71x Punch VII enchantment book'
  4709. - '&7which can be applied to bows.'
  4710. - ''
  4711. - '&f&l* &7Right click to open the shop'
  4712. left_click_commands:
  4713. - '[takemoney] 175000'
  4714. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:7}]}'
  4715. right_click_commands:
  4716. - '[takemoney] 175000'
  4717. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:7}]}'
  4718. VIII:
  4719. material: 403
  4720. data: 0
  4721. slot: 7
  4722. display_name: '&7&lPunch Enchant (VIII)'
  4723. lore:
  4724. - '&7Upon purchasing, you will receive'
  4725. - '&71x Punch VIII enchantment book'
  4726. - '&7which can be applied to bows.'
  4727. - ''
  4728. - '&f&l* &7Right click to open the shop'
  4729. left_click_commands:
  4730. - '[takemoney] 250000'
  4731. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:8}]}'
  4732. right_click_commands:
  4733. - '[takemoney] 250000'
  4734. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:49,lvl:8}]}'
  4735. RespirationEnchants:
  4736. menu_title: Respiration (I-VIII)
  4737. open_command:
  4738. - Respiration
  4739. open_requirement: ENCHANTER.ENCHANT
  4740. size: 9
  4741. items:
  4742. I:
  4743. material: 403
  4744. data: 0
  4745. slot: 0
  4746. display_name: '&7&lRespiration Enchant (I)'
  4747. lore:
  4748. - '&7Upon purchasing, you will receive'
  4749. - '&71x Respiration I enchantment book'
  4750. - '&7which can be applied to helmets.'
  4751. - ''
  4752. - '&f&l* &7Right click to open the shop'
  4753. left_click_commands:
  4754. - '[takemoney] 15000'
  4755. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:1}]}'
  4756. right_click_commands:
  4757. - '[takemoney] 15000'
  4758. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:1}]}'
  4759. II:
  4760. material: 403
  4761. data: 0
  4762. slot: 1
  4763. display_name: '&7&lRespiration Enchant (II)'
  4764. lore:
  4765. - '&7Upon purchasing, you will receive'
  4766. - '&71x Respiration II enchantment book'
  4767. - '&7which can be applied to helmets.'
  4768. - ''
  4769. - '&f&l* &7Right click to open the shop'
  4770. left_click_commands:
  4771. - '[takemoney] 25000'
  4772. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:2}]}'
  4773. right_click_commands:
  4774. - '[takemoney] 25000'
  4775. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:2}]}'
  4776. III:
  4777. material: 403
  4778. data: 0
  4779. slot: 2
  4780. display_name: '&7&lRespiration Enchant (III)'
  4781. lore:
  4782. - '&7Upon purchasing, you will receive'
  4783. - '&71x Respiration III enchantment book'
  4784. - '&7which can be applied to helmets.'
  4785. - ''
  4786. - '&f&l* &7Right click to open the shop'
  4787. left_click_commands:
  4788. - '[takemoney] 50000'
  4789. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:3}]}'
  4790. right_click_commands:
  4791. - '[takemoney] 50000'
  4792. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:3}]}'
  4793. IV:
  4794. material: 403
  4795. data: 0
  4796. slot: 3
  4797. display_name: '&7&lRespiration Enchant (IV)'
  4798. lore:
  4799. - '&7Upon purchasing, you will receive'
  4800. - '&71x Respiration IV enchantment book'
  4801. - '&7which can be applied to helmets.'
  4802. - ''
  4803. - '&f&l* &7Right click to open the shop'
  4804. left_click_commands:
  4805. - '[takemoney] 75000'
  4806. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:4}]}'
  4807. right_click_commands:
  4808. - '[takemoney] 75000'
  4809. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:4}]}'
  4810. V:
  4811. material: 403
  4812. data: 0
  4813. slot: 4
  4814. display_name: '&7&lRespiration Enchant (V)'
  4815. lore:
  4816. - '&7Upon purchasing, you will receive'
  4817. - '&71x Respiration V enchantment book'
  4818. - '&7which can be applied to helmets.'
  4819. - ''
  4820. - '&f&l* &7Right click to open the shop'
  4821. left_click_commands:
  4822. - '[takemoney] 100000'
  4823. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:5}]}'
  4824. right_click_commands:
  4825. - '[takemoney] 100000'
  4826. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:5}]}'
  4827. VI:
  4828. material: 403
  4829. data: 0
  4830. slot: 5
  4831. display_name: '&7&lRespiration Enchant (VI)'
  4832. lore:
  4833. - '&7Upon purchasing, you will receive'
  4834. - '&71x Respiration VI enchantment book'
  4835. - '&7which can be applied to helmets.'
  4836. - ''
  4837. - '&f&l* &7Right click to open the shop'
  4838. left_click_commands:
  4839. - '[takemoney] 135000'
  4840. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:6}]}'
  4841. right_click_commands:
  4842. - '[takemoney] 135000'
  4843. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:6}]}'
  4844. VII:
  4845. material: 403
  4846. data: 0
  4847. slot: 6
  4848. display_name: '&7&lRespiration Enchant (VII)'
  4849. lore:
  4850. - '&7Upon purchasing, you will receive'
  4851. - '&71x Respiration VII enchantment book'
  4852. - '&7which can be applied to helmets.'
  4853. - ''
  4854. - '&f&l* &7Right click to open the shop'
  4855. left_click_commands:
  4856. - '[takemoney] 175000'
  4857. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:7}]}'
  4858. right_click_commands:
  4859. - '[takemoney] 175000'
  4860. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:7}]}'
  4861. VIII:
  4862. material: 403
  4863. data: 0
  4864. slot: 7
  4865. display_name: '&7&lRespiration Enchant (VIII)'
  4866. lore:
  4867. - '&7Upon purchasing, you will receive'
  4868. - '&71x Respiration VIII enchantment book'
  4869. - '&7which can be applied to helmets.'
  4870. - ''
  4871. - '&f&l* &7Right click to open the shop'
  4872. left_click_commands:
  4873. - '[takemoney] 250000'
  4874. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:8}]}'
  4875. right_click_commands:
  4876. - '[takemoney] 250000'
  4877. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:8}]}'
  4878. SharpnessEnchants:
  4879. menu_title: Sharpness (I-VIII)
  4880. open_command:
  4881. - Sharpness
  4882. open_requirement: ENCHANTER.ENCHANT
  4883. size: 9
  4884. items:
  4885. I:
  4886. material: 403
  4887. data: 0
  4888. slot: 0
  4889. display_name: '&7&lSharpness Enchant (I)'
  4890. lore:
  4891. - '&7Upon purchasing, you will receive'
  4892. - '&71x Sharpness I enchantment book'
  4893. - '&7which can be applied to swords and axes.'
  4894. - ''
  4895. - '&f&l* &7Right click to open the shop'
  4896. left_click_commands:
  4897. - '[takemoney] 15000'
  4898. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:1}]}'
  4899. right_click_commands:
  4900. - '[takemoney] 15000'
  4901. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:1}]}'
  4902. II:
  4903. material: 403
  4904. data: 0
  4905. slot: 1
  4906. display_name: '&7&lSharpness Enchant (II)'
  4907. lore:
  4908. - '&7Upon purchasing, you will receive'
  4909. - '&71x Sharpness II enchantment book'
  4910. - '&7which can be applied to swords and axes.'
  4911. - ''
  4912. - '&f&l* &7Right click to open the shop'
  4913. left_click_commands:
  4914. - '[takemoney] 25000'
  4915. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:2}]}'
  4916. right_click_commands:
  4917. - '[takemoney] 25000'
  4918. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:2}]}'
  4919. III:
  4920. material: 403
  4921. data: 0
  4922. slot: 2
  4923. display_name: '&7&lSharpness Enchant (III)'
  4924. lore:
  4925. - '&7Upon purchasing, you will receive'
  4926. - '&71x Sharpness III enchantment book'
  4927. - '&7which can be applied to swords and axes.'
  4928. - ''
  4929. - '&f&l* &7Right click to open the shop'
  4930. left_click_commands:
  4931. - '[takemoney] 50000'
  4932. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:3}]}'
  4933. right_click_commands:
  4934. - '[takemoney] 50000'
  4935. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:3}]}'
  4936. IV:
  4937. material: 403
  4938. data: 0
  4939. slot: 3
  4940. display_name: '&7&lSharpness Enchant (IV)'
  4941. lore:
  4942. - '&7Upon purchasing, you will receive'
  4943. - '&71x Sharpness IV enchantment book'
  4944. - '&7which can be applied to swords and axes.'
  4945. - ''
  4946. - '&f&l* &7Right click to open the shop'
  4947. left_click_commands:
  4948. - '[takemoney] 75000'
  4949. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:4}]}'
  4950. right_click_commands:
  4951. - '[takemoney] 75000'
  4952. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:4}]}'
  4953. V:
  4954. material: 403
  4955. data: 0
  4956. slot: 4
  4957. display_name: '&7&lSharpness Enchant (V)'
  4958. lore:
  4959. - '&7Upon purchasing, you will receive'
  4960. - '&71x Sharpness V enchantment book'
  4961. - '&7which can be applied to swords and axes.'
  4962. - ''
  4963. - '&f&l* &7Right click to open the shop'
  4964. left_click_commands:
  4965. - '[takemoney] 100000'
  4966. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:5}]}'
  4967. right_click_commands:
  4968. - '[takemoney] 100000'
  4969. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:5}]}'
  4970. VI:
  4971. material: 403
  4972. data: 0
  4973. slot: 5
  4974. display_name: '&7&lSharpness Enchant (VI)'
  4975. lore:
  4976. - '&7Upon purchasing, you will receive'
  4977. - '&71x Sharpness VI enchantment book'
  4978. - '&7which can be applied to swords and axes.'
  4979. - ''
  4980. - '&f&l* &7Right click to open the shop'
  4981. left_click_commands:
  4982. - '[takemoney] 135000'
  4983. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:6}]}'
  4984. right_click_commands:
  4985. - '[takemoney] 135000'
  4986. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:6}]}'
  4987. VII:
  4988. material: 403
  4989. data: 0
  4990. slot: 6
  4991. display_name: '&7&lSharpness Enchant (VII)'
  4992. lore:
  4993. - '&7Upon purchasing, you will receive'
  4994. - '&71x Sharpness VII enchantment book'
  4995. - '&7which can be applied to swords and axes.'
  4996. - ''
  4997. - '&f&l* &7Right click to open the shop'
  4998. left_click_commands:
  4999. - '[takemoney] 175000'
  5000. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:7}]}'
  5001. right_click_commands:
  5002. - '[takemoney] 175000'
  5003. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:7}]}'
  5004. VIII:
  5005. material: 403
  5006. data: 0
  5007. slot: 7
  5008. display_name: '&7&lSharpness Enchant (VIII)'
  5009. lore:
  5010. - '&7Upon purchasing, you will receive'
  5011. - '&71x Sharpness VIII enchantment book'
  5012. - '&7which can be applied to swords and axes.'
  5013. - ''
  5014. - '&f&l* &7Right click to open the shop'
  5015. left_click_commands:
  5016. - '[takemoney] 250000'
  5017. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:8}]}'
  5018. right_click_commands:
  5019. - '[takemoney] 250000'
  5020. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:16,lvl:8}]}'
  5021. SilktouchEnchants:
  5022. menu_title: Silktouch (I)
  5023. open_command:
  5024. - Silktouch
  5025. open_requirement: ENCHANTER.ENCHANT
  5026. size: 9
  5027. items:
  5028. I:
  5029. material: 403
  5030. data: 0
  5031. slot: 0
  5032. display_name: '&7&lSilktouch Enchant (I)'
  5033. lore:
  5034. - '&7Upon purchasing, you will receive'
  5035. - '&71x Silktouch I enchantment book'
  5036. - '&7which can be applied to all tools.'
  5037. - ''
  5038. - '&f&l* &7Right click to open the shop'
  5039. left_click_commands:
  5040. - '[takemoney] 300000'
  5041. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:33,lvl:8}]}'
  5042. right_click_commands:
  5043. - '[takemoney] 300000'
  5044. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:33,lvl:8}]}'
  5045. SmiteEnchant:
  5046. menu_title: Smite (I-VIII)
  5047. open_command:
  5048. - Smite
  5049. open_requirement: ENCHANTER.ENCHANT
  5050. size: 9
  5051. items:
  5052. I:
  5053. material: 403
  5054. data: 0
  5055. slot: 0
  5056. display_name: '&7&lSmite Enchant (I)'
  5057. lore:
  5058. - '&7Upon purchasing, you will receive'
  5059. - '&71x Smite I enchantment book'
  5060. - '&7which can be applied to swords and axes.'
  5061. - ''
  5062. - '&f&l* &7Right click to open the shop'
  5063. left_click_commands:
  5064. - '[takemoney] 15000'
  5065. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:1}]}'
  5066. right_click_commands:
  5067. - '[takemoney] 15000'
  5068. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:1}]}'
  5069. II:
  5070. material: 403
  5071. data: 0
  5072. slot: 1
  5073. display_name: '&7&lSmite Enchant (II)'
  5074. lore:
  5075. - '&7Upon purchasing, you will receive'
  5076. - '&71x Smite II enchantment book'
  5077. - '&7which can be applied to swords and axes.'
  5078. - ''
  5079. - '&f&l* &7Right click to open the shop'
  5080. left_click_commands:
  5081. - '[takemoney] 25000'
  5082. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:2}]}'
  5083. right_click_commands:
  5084. - '[takemoney] 25000'
  5085. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:2}]}'
  5086. III:
  5087. material: 403
  5088. data: 0
  5089. slot: 2
  5090. display_name: '&7&lSmite Enchant (III)'
  5091. lore:
  5092. - '&7Upon purchasing, you will receive'
  5093. - '&71x Smite III enchantment book'
  5094. - '&7which can be applied to swords and axes.'
  5095. - ''
  5096. - '&f&l* &7Right click to open the shop'
  5097. left_click_commands:
  5098. - '[takemoney] 50000'
  5099. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:3}]}'
  5100. right_click_commands:
  5101. - '[takemoney] 50000'
  5102. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:3}]}'
  5103. IV:
  5104. material: 403
  5105. data: 0
  5106. slot: 3
  5107. display_name: '&7&lSmite Enchant (IV)'
  5108. lore:
  5109. - '&7Upon purchasing, you will receive'
  5110. - '&71x Smite IV enchantment book'
  5111. - '&7which can be applied to swords and axes.'
  5112. - ''
  5113. - '&f&l* &7Right click to open the shop'
  5114. left_click_commands:
  5115. - '[takemoney] 75000'
  5116. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:4}]}'
  5117. right_click_commands:
  5118. - '[takemoney] 75000'
  5119. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:4}]}'
  5120. V:
  5121. material: 403
  5122. data: 0
  5123. slot: 4
  5124. display_name: '&7&lSmite Enchant (V)'
  5125. lore:
  5126. - '&7Upon purchasing, you will receive'
  5127. - '&71x Smite V enchantment book'
  5128. - '&7which can be applied to swords and axes.'
  5129. - ''
  5130. - '&f&l* &7Right click to open the shop'
  5131. left_click_commands:
  5132. - '[takemoney] 100000'
  5133. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:5}]}'
  5134. right_click_commands:
  5135. - '[takemoney] 100000'
  5136. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:5}]}'
  5137. VI:
  5138. material: 403
  5139. data: 0
  5140. slot: 5
  5141. display_name: '&7&lSmite Enchant (VI)'
  5142. lore:
  5143. - '&7Upon purchasing, you will receive'
  5144. - '&71x Smite VI enchantment book'
  5145. - '&7which can be applied to swords and axes.'
  5146. - ''
  5147. - '&f&l* &7Right click to open the shop'
  5148. left_click_commands:
  5149. - '[takemoney] 135000'
  5150. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:6}]}'
  5151. right_click_commands:
  5152. - '[takemoney] 135000'
  5153. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:6}]}'
  5154. VII:
  5155. material: 403
  5156. data: 0
  5157. slot: 6
  5158. display_name: '&7&lSmite Enchant (VII)'
  5159. lore:
  5160. - '&7Upon purchasing, you will receive'
  5161. - '&71x Smite VII enchantment book'
  5162. - '&7which can be applied to swords and axes.'
  5163. - ''
  5164. - '&f&l* &7Right click to open the shop'
  5165. left_click_commands:
  5166. - '[takemoney] 175000'
  5167. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:7}]}'
  5168. right_click_commands:
  5169. - '[takemoney] 175000'
  5170. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:7}]}'
  5171. VIII:
  5172. material: 403
  5173. data: 0
  5174. slot: 7
  5175. display_name: '&7&lSmite Enchant (VIII)'
  5176. lore:
  5177. - '&7Upon purchasing, you will receive'
  5178. - '&71x Smite VIII enchantment book'
  5179. - '&7which can be applied to swords and axes.'
  5180. - ''
  5181. - '&f&l* &7Right click to open the shop'
  5182. left_click_commands:
  5183. - '[takemoney] 250000'
  5184. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:8}]}'
  5185. right_click_commands:
  5186. - '[takemoney] 250000'
  5187. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:17,lvl:8}]}'
  5188. ThornsEnchants:
  5189. menu_title: Thorns (I-VIII)
  5190. open_command:
  5191. - Thorns
  5192. open_requirement: ENCHANTER.ENCHANT
  5193. size: 9
  5194. items:
  5195. I:
  5196. material: 403
  5197. data: 0
  5198. slot: 0
  5199. display_name: '&7&lThorns Enchant (I)'
  5200. lore:
  5201. - '&7Upon purchasing, you will receive'
  5202. - '&71x Thorns I enchantment book'
  5203. - '&7which can be applied to armour pieces.'
  5204. - ''
  5205. - '&f&l* &7Right click to open the shop'
  5206. left_click_commands:
  5207. - '[takemoney] 15000'
  5208. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:1}]}'
  5209. right_click_commands:
  5210. - '[takemoney] 15000'
  5211. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:1}]}'
  5212. II:
  5213. material: 403
  5214. data: 0
  5215. slot: 1
  5216. display_name: '&7&lThorns Enchant (II)'
  5217. lore:
  5218. - '&7Upon purchasing, you will receive'
  5219. - '&71x Thorns II enchantment book'
  5220. - '&7which can be applied to armour pieces.'
  5221. - ''
  5222. - '&f&l* &7Right click to open the shop'
  5223. left_click_commands:
  5224. - '[takemoney] 25000'
  5225. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:2}]}'
  5226. right_click_commands:
  5227. - '[takemoney] 25000'
  5228. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:2}]}'
  5229. III:
  5230. material: 403
  5231. data: 0
  5232. slot: 2
  5233. display_name: '&7&lThorns Enchant (III)'
  5234. lore:
  5235. - '&7Upon purchasing, you will receive'
  5236. - '&71x Thorns III enchantment book'
  5237. - '&7which can be applied to armour pieces.'
  5238. - ''
  5239. - '&f&l* &7Right click to open the shop'
  5240. left_click_commands:
  5241. - '[takemoney] 50000'
  5242. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:3}]}'
  5243. right_click_commands:
  5244. - '[takemoney] 50000'
  5245. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:3}]}'
  5246. IV:
  5247. material: 403
  5248. data: 0
  5249. slot: 3
  5250. display_name: '&7&lThorns Enchant (IV)'
  5251. lore:
  5252. - '&7Upon purchasing, you will receive'
  5253. - '&71x Thorns IV enchantment book'
  5254. - '&7which can be applied to armour pieces.'
  5255. - ''
  5256. - '&f&l* &7Right click to open the shop'
  5257. left_click_commands:
  5258. - '[takemoney] 75000'
  5259. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:4}]}'
  5260. right_click_commands:
  5261. - '[takemoney] 75000'
  5262. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:4}]}'
  5263. V:
  5264. material: 403
  5265. data: 0
  5266. slot: 4
  5267. display_name: '&7&lThorns Enchant (V)'
  5268. lore:
  5269. - '&7Upon purchasing, you will receive'
  5270. - '&71x Thorns V enchantment book'
  5271. - '&7which can be applied to armour pieces.'
  5272. - ''
  5273. - '&f&l* &7Right click to open the shop'
  5274. left_click_commands:
  5275. - '[takemoney] 100000'
  5276. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:5}]}'
  5277. right_click_commands:
  5278. - '[takemoney] 100000'
  5279. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:5}]}'
  5280. VI:
  5281. material: 403
  5282. data: 0
  5283. slot: 5
  5284. display_name: '&7&lThorns Enchant (VI)'
  5285. lore:
  5286. - '&7Upon purchasing, you will receive'
  5287. - '&71x Thorns VI enchantment book'
  5288. - '&7which can be applied to armour pieces.'
  5289. - ''
  5290. - '&f&l* &7Right click to open the shop'
  5291. left_click_commands:
  5292. - '[takemoney] 135000'
  5293. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:6}]}'
  5294. right_click_commands:
  5295. - '[takemoney] 135000'
  5296. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:6}]}'
  5297. VII:
  5298. material: 403
  5299. data: 0
  5300. slot: 6
  5301. display_name: '&7&lThorns Enchant (VII)'
  5302. lore:
  5303. - '&7Upon purchasing, you will receive'
  5304. - '&71x Thorns VII enchantment book'
  5305. - '&7which can be applied to armour pieces.'
  5306. - ''
  5307. - '&f&l* &7Right click to open the shop'
  5308. left_click_commands:
  5309. - '[takemoney] 175000'
  5310. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:7}]}'
  5311. right_click_commands:
  5312. - '[takemoney] 175000'
  5313. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:7}]}'
  5314. VIII:
  5315. material: 403
  5316. data: 0
  5317. slot: 7
  5318. display_name: '&7&lThorns Enchant (VIII)'
  5319. lore:
  5320. - '&7Upon purchasing, you will receive'
  5321. - '&71x Thorns VIII enchantment book'
  5322. - '&7which can be applied to armour pieces.'
  5323. - ''
  5324. - '&f&l* &7Right click to open the shop'
  5325. left_click_commands:
  5326. - '[takemoney] 250000'
  5327. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:8}]}'
  5328. right_click_commands:
  5329. - '[takemoney] 250000'
  5330. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:7,lvl:8}]}'
  5331. UnbreakingEnchants:
  5332. menu_title: Thorns (I-VIII)
  5333. open_command:
  5334. - Unbreaking
  5335. open_requirement: ENCHANTER.ENCHANT
  5336. size: 9
  5337. items:
  5338. I:
  5339. material: 403
  5340. data: 0
  5341. slot: 0
  5342. display_name: '&7&lUnbreaking Enchant (I)'
  5343. lore:
  5344. - '&7Upon purchasing, you will receive'
  5345. - '&71x Unbreaking I enchantment book'
  5346. - '&7which can be applied to anything.'
  5347. - ''
  5348. - '&f&l* &7Right click to open the shop'
  5349. left_click_commands:
  5350. - '[takemoney] 15000'
  5351. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:1}]}'
  5352. right_click_commands:
  5353. - '[takemoney] 15000'
  5354. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:1}]}'
  5355. II:
  5356. material: 403
  5357. data: 0
  5358. slot: 1
  5359. display_name: '&7&lUnbreaking Enchant (II)'
  5360. lore:
  5361. - '&7Upon purchasing, you will receive'
  5362. - '&71x Unbreaking II enchantment book'
  5363. - '&7which can be applied to anything.'
  5364. - ''
  5365. - '&f&l* &7Right click to open the shop'
  5366. left_click_commands:
  5367. - '[takemoney] 25000'
  5368. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:2}]}'
  5369. right_click_commands:
  5370. - '[takemoney] 25000'
  5371. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:2}]}'
  5372. III:
  5373. material: 403
  5374. data: 0
  5375. slot: 2
  5376. display_name: '&7&lUnbreaking Enchant (III)'
  5377. lore:
  5378. - '&7Upon purchasing, you will receive'
  5379. - '&71x Unbreaking III enchantment book'
  5380. - '&7which can be applied to anything.'
  5381. - ''
  5382. - '&f&l* &7Right click to open the shop'
  5383. left_click_commands:
  5384. - '[takemoney] 50000'
  5385. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:3}]}'
  5386. right_click_commands:
  5387. - '[takemoney] 50000'
  5388. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:3}]}'
  5389. IV:
  5390. material: 403
  5391. data: 0
  5392. slot: 3
  5393. display_name: '&7&lUnbreaking Enchant (IV)'
  5394. lore:
  5395. - '&7Upon purchasing, you will receive'
  5396. - '&71x Unbreaking IV enchantment book'
  5397. - '&7which can be applied to anything.'
  5398. - ''
  5399. - '&f&l* &7Right click to open the shop'
  5400. left_click_commands:
  5401. - '[takemoney] 75000'
  5402. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:4}]}'
  5403. right_click_commands:
  5404. - '[takemoney] 75000'
  5405. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:4}]}'
  5406. V:
  5407. material: 403
  5408. data: 0
  5409. slot: 4
  5410. display_name: '&7&lUnbreaking Enchant (V)'
  5411. lore:
  5412. - '&7Upon purchasing, you will receive'
  5413. - '&71x Unbreaking V enchantment book'
  5414. - '&7which can be applied to anything.'
  5415. - ''
  5416. - '&f&l* &7Right click to open the shop'
  5417. left_click_commands:
  5418. - '[takemoney] 100000'
  5419. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:5}]}'
  5420. right_click_commands:
  5421. - '[takemoney] 100000'
  5422. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:5}]}'
  5423. VI:
  5424. material: 403
  5425. data: 0
  5426. slot: 5
  5427. display_name: '&7&lUnbreaking Enchant (VI)'
  5428. lore:
  5429. - '&7Upon purchasing, you will receive'
  5430. - '&71x Unbreaking VI enchantment book'
  5431. - '&7which can be applied to anything.'
  5432. - ''
  5433. - '&f&l* &7Right click to open the shop'
  5434. left_click_commands:
  5435. - '[takemoney] 135000'
  5436. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:6}]}'
  5437. right_click_commands:
  5438. - '[takemoney] 135000'
  5439. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:6}]}'
  5440. VII:
  5441. material: 403
  5442. data: 0
  5443. slot: 6
  5444. display_name: '&7&lUnbreaking Enchant (VII)'
  5445. lore:
  5446. - '&7Upon purchasing, you will receive'
  5447. - '&71x Unbreaking VII enchantment book'
  5448. - '&7which can be applied to anything.'
  5449. - ''
  5450. - '&f&l* &7Right click to open the shop'
  5451. left_click_commands:
  5452. - '[takemoney] 175000'
  5453. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:7}]}'
  5454. right_click_commands:
  5455. - '[takemoney] 175000'
  5456. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:7}]}'
  5457. VIII:
  5458. material: 403
  5459. data: 0
  5460. slot: 7
  5461. display_name: '&7&lUnbreaking Enchant (VIII)'
  5462. lore:
  5463. - '&7Upon purchasing, you will receive'
  5464. - '&71x Unbreaking VIII enchantment book'
  5465. - '&7which can be applied to anything.'
  5466. - ''
  5467. - '&f&l* &7Right click to open the shop'
  5468. left_click_commands:
  5469. - '[takemoney] 250000'
  5470. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:8}]}'
  5471. right_click_commands:
  5472. - '[takemoney] 250000'
  5473. - '[console] give %player_name% enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:8}]}'
Add Comment
Please, Sign In to add comment