Advertisement
Guest User

Untitled

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