RuneHive-Game
Loading...
Searching...
No Matches
HawkEyeListener.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.combat.attack.listener.other.prayer.ranged;
2
3import com.runehive.game.world.entity.combat.attack.listener.SimplifiedListener;
4import com.runehive.game.world.entity.mob.Mob;
5
6public class HawkEyeListener extends SimplifiedListener<Mob> {
7
8 @Override
9 public int modifyRangedLevel(Mob attacker, Mob defender, int damage) {
10 return damage * 11 / 10;
11 }
12
13}
Handles the mob class.
Definition Mob.java:66