mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
19 lines
506 B
C#
19 lines
506 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RogueMonsterGroup.json")]
|
|
public class RogueMonsterGroupExcel : ExcelResource
|
|
{
|
|
public Dictionary<string, double> RogueMonsterListAndWeight { get; set; } = [];
|
|
public int RogueMonsterGroupID { get; set; }
|
|
public int EliteGroup { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return RogueMonsterGroupID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RogueMonsterGroupData.Add(GetId(), this);
|
|
}
|
|
} |