Mob Type - UQcsse3200/2023-studio-3 GitHub Wiki
Overview
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);