mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
19 lines
509 B
C#
19 lines
509 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("GridFightCombinationBonus.json")]
|
|
public class GridFightCombinationBonusExcel : ExcelResource
|
|
{
|
|
public uint BonusID { get; set; }
|
|
public List<uint> CombinationBonusList { get; set; } = [];
|
|
public List<uint> BonusNumberList { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)BonusID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.GridFightCombinationBonusData.TryAdd(BonusID, this);
|
|
}
|
|
} |