mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 06:23:58 +00:00
ClimbTowerLogic_SetLevelDiff
This commit is contained in:
18
Common/Data/Excel/ClimbTowerDiffExcel.cs
Normal file
18
Common/Data/Excel/ClimbTowerDiffExcel.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
@@ -34,6 +34,7 @@ public static class GameData
|
||||
public static Dictionary<uint, BossPvpBossExcel> BossPvpBossData { get; private set; } = [];
|
||||
public static Dictionary<uint, BossPvpNumExcel> BossPvpNumData { get; private set; } = [];
|
||||
public static Dictionary<uint, ClimbTowerTimeExcel> ClimbTowerTimeData { get; private set; } = [];
|
||||
public static Dictionary<uint, ClimbTowerDiffExcel> ClimbTowerDiffData { get; private set; } = [];
|
||||
public static Dictionary<uint, Dictionary<int, ClimbTowerAwardExcel>> ClimbTowerAwardData { get; private set; } = [];
|
||||
public static Dictionary<uint, ClimbTowerLevelOrderExcel> ClimbTowerLevelOrderData { get; private set; } = [];
|
||||
public static Dictionary<uint, TowerLevelExcel> TowerLevelData { get; private set; } = [];
|
||||
|
||||
Reference in New Issue
Block a user