33 lines
714 B
Lua
33 lines
714 B
Lua
--[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
|
|
local ____exports = {}
|
|
____exports.EQUIPMENT_STATE_VERSION = 1
|
|
____exports.EQUIPMENT_MAX_UPGRADE_STAGE = 5
|
|
____exports.EQUIPMENT_LOADOUT_COUNT = 3
|
|
____exports.EQUIPMENT_SLOTS = {
|
|
"helmet",
|
|
"armor",
|
|
"weapon",
|
|
"boots",
|
|
"ring",
|
|
"necklace"
|
|
}
|
|
____exports.EQUIPMENT_STAT_POOL = {
|
|
"luck_pct",
|
|
"strength_pct",
|
|
"intellect_pct",
|
|
"damage_pct",
|
|
"damage_reduction_pct",
|
|
"spell_amp_pct"
|
|
}
|
|
function ____exports.createEmptyLoadout(self)
|
|
return {
|
|
helmet = nil,
|
|
armor = nil,
|
|
weapon = nil,
|
|
boots = nil,
|
|
ring = nil,
|
|
necklace = nil
|
|
}
|
|
end
|
|
return ____exports
|