mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 05:44:34 +01:00
feat: add handbook
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -8,6 +8,7 @@ public class ElfAstraMateDataExcel : ExcelResource
|
||||
public int ElfID { get; set; }
|
||||
public int MaxLevel { get; set; }
|
||||
public int MaxRarity { get; set; }
|
||||
public HashName FullName { get; set; } = new();
|
||||
|
||||
[JsonIgnore] public List<ElfSkillDataExcel> SkillList = [];
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@ public class StigmataDataExcel : ExcelResource
|
||||
[JsonPropertyName("quality")] public int Quality { get; set; }
|
||||
[JsonPropertyName("isSecurityProtect")] public bool IsSecurityProtect { get; set; }
|
||||
[JsonPropertyName("protect")] public bool Protect { get; set; }
|
||||
[JsonPropertyName("displayTitle")] public HashName DisplayTitle { get; set; } = new();
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
|
||||
@@ -12,6 +12,7 @@ public class WeaponDataExcel : ExcelResource
|
||||
[JsonPropertyName("maxRarity")] public int MaxRarity { get; set; }
|
||||
[JsonPropertyName("evoID")] public int EvoID { get; set; }
|
||||
[JsonPropertyName("protect")] public bool Protect { get; set; }
|
||||
[JsonPropertyName("displayTitle")] public HashName DisplayTitle { get; set; } = new();
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user