Advertisement
Marcely99

Marcely's Bedwars spawners-config

Mar 22nd, 2016 (edited)
2,456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.22 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.   plural-name: "&7%Spawner_Iron_Plural%" # The plural name (for 2+ items) that will be displayed. %<entry>% will be taken from the messages file
  8.   icon: iron_ingot # The icon that'll be displayed in e.g. the shop
  9.   dropping-materials: # The materials which get dropped with this spawner
  10.     - iron_ingot
  11.   spawn-delay: 1.5 # The period in seconds until it spawns something
  12.   spawn-radius: 0 # Will spawn it somewhere randomly in this radius
  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.   tranquil: false # true: Items don't get "pushed" away randomly once they spawn
  15.   max-nearby-items: 40 # After how many items it'll stop spawning any further until they get picked up
  16.   spawn-at-start: 2 # How many items should be spawned at the start of the round
  17.  
  18. gold:
  19.   name: '&6%Spawner_Gold%'
  20.   plural-name: "&6%Spawner_Gold_Plural%"
  21.   icon: gold_ingot
  22.   dropping-materials:
  23.    - gold_ingot
  24.   spawn-delay: 6.0
  25.   spawn-radius: 0
  26.   merging: false
  27.   tranquil: false
  28.   max-nearby-items: 8
  29.   spawn-at-start: 0
  30.  
  31. diamond:
  32.   name: '&b%Spawner_Diamond%'
  33.   plural-name: "&b%Spawner_Diamond_Plural%"
  34.   icon: diamond
  35.   dropping-materials:
  36.    - diamond
  37.   hologram: diamond_block
  38.   spawn-delay: 30.0
  39.   spawn-effect: MOBSPAWNER_FLAMES
  40.   spawn-radius: 0
  41.   merging: true
  42.   tranquil: true
  43.   max-nearby-items: 4
  44.   spawn-at-start: 0
  45.  
  46. emerald:
  47.   name: '&a%Spawner_Emerald%'
  48.   plural-name: "&a%Spawner_Emerald_Plural%"
  49.   icon: emerald
  50.   dropping-materials:
  51.    - emerald
  52.   hologram: emerald_block
  53.   spawn-delay: 50.0
  54.   spawn-effect: MOBSPAWNER_FLAMES
  55.   spawn-radius: 0
  56.   merging: true
  57.   tranquil: true
  58.   max-nearby-items: 4
  59.   spawn-at-start: 0
  60.  
  61. # You're able to add custom spawners by simply copy & pasting the existing ones
  62. # Only make sure that there aren't multiple spawners with the same id
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement