Unlock many chapters

This commit is contained in:
Kei-Luna
2026-04-26 14:04:10 +09:00
parent f4692a771d
commit d3e6b479c8
3 changed files with 18 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
namespace MikuSB.Data.Excel;
[ResourceEntity("level.json")]
public class ChapterLevelExcel : ExcelResource
{
public uint ID { get; set; }
public override uint GetId() => ID;
public override void Loaded()
{
GameData.ChapterLevelData.Add(ID, this);
}
}

View File

@@ -11,6 +11,7 @@ public static class GameData
public static Dictionary<int, UpgradeExpExcel> UpgradeExpData { get; private set; } = [];
public static Dictionary<int, BreakLevelLimitExcel> BreakLevelLimitData { get; private set; } = [];
public static Dictionary<int, RecycleExcel> RecycleData { get; private set; } = [];
public static Dictionary<uint, ChapterLevelExcel> ChapterLevelData { get; private set; } = [];
}
public static class GameResourceTemplateId