mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
25 lines
628 B
C#
25 lines
628 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("ChallengeStoryMazeExtra.json")]
|
|
public class ChallengeStoryExtraExcel : ExcelResource
|
|
{
|
|
public int ID { get; set; }
|
|
public uint TurnLimit { get; set; }
|
|
public int ClearScore { get; set; }
|
|
public List<int>? BattleTargetID { get; set; }
|
|
|
|
|
|
public override int GetId()
|
|
{
|
|
return ID;
|
|
}
|
|
|
|
public override void AfterAllDone()
|
|
{
|
|
if (GameData.ChallengeConfigData.ContainsKey(ID))
|
|
{
|
|
var challengeExcel = GameData.ChallengeConfigData[ID];
|
|
challengeExcel.SetStoryExcel(this);
|
|
}
|
|
}
|
|
} |