RuneHive-Game
Loading...
Searching...
No Matches
ScorpiaGuardian.java
Go to the documentation of this file.
1
package
com.runehive.game.world.entity.combat.strategy.npc.boss.scorpia;
2
3
import
com.runehive.game.world.entity.combat.strategy.npc.NpcMeleeStrategy;
4
import
com.runehive.game.world.entity.mob.Mob;
5
import
com.runehive.game.world.entity.mob.npc.Npc;
6
7
public
class
ScorpiaGuardian
extends
NpcMeleeStrategy
{
8
9
@Override
10
public
boolean
canAttack
(
Npc
attacker,
Mob
defender) {
11
return
false
;
12
}
13
14
}
com.runehive.game.world.entity.combat.strategy.npc.NpcMeleeStrategy.NpcMeleeStrategy
NpcMeleeStrategy()
Definition
NpcMeleeStrategy.java:20
com.runehive.game.world.entity.combat.strategy.npc.boss.scorpia.ScorpiaGuardian
Definition
ScorpiaGuardian.java:7
com.runehive.game.world.entity.combat.strategy.npc.boss.scorpia.ScorpiaGuardian.canAttack
boolean canAttack(Npc attacker, Mob defender)
Definition
ScorpiaGuardian.java:10
com.runehive.game.world.entity.mob.Mob
Handles the mob class.
Definition
Mob.java:66
com.runehive.game.world.entity.mob.npc.Npc
Represents a non-player character in the in-game world.
Definition
Npc.java:29