feat: add handbook

This commit is contained in:
Naruse
2025-06-17 20:56:35 +08:00
parent 6fbeb1d34d
commit 8d4c1f028f
5 changed files with 71 additions and 3 deletions

View File

@@ -10,8 +10,8 @@ public class AvatarDataExcel : ExcelResource
[JsonPropertyName("initialWeapon")] public int InitialWeapon { get; set; }
[JsonPropertyName("skillList")] public List<int> SkillList { get; set; } = [];
public string FaceAnimationGroupName { get; set; } = "";
public int DefaultDressId { get; set; }
[JsonPropertyName("fullName")] public HashName FullName { get; set; } = new();
public override int GetId()
{
@@ -26,4 +26,9 @@ public class AvatarDataExcel : ExcelResource
}
}
}
public class HashName
{
public long hash { get; set; } = 0;
}