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