1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| clicli.const.UnitAttr = clicli.const.UnitAttr or {}
|
| clicli.const.UnitAttr["力量"] = "strength"
| clicli.const.UnitAttr["敏捷"] = "agility"
| clicli.const.UnitAttr["智力"] = "intelligence"
| clicli.const.UnitAttr["主属性"] = "main"
|
| ---@enum(key, partial) clicli.Const.UnitAttr
| ---@diagnostic disable-next-line: inject-field
| clicli.const.CustomUnitAttr = {
| ["力量"] = "strength",
| ["敏捷"] = "agility",
| ["智力"] = "intelligence",
| ["主属性"] = "main",
| }
|
|