mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
19 lines
496 B
C#
19 lines
496 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("MonsterTemplateConfig.json")]
|
|
public class MonsterTemplateConfigExcel : ExcelResource
|
|
{
|
|
public int MonsterTemplateID { get; set; }
|
|
public List<int> NPCMonsterList { get; set; } = [];
|
|
public int MonsterCampID { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return MonsterTemplateID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.MonsterTemplateConfigData.Add(MonsterTemplateID, this);
|
|
}
|
|
} |