ClimbTowerLogic_CheckCycleLevel TowerLevel_EnterLevel

This commit is contained in:
Kei-Luna
2026-05-23 19:03:52 +09:00
parent 1051de8dcf
commit 1dca65f91a
5 changed files with 197 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using Newtonsoft.Json;
namespace MikuSB.Data.Excel;
[ResourceEntity("challenge/climbtower/climb_tower_time.json")]
public class ClimbTowerTimeExcel : ExcelResource
{
[JsonProperty("ID")] public uint ID { get; set; }
[JsonProperty("StartTime")] public string StartTime { get; set; } = "";
[JsonProperty("EndTime")] public string EndTime { get; set; } = "";
public override uint GetId() => ID;
public override void Loaded()
{
GameData.ClimbTowerTimeData[ID] = this;
}
}