@Override public void apply(AttributeMap map) { map.putModifier(Attribute.PIERCE, new AttributeModifier(Operation.ADD, 1)); map.putModifier(Attribute.MANA, new AttributeModifier(Operation.MULTIPLY, 1.6)); map.putModifier(Attribute.BURNOUT, new AttributeModifier(Operation.MULTIPLY, 1.6)); }
@Override public void apply(AttributeMap map) { map.putModifier(Attribute.CRIT_CHANCE, new AttributeModifier(Operation.ADD, 0.1)); // 100% Crit Chance ~ map.putModifier(Attribute.MANA, new AttributeModifier(Operation.MULTIPLY, 1.5, Priority.LOW)); map.putModifier( Attribute.BURNOUT, new AttributeModifier(Operation.MULTIPLY, 1.5, Priority.LOW)); }