Advertisement
jacklin213

config.yml

Jun 4th, 2015
4,473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. debug-mode: false  
  2. language: us-english
  3. messaging:
  4.   tag: '&f[&6HarryPotterSpells&f] '
  5.   info: 'YELLOW'
  6.   warning: 'RED'
  7.  
  8. wand:
  9.  # The material types of the wand
  10.   # Note: Only the first one will be craftable the rest you can only get by using the /wand command
  11.   # List of all materials can be found here https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  12.   types:
  13.   - stick
  14.   - blaze_rod
  15.   - iron_hoe
  16.   # Generate explosion when /wand is used?
  17.   explosion-effect: false  
  18.   # Should wands have the shiny enchantment effect
  19.   enchantment-effect : true
  20.   lore:
  21.    # The name we should give the wand
  22.     name: '&3Wand'
  23.     # Should we display custom lore on the wand (length, core, wood type, etc.)?
  24.     enabled: true
  25.     show-current-spell: true # Should we display the current-spell on the wand itself
  26.     format: # Format for the lore of wands, &x formatting codes can be used
  27.       - '&eCurrent Spell: &6%spell'
  28.       - '&b%length&r inches'
  29.       - '&b%core&r core'
  30.       - '&b%wood&r wood (&o%rarity&r)'
  31.       - '%rigidity'
  32.       - 'Manufactured by &b%manufacturer'
  33.     length: # Wand length settings
  34.       minimum: 9
  35.       maximum: 18
  36.     wood-types: # Edit or add your own wood types in any of the 6 categories below
  37.       1: # Rarest
  38.         - 'Elder'
  39.       2: # Very rare
  40.         - 'Cherry'
  41.       3: # Rare
  42.         - 'Apple'
  43.         - 'Holly'
  44.         - 'Yew'
  45.       4: # Very uncommon
  46.         - 'Acacia'
  47.         - 'Birch'
  48.         - 'Ivy'
  49.         - 'Oak'
  50.         - 'Red'
  51.         - 'Rose'
  52.         - 'Silver Lime'
  53.         - 'Vine'
  54.         - 'Willow'
  55.       5: # Uncommon
  56.         - 'Alder'
  57.         - 'Aspen'
  58.         - 'Beech'
  59.         - 'Blackthorn'
  60.         - 'Black Walnut'
  61.         - 'Cedar'
  62.         - 'Cypress'
  63.         - 'Dog'
  64.         - 'Ebony'
  65.         - 'Elm'
  66.         - 'Fir'
  67.         - 'Hawthorn'
  68.         - 'Hazel'
  69.         - 'Hornbeam'
  70.         - 'Larch'
  71.         - 'Laurel'
  72.         - 'Mahogany'
  73.         - 'Maple'
  74.         - 'Pear'
  75.         - 'Poplar'
  76.         - 'Reed'
  77.         - 'Rowan'
  78.         - 'Spruce'
  79.         - 'Sycamore'
  80.         - 'Walnut'
  81.       6: # Common
  82.         - 'Ash'
  83.         - 'Chesnut'
  84.         - 'Pine'
  85.     cores: # Add your own wand core with "Wand_Core: probability". Probability must add up to 1.0
  86.       Dragon_heartstring: 0.3
  87.       Phoenix_feather: 0.0009
  88.       Unicorn_tail_hair: 0.3
  89.       Veela_hair: 0.133
  90.       Thestral_tail_hair: 0.0001
  91.       Troll_whisker: 0.133
  92.       Coral: 0.133
  93.     manufacturers: # Add your own wand manufacturer with "Manufacturer: probability". Probability must add up to 1.0
  94.       Arturo_Cephalopos: 0.0094
  95.       Antioch_Peverell: 0.0005
  96.       Death: 0.0001
  97.       Mykew_Gregorovitch: 0.1
  98.       Jimmy_Kiddell: 0.2
  99.       Ollivander_family: 0.69
  100.     rigidity: # Define your own rigidity by editing or adding any values below
  101.       - 'Very unyielding'
  102.       - 'Quite unyielding'
  103.       - 'Quite springy'
  104.       - 'Very springy'
  105.   crafting:
  106.    # Should we bother making a crafting recipe for the wand?
  107.     enabled: true
  108.     recipe: # The crafting recipe for the wand. Each space represents a slot in the crafting table.
  109.       - ' A '
  110.       - ' B '
  111.       - ' C '
  112.     ingredients: # Mapping of the chars in the recipe to items using material name
  113.       A: 'ghast tear'
  114.       B: 'nether star'
  115.       C: 'stick'
  116.  
  117. # Should we allow spells to be craftable into books?
  118. spells-craftable: true
  119. # If the player should say 'Spellname!' on every spell cast
  120. shout-on-spell-use: false  
  121. # If we should notify the player when they cast a spell
  122. notify-on-spell-use: true  
  123. # The purple particle effect that happens when the spell is cast
  124. spell-particle-toggle: false  
  125. # If a spell is castable on the chatting of 'Spellname!'
  126. spell-castable-with-chat: true  
  127. # The amount of time that the spell should travel in ticks (about 20 ticks a second) before it disappears, Use -1 for it to go forever
  128. spell-effective-time: -1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement