Files
DanhengServer-OpenSource/Common/Data/Excel/RogueDLCBossDecayExcel.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

26 lines
633 B
C#

using EggLink.DanhengServer.Enums.Rogue;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace EggLink.DanhengServer.Data.Excel;
[ResourceEntity("RogueDLCBossDecay.json")]
public class RogueDLCBossDecayExcel : ExcelResource
{
public int BossDecayID { get; set; }
[JsonConverter(typeof(StringEnumConverter))]
public BossDecayEffectTypeEnum EffectType { get; set; }
public List<int> EffectParamList { get; set; } = [];
public override int GetId()
{
return BossDecayID;
}
public override void Loaded()
{
GameData.RogueDLCBossDecayData.Add(GetId(), this);
}
}