Files
DanhengServer-OpenSource/Common/Database/ChessRogue/ChessRogueNousData.cs
2024-09-15 20:04:40 +08:00

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
};
}
}