mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
19 lines
425 B
C#
19 lines
425 B
C#
using EggLink.DanhengServer.Data.Custom;
|
|
|
|
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RogueTournBuff.json")]
|
|
public class RogueTournBuffExcel : BaseRogueBuffExcel
|
|
{
|
|
public bool IsInHandbook { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return MazeBuffID * 100 + MazeBuffLevel;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RogueBuffData.TryAdd(GetId(), this);
|
|
}
|
|
} |