mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 14:43:59 +00:00
VirCapture fix EXP
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user