landsandboat/scripts/enum/mob_difficulty.lua

18 lines
416 B
Lua
Raw Permalink Normal View History

-----------------------------------
-- Mob Difficulty (from /check)
-----------------------------------
xi = xi or {}
---@enum xi.mobDifficulty
xi.mobDifficulty =
{
TOO_WEAK = 0,
INCREDIBLY_EASY_PREY = 1,
EASY_PREY = 2,
DECENT_CHALLENGE = 3,
EVEN_MATCH = 4,
TOUGH = 5,
VERY_TOUGH = 6,
INCREDIBLY_TOUGH = 7,
}