Configs and message

Config.yml

#Name after "[BC".
name: '&a&oCrates'
#Price for use crates.
price-for-use: 1000
#List of rotation floating item on right click on the crate.
rotation-items:
- BOW
- DIAMOND_SWORD
- DIRT
- GLASS
- STONE
#Reward items.
rewards:
  Bow:
    #Choose the reward time: item or money.
    RewardType: item 
    #The material name: http://jd.bukkit.org/rb/apidocs/org/bukkit/Material.html
    Item: BOW
    #The data of the material es: WOOD:2 | Item: WOOD Data: 2 | use 0 if the block haven't it.
    Data: 0
    Quantity: 1
    #Enable custom name: true, false.
    ItemHasCustomName: true
    #Custom item name with colors &a=GREEN &l=BOLD &4=DARK_RED ...
    ItemCustomName: '&a&oBow'
    #Enable Enchant: true, false.
    ItemHasEnchant: true
    #Item enchants name: http://jd.bukkit.org/rb/apidocs/org/bukkit/enchantments/Enchantment.html
    ItemEnchant:
    - ARROW_DAMAGE,2
    - ARROW_INFINITE,1
    #Bigger number = high probability.
    #Shorter number = low probabiliity.
    Probability: 1.0
    #Custome give mnessage.
    Message: '&eYou win Bow'
  DiamondSword:
    RewardType: item
    Item: DIAMOND_SWORD
    Data: 0
    Quantity: 1
    ItemHasCustomName: false
    ItemHasEnchant: false
    Probability: 0.1
    Message: '&eYou win DiamondSword'
  Money:
    RewardType: money
    #Amount of money to give.
    Money: 1500.0
    Probability: 0.5
    Message: '&eYou win 1500$'