mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
22 lines
525 B
C#
22 lines
525 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RogueAeon.json")]
|
|
public class RogueAeonExcel : ExcelResource
|
|
{
|
|
public int AeonID { get; set; }
|
|
public int RogueVersion { get; set; }
|
|
|
|
public int RogueBuffType { get; set; }
|
|
public int BattleEventBuffGroup { get; set; }
|
|
public int BattleEventEnhanceBuffGroup { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return AeonID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RogueAeonData.Add(GetId(), this);
|
|
}
|
|
} |