mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
30 lines
663 B
C#
30 lines
663 B
C#
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("MazeBuff.json,AvatarMazeBuff.json,AvatarMazeBuffLD.json", true)]
|
|
public class MazeBuffExcel : ExcelResource
|
|
{
|
|
public int ID { get; set; }
|
|
public int Lv { get; set; }
|
|
public string ModifierName { get; set; } = string.Empty;
|
|
|
|
public override int GetId()
|
|
{
|
|
return ID * 10 + Lv;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.MazeBuffData.TryAdd(GetId(), this);
|
|
}
|
|
|
|
public BattleBuff ToProto()
|
|
{
|
|
return new BattleBuff
|
|
{
|
|
Id = (uint)ID,
|
|
Level = (uint)Lv
|
|
};
|
|
}
|
|
} |