Advertisement
Guest User

guardians.yml

a guest
Aug 9th, 2015
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.22 KB | None | 0 0
  1. ##########################################
  2. # EPICSKYWARS Guardians
  3. # Very flexible guardians system. You may create your own types, change everything you want.
  4. Guardians:
  5.  # You can create your own types. Just copy this and change everything you need and then use it for you own needs.
  6.   Types:
  7.     Defender:
  8.      # Max health
  9.       max-health: 25.0
  10.       # Use double values. WARNING: Health value shouldn't be higher than max-health!
  11.       health: 25.0
  12.       # You can use color codes here.
  13.       name: '&6&lUltra Defender'
  14.       # Potion effects. Please follow the example:
  15.       # - PotionEffectType duration amplifier ambient
  16.       # - DAMAGE_RESISTANCE 0 2 false (It means that mob will have Damage Resistance II effect for all time without particles (burbles))
  17.       # If you want use endless duration use - 0;
  18.       # You can find here Potion Types: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/potion/PotionEffectType.html
  19.       # Please everytime use ALL 3 options. Otherwise, potion effect will not work.
  20.       potion-effects:
  21.        - DAMAGE_RESISTANCE 0 2
  22.         - FIRE_RESISTANCE 0 1
  23.       armor:
  24.         enable: true
  25.         helmet: 314
  26.         chestplate: 315
  27.         leggings: 316
  28.         boots: 317
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement