Advertisement
Guest User

supplies.yml

a guest
Oct 4th, 2017
508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.52 KB | None | 0 0
  1. #-------------------------------------------------------------------------
  2. #                      QUICK CONFIG GUIDE
  3. #           Here maybe some grammar errors (mistakes?)
  4. #
  5. # ========= ITEM ===========
  6. # - Material
  7. # Item material. Names only. NOT ID!
  8. #
  9. # - Display
  10. # Item display name
  11. #
  12. # - Lore
  13. # Item lore
  14. #
  15. # ========= EFFECTS ===========
  16. # Particle effects for enchant.
  17. #
  18. # ========= SOUNDS ===========
  19. # No comments.
  20. #
  21. # ========= DROPS ===========
  22. # - PreventFrom
  23. # Entities that spawned by one of reasons listed below wont drop items
  24. # All valid spawn reasons you can find here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/event/entity/CreatureSpawnEvent.SpawnReason.html
  25. #
  26. # - EntityTypes
  27. # Entity types that can drop gems
  28. # Variables are:
  29. # * ALL - all entities
  30. # * HOSTILE - only hostile entities
  31. # * PASSIVE - only passive entities
  32. # * <ENTITY_TYPE> - only specified entity type
  33. # You can combine values like HOSTILE and PIG, PASSIVE and ZOMBIE and HUSK, etc.
  34. #-------------------------------------------------------------------------
  35. MagicDust:
  36.   Enabled: true
  37.   Material: GLOWSTONE_DUST
  38.   Display: '&eMagic Dust - %s'
  39.   Lore:
  40.  - '&8ᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐ'
  41.   - '&f›› &7Type: &fMagic Dust'
  42.   - '&f›› &7Level: &f%level%'
  43.   - '&8ᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐ'
  44.   - '&7Increase the success rate by &e%value%%&7.'
  45.   - ''
  46.   - '&e&nPlace on item to upgrade!'
  47.   MaxLevel: 30
  48.   Values:
  49.     Random: false
  50.     RandomRange: '1:3'
  51.     Default: 1
  52.     PerLevel: 0.75
  53.   Enchant:
  54.     Sound: ENTITY_EXPERIENCE_ORB_PICKUP
  55.     Effect: SPELL_WITCH
  56.   Drops:
  57.     Chance: 0.05
  58.     Worlds:
  59.    - world
  60.     - world_nether
  61.     - world_the_end
  62.     PreventFrom:
  63.       EGG: true
  64.       DISPENSE_EGG: true
  65.       SPAWNER: true
  66.       SPAWNER_EGG: true
  67.       SLIME_SPLIT: true
  68.     EntityTypes:
  69.    - ALL
  70. AbyssGem:
  71.   Enabled: true
  72.   Material: SULPHUR
  73.   Display: '&9Abyss Gem - I'
  74.   Lore:
  75.  - '&8ᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐ'
  76.   - '&f> &7Type: &fAbyss Gem'
  77.   - '&8ᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐᚐ'
  78.   - '&7Remove the soulbound/bind from the item.'
  79.   - ''
  80.   - '&9&nPlace on item to unbind!'
  81.   Enchant:
  82.     Sound: ITEM_FIRECHARGE_USE
  83.     Effect: SMOKE_NORMAL
  84.   Drops:
  85.     Chance: 0.05
  86.     Worlds:
  87.    - world
  88.     - world_nether
  89.     - world_the_end
  90.     PreventFrom:
  91.       EGG: true
  92.       DISPENSE_EGG: true
  93.       SPAWNER: true
  94.       SPAWNER_EGG: true
  95.       SLIME_SPLIT: true
  96.     EntityTypes:
  97.    - ALL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement