ClimbTowerLogic_SetLevelDiff

This commit is contained in:
Kei-Luna
2026-05-24 07:11:29 +09:00
parent 55bfadbd3e
commit 772c272fb4
3 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using Newtonsoft.Json;
namespace MikuSB.Data.Excel;
[ResourceEntity("challenge/climbtower/climb_tower_diff.json")]
public class ClimbTowerDiffExcel : ExcelResource
{
[JsonProperty("ID")] public uint ID { get; set; }
[JsonProperty("Level1")] public int Level1 { get; set; }
[JsonProperty("Level2")] public int Level2 { get; set; }
public override uint GetId() => ID;
public override void Loaded()
{
GameData.ClimbTowerDiffData[ID] = this;
}
}