LeehamPastesStuff

Bed Wars shop.cm2

Sep 19th, 2020
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.02 KB | None | 0 0
  1. # Wiki Page: http://mbedwars.marcely.de/index.php/Config_shop
  2. # #### IMPORTANT #### #
  3. # Names surrounded with % will be taken from the messages file.
  4. # Make sure when creating something new to remove the %!
  5. # ################### #
  6.  
  7. # Change the design of the shop here
  8. # You are able to choose between:
  9. # 0 - Normal
  10. # 1 - HyPixel
  11. # 2 - HiveMC
  12. # 3 - GommeHD
  13. # 4 - Rewinside
  14. # 5 - Minesucht
  15. # 6 - BergwerkLABS
  16. # 7 - HyPixelV2
  17. design: HyPixelV2
  18.  
  19. # Configurate the pages, items, products and prices here
  20. pages {
  21. %Shop_Page_Block% {
  22. icon: sandstone
  23.  
  24.  
  25. items {
  26. %Shop_Item_HardenedClay% {
  27. icon: white_terracotta
  28. caps-multiply: 32
  29.  
  30. products {
  31. item {
  32. material: white_terracotta
  33. amount: 2
  34. }
  35. }
  36. prices {
  37. {
  38. spawner: iron
  39. amount: 1
  40. }
  41. }
  42. }
  43.  
  44. %Shop_Item_Endstone% {
  45. icon: end_stone
  46. caps-multiply: 6
  47.  
  48. products {
  49. item {
  50. material: end_stone
  51. }
  52. }
  53. prices {
  54. {
  55. spawner: iron
  56. amount: 10
  57. }
  58. }
  59. }
  60.  
  61. %Shop_Item_Chest% {
  62. icon: chest
  63.  
  64. products {
  65. item {
  66. material: chest
  67. }
  68. }
  69. prices {
  70. {
  71. spawner: diamond
  72. amount: 1
  73. }
  74. }
  75. }
  76.  
  77. %Shop_Item_Enderchest% {
  78. icon: ender_chest
  79.  
  80. products {
  81. item {
  82. material: ender_chest
  83. }
  84. }
  85. prices {
  86. {
  87. spawner: emerald
  88. amount: 1
  89. }
  90. }
  91. }
  92.  
  93. %Shop_Item_Ladder% {
  94. icon: ladder
  95. caps-multiply: 3
  96.  
  97. products {
  98. item {
  99. material: ladder
  100. amount: 6
  101. }
  102. }
  103. prices {
  104. {
  105. spawner: iron
  106. amount: 1
  107. }
  108. }
  109. }
  110.  
  111. %Shop_Item_Web% {
  112. icon: cobweb
  113. caps-multiply: 3
  114.  
  115. products {
  116. item {
  117. material: cobweb
  118. }
  119. }
  120. prices {
  121. {
  122. spawner: iron
  123. amount: 10
  124. }
  125. }
  126. }
  127.  
  128. }
  129.  
  130. }
  131. %Shop_Page_Food% {
  132. icon: apple
  133.  
  134.  
  135. items {
  136. %Shop_Item_Apple% {
  137. icon: apple
  138. caps-multiply: 8
  139.  
  140. products {
  141. item {
  142. material: apple
  143. }
  144. }
  145. prices {
  146. {
  147. spawner: iron
  148. amount: 1
  149. }
  150. }
  151. }
  152.  
  153. %Shop_Item_GrilledPork% {
  154. icon: cooked_porkchop
  155. caps-multiply: 8
  156.  
  157. products {
  158. item {
  159. material: cooked_porkchop
  160. }
  161. }
  162. prices {
  163. {
  164. spawner: iron
  165. amount: 4
  166. }
  167. }
  168. }
  169.  
  170. %Shop_Item_Cake% {
  171. icon: cake
  172.  
  173. products {
  174. item {
  175. material: cake
  176. }
  177. }
  178. prices {
  179. {
  180. spawner: diamond
  181. amount: 3
  182. }
  183. }
  184. }
  185.  
  186. %Shop_Item_GoldenApple% {
  187. icon: golden_apple
  188.  
  189. products {
  190. item {
  191. material: golden_apple
  192. }
  193. }
  194. prices {
  195. {
  196. spawner: emerald
  197. amount: 2
  198. }
  199. }
  200. }
  201.  
  202. }
  203.  
  204. }
  205. %Shop_Page_Armor% {
  206. icon: iron_chestplate
  207.  
  208.  
  209. items {
  210. %Shop_Item_LeatherHelmet% {
  211. icon: leather_helmet
  212. icon-enchantment: PROTECTION_ENVIRONMENTAL:1
  213.  
  214. products {
  215. item {
  216. material: leather_helmet
  217. enchantment: PROTECTION_ENVIRONMENTAL:1
  218. }
  219. }
  220. prices {
  221. {
  222. spawner: iron
  223. amount: 5
  224. }
  225. }
  226. }
  227.  
  228. %Shop_Item_LeatherLeggings% {
  229. icon: leather_leggings
  230. icon-enchantment: PROTECTION_ENVIRONMENTAL:1
  231.  
  232. products {
  233. item {
  234. material: leather_leggings
  235. enchantment: PROTECTION_ENVIRONMENTAL:1
  236. }
  237. }
  238. prices {
  239. {
  240. spawner: iron
  241. amount: 5
  242. }
  243. }
  244. }
  245.  
  246. %Shop_Item_LeatherBoots% {
  247. icon: leather_boots
  248. icon-enchantment: PROTECTION_ENVIRONMENTAL:1
  249.  
  250. products {
  251. item {
  252. material: leather_boots
  253. enchantment: PROTECTION_ENVIRONMENTAL:1
  254. }
  255. }
  256. prices {
  257. {
  258. spawner: iron
  259. amount: 5
  260. }
  261. }
  262. }
  263.  
  264. %Shop_Item_ChainmailChestplateLVL1% {
  265. icon: chainmail_chestplate
  266.  
  267. products {
  268. item {
  269. material: chainmail_chestplate
  270. }
  271. }
  272. prices {
  273. {
  274. spawner: diamond
  275. amount: 1
  276. }
  277. }
  278. }
  279.  
  280. %Shop_Item_ChainmailChestplateLVL2% {
  281. icon: chainmail_chestplate
  282. icon-enchantment: PROTECTION_ENVIRONMENTAL:1
  283.  
  284. products {
  285. item {
  286. material: chainmail_chestplate
  287. enchantment: PROTECTION_ENVIRONMENTAL:1
  288. }
  289. }
  290. prices {
  291. {
  292. spawner: diamond
  293. amount: 3
  294. }
  295. }
  296. }
  297.  
  298. %Shop_Item_ChainmailChestplateLVL3% {
  299. icon: chainmail_chestplate
  300. icon-enchantment: PROTECTION_PROJECTILE:1
  301. icon-enchantment: PROTECTION_ENVIRONMENTAL:1
  302.  
  303. products {
  304. item {
  305. material: chainmail_chestplate
  306. enchantment: PROTECTION_PROJECTILE:1
  307. enchantment: PROTECTION_ENVIRONMENTAL:1
  308. }
  309. }
  310. prices {
  311. {
  312. spawner: diamond
  313. amount: 7
  314. }
  315. }
  316. }
  317.  
  318. %Shop_Item_MagnetShoes% {
  319. icon: chainmail_boots
  320.  
  321. products {
  322. special {
  323. material: chainmail_boots
  324. type: magnet shoes
  325. }
  326. }
  327. prices {
  328. {
  329. spawner: emerald
  330. amount: 5
  331. }
  332. }
  333. }
  334.  
  335. }
  336.  
  337. }
  338. %Shop_Page_Sword% {
  339. icon: wooden_sword
  340.  
  341.  
  342. items {
  343. %Shop_Item_KnockbackStick% {
  344. icon: stick
  345. icon-enchantment: KNOCKBACK:1
  346.  
  347. products {
  348. item {
  349. material: stick
  350. enchantment: KNOCKBACK:1
  351. }
  352. }
  353. prices {
  354. {
  355. spawner: iron
  356. amount: 10
  357. }
  358. }
  359. }
  360.  
  361. %Shop_Item_SwordLVL1% {
  362. icon: wooden_sword
  363.  
  364. products {
  365. item {
  366. material: wooden_sword
  367. }
  368. }
  369. prices {
  370. {
  371. spawner: diamond
  372. amount: 2
  373. }
  374. }
  375. }
  376.  
  377. %Shop_Item_SwordLVL2% {
  378. icon: stone_sword
  379.  
  380. products {
  381. item {
  382. material: stone_sword
  383. }
  384. }
  385. prices {
  386. {
  387. spawner: diamond
  388. amount: 5
  389. }
  390. }
  391. }
  392.  
  393. %Shop_Item_SwordLVL3% {
  394. icon: iron_sword
  395.  
  396. products {
  397. item {
  398. material: iron_sword
  399. }
  400. }
  401. prices {
  402. {
  403. spawner: emerald
  404. amount: 2
  405. }
  406. }
  407. }
  408.  
  409. }
  410.  
  411. }
  412. %Shop_Page_Bow% {
  413. icon: bow
  414.  
  415.  
  416. items {
  417. %Shop_Item_BowLVL1% {
  418. icon: bow
  419.  
  420. products {
  421. item {
  422. material: bow
  423. }
  424. }
  425. prices {
  426. {
  427. spawner: emerald
  428. amount: 3
  429. }
  430. }
  431. }
  432.  
  433. %Shop_Item_BowLVL2% {
  434. icon: bow
  435. icon-enchantment: ARROW_DAMAGE:1
  436.  
  437. products {
  438. item {
  439. material: bow
  440. enchantment: ARROW_DAMAGE:1
  441. }
  442. }
  443. prices {
  444. {
  445. spawner: emerald
  446. amount: 5
  447. }
  448. }
  449. }
  450.  
  451. %Shop_Item_BowLVL3% {
  452. icon: bow
  453. icon-enchantment: ARROW_DAMAGE:2
  454.  
  455. products {
  456. item {
  457. material: bow
  458. enchantment: ARROW_DAMAGE:2
  459. }
  460. }
  461. prices {
  462. {
  463. spawner: emerald
  464. amount: 8
  465. }
  466. }
  467. }
  468.  
  469. %Shop_Item_Arrow% {
  470. icon: arrow
  471. caps-multiply: 3
  472.  
  473. products {
  474. item {
  475. material: arrow
  476. amount: 5
  477. }
  478. }
  479. prices {
  480. {
  481. spawner: diamond
  482. amount: 1
  483. }
  484. }
  485. }
  486.  
  487. }
  488.  
  489. }
  490. %Shop_Page_Pickaxe% {
  491. icon: stone_pickaxe
  492.  
  493.  
  494. items {
  495. %Shop_Item_PickaxeLVL1% {
  496. icon: wooden_pickaxe
  497. icon-enchantment: DIG_SPEED:1
  498.  
  499. products {
  500. item {
  501. material: wooden_pickaxe
  502. enchantment: DIG_SPEED:1
  503. }
  504. }
  505. prices {
  506. {
  507. spawner: iron
  508. amount: 30
  509. }
  510. }
  511. }
  512.  
  513. %Shop_Item_PickaxeLVL2% {
  514. icon: stone_pickaxe
  515. icon-enchantment: DIG_SPEED:1
  516.  
  517. products {
  518. item {
  519. material: stone_pickaxe
  520. enchantment: DIG_SPEED:1
  521. }
  522. }
  523. prices {
  524. {
  525. spawner: diamond
  526. amount: 2
  527. }
  528. }
  529. }
  530.  
  531. %Shop_Item_PickaxeLVL3% {
  532. icon: golden_pickaxe
  533. icon-enchantment: DURABILITY:1
  534.  
  535. products {
  536. item {
  537. material: golden_pickaxe
  538. enchantment: DURABILITY:1
  539. }
  540. }
  541. prices {
  542. {
  543. spawner: emerald
  544. amount: 2
  545. }
  546. }
  547. }
  548.  
  549. }
  550.  
  551. }
  552. %Shop_Page_Potion% {
  553. icon: potion
  554.  
  555.  
  556. items {
  557. %Shop_Item_PotionSwiftness% {
  558. icon: potion:speed:3600:0
  559.  
  560. products {
  561. item {
  562. material: potion:speed:3600:0
  563. }
  564. }
  565. prices {
  566. {
  567. spawner: diamond
  568. amount: 4
  569. }
  570. }
  571. }
  572.  
  573. %Shop_Item_PotionRegeneration% {
  574. icon: potion:regeneration:900:0
  575.  
  576. products {
  577. item {
  578. material: potion:regeneration:900:0
  579. }
  580. }
  581. prices {
  582. {
  583. spawner: emerald
  584. amount: 4
  585. }
  586. }
  587. }
  588.  
  589. %Shop_Item_PotionHealing% {
  590. icon: potion:heal:1:0
  591.  
  592. products {
  593. item {
  594. material: potion:heal:1:0
  595. }
  596. }
  597. prices {
  598. {
  599. spawner: diamond
  600. amount: 5
  601. }
  602. }
  603. }
  604.  
  605. %Shop_Item_PotionStrength% {
  606. icon: potion:increase_damage:3600:0
  607.  
  608. products {
  609. item {
  610. material: potion:increase_damage:3600:0
  611. }
  612. }
  613. prices {
  614. {
  615. spawner: emerald
  616. amount: 4
  617. }
  618. }
  619. }
  620.  
  621. }
  622.  
  623. }
  624. %Shop_Page_Special% {
  625. icon: tnt
  626.  
  627.  
  628. items {
  629. %Shop_Item_Teleporter% {
  630. icon: gunpowder
  631.  
  632. products {
  633. special {
  634. material: gunpowder
  635. type: teleporter
  636. }
  637. }
  638. prices {
  639. {
  640. spawner: emerald
  641. amount: 3
  642. }
  643. }
  644. }
  645.  
  646. %Shop_Item_Minishop% {
  647. icon: villager_spawn_egg
  648.  
  649. products {
  650. special {
  651. material: villager_spawn_egg
  652. type: mini shop
  653. }
  654. }
  655. prices {
  656. {
  657. spawner: diamond
  658. amount: 2
  659. }
  660. }
  661. }
  662.  
  663. %Shop_Item_Rescueplatform% {
  664. icon: slime_block
  665.  
  666. products {
  667. special {
  668. material: slime_block
  669. type: rescue platform
  670. }
  671. }
  672. prices {
  673. {
  674. spawner: emerald
  675. amount: 5
  676. }
  677. }
  678. }
  679.  
  680. %Shop_Item_Tntsheep% {
  681. icon: sheep_spawn_egg
  682.  
  683. products {
  684. special {
  685. material: sheep_spawn_egg
  686. type: tnt sheep
  687. }
  688. }
  689. prices {
  690. {
  691. spawner: iron
  692. amount: 64
  693. }
  694. }
  695. }
  696.  
  697. %Shop_Item_Trap% {
  698. icon: stone_pressure_plate
  699.  
  700. products {
  701. special {
  702. material: stone_pressure_plate
  703. type: trap
  704. }
  705. }
  706. prices {
  707. {
  708. spawner: diamond
  709. amount: 1
  710. }
  711. }
  712. }
  713.  
  714. %Shop_Item_Bridge% {
  715. icon: blue_dye
  716. caps-multiply: 2
  717.  
  718. products {
  719. special {
  720. material: blue_dye
  721. type: bridge
  722. }
  723. }
  724. prices {
  725. {
  726. spawner: emerald
  727. amount: 2
  728. }
  729. }
  730. }
  731.  
  732. %Shop_Item_GuardDog% {
  733. icon: wolf_spawn_egg
  734.  
  735. products {
  736. special {
  737. material: wolf_spawn_egg
  738. type: guard dog
  739. }
  740. }
  741. prices {
  742. {
  743. spawner: emerald
  744. amount: 1
  745. }
  746. }
  747. }
  748.  
  749. %Shop_Item_Tracker% {
  750. icon: compass
  751.  
  752. products {
  753. special {
  754. material: compass
  755. type: tracker
  756. }
  757. }
  758. prices {
  759. {
  760. spawner: emerald
  761. amount: 2
  762. }
  763. }
  764. }
  765.  
  766. %Shop_Item_Fireball% {
  767. icon: fire_charge
  768.  
  769. products {
  770. special {
  771. material: fire_charge
  772. type: fireball
  773. }
  774. }
  775. prices {
  776. {
  777. spawner: diamond
  778. amount: 32
  779. }
  780. }
  781. }
  782.  
  783. }
  784.  
  785. }
  786. %Shop_Page_Extra% {
  787. icon: fishing_rod
  788.  
  789.  
  790. items {
  791. %Shop_Item_TNT% {
  792. icon: tnt
  793.  
  794. products {
  795. item {
  796. material: tnt
  797. }
  798. }
  799. prices {
  800. {
  801. spawner: diamond
  802. amount: 10
  803. }
  804. }
  805. }
  806.  
  807. %Shop_Item_Enderpearl% {
  808. icon: ender_pearl
  809.  
  810. products {
  811. item {
  812. material: ender_pearl
  813. }
  814. }
  815. prices {
  816. {
  817. spawner: emerald
  818. amount: 5
  819. }
  820. }
  821. }
  822.  
  823. %Shop_Item_Snowball% {
  824. icon: snowball
  825.  
  826. products {
  827. item {
  828. material: snowball
  829. }
  830. }
  831. prices {
  832. {
  833. spawner: iron
  834. amount: 8
  835. }
  836. }
  837. }
  838.  
  839. %Shop_Item_FishingRod% {
  840. icon: fishing_rod
  841.  
  842. products {
  843. item {
  844. material: fishing_rod
  845. }
  846. }
  847. prices {
  848. {
  849. spawner: emerald
  850. amount: 2
  851. }
  852. }
  853. }
  854.  
  855. }
  856.  
  857. }
  858. }
  859.  
Add Comment
Please, Sign In to add comment