mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
22 lines
545 B
C#
22 lines
545 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RogueNousAeon.json")]
|
|
public class RogueNousAeonExcel : ExcelResource
|
|
{
|
|
public int AeonID { get; set; }
|
|
public int RogueBuffType { get; set; }
|
|
public List<int> EffectParam1 { get; set; } = [];
|
|
|
|
public int BattleEventBuffGroup { get; set; }
|
|
public int BattleEventEnhanceBuffGroup { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return AeonID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RogueNousAeonData[AeonID] = this;
|
|
}
|
|
} |