mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
22 lines
597 B
C#
22 lines
597 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("GridFightMonster.json")]
|
|
public class GridFightMonsterExcel : ExcelResource
|
|
{
|
|
public uint MonsterID { get; set; }
|
|
public uint Star3EliteGroup3 { get; set; }
|
|
public uint MonsterTier { get; set; }
|
|
public uint Star1EliteGroup3 { get; set; }
|
|
public uint Star4EliteGroup3 { get; set; }
|
|
public uint Star2EliteGroup3 { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)MonsterID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.GridFightMonsterData.TryAdd(MonsterID, this);
|
|
}
|
|
} |