mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
24 lines
568 B
C#
24 lines
568 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("ChallengeBossMazeExtra.json")]
|
|
public class ChallengeBossExtraExcel : ExcelResource
|
|
{
|
|
public int ID { get; set; }
|
|
public int MonsterID1 { get; set; }
|
|
public int MonsterID2 { get; set; }
|
|
|
|
|
|
public override int GetId()
|
|
{
|
|
return ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
if (GameData.ChallengeConfigData.ContainsKey(ID))
|
|
{
|
|
var challengeExcel = GameData.ChallengeConfigData[ID];
|
|
challengeExcel.SetBossExcel(this);
|
|
}
|
|
}
|
|
} |