Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 7.54 KB | None | 0 0
  1. shops:
  2.  #Shop ID, mustn't contain spaces or special characters, has to be unique, is used in "shop: "food"" in config.yml and players need permissions shopguiplus.shop.food to access it
  3.   food:
  4.    #Shop inventory name
  5.     name: "&5Food Shop"
  6.     items:
  7.      #Has to be unique for each of items, value doesn't matter
  8.       1:
  9.         #Type of sold item, valid values are item/permission/enchantment/command
  10.         type: item
  11.         item:
  12.          #Material name, full list can be found here: http://wiki.brcdev.net/Materials
  13.           material: BREAD
  14.           #(optional) Quantity of the item
  15.           quantity: 32
  16.           #(optional) Data value, for example 1 for WOOD:1 means spruce wood planks
  17.           damage: 0
  18.           #(optional) Custom name
  19.           name: "&aYummy bread"
  20.           #(optional) Lore, can contain multiple lines
  21.           lore:
  22.             - "&3<3"
  23.         #Buy price, lower than 0 means you can't buy it, 0 mean free, higher than 0 is regular value
  24.         buyPrice: -1
  25.         #Same as above but sell price
  26.         sellPrice: 25
  27.         #Slot in shop's inventory, counting from 0 to 53
  28.         slot: 0
  29.       2:
  30.         type: item
  31.         item:
  32.           material: COOKED_RABBIT
  33.           quantity: 10
  34.           damage: 0
  35.         buyPrice: 75.5
  36.         sellPrice: -1
  37.         slot: 1
  38.       3:
  39.         type: item
  40.         item:
  41.           material: APPLE
  42.           quantity: 16
  43.           damage: 0
  44.           name: "&cRed apple <3"
  45.         buyPrice: 200
  46.         sellPrice: 50
  47.         slot: 2
  48.       4:
  49.         type: item
  50.         item:
  51.           material: COOKIE
  52.           quantity: 5
  53.           damage: 0
  54.           name: "&5Cookiez"
  55.         buyPrice: 10.5
  56.         sellPrice: 5.5
  57.         slot: 3
  58.   mining:
  59.     name: "&2Mining Shop"
  60.     items:
  61.       1:
  62.         type: item
  63.         item:
  64.           material: STONE_PICKAXE
  65.           quantity: 1
  66.           name: "&8Crappy Pickaxe"
  67.           enchantments:
  68.            - EFFICIENCY:1
  69.         buyPrice: 50
  70.         sellPrice: 25
  71.         slot: 0
  72.       2:
  73.         type: item
  74.         item:
  75.           material: DIAMOND_PICKAXE
  76.           quantity: 1
  77.         buyPrice: 1000
  78.         sellPrice: 500
  79.         slot: 1
  80.       3:
  81.         type: item
  82.         item:
  83.           material: IRON_SPADE
  84.           damage: 125
  85.           quantity: 1
  86.           enchantments:
  87.            - EFFICIENCY:1
  88.         buyPrice: 750
  89.         sellPrice: 111.11
  90.         slot: 2
  91.   permissions:
  92.     name: "&3Permissions"
  93.     items:
  94.       1:
  95.         type: permission
  96.         permission: "essentials.msg"
  97.         item:
  98.           material: STONE_PICKAXE
  99.           quantity: 1
  100.           name: "&8/msg permission"
  101.           enchantments:
  102.            - EFFICIENCY:1
  103.             - FORTUNE:2
  104.         buyPrice: 50
  105.         sellPrice: 25
  106.         slot: 0
  107.       2:
  108.         type: permission
  109.         permission: "essentials.me"
  110.         item:
  111.           material: DIAMOND_PICKAXE
  112.           quantity: 1
  113.           name: "&aPermission to use /me"
  114.         buyPrice: 1000
  115.         sellPrice: 500
  116.         slot: 1
  117.   enchantments:
  118.     name: "&6Enchantments"
  119.     items:
  120.       1:
  121.         type: enchantment
  122.         enchantment: FORTUNE
  123.         enchantmentLevel: 2
  124.         item:
  125.           material: DIAMOND_PICKAXE
  126.           quantity: 1
  127.           name: "&8Fortune II"
  128.           enchantments:
  129.            - FORTUNE:2
  130.         buyPrice: 50
  131.         slot: 0
  132.       2:
  133.         type: enchantment
  134.         enchantment: KNOCKBACK
  135.         enchantmentLevel: 1
  136.         item:
  137.           material: DIAMOND_SWORD
  138.           quantity: 1
  139.           name: "&6Knockback I"
  140.         buyPrice: 1000
  141.         slot: 1
  142.   farming:
  143.     name: "&eFarming Shop"
  144.     items:
  145.       1:
  146.         type: item
  147.         item:
  148.           material: MELON_SEEDS
  149.           quantity: 32
  150.         buyPrice: 10
  151.         sellPrice: 5
  152.         slot: 0
  153.       2:
  154.         type: item
  155.         item:
  156.           material: SEEDS
  157.           quantity: 2
  158.         buyPrice: 0.5
  159.         sellPrice: 0.25
  160.         slot: 1
  161.       3:
  162.         type: item
  163.         item:
  164.           material: SAPLING
  165.           quantity: 16
  166.           damage: 3
  167.           name: "&2BIIIG TREE"
  168.         buyPrice: 200
  169.         sellPrice: 50
  170.         slot: 2
  171.   wool:
  172.     name: "&bWool Shop"
  173.     items:
  174.       1:
  175.         type: item
  176.         item:
  177.           material: WOOL
  178.           quantity: 32
  179.           damage: 0
  180.         buyPrice: 10
  181.         sellPrice: 5
  182.         slot: 0
  183.       2:
  184.         type: item
  185.         item:
  186.           material: WOOL
  187.           quantity: 32
  188.           damage: 1
  189.         buyPrice: 10
  190.         sellPrice: 5
  191.         slot: 1
  192.       3:
  193.         type: item
  194.         item:
  195.           material: WOOL
  196.           quantity: 32
  197.           damage: 2
  198.         buyPrice: 10
  199.         sellPrice: 5
  200.         slot: 2
  201.       4:
  202.         type: item
  203.         item:
  204.           material: WOOL
  205.           quantity: 32
  206.           damage: 3
  207.         buyPrice: 10
  208.         sellPrice: 5
  209.         slot: 3
  210.       5:
  211.         type: item
  212.         item:
  213.           material: WOOL
  214.           quantity: 32
  215.           damage: 4
  216.         buyPrice: 10
  217.         sellPrice: 5
  218.         slot: 4
  219.       6:
  220.         type: item
  221.         item:
  222.           material: WOOL
  223.           quantity: 32
  224.           damage: 5
  225.         buyPrice: 10
  226.         sellPrice: 5
  227.         slot: 5
  228.       7:
  229.         type: item
  230.         item:
  231.           material: WOOL
  232.           quantity: 32
  233.           damage: 6
  234.         buyPrice: 10
  235.         sellPrice: 5
  236.         slot: 6
  237.       8:
  238.         type: item
  239.         item:
  240.           material: WOOL
  241.           quantity: 32
  242.           damage: 7
  243.         buyPrice: 10
  244.         sellPrice: 5
  245.         slot: 7
  246.       9:
  247.         type: item
  248.         item:
  249.           material: WOOL
  250.           quantity: 32
  251.           damage: 8
  252.         buyPrice: 10
  253.         sellPrice: 5
  254.         slot: 8
  255.       10:
  256.         type: item
  257.         item:
  258.           material: WOOL
  259.           quantity: 32
  260.           damage: 9
  261.         buyPrice: 10
  262.         sellPrice: 5
  263.         slot: 9
  264.   commands:
  265.     name: "&bCommand shop"
  266.     items:
  267.       1:
  268.         type: command
  269.         item:
  270.           material: WOOL
  271.           quantity: 32
  272.           damage: 0
  273.         command: "say Hello, %PLAYER%!"
  274.         buyPrice: 500
  275.         slot: 0
  276.       2:
  277.         type: command
  278.         item:
  279.           material: WOOL
  280.           quantity: 32
  281.           damage: 1
  282.         command: "say Good bye, %PLAYER%!"
  283.         buyPrice: 100
  284.         slot: 1
  285.   fireworks:
  286.     name: "&cFirework shop"
  287.     items:
  288.       1:
  289.         type: item
  290.         item:
  291.           material: FIREWORK
  292.           quantity: 32
  293.           damage: 0
  294.           fireworkPower: 2
  295.           fireworkEffects:
  296.             1:
  297.               type: BALL_LARGE
  298.               colors:
  299.               - YELLOW
  300.                - ORANGE
  301.             2:
  302.               type: CREEPER
  303.               colors:
  304.               - YELLOW
  305.                - ORANGE
  306.         buyPrice: 10
  307.         sellPrice: -1
  308.         slot: 0
  309.       2:
  310.         type: item
  311.         item:
  312.           material: FIREWORK
  313.           quantity: 32
  314.           damage: 0
  315.           fireworkPower: 4
  316.           fireworkEffects:
  317.             1:
  318.               type: BURST
  319.               colors:
  320.               - MAGENTA
  321.                - LIME
  322.                - BROWN
  323.               fadeColors:
  324.               - BLUE
  325.               flicker: true
  326.             2:
  327.               type: STAR
  328.               colors:
  329.               - RED
  330.               flicker: true
  331.               trail: true
  332.         buyPrice: 10
  333.         sellPrice: -1
  334.         slot: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement