mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
33 lines
977 B
C#
33 lines
977 B
C#
using EggLink.DanhengServer.Proto;
|
|
using SqlSugar;
|
|
|
|
namespace EggLink.DanhengServer.Database.ChessRogue;
|
|
|
|
[SugarTable("ChessRogueNous")]
|
|
public class ChessRogueNousData : BaseDatabaseDataHelper
|
|
{
|
|
[SugarColumn(IsJson = true)] public Dictionary<int, ChessRogueNousDiceData> RogueDiceData { get; set; } = [];
|
|
}
|
|
|
|
public class ChessRogueNousDiceData
|
|
{
|
|
public int BranchId { get; set; }
|
|
public Dictionary<int, int> Surfaces { get; set; } = [];
|
|
public int AreaId { get; set; }
|
|
public int DifficultyLevel { get; set; }
|
|
|
|
public ChessRogueDice ToProto()
|
|
{
|
|
return new ChessRogueDice
|
|
{
|
|
BranchId = (uint)BranchId,
|
|
SurfaceList =
|
|
{
|
|
Surfaces.Select(x => new ChessRogueDiceSurfaceInfo
|
|
{ DiceSlotId = (uint)x.Key, DiceSurfaceId = (uint)x.Value })
|
|
}
|
|
//MaxAreaId = (uint)AreaId,
|
|
//MaxDifficultyLevel = (uint)DifficultyLevel
|
|
};
|
|
}
|
|
} |