mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
19 lines
415 B
C#
19 lines
415 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RelicExpItem.json")]
|
|
public class RelicExpItemExcel : ExcelResource
|
|
{
|
|
public int ItemID { get; set; }
|
|
public int ExpProvide { get; set; }
|
|
public int CoinCost { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return ItemID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RelicExpItemData[ItemID] = this;
|
|
}
|
|
} |