VirCapture fix EXP

This commit is contained in:
Kei-Luna
2026-05-25 10:20:19 +09:00
parent 2047758c18
commit 2f1b6d35da
4 changed files with 130 additions and 5 deletions

View File

@@ -12,6 +12,7 @@ public class MonsterCardExcel : ExcelResource
[JsonProperty("Color")] public uint Color { get; set; }
[JsonProperty("RikiId")] public uint RikiId { get; set; }
[JsonProperty("CostValue")] public uint CostValue { get; set; }
[JsonProperty("Exp")] public uint Exp { get; set; }
[JsonIgnore]
public ulong TemplateId => GameResourceTemplateId.FromGdpl(Genre, Detail, Particular, Level);

View File

@@ -6,8 +6,10 @@ namespace MikuSB.Data.Excel;
public class VirCaptureLevelListExcel : ExcelResource
{
[JsonProperty("Level")] public uint Level { get; set; }
[JsonProperty("Exp")] public uint Exp { get; set; }
[JsonProperty("Num")] public uint Num { get; set; }
[JsonProperty("MaxCost")] public uint MaxCost { get; set; }
[JsonProperty("ExpUp")] public double ExpUp { get; set; }
public override uint GetId() => Level;

View File

@@ -9,6 +9,7 @@ public class VirCaptureTimeExcel : ExcelResource
[JsonProperty("StartTime")] public string StartTime { get; set; } = "";
[JsonProperty("EndTime")] public string EndTime { get; set; } = "";
[JsonProperty("CaptureRegionId")] public List<uint> CaptureRegionId { get; set; } = [];
[JsonProperty("MaxExp")] public uint MaxExp { get; set; }
public override uint GetId() => Id;