mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 08:43:59 +00:00
ClimbTowerLogic_CheckCycleLevel TowerLevel_EnterLevel
This commit is contained in:
20
Common/Data/Excel/TowerLevelExcel.cs
Normal file
20
Common/Data/Excel/TowerLevelExcel.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace MikuSB.Data.Excel;
|
||||
|
||||
[ResourceEntity("challenge/climbtower/level.json")]
|
||||
public class TowerLevelExcel : 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.TowerLevelData[ID] = this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user