-
Notifications
You must be signed in to change notification settings - Fork 4
Mob Type
JSLLW edited this page Oct 17, 2023
·
1 revision
The MobType
enum contains all the types of NPCs used in the game and whether the use melee attack. This enum is used in conjunction with MobTask
class.
These are the mob types and whether they use melee attacks in brackets:
SKELETON(true),
WIZARD(false),
WATER_QUEEN(false),
WATER_SLIME(true),
FIRE_WORM(false),
DRAGON_KNIGHT(true),
COAT(true),
NIGHT_BORNE(true),
ARCANE_ARCHER(false),
ROCKY(true),
NECROMANCER(true),
FIREWIZARD(true);