draexo68

Untitled

Jun 5th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.13 KB | None | 0 0
  1. # This is a minishop. Minishop can be allowed via permissions
  2. # See examples for the format
  3. # If selling is allowed, right click will sell the item to the shop
  4. # description can include color codes using & and new lines using |
  5.  
  6. config:
  7.    allowselling: false
  8. # Add items in the same format to sell or buy more
  9. items:
  10.    item1:
  11.       material: LAVA_BUCKET
  12.       quantity: 1
  13.       price: 100
  14.    item2:
  15.       material: DIRT
  16.       quantity: 1
  17.       price: 100
  18.       sellprice: 10
  19.    # You can add a user-friendly description to the item if you like
  20.    # Use & for color codes.
  21.    item3:
  22.       material: IRON_INGOT
  23.       quantity: 3
  24.       price: 100
  25.       sellprice: 30
  26.       description: '&bIron bars'
  27.    item4:
  28.       material: GRASS
  29.       quantity: 1
  30.       price: 150
  31.    item5:
  32.       material: DIAMOND
  33.       quantity: 1
  34.       price: 200
  35.  
  36.    # Potions can be different types and Extended, Splash or ExtendedSplash.
  37.    # Format extra: NAME:<LEVEL>:<EXTENDED/NOTEXTENDED>:<SPLASH/NOSPLASH>:QTY
  38.    # LEVEL, EXTENDED and SPLASH are optional. If they are left blank, any is acceptable
  39.    # LEVEL is a number, normally 1 or 2
  40.    # Examples:
  41.    # POTION:STRENGTH:1:EXTENDED:SPLASH:1
  42.    # POTION:JUMP:2:NOTEXTENDED:NOSPLASH:1
  43.    # POTION:WEAKNESS::::1   -  any weakness potion
  44.    #
  45.    # Valid potion names are:
  46.    # WATER, REGEN, SPEED, FIRE_RESISTANCE, POISON, INSTANT_HEAL, NIGHT_VISION, WEAKNESS,
  47.    # STRENGTH, SLOWNESS, JUMP, INSTANT_DAMAGE, WATER_BREATHING, INVISIBILITY
  48.    #
  49.    item6:
  50.       material: POTION
  51.       quantity: 1
  52.       extra: WATER_BREATHING
  53.       description: Potion of water breathing
  54.       price: 50
  55.    # Monster Eggs must be described by name. Use _ for spaces, e.g. PIG_ZOMBIE
  56.    item7:
  57.       material: MONSTER_EGG
  58.       quantity: 1
  59.       extra: PIG
  60.       price: 300
  61.       description: A pig
  62.    # A dark oak (4 saplings needed)
  63.    item8:
  64.       material: SAPLING
  65.       quantity: 4
  66.       # Extra is durability/damage
  67.       extra: 5
  68.       price: 150
  69.    item9:
  70.       material: POTION
  71.       quantity: 1
  72.       extra: NIGHT_VISION:EXTENDED
  73.       price: 20
  74.       description: Extended Night Vision Potion
Add Comment
Please, Sign In to add comment