balanaced brawler

This commit is contained in:
Mini-Chiss 2015-08-13 21:03:48 +02:00
parent 7157aaee2b
commit 80588a308b
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ public class PerkMammoth extends Perk
{ {
super("Mammoth", new String[] super("Mammoth", new String[]
{ {
C.cGray + "Take 50% knockback and deal 150% knockback", C.cGray + "Take 75% knockback and deal 125% knockback",
}); });
} }
@ -30,7 +30,7 @@ public class PerkMammoth extends Perk
if (!Kit.HasKit(damager)) if (!Kit.HasKit(damager))
return; return;
event.AddKnockback(GetName(), 1.5d); event.AddKnockback(GetName(), 1.25d);
} }
@EventHandler(priority = EventPriority.HIGH) @EventHandler(priority = EventPriority.HIGH)
@ -45,6 +45,6 @@ public class PerkMammoth extends Perk
if (!Kit.HasKit(damagee)) if (!Kit.HasKit(damagee))
return; return;
event.AddKnockback(GetName(), 0.5d); event.AddKnockback(GetName(), 0.75d);
} }
} }