landsandboat/scripts/enum/behavior.lua
claywar aa30d6afee
Break out status enums to separate files in enum/
Standardize filename format
2023-06-01 08:06:58 -04:00

14 lines
440 B
Lua

-----------------------------------
-- Behavior bits
-----------------------------------
xi = xi or {}
xi.behavior =
{
NONE = 0x000,
NO_DESPAWN = 0x001, -- mob does not despawn on death
STANDBACK = 0x002, -- mob will standback forever
RAISABLE = 0x004, -- mob can be raised via Raise spells
AGGRO_AMBUSH = 0x200, -- mob aggroes by ambush
NO_TURN = 0x400, -- mob does not turn to face target
}