Advertisement
Cool_boy21

config

Sep 18th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.51 KB | None | 0 0
  1. #Wools colors
  2. chances:
  3.     black: &black 10
  4.     red: &red 9
  5.     purpur: &purpur 8
  6.     blue:  &blue 7
  7.     light_blue: &light_blue 6
  8.     dark_green: &dark_green 5
  9.     green: &green 4
  10.     orange: &orange 3
  11.     yellow: &yellow 2
  12.     white: &white 1
  13.     zero: &zero 0
  14. # Usage:
  15. # Standart YAML anchors
  16. # *black = 512
  17. # After reading, plugin will use
  18. # a chance 512 (highest)
  19. # chance 0 - never
  20. # no chance = 0
  21. sets:
  22.     swords:
  23.         iron:
  24.             material: IRON_SWORD
  25.             chance: *purpur
  26.         #gold:
  27.         #    material: GOLD_SWORD
  28.         #    chance: 30
  29.         diamond:
  30.             material: DIAMOND_SWORD
  31.             chance: *yellow
  32.     axes:
  33.         iron:
  34.             material: IRON_AXE
  35.             chance: *blue
  36.         diamond:
  37.             material: DIAMOND_AXE
  38.             chance: *white
  39.     armor:
  40.         spikes_chestplate:
  41.             material: CHAINMAIL_CHESTPLATE
  42.             name: "&2Thorns 3"
  43.             chance: *yellow
  44.             enchantments:
  45.                 THORNS: 3
  46.     food:
  47.     ####Carrots
  48.         golden_carrot_x1:
  49.             material: GOLDEN_CARROT
  50.             amount: 1
  51.             chance: *purpur
  52.         golden_carrot_x2:
  53.             material: GOLDEN_CARROT
  54.             amount: 2
  55.             chance: *light_blue
  56.         golden_carrot_x3:
  57.             material: GOLDEN_CARROT
  58.             amount: 3
  59.             chance: *green
  60.         golden_carrot_x4:
  61.             material: GOLDEN_CARROT
  62.             amount: 4
  63.             chance: *orange
  64.            
  65.     golden_apples:
  66.         golden_apple:
  67.             material: GOLDEN_APPLE
  68.             chance: *green
  69.         super_golden_apple:
  70.             material: GOLDEN_APPLE
  71.             chance: *white
  72.             damage: 1
  73.     sticks:
  74.         blaze_rod:
  75.             material: BLAZE_ROD
  76.             chance: *green
  77.             enchantments:
  78.                 FIRE_ASPECT: 2
  79.         fishing_rod:
  80.             material: FISHING_ROD
  81.             chance: *dark_green
  82.         knockback:
  83.             material: STICK
  84.             chance: *purpur
  85.             enchantments:
  86.                 KNOCKBACK: 2
  87.     arrows:
  88.         arrow_x3:
  89.             material: ARROW
  90.             amount: 3
  91.             chance: *red
  92.         arrow_x5:
  93.             material: ARROW
  94.             amount: 5
  95.             chance: *blue
  96.         arrow_x9:
  97.             material: ARROW
  98.             amount: 9
  99.             chance: *dark_green
  100.     potions:
  101.         speed:
  102.             material: SPLASH_POTION
  103.             chance: *green
  104.             potion:
  105.                 effect: SPEED
  106.                 amplifier: 1
  107.                 duration: 3600
  108.     teleport:
  109.         enderpearl:
  110.             material: ENDERPEARL
  111.             chance: *yellow
  112.         chorus_x1:
  113.             material: CHORUS_FRUIT
  114.             amount: 1
  115.             chance: *light_blue
  116.         chorus_x1:
  117.             material: CHORUS_FRUIT
  118.             amount: 2
  119.             chance: *green
  120.         chorus_x1:
  121.             material: CHORUS_FRUIT
  122.             amount: 3
  123.             chance: *yellow
  124.     exp:
  125.         bottles_x5:
  126.             material: EXP_BOTTLE
  127.             amount: 5
  128.             chance: *blue
  129.         bottles_x10:
  130.             material: EXP_BOTTLE
  131.             amount: 10
  132.             chance: *green
  133.         bottles_x15:
  134.             material: EXP_BOTTLE
  135.             amount: 15
  136.             chance: *white
  137.     snowballs:
  138.         snowballs_x3:
  139.             material: SNOWBALL
  140.             amount: 3
  141.             chance: *blue
  142.         snowballs_x5:
  143.             material: SNOWBALL
  144.             amount: 5
  145.             chance: *dark_green
  146.         snowballs_x7:
  147.             material: SNOWBALL
  148.             amount: 7
  149.             chance: *yellow
  150.     eggs:
  151.         egg_x1:
  152.             material: EGG
  153.             amount: 1
  154.             chance: *green
  155.         egg_x2:
  156.             material: EGG
  157.             amount: 2
  158.             chance: *orange
  159.         egg_x3:
  160.             material: EGG
  161.             amount: 3
  162.             chance: *yellow
  163.     mines:
  164.         mine_x1:
  165.             material: STONE_PRESSURE_PLATE
  166.             amount: 1
  167.             name: Mine
  168.             chance: *light_blue
  169.         mine_x1:
  170.             material: STONE_PRESSURE_PLATE
  171.             amount: 2
  172.             name: Mine
  173.             chance: *green
  174.     effect_arrows:
  175.         spectral_arrow:
  176.             material: SPECTRAL_ARROW
  177.             amount: 3
  178.             chance: *light_blue
  179.         damage1:
  180.             material: TIPPED_ARROW
  181.             chance: *green
  182.             potion:
  183.                 effect: HARM
  184.                 amplifier: 1
  185.         damage2:
  186.             material: TIPPED_ARROW
  187.             chance: *yellow
  188.             potion:
  189.                 effect: HARM
  190.                 amplifier: 2
  191.         poison1:
  192.             material: TIPPED_ARROW
  193.             chance: *yellow
  194.             potion:
  195.                 effect: POISON
  196.                 amplifier: 1
  197.                 duration: 1600
  198.         poison2:
  199.             material: TIPPED_ARROW
  200.             chance: *white
  201.             potion:
  202.                 effect: POISON
  203.                 amplifier: 1
  204.                 duration: 1600
  205.         weakness1:
  206.             material: TIPPED_ARROW
  207.             chance: *green
  208.             potion:
  209.                 effect: WEAKNESS
  210.                 amplifier: 1
  211.                 duration: 1600
  212.     other:
  213.         shield:
  214.             material: SHIELD
  215.             chance: *light_blue
  216. points:
  217.     world: world
  218.     jungle:
  219.             location: [0,100,0]
  220.             sets: [armor, potions]
  221.             time: 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement