Increase legendary drop rate from raids and world bosses

This commit is contained in:
AlexTheCoder 2017-07-14 06:34:11 -04:00
parent fdaa267f3e
commit 5e540ea995

View File

@ -102,9 +102,9 @@ public class GearManager extends MiniPlugin implements IPacketHandler, Runnable
// Weightings for randomly selecting item type (legendary/weapon/armor/bow)
private static final WeightSet<ItemType> TYPE_WEIGHTS = new WeightSet<ItemType>(
new Weight<>(6, ItemType.LEGENDARY),
new Weight<>(9, ItemType.LEGENDARY),
new Weight<>(9, ItemType.RARE),
new Weight<>(46 - 9, ItemType.ARMOR),
new Weight<>(34, ItemType.ARMOR),
new Weight<>(25, ItemType.WEAPON),
new Weight<>(23, ItemType.BOW)
);