mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 16:03:59 +00:00
24 lines
602 B
C#
24 lines
602 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MikuSB.Data.Excel;
|
|
|
|
[ResourceEntity("card_skin.json")]
|
|
public class CardSkinExcel : ExcelResource
|
|
{
|
|
public uint Genre { get; set; }
|
|
public uint Detail { get; set; }
|
|
public uint Particular { get; set; }
|
|
public uint Level { get; set; }
|
|
public uint Icon { get; set; }
|
|
public int AppearID { get; set; }
|
|
[JsonProperty("profile")] public List<List<int>> Profile { get; set; } = [];
|
|
public override uint GetId()
|
|
{
|
|
return Icon;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.CardSkinData.Add(Icon, this);
|
|
}
|
|
} |