Implement Neuronics

This commit is contained in:
Kei-Luna
2026-04-28 14:46:06 +09:00
parent 5f92f2c116
commit 1e4d93bab1
7 changed files with 394 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ public class PlayerGameData : BaseDatabaseDataHelper
public Sex Gender { get; set; } = Sex.Female;
public uint Vigor { get; set; } = 240;
[SugarColumn(IsJson = true)] public List<PlayerAttr> Attrs { get; set; } = [];
[SugarColumn(IsJson = true)] public List<PlayerStrAttr> StrAttrs { get; set; } = [];
[SugarColumn(IsJson = true)] public List<ulong> ShowItems { get; set; } = [];
public static PlayerGameData? GetPlayerByUid(long uid)
@@ -45,4 +46,11 @@ public class PlayerAttr
public uint Gid { get; set; }
public uint Sid { get; set; }
public uint Val { get; set; }
}
public class PlayerStrAttr
{
public uint Gid { get; set; }
public uint Sid { get; set; }
public string Val { get; set; } = "";
}