mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
26 lines
648 B
C#
26 lines
648 B
C#
using EggLink.DanhengServer.Enums.GridFight;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("GridFightForge.json")]
|
|
public class GridFightForgeExcel : ExcelResource
|
|
{
|
|
public uint ID { get; set; }
|
|
public uint EquipNum { get; set; }
|
|
public List<uint> ParamList { get; set; } = [];
|
|
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public GridFightForgeFuncTypeEnum FuncType { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.GridFightForgeData.TryAdd(ID, this);
|
|
}
|
|
} |