Advertisement
Marcely99

Marcely's Bedwars spawners-config

Mar 22nd, 2016 (edited)
1,995
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.88 KB | None | 0 0
  1. #########################
  2. ## Visit the wiki page for further info: https://s.marcely.de/mbww2
  3. #########################
  4.  
  5. iron: # The id of the spawner. Used for storing them. Do not change it after going to production with it!
  6.   name: '&7%Spawner_Iron%' # The name that will be displayed. %<entry>% will be taken from the messages file
  7.   icon: iron_ingot # The icon that'll be displayed in e.g. the shop
  8.   dropping-materials: # The materials which get dropped with this spawner
  9.     - iron_ingot
  10.   spawn-delay: 1.5 # The period in seconds until it spawns something
  11.   spawn-radius: 0 # Will spawn it somewhere randomly in this radius
  12.   tranquil: false # true: Items don't get "pushed" away randomly once they spawn
  13.   merging: false # Spigot automatically merges items for performance reasons. Setting this to false disables this if there aren't too many lying around
  14.   max-nearby-items: 40 # After how many items it'll stop spawning any further until they get picked up
  15.  
  16. gold:
  17.   name: '&6%Spawner_Gold%'
  18.   icon: gold_ingot
  19.   dropping-materials:
  20.    - gold_ingot
  21.   spawn-delay: 6.0
  22.   spawn-radius: 0
  23.   tranquil: false
  24.   merging: false
  25.   max-nearby-items: 8
  26.  
  27. diamond:
  28.   name: '&b%Spawner_Diamond%'
  29.   plural-name: '&b%Spawner_Diamond%s'
  30.   icon: diamond
  31.   dropping-materials:
  32.    - diamond
  33.   hologram: diamond_block
  34.   spawn-delay: 30.0
  35.   spawn-effect: MOBSPAWNER_FLAMES
  36.   spawn-radius: 0
  37.   tranquil: true
  38.   merging: true
  39.   max-nearby-items: 4
  40.  
  41. emerald:
  42.   name: '&a%Spawner_Emerald%'
  43.   plural-name: '&a%Spawner_Emerald%s'
  44.   icon: emerald
  45.   dropping-materials:
  46.    - emerald
  47.   hologram: emerald_block
  48.   spawn-delay: 50.0
  49.   spawn-effect: MOBSPAWNER_FLAMES
  50.   spawn-radius: 0
  51.   tranquil: true
  52.   merging: true
  53.   max-nearby-items: 4
  54.  
  55. # You're able to add custom spawners by simply copy & pasting the existing ones
  56. # Only make sure that there aren't multiple spawners with the same id
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement