Files
DanhengServer-OpenSource/Common/Data/Excel/RogueNousAeonExcel.cs
Somebody 87d228eb79 Feature:Asynchronous Operation & Formatting Code
- Now the async operation is enabled!
- Code formatted by Resharper plugin <3
2024-07-22 17:12:03 +08:00

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;
}
}