Advertisement
Guest User

config.yml

a guest
Dec 16th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.50 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: "&a&lShop"
  22. #Size of the main GUI, valid values are 9, 18, 27, 36, 45 and 54
  23. shopMenuSize: 45
  24. #Define whether selling all with middle mouse button is enabled
  25. enableSellAll: true
  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: none
  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 if the gui shall be closed after using the Sell All feature
  61. closeGuiAfterSellAll: false
  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: 1
  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: DAYLIGHT_DETECTOR
  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: "&c&lGo back to categories"
  150. #(optional) Lore, can contain multiple lines
  151. lore:
  152. - "&7Click here to return"
  153. - "&7to the main menu"
  154. #Slot in each shop's GUI
  155. slot: 49
  156. #"Previous page" button
  157. previousPage:
  158. item:
  159. material: PAPER
  160. quantity: 1
  161. name: "&e&lPrevious page"
  162. slot: 45
  163. #"Next page" button
  164. nextPage:
  165. item:
  166. material: PAPER
  167. quantity: 1
  168. name: "&e&lNext page"
  169. slot: 53
  170.  
  171. #Elements of the bulk buy GUI
  172. amountSelectionGUIBulkBuy:
  173. #Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
  174. size: 18
  175. #Choose if buttons type should be replaced with the bought item's type
  176. replaceButtonsType: true
  177. #Buttons
  178. buttons:
  179. #"Buy 1 stack" button
  180. buy1:
  181. #When no material is specified it will be the type of the item being bought
  182. item:
  183. quantity: 1
  184. name: "&aBuy 1 stack"
  185. lore:
  186. - "&7Price: &c%buy%$"
  187. #Value indicated the amount of stacks
  188. value: 1
  189. slot: 0
  190. #"Buy 2 stacks" button
  191. buy2:
  192. item:
  193. quantity: 2
  194. name: "&aBuy 2 stacks"
  195. lore:
  196. - "&7Price: &c%buy%$"
  197. value: 2
  198. slot: 1
  199. #"Buy 3 stacks" button
  200. buy3:
  201. item:
  202. quantity: 3
  203. name: "&aBuy 3 stacks"
  204. lore:
  205. - "&7Price: &c%buy%$"
  206. value: 3
  207. slot: 2
  208. #"Buy 4 stacks" button
  209. buy4:
  210. item:
  211. quantity: 4
  212. name: "&aBuy 4 stacks"
  213. lore:
  214. - "&7Price: &c%buy%$"
  215. value: 4
  216. slot: 3
  217. #"Buy 5 stacks" button
  218. buy5:
  219. item:
  220. quantity: 5
  221. name: "&aBuy 5 stacks"
  222. lore:
  223. - "&7Price: &c%buy%$"
  224. value: 5
  225. slot: 4
  226. #"Buy 6 stacks" button
  227. buy6:
  228. item:
  229. quantity: 6
  230. name: "&aBuy 6 stacks"
  231. lore:
  232. - "&7Price: &c%buy%$"
  233. value: 6
  234. slot: 5
  235. #"Buy 7 stacks" button
  236. buy7:
  237. item:
  238. quantity: 7
  239. name: "&aBuy 7 stacks"
  240. lore:
  241. - "&7Price: &c%buy%$"
  242. value: 7
  243. slot: 6
  244. #"Buy 8 stacks" button
  245. buy8:
  246. item:
  247. quantity: 8
  248. name: "&aBuy 8 stacks"
  249. lore:
  250. - "&7Price: &c%buy%$"
  251. value: 8
  252. slot: 7
  253. #"Buy 9 stacks" button
  254. buy9:
  255. item:
  256. quantity: 9
  257. name: "&aBuy 9 stacks"
  258. lore:
  259. - "&7Price: &c%buy%$"
  260. value: 9
  261. slot: 8
  262. #"Cancel" button
  263. cancel:
  264. item:
  265. material: STAINED_GLASS
  266. quantity: 1
  267. damage: 14
  268. name: "&c&lCancel"
  269. slot: 13
  270.  
  271. #Elements of the bulk buy GUI
  272. amountSelectionGUIBulkSell:
  273. #Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
  274. size: 27
  275. #Choose if buttons type should be replaced with the sold item's type
  276. replaceButtonsType: true
  277. #Buttons
  278. buttons:
  279. #"Sell 1 stack" button
  280. sell1:
  281. #When no material is specified it will be the type of the item being bought
  282. item:
  283. quantity: 1
  284. name: "&aSell 1 stack"
  285. lore:
  286. - "&7Price: &c%sell%$"
  287. #Value indicated the amount of stacks
  288. value: 1
  289. slot: 0
  290. #"Sell 2 stacks" button
  291. sell2:
  292. item:
  293. quantity: 2
  294. name: "&aSell 2 stacks"
  295. lore:
  296. - "&7Price: &c%sell%$"
  297. value: 2
  298. slot: 1
  299. #"Sell 3 stacks" button
  300. sell3:
  301. item:
  302. quantity: 3
  303. name: "&aSell 3 stacks"
  304. lore:
  305. - "&7Price: &c%sell%$"
  306. value: 3
  307. slot: 2
  308. #"Sell 4 stacks" button
  309. sell4:
  310. item:
  311. quantity: 4
  312. name: "&aSell 4 stacks"
  313. lore:
  314. - "&7Price: &c%sell%$"
  315. value: 4
  316. slot: 3
  317. #"Sell 5 stacks" button
  318. sell5:
  319. item:
  320. quantity: 5
  321. name: "&aSell 5 stacks"
  322. lore:
  323. - "&7Price: &c%sell%$"
  324. value: 5
  325. slot: 4
  326. #"Sell 6 stacks" button
  327. sell6:
  328. item:
  329. quantity: 6
  330. name: "&aSell 6 stacks"
  331. lore:
  332. - "&7Price: &c%sell%$"
  333. value: 6
  334. slot: 5
  335. #"Sell 7 stacks" button
  336. sell7:
  337. item:
  338. quantity: 7
  339. name: "&aSell 7 stacks"
  340. lore:
  341. - "&7Price: &c%sell%$"
  342. value: 7
  343. slot: 6
  344. #"Sell 8 stacks" button
  345. sell8:
  346. item:
  347. quantity: 8
  348. name: "&aSell 8 stacks"
  349. lore:
  350. - "&7Price: &c%sell%$"
  351. value: 8
  352. slot: 7
  353. #"Sell 9 stacks" button
  354. sell9:
  355. item:
  356. quantity: 9
  357. name: "&aSell 9 stacks"
  358. lore:
  359. - "&7Price: &c%sell%$"
  360. value: 9
  361. slot: 8
  362. #"Cancel" button
  363. cancel:
  364. item:
  365. material: STAINED_GLASS
  366. quantity: 1
  367. damage: 14
  368. name: "&c&lCancel"
  369. slot: 13
  370.  
  371. #Elements of the regular buy/sell GUI
  372. amountSelectionGUI:
  373. #Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
  374. size: 54
  375. #Slot of the item being bought/sold
  376. itemSlot: 22
  377. #Buttons
  378. buttons:
  379. #"Set to 1" button
  380. set1:
  381. item:
  382. material: STAINED_GLASS_PANE
  383. quantity: 1
  384. damage: 14
  385. name: "&c&lSet to 1"
  386. slot: 18
  387. #"Remove 10" button
  388. remove10:
  389. item:
  390. material: STAINED_GLASS_PANE
  391. quantity: 10
  392. damage: 14
  393. name: "&c&lRemove 10"
  394. slot: 19
  395. #"Remove 1" button
  396. remove1:
  397. item:
  398. material: STAINED_GLASS_PANE
  399. quantity: 1
  400. damage: 14
  401. name: "&c&lRemove 1"
  402. slot: 20
  403. #"Add 1" button
  404. add1:
  405. item:
  406. material: STAINED_GLASS_PANE
  407. quantity: 1
  408. damage: 5
  409. name: "&a&lAdd 1"
  410. slot: 24
  411. #"Add 10" button
  412. add10:
  413. item:
  414. material: STAINED_GLASS_PANE
  415. quantity: 10
  416. damage: 5
  417. name: "&a&lAdd 10"
  418. slot: 25
  419. #"Set to 16" button
  420. set16:
  421. item:
  422. material: STAINED_GLASS_PANE
  423. quantity: 16
  424. damage: 5
  425. name: "&a&lSet to 16"
  426. slot: 26
  427. #"Set to 64" button
  428. set64:
  429. item:
  430. material: STAINED_GLASS_PANE
  431. quantity: 64
  432. damage: 5
  433. name: "&a&lSet to 64"
  434. slot: 26
  435. #"Confirm" button
  436. confirm:
  437. item:
  438. material: STAINED_GLASS
  439. quantity: 1
  440. damage: 5
  441. name: "&a&lConfirm"
  442. slot: 39
  443. #"Sell all" button
  444. sellAll:
  445. item:
  446. material: STAINED_GLASS
  447. quantity: 1
  448. damage: 5
  449. name: "&a&lSell all"
  450. slot: 40
  451. #"Buy more" button
  452. buyMore:
  453. item:
  454. material: STAINED_GLASS
  455. quantity: 64
  456. damage: 5
  457. name: "&a&lBuy more"
  458. slot: 49
  459. #"Sell more" button
  460. sellMore:
  461. item:
  462. material: STAINED_GLASS
  463. quantity: 64
  464. damage: 5
  465. name: "&a&lSell more"
  466. slot: 49
  467. #"Cancel" button
  468. cancel:
  469. item:
  470. material: STAINED_GLASS
  471. quantity: 1
  472. damage: 14
  473. name: "&c&lCancel"
  474. slot: 41
  475.  
  476. shopMenuItems:
  477. #Has to be unique, value doesn't matter
  478. 1:
  479. item:
  480. #The same rules apply for material, amount, damage and lore as for goBackButton
  481. material: GRASS
  482. quantity: 1
  483. name: "&9&lBlocks"
  484. #Shop ID from shops.yml
  485. shop: "blocks"
  486. #Slot in shops menu, counting from 0 to 53
  487. slot: 12
  488. 2:
  489. item:
  490. material: COOKED_CHICKEN
  491. quantity: 1
  492. damage: 0
  493. name: "&2&lFood"
  494. lore:
  495. - "&7Snack Bar!"
  496. shop: "food"
  497. slot: 20
  498. 3:
  499. item:
  500. material: GOLD_BLOCK
  501. quantity: 1
  502. damage: 0
  503. name: "&3&lOres"
  504. shop: "ores"
  505. slot: 13
  506. 4:
  507. item:
  508. material: IRON_PICKAXE
  509. quantity: 1
  510. name: "&8&lTools"
  511. shop: "tools"
  512. slot: 23
  513. 5:
  514. item:
  515. material: DIAMOND_CHESTPLATE
  516. quantity: 1
  517. name: "&4&lArmor"
  518. shop: "armor"
  519. slot: 22
  520. 6:
  521. item:
  522. material: WHEAT
  523. quantity: 1
  524. name: "&5&lFarming"
  525. shop: "farming"
  526. slot: 21
  527. 7:
  528. item:
  529. material: SPIDER_EYE
  530. quantity: 1
  531. name: "&9&lMob drops"
  532. shop: "drops"
  533. slot: 32
  534. 8:
  535. item:
  536. material: YELLOW_FLOWER
  537. quantity: 1
  538. damage:
  539. name: "&2&lDecorative"
  540. shop: "decorative"
  541. slot: 24
  542. 9:
  543. item:
  544. material: SADDLE
  545. quantity: 1
  546. name: "&3&lMiscellanous"
  547. shop: "miscellanous"
  548. slot: 31
  549. 10:
  550. item:
  551. material: TNT
  552. quantity: 1
  553. damage: 0
  554. name: "&5&lRaid Supplies"
  555. lore:
  556. - "&7Get some yummy TNT here!"
  557. shop: "Raid"
  558. slot: 14
  559. 11:
  560. item:
  561. material: MOB_SPAWNER
  562. quantity: 1
  563. damage: 0
  564. name: "&5&lSpawners"
  565. lore:
  566. shop: "Spawners"
  567. slot: 30
  568. 12:
  569. item:
  570. material: STAINED_GLASS_PANE
  571. quantity: 1
  572. damage: 7
  573. name: ""
  574. lore:
  575. shop: ""
  576. slot: 0
  577. 13:
  578. item:
  579. material: STAINED_GLASS_PANE
  580. quantity: 1
  581. damage: 7
  582. name: ""
  583. lore:
  584. shop: ""
  585. slot: 1
  586. 14:
  587. item:
  588. material: STAINED_GLASS_PANE
  589. quantity: 1
  590. damage: 7
  591. name: ""
  592. lore:
  593. shop: ""
  594. slot: 2
  595. 15:
  596. item:
  597. material: STAINED_GLASS_PANE
  598. quantity: 1
  599. damage: 7
  600. name: ""
  601. lore:
  602. shop: ""
  603. slot: 3
  604. 16:
  605. item:
  606. material: STAINED_GLASS_PANE
  607. quantity: 1
  608. damage: 7
  609. name: ""
  610. lore:
  611. shop: ""
  612. slot: 4
  613. 17:
  614. item:
  615. material: STAINED_GLASS_PANE
  616. quantity: 1
  617. damage: 7
  618. name: ""
  619. lore:
  620. shop: ""
  621. slot: 5
  622. 18:
  623. item:
  624. material: STAINED_GLASS_PANE
  625. quantity: 1
  626. damage: 7
  627. name: ""
  628. lore:
  629. shop: ""
  630. slot: 6
  631. 19:
  632. item:
  633. material: STAINED_GLASS_PANE
  634. quantity: 1
  635. damage: 7
  636. name: ""
  637. lore:
  638. shop: ""
  639. slot: 7
  640. 20:
  641. item:
  642. material: STAINED_GLASS_PANE
  643. quantity: 1
  644. damage: 7
  645. name: ""
  646. lore:
  647. shop: ""
  648. slot: 8
  649. 21:
  650. item:
  651. material: STAINED_GLASS_PANE
  652. quantity: 1
  653. damage: 7
  654. name: ""
  655. lore:
  656. shop: ""
  657. slot: 9
  658. 22:
  659. item:
  660. material: STAINED_GLASS_PANE
  661. quantity: 1
  662. damage: 7
  663. name: ""
  664. lore:
  665. shop: ""
  666. slot: 10
  667. 23:
  668. item:
  669. material: STAINED_GLASS_PANE
  670. quantity: 1
  671. damage: 7
  672. name: ""
  673. lore:
  674. shop: ""
  675. slot: 11
  676. 24:
  677. item:
  678. material: STAINED_GLASS_PANE
  679. quantity: 1
  680. damage: 7
  681. name: ""
  682. lore:
  683. shop: ""
  684. slot: 15
  685. 25:
  686. item:
  687. material: STAINED_GLASS_PANE
  688. quantity: 1
  689. damage: 7
  690. name: ""
  691. lore:
  692. shop: ""
  693. slot: 16
  694. 26:
  695. item:
  696. material: STAINED_GLASS_PANE
  697. quantity: 1
  698. damage: 7
  699. name: ""
  700. lore:
  701. shop: ""
  702. slot: 17
  703. 27:
  704. item:
  705. material: STAINED_GLASS_PANE
  706. quantity: 1
  707. damage: 7
  708. name: ""
  709. lore:
  710. shop: ""
  711. slot: 18
  712. 28:
  713. item:
  714. material: STAINED_GLASS_PANE
  715. quantity: 1
  716. damage: 7
  717. name: ""
  718. lore:
  719. shop: ""
  720. slot: 19
  721. 29:
  722. item:
  723. material: STAINED_GLASS_PANE
  724. quantity: 1
  725. damage: 7
  726. name: ""
  727. lore:
  728. shop: ""
  729. slot: 25
  730. 30:
  731. item:
  732. material: STAINED_GLASS_PANE
  733. quantity: 1
  734. damage: 7
  735. name: ""
  736. lore:
  737. shop: ""
  738. slot: 26
  739. 31:
  740. item:
  741. material: STAINED_GLASS_PANE
  742. quantity: 1
  743. damage: 7
  744. name: ""
  745. lore:
  746. shop: ""
  747. slot: 27
  748. 32:
  749. item:
  750. material: STAINED_GLASS_PANE
  751. quantity: 1
  752. damage: 7
  753. name: ""
  754. lore:
  755. shop: ""
  756. slot: 28
  757. 33:
  758. item:
  759. material: STAINED_GLASS_PANE
  760. quantity: 1
  761. damage: 7
  762. name: ""
  763. lore:
  764. shop: ""
  765. slot: 29
  766. 34:
  767. item:
  768. material: STAINED_GLASS_PANE
  769. quantity: 1
  770. damage: 7
  771. name: ""
  772. lore:
  773. shop: ""
  774. slot: 33
  775. 35:
  776. item:
  777. material: STAINED_GLASS_PANE
  778. quantity: 1
  779. damage: 7
  780. name: ""
  781. lore:
  782. shop: ""
  783. slot: 34
  784. 36:
  785. item:
  786. material: STAINED_GLASS_PANE
  787. quantity: 1
  788. damage: 7
  789. name: ""
  790. lore:
  791. shop: ""
  792. slot: 35
  793. 37:
  794. item:
  795. material: STAINED_GLASS_PANE
  796. quantity: 1
  797. damage: 7
  798. name: ""
  799. lore:
  800. shop: ""
  801. slot: 36
  802. 38:
  803. item:
  804. material: STAINED_GLASS_PANE
  805. quantity: 1
  806. damage: 7
  807. name: ""
  808. lore:
  809. shop: ""
  810. slot: 37
  811. 39:
  812. item:
  813. material: STAINED_GLASS_PANE
  814. quantity: 1
  815. damage: 7
  816. name: ""
  817. lore:
  818. shop: ""
  819. slot: 38
  820. 40:
  821. item:
  822. material: STAINED_GLASS_PANE
  823. quantity: 1
  824. damage: 7
  825. name: ""
  826. lore:
  827. shop: ""
  828. slot: 39
  829. 41:
  830. item:
  831. material: STAINED_GLASS_PANE
  832. quantity: 1
  833. damage: 7
  834. name: ""
  835. lore:
  836. shop: ""
  837. slot: 40
  838. 42:
  839. item:
  840. material: STAINED_GLASS_PANE
  841. quantity: 1
  842. damage: 7
  843. name: ""
  844. lore:
  845. shop: ""
  846. slot: 41
  847. 43:
  848. item:
  849. material: STAINED_GLASS_PANE
  850. quantity: 1
  851. damage: 7
  852. name: ""
  853. lore:
  854. shop: ""
  855. slot: 42
  856. 44:
  857. item:
  858. material: STAINED_GLASS_PANE
  859. quantity: 1
  860. damage: 7
  861. name: ""
  862. lore:
  863. shop: ""
  864. slot: 43
  865. 45:
  866. item:
  867. material: STAINED_GLASS_PANE
  868. quantity: 1
  869. damage: 7
  870. name: ""
  871. lore:
  872. shop: ""
  873. slot: 44
  874.  
  875.  
  876. specialElements:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement