Implement TowerEvent

This commit is contained in:
Kei-Luna
2026-05-24 08:02:59 +09:00
parent bc399f6afe
commit e4398e17b4
5 changed files with 149 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using Newtonsoft.Json;
namespace MikuSB.Data.Excel;
[ResourceEntity("challenge/tower_event/level.json")]
public class TowerEventLevelExcel : ExcelResource
{
[JsonProperty("ID")] public uint ID { get; set; }
[JsonProperty("MapID")] public uint MapID { get; set; }
[JsonProperty("FightID")] public uint FightID { get; set; }
[JsonProperty("TaskPath")] public string TaskPath { get; set; } = "";
[JsonProperty("ConsumeVigor")] public List<int> ConsumeVigor { get; set; } = [];
public override uint GetId() => ID;
public override void Loaded()
{
GameData.TowerEventLevelData[ID] = this;
}
}