mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
21 lines
528 B
C#
21 lines
528 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RogueNousSubStory.json")]
|
|
public class RogueNousSubStoryExcel : ExcelResource
|
|
{
|
|
public int StoryID { get; set; }
|
|
public int Layer { get; set; }
|
|
public int MaxNousValue { get; set; }
|
|
public List<int> NextIDList { get; set; } = [];
|
|
public int RequireArea { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return StoryID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RogueNousSubStoryData.Add(GetId(), this);
|
|
}
|
|
} |