MoneySync

This commit is contained in:
Kei-Luna
2026-05-27 06:09:29 +09:00
parent 63dc993614
commit a9b57fc1b7
5 changed files with 225 additions and 4 deletions

View File

@@ -10,8 +10,17 @@ public class OtherItemExcel : ExcelResource
public uint Detail { get; set; }
public uint Particular { get; set; }
public uint Level { get; set; }
public string LuaType { get; set; } = "";
[JsonProperty("UseMode")] public JToken? UseModeRaw { get; set; }
[JsonProperty("Param1")] public JToken? Param1Raw { get; set; }
[JsonProperty("GMnum")] public JToken? GMnumRaw { get; set; }
[JsonIgnore]
public uint UseMode => ReadUInt(UseModeRaw);
[JsonIgnore]
public uint Param1 => ReadUInt(Param1Raw);
[JsonIgnore]
public uint GMnum => ReadUInt(GMnumRaw);