Advertisement
Guest User

Untitled

a guest
Jun 20th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.00 KB | None | 0 0
  1. database:
  2. #Database backend type, can be set to mysql or sqlite
  3. type: sqlite
  4. #MySQL database host
  5. mySQLHost: localhost
  6. #MySQL connection port number
  7. mySQLPort: 3306
  8. #MySQL database name
  9. mySQLDatabase: db
  10. #MySQL database user
  11. mySQLUser: root
  12. #MySQL user's password
  13. mySQLPassword: ""
  14. #MySQL table names
  15. tableNames:
  16. players: "players"
  17.  
  18. #Type of the economy which will handle all transactions. Valid values are EXP, VAULT (requires http://dev.bukkit.org/bukkit-plugins/vault/), MYSQL_TOKENS (requires https://www.spigotmc.org/resources/mysql-tokens.7535/), TOKEN_MANAGER (requires https://www.spigotmc.org/resources/tokenmanager.8610/)
  19. economyType: VAULT
  20. #Name of the main GUI
  21. shopMenuName: "&6&lServer Shop"
  22. #Size of the main GUI, valid values are 9, 18, 27, 36, 45 and 54
  23. shopMenuSize: 54
  24. #Define whether selling all with middle mouse button is enabled
  25. enableSellAll: false
  26. #Define whether the buy GUI with option to select quantity is enabled
  27. enableBuyGUI: true
  28. #Define whether the sell GUI with option to select quantity is enabled
  29. enableSellGUI: true
  30. #Define whether sell all button in SellGUI is enabled (enableSellGUI has to be enabled too)
  31. enableSellGUISellAll: true
  32. #Define whether after closing/buying/selling the shop GUI should be opened again
  33. returnToShop: true
  34. #Define whether the quick buy/sell option should be enabled (amount selection gui will stay open until player closes it)
  35. quickBuySell: false
  36. #Define whether lines containing the %buy% placeholder should be hidden for unbuyable items
  37. hideBuyPriceForUnbuyable: true
  38. #Define whether lines containing the %sell% placeholder should be hidden for unsellable items
  39. hideSellPriceForUnsellable: true
  40. #Define whether buy and sell buttons should be inverted (false - LMB buy, RMB sell / true - LMB sell, RMB buy)
  41. invertBuySell: false
  42. #Maximum amount of enchantments players can add to an item, set to -1 for no limit
  43. maxEnchantments: 3
  44. #Choose whether players should be able to buy enchantments only 1 level higher than current (eg. player has sword with Sharpness 1, they could buy only Sharpness 2)
  45. limitEnchantmentLevelDiff: false
  46. #Define whether the amount selection double click bug fix should be enabled
  47. enableAmountSelectionFix: true
  48. #Define whether players should be able to use sell all option to sell all their items (allowAllSellAllStackSizes = true) or only amount multiplied by the original stack size of the shop item (allowAllSellAllStackSizes = false)
  49. allowAllSellAllStackSizes: false
  50. #Define whether all prices should be rounded up, down, to the nearest whole number or not rounded (valid values are UP, DOWN, NEAREST and NONE)
  51. roundPrices: UP
  52. #Define whether main menu (/shop command) should be disabled. The only way to access shops will be to use /shop <id> when you disable it.
  53. disableMainMenu: false
  54. #Choose if different messages should be sent when someone buy/sell items for $0 (MSG_ITEM_BOUGHTFREE, MSG_ITEM_SOLDFREE, MSG_ITEM_SOLDALLFREE)
  55. useDifferentMessagesForFreeItems: true
  56. #Choose if item names should have first letters of their names capitalized, for instance nether brick would become Nether Brick
  57. capitalizeItemNames: true
  58. #Choose the type of price modifiers. (BOTH (permission modifiers have higher priority than command-ones), COMMAND, PERMISSION)
  59. priceModifiersType: BOTH
  60. #Choose which items stack size should be capped at 16 inside the amount selection GUI so players can't buy eg. oversized ender pearl stacks
  61. #Format is same as for regular items in shops.yml
  62. itemStackSizeCappedAt:
  63. 1:
  64. material: ENDER_PEARL
  65. size: 16
  66. 2:
  67. material: SNOW_BALL
  68. size: 16
  69. 3:
  70. material: SIGN
  71. size: 16
  72. 4:
  73. material: EGG
  74. size: 16
  75. 5:
  76. material: BUCKET
  77. size: 16
  78. #Choose what gamemodes will prevent players from accessing shops. Valid values: ADVENTURE, CREATIVE, SPECTATOR, SURVIVAL
  79. disableShopsInGamemodes:
  80. - ADVENTURE
  81. - CREATIVE
  82. - SPECTATOR
  83. #Choose in which worlds players won't be able to access the shop. Same list format as disableShopsInGamemodes
  84. disableShopsInWorlds: []
  85.  
  86. #Choose whether price modifiers should be displayed in percents instead of decimals (eg. 10% instead of 0.10), remember you will still have to use the decimal way in commands
  87. displayPriceModifiersInPercents: true
  88.  
  89. #Choose whether the world-specific permission to access shops should be omitted when player has a shop opened with /shop [player] [shop name]
  90. disableSudoWorldPermissionCheck: false
  91.  
  92. #Choose whether the shop-specific permission to access shops should be omitted when player has a shop opened with /shop [player] [shop name]
  93. disableSudoShopPermissionCheck: false
  94.  
  95. #Format of item lores in shops, %buy% will be replaced with the buy price and %sell% with sell price
  96. shopItemLoreFormat:
  97. #This lore will be applied to items
  98. item:
  99. - "&7Buy price: &c%buy%$"
  100. - "&7Sell price: &a%sell%$"
  101. - "&9Click with MMB to sell all"
  102. #This lore will be applied to items in the buy GUI (when enableBuyGUI is set to true)
  103. itemBuyGUI:
  104. - "&7Buy price: &c%buy%$"
  105. #This lore will be applied to items in the sell GUI (when enableSellGUI is set to true)
  106. itemSellGUI:
  107. - "&7Sell price: &a%sell%$"
  108. #This lore will be applied to the sell all button in the sell GUI (when enableSellGUI and enableSellGUISellAll are set to true)
  109. itemSellGUISellAll:
  110. - "&7Sell all for: &a%sell%$"
  111. #This one to permissions
  112. permission:
  113. - "&7Buy price: &c%buy%$"
  114. #And this one to enchantments
  115. enchantment:
  116. - "&7Buy price: &c%buy%$"
  117. #And the last one to commands
  118. command:
  119. - "&7Buy price: &c%buy%$"
  120.  
  121. #Logging settings
  122. log:
  123. #Define whether transactions will be logged to the console/main server log
  124. toConsole: true
  125. #Define whether transactions will be logged to a separate log
  126. toFile: false
  127. #Date format of transactions (http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html)
  128. formatDate: "yyyy/MM/dd HH:mm:ss"
  129. #Log message for bought items
  130. formatBuy: "%player% bought %amount% x %item% for %price%$ from %shop% shop"
  131. #Log message for sold items
  132. formatSell: "%player% sold %amount% x %item% for %price%$ to %shop% shop"
  133. #Log message for sold all items
  134. formatSellAll: "%player% sold all %amount% x %item% for %price%$ to %shop% shop"
  135.  
  136. buttons:
  137. #"Go back button"
  138. goBack:
  139. item:
  140. #Material name, full list can be found here: http://wiki.brcdev.net/Materials
  141. material: NETHER_STAR
  142. #Amount of the item
  143. amount: 1
  144. #(optional) Data value, for example 1 for WOOD:1 means spruce wood planks
  145. damage: 0
  146. #(optional) Custom name
  147. name: "&cBack to Categories"
  148. #(optional) Lore, can contain multiple lines
  149. lore:
  150. - "&7Main Menu"
  151. #Slot in each shop's GUI
  152. slot: 49
  153. #"Previous page" button
  154. previousPage:
  155. item:
  156. material: PAPER
  157. quantity: 1
  158. name: "&e&lPrevious Page"
  159. slot: 45
  160. #"Next page" button
  161. nextPage:
  162. item:
  163. material: PAPER
  164. quantity: 1
  165. name: "&e&lNext Page"
  166. slot: 53
  167.  
  168. #Elements of the bulk buy GUI
  169. amountSelectionGUIBulkBuy:
  170. #Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
  171. size: 9
  172. #Choose if buttons type should be replaced with the bought item's type
  173. replaceButtonsType: true
  174. #Buttons
  175. buttons:
  176. #"Buy 1 stack" button
  177. buy1:
  178. #When no material is specified it will be the type of the item being bought
  179. item:
  180. quantity: 1
  181. name: "&aBuy 1 stack"
  182. lore:
  183. - "&7Price: &c%buy%$"
  184. #Value indicated the amount of stacks
  185. value: 1
  186. slot: 0
  187. #"Buy 2 stacks" button
  188. buy2:
  189. item:
  190. quantity: 2
  191. name: "&aBuy 2 stacks"
  192. lore:
  193. - "&7Price: &c%buy%$"
  194. value: 2
  195. slot: 1
  196. #"Buy 3 stacks" button
  197. buy3:
  198. item:
  199. quantity: 3
  200. name: "&aBuy 3 stacks"
  201. lore:
  202. - "&7Price: &c%buy%$"
  203. value: 3
  204. slot: 2
  205. #"Buy 4 stacks" button
  206. buy4:
  207. item:
  208. quantity: 4
  209. name: "&aBuy 4 stacks"
  210. lore:
  211. - "&7Price: &c%buy%$"
  212. value: 4
  213. slot: 3
  214. #"Buy 5 stacks" button
  215. buy5:
  216. item:
  217. quantity: 5
  218. name: "&aBuy 5 stacks"
  219. lore:
  220. - "&7Price: &c%buy%$"
  221. value: 5
  222. slot: 4
  223. #"Buy 6 stacks" button
  224. buy6:
  225. item:
  226. quantity: 6
  227. name: "&aBuy 6 stacks"
  228. lore:
  229. - "&7Price: &c%buy%$"
  230. value: 6
  231. slot: 5
  232. #"Buy 7 stacks" button
  233. buy7:
  234. item:
  235. quantity: 7
  236. name: "&aBuy 7 stacks"
  237. lore:
  238. - "&7Price: &c%buy%$"
  239. value: 7
  240. slot: 6
  241. #"Buy 8 stacks" button
  242. buy8:
  243. item:
  244. quantity: 8
  245. name: "&aBuy 8 stacks"
  246. lore:
  247. - "&7Price: &c%buy%$"
  248. value: 8
  249. slot: 7
  250. #"Buy 9 stacks" button
  251. buy9:
  252. item:
  253. quantity: 9
  254. name: "&aBuy 9 stacks"
  255. lore:
  256. - "&7Price: &c%buy%$"
  257. value: 9
  258. slot: 8
  259.  
  260. #Elements of the bulk buy GUI
  261. amountSelectionGUIBulkSell:
  262. #Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
  263. size: 9
  264. #Choose if buttons type should be replaced with the sold item's type
  265. replaceButtonsType: true
  266. #Buttons
  267. buttons:
  268. #"Sell 1 stack" button
  269. sell1:
  270. #When no material is specified it will be the type of the item being bought
  271. item:
  272. quantity: 1
  273. name: "&aSell 1 stack"
  274. lore:
  275. - "&7Price: &c%sell%$"
  276. #Value indicated the amount of stacks
  277. value: 1
  278. slot: 0
  279. #"Sell 2 stacks" button
  280. sell2:
  281. item:
  282. quantity: 2
  283. name: "&aSell 2 stacks"
  284. lore:
  285. - "&7Price: &c%sell%$"
  286. value: 2
  287. slot: 1
  288. #"Sell 3 stacks" button
  289. sell3:
  290. item:
  291. quantity: 3
  292. name: "&aSell 3 stacks"
  293. lore:
  294. - "&7Price: &c%sell%$"
  295. value: 3
  296. slot: 2
  297. #"Sell 4 stacks" button
  298. sell4:
  299. item:
  300. quantity: 4
  301. name: "&aSell 4 stacks"
  302. lore:
  303. - "&7Price: &c%sell%$"
  304. value: 4
  305. slot: 3
  306. #"Sell 5 stacks" button
  307. sell5:
  308. item:
  309. quantity: 5
  310. name: "&aSell 5 stacks"
  311. lore:
  312. - "&7Price: &c%sell%$"
  313. value: 5
  314. slot: 4
  315. #"Sell 6 stacks" button
  316. sell6:
  317. item:
  318. quantity: 6
  319. name: "&aSell 6 stacks"
  320. lore:
  321. - "&7Price: &c%sell%$"
  322. value: 6
  323. slot: 5
  324. #"Sell 7 stacks" button
  325. sell7:
  326. item:
  327. quantity: 7
  328. name: "&aSell 7 stacks"
  329. lore:
  330. - "&7Price: &c%sell%$"
  331. value: 7
  332. slot: 6
  333. #"Sell 8 stacks" button
  334. sell8:
  335. item:
  336. quantity: 8
  337. name: "&aSell 8 stacks"
  338. lore:
  339. - "&7Price: &c%sell%$"
  340. value: 8
  341. slot: 7
  342. #"Sell 9 stacks" button
  343. sell9:
  344. item:
  345. quantity: 9
  346. name: "&aSell 9 stacks"
  347. lore:
  348. - "&7Price: &c%sell%$"
  349. value: 9
  350. slot: 8
  351.  
  352. #Elements of the regular buy/sell GUI
  353. amountSelectionGUI:
  354. #Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
  355. size: 54
  356. #Slot of the item being bought/sold
  357. itemSlot: 22
  358. #Buttons
  359. buttons:
  360. #"Set to 1" button
  361. set1:
  362. item:
  363. material: STAINED_GLASS_PANE
  364. quantity: 1
  365. damage: 14
  366. name: "&c&lSet to 1"
  367. slot: 18
  368. #"Remove 10" button
  369. remove10:
  370. item:
  371. material: STAINED_GLASS_PANE
  372. quantity: 10
  373. damage: 14
  374. name: "&c&lRemove 10"
  375. slot: 19
  376. #"Remove 1" button
  377. remove1:
  378. item:
  379. material: STAINED_GLASS_PANE
  380. quantity: 1
  381. damage: 14
  382. name: "&c&lRemove 1"
  383. slot: 20
  384. #"Add 1" button
  385. add1:
  386. item:
  387. material: STAINED_GLASS_PANE
  388. quantity: 1
  389. damage: 5
  390. name: "&a&lAdd 1"
  391. slot: 24
  392. #"Add 10" button
  393. add10:
  394. item:
  395. material: STAINED_GLASS_PANE
  396. quantity: 10
  397. damage: 5
  398. name: "&a&lAdd 10"
  399. slot: 25
  400. #"Set to 16" button
  401. set16:
  402. item:
  403. material: STAINED_GLASS_PANE
  404. quantity: 16
  405. damage: 5
  406. name: "&a&lSet to 16"
  407. slot: 26
  408. #"Set to 64" button
  409. set64:
  410. item:
  411. material: STAINED_GLASS_PANE
  412. quantity: 64
  413. damage: 5
  414. name: "&a&lSet to 64"
  415. slot: 26
  416. #"Confirm" button
  417. confirm:
  418. item:
  419. material: STAINED_GLASS
  420. quantity: 1
  421. damage: 5
  422. name: "&a&lConfirm"
  423. slot: 39
  424. #"Sell all" button
  425. sellAll:
  426. item:
  427. material: STAINED_GLASS
  428. quantity: 1
  429. damage: 5
  430. name: "&a&lSell all"
  431. slot: 40
  432. #"Buy more" button
  433. buyMore:
  434. item:
  435. material: STAINED_GLASS
  436. quantity: 64
  437. damage: 5
  438. name: "&a&lBuy more"
  439. slot: 49
  440. #"Sell more" button
  441. sellMore:
  442. item:
  443. material: STAINED_GLASS
  444. quantity: 64
  445. damage: 5
  446. name: "&a&lSell more"
  447. slot: 49
  448. #"Cancel" button
  449. cancel:
  450. item:
  451. material: STAINED_GLASS
  452. quantity: 1
  453. damage: 14
  454. name: "&c&lCancel"
  455. slot: 41
  456.  
  457. shopMenuItems:
  458. #Has to be unique, value doesn't matter
  459. 1:
  460. item:
  461. #The same rules apply for material, amount, damage and lore as for goBackButton
  462. material: COBBLESTONE
  463. quantity: 1
  464. name: "&9&lGeneral Blocks"
  465. lore:
  466. - "&7General Blocks"
  467. shop: "blocks"
  468. slot: 10
  469. 2:
  470. item:
  471. material: BLAZE_ROD
  472. quantity: 1
  473. damage: 0
  474. name: "&9&lMob Drops"
  475. lore:
  476. - "&7Mob Drops"
  477. shop: "drops"
  478. slot: 12
  479. 3:
  480. item:
  481. material: TNT
  482. quantity: 1
  483. damage: 0
  484. name: "&9&lRaiding & Base Supplies"
  485. lore:
  486. - "&7Raiding & Base Supplies"
  487. shop: "raiding"
  488. slot: 14
  489. 4:
  490. item:
  491. material: WOOL
  492. quantity: 1
  493. name: "&9&lColoured Blocks"
  494. lore:
  495. - "&7Coloured Blocks"
  496. shop: "colourblocks"
  497. slot: 16
  498. 5:
  499. item:
  500. material: DIAMOND
  501. quantity: 1
  502. name: "&9&lIngots"
  503. lore:
  504. - "&7Ingots"
  505. shop: "ores"
  506. slot: 29
  507. 6:
  508. item:
  509. material: 379
  510. quantity: 1
  511. name: "&9&lPotions & Supplies"
  512. lore:
  513. - "&7Potions & Supplies"
  514. shop: "potions"
  515. slot: 31
  516. 7:
  517. item:
  518. material: SUGAR_CANE
  519. quantity: 1
  520. name: "&9&lFarming & Food"
  521. lore:
  522. - "&7Farming & Food"
  523. shop: "farming"
  524. slot: 33
  525. 8:
  526. item:
  527. material: BUCKET
  528. quantity: 1
  529. name: "&9&lMiscellanous"
  530. lore:
  531. - "&7Miscellanous Items"
  532. shop: "miscellanous"
  533. slot: 46
  534. 9:
  535. item:
  536. material: MOB_SPAWNER
  537. quantity: 1
  538. name: "&9&lSpawners"
  539. lore:
  540. - "&7Spawners"
  541. shop: "spawners"
  542. slot: 48
  543. 57:
  544. item:
  545. material: 166
  546. quantity: 1
  547. name: "&9&lPerks"
  548. lore:
  549. - "&4&lCOMING SOON"
  550. shop: "perks"
  551. slot: 50
  552. 58:
  553. item:
  554. material: 166
  555. quantity: 1
  556. name: "&9&lRanks"
  557. lore:
  558. - "&4&lCOMING SOON"
  559. shop: "ranks"
  560. slot: 52
  561. 12:
  562. item:
  563. material: STAINED_GLASS_PANE
  564. quantity: 1
  565. damage: 7
  566. name: "&5"
  567. shop: ""
  568. slot: 0
  569. 13:
  570. item:
  571. material: STAINED_GLASS_PANE
  572. quantity: 1
  573. damage: 7
  574. name: "&5"
  575. shop: ""
  576. slot: 1
  577. 14:
  578. item:
  579. material: STAINED_GLASS_PANE
  580. quantity: 1
  581. damage: 7
  582. name: "&5"
  583. shop: ""
  584. slot: 2
  585. 15:
  586. item:
  587. material: STAINED_GLASS_PANE
  588. quantity: 1
  589. damage: 7
  590. name: "&5"
  591. shop: ""
  592. slot: 3
  593. 16:
  594. item:
  595. material: STAINED_GLASS_PANE
  596. quantity: 1
  597. damage: 7
  598. name: "&5"
  599. shop: ""
  600. slot: 4
  601. 17:
  602. item:
  603. material: STAINED_GLASS_PANE
  604. quantity: 1
  605. damage: 7
  606. name: "&5"
  607. shop: ""
  608. slot: 5
  609. 18:
  610. item:
  611. material: STAINED_GLASS_PANE
  612. quantity: 1
  613. damage: 7
  614. name: "&5"
  615. shop: ""
  616. slot: 6
  617. 19:
  618. item:
  619. material: STAINED_GLASS_PANE
  620. quantity: 1
  621. damage: 7
  622. name: "&5"
  623. shop: ""
  624. slot: 7
  625. 20:
  626. item:
  627. material: STAINED_GLASS_PANE
  628. quantity: 1
  629. damage: 7
  630. name: "&5"
  631. shop: ""
  632. slot: 8
  633. 21:
  634. item:
  635. material: STAINED_GLASS_PANE
  636. quantity: 1
  637. damage: 7
  638. name: "&5"
  639. shop: ""
  640. slot: 9
  641. 22:
  642. item:
  643. material: STAINED_GLASS_PANE
  644. quantity: 1
  645. damage: 7
  646. name: "&5"
  647. shop: ""
  648. slot: 11
  649. 23:
  650. item:
  651. material: STAINED_GLASS_PANE
  652. quantity: 1
  653. damage: 7
  654. name: "&5"
  655. shop: ""
  656. slot: 13
  657. 25:
  658. item:
  659. material: STAINED_GLASS_PANE
  660. quantity: 1
  661. damage: 7
  662. name: "&5"
  663. shop: ""
  664. slot: 15
  665. 27:
  666. item:
  667. material: STAINED_GLASS_PANE
  668. quantity: 1
  669. damage: 7
  670. name: "&5"
  671. shop: ""
  672. slot: 17
  673. 28:
  674. item:
  675. material: STAINED_GLASS_PANE
  676. quantity: 1
  677. damage: 7
  678. name: "&5"
  679. shop: ""
  680. slot: 18
  681. 29:
  682. item:
  683. material: STAINED_GLASS_PANE
  684. quantity: 1
  685. damage: 7
  686. name: "&5"
  687. shop: ""
  688. slot: 19
  689. 30:
  690. item:
  691. material: STAINED_GLASS_PANE
  692. quantity: 1
  693. damage: 7
  694. name: "&5"
  695. shop: ""
  696. slot: 20
  697. 31:
  698. item:
  699. material: STAINED_GLASS_PANE
  700. quantity: 1
  701. damage: 7
  702. name: "&5"
  703. shop: ""
  704. slot: 21
  705. 32:
  706. item:
  707. material: STAINED_GLASS_PANE
  708. quantity: 1
  709. damage: 7
  710. name: "&5"
  711. shop: ""
  712. slot: 22
  713. 33:
  714. item:
  715. material: STAINED_GLASS_PANE
  716. quantity: 1
  717. damage: 7
  718. name: "&5"
  719. shop: ""
  720. slot: 23
  721. 34:
  722. item:
  723. material: STAINED_GLASS_PANE
  724. quantity: 1
  725. damage: 7
  726. name: "&5"
  727. shop: ""
  728. slot: 24
  729. 35:
  730. item:
  731. material: STAINED_GLASS_PANE
  732. quantity: 1
  733. damage: 7
  734. name: "&5"
  735. shop: ""
  736. slot: 25
  737. 36:
  738. item:
  739. material: STAINED_GLASS_PANE
  740. quantity: 1
  741. damage: 7
  742. name: "&5"
  743. shop: ""
  744. slot: 26
  745. 37:
  746. item:
  747. material: STAINED_GLASS_PANE
  748. quantity: 1
  749. damage: 7
  750. name: "&5"
  751. shop: ""
  752. slot: 27
  753. 38:
  754. item:
  755. material: STAINED_GLASS_PANE
  756. quantity: 1
  757. damage: 7
  758. name: "&5"
  759. shop: ""
  760. slot: 28
  761. 39:
  762. item:
  763. material: STAINED_GLASS_PANE
  764. quantity: 1
  765. damage: 7
  766. name: "&5"
  767. shop: ""
  768. slot: 30
  769. 40:
  770. item:
  771. material: STAINED_GLASS_PANE
  772. quantity: 1
  773. damage: 7
  774. name: "&5"
  775. shop: ""
  776. slot: 32
  777. 41:
  778. item:
  779. material: STAINED_GLASS_PANE
  780. quantity: 1
  781. damage: 7
  782. name: "&5"
  783. shop: ""
  784. slot: 34
  785. 42:
  786. item:
  787. material: STAINED_GLASS_PANE
  788. quantity: 1
  789. damage: 7
  790. name: "&5"
  791. shop: ""
  792. slot: 35
  793. 43:
  794. item:
  795. material: STAINED_GLASS_PANE
  796. quantity: 1
  797. damage: 7
  798. name: "&5"
  799. shop: ""
  800. slot: 36
  801. 44:
  802. item:
  803. material: STAINED_GLASS_PANE
  804. quantity: 1
  805. damage: 7
  806. name: "&5"
  807. shop: ""
  808. slot: 37
  809. 45:
  810. item:
  811. material: STAINED_GLASS_PANE
  812. quantity: 1
  813. damage: 7
  814. name: "&5"
  815. shop: ""
  816. slot: 38
  817. 46:
  818. item:
  819. material: STAINED_GLASS_PANE
  820. quantity: 1
  821. damage: 7
  822. name: "&5"
  823. shop: ""
  824. slot: 39
  825. 47:
  826. item:
  827. material: STAINED_GLASS_PANE
  828. quantity: 1
  829. damage: 7
  830. name: "&5"
  831. shop: ""
  832. slot: 40
  833. 48:
  834. item:
  835. material: STAINED_GLASS_PANE
  836. quantity: 1
  837. damage: 7
  838. name: "&5"
  839. shop: ""
  840. slot: 41
  841. 49:
  842. item:
  843. material: STAINED_GLASS_PANE
  844. quantity: 1
  845. damage: 7
  846. name: "&5"
  847. shop: ""
  848. slot: 42
  849. 50:
  850. item:
  851. material: STAINED_GLASS_PANE
  852. quantity: 1
  853. damage: 7
  854. name: "&5"
  855. shop: ""
  856. slot: 43
  857. 51:
  858. item:
  859. material: STAINED_GLASS_PANE
  860. quantity: 1
  861. damage: 7
  862. name: "&5"
  863. shop: ""
  864. slot: 44
  865. 52:
  866. item:
  867. material: STAINED_GLASS_PANE
  868. quantity: 1
  869. damage: 7
  870. name: "&5"
  871. shop: ""
  872. slot: 45
  873. 53:
  874. item:
  875. material: STAINED_GLASS_PANE
  876. quantity: 1
  877. damage: 7
  878. name: "&5"
  879. shop: ""
  880. slot: 47
  881. 54:
  882. item:
  883. material: STAINED_GLASS_PANE
  884. quantity: 1
  885. damage: 7
  886. name: "&5"
  887. shop: ""
  888. slot: 49
  889. 55:
  890. item:
  891. material: STAINED_GLASS_PANE
  892. quantity: 1
  893. damage: 7
  894. name: "&5"
  895. shop: ""
  896. slot: 51
  897. 56:
  898. item:
  899. material: STAINED_GLASS_PANE
  900. quantity: 1
  901. damage: 7
  902. name: "&5"
  903. shop: ""
  904. slot: 53
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement