RuneHive-Game
Loading...
Searching...
No Matches
Tstanon.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.combat.strategy.npc.boss.kril;
2
3import com.runehive.game.world.entity.combat.hit.CombatHit;
4import com.runehive.game.world.entity.combat.strategy.npc.NpcMeleeStrategy;
5import com.runehive.game.world.entity.mob.Mob;
6import com.runehive.game.world.entity.mob.npc.Npc;
7
8public class Tstanon extends NpcMeleeStrategy {
9
10 @Override
11 public CombatHit[] getHits(Npc attacker, Mob defender) {
12 return new CombatHit[] { nextMeleeHit(attacker, defender, 15) };
13 }
14
15}
A wrapper for a Hit object, adding additional variables for hit and hitsplat delays.
Handles the mob class.
Definition Mob.java:66
Represents a non-player character in the in-game world.
Definition Npc.java:29