20 lines
482 B
Lua
20 lines
482 B
Lua
xi = xi or {}
|
|
|
|
-- NOTE: These values align with the optParam in the event update for a trial, and are the
|
|
-- only groupings supported by the message. These enum is to be used in the dayWeather
|
|
-- condition for trial data.
|
|
---@enum xi.magianElement
|
|
xi.magianElement =
|
|
{
|
|
FIRE = 0,
|
|
ICE = 1,
|
|
WIND = 2,
|
|
EARTH = 3,
|
|
THUNDER = 4,
|
|
WATER = 5,
|
|
LIGHT = 6,
|
|
DARK = 7,
|
|
ANY_LIGHT = 8,
|
|
ANY_DARK = 9,
|
|
ANY = 10,
|
|
}
|