Files
DanhengServer-OpenSource/Common/Database/ChessRogue/ChessRogueNousData.cs
Somebody b84800bc80 Upload to Game 2.5.0
- Fix ChessRogue Final Boss
2024-09-14 19:46:42 +08:00

32 lines
958 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
};
}
}