feat: add elf handler

This commit is contained in:
Naruse
2025-06-17 09:24:55 +08:00
parent 22cbf44bcf
commit a9c362f224
9 changed files with 198 additions and 718 deletions

View File

@@ -3,12 +3,12 @@
[ResourceEntity("ElfSkillData.json")]
public class ElfSkillDataExcel : ExcelResource
{
public uint ElfSkillID { get; set; }
public uint MaxLv { get; set; }
public List<uint> ElfIds { get; set; } = [];
public int ElfSkillID { get; set; }
public int MaxLv { get; set; }
public List<int> ElfIDList { get; set; } = [];
public override int GetId()
{
return (int)ElfSkillID;
return ElfSkillID;
}
public override void Loaded()