mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
22 lines
652 B
C#
22 lines
652 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace KianaBH.Data.Excel;
|
|
|
|
[ResourceEntity("AvatarSubSkillData.json")]
|
|
public class AvatarSubSkillDataExcel : ExcelResource
|
|
{
|
|
[JsonPropertyName("skillId")] public int SkillId { get; set; }
|
|
[JsonPropertyName("unlockScoin")] public int UnlockScoin { get; set; }
|
|
[JsonPropertyName("maxLv")] public int MaxLv { get; set; }
|
|
[JsonPropertyName("avatarSubSkillId")] public int AvatarSubSkillId { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return AvatarSubSkillId;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.AvatarSubSkillData.Add(AvatarSubSkillId, this);
|
|
}
|
|
} |