Files
DanhengServer-OpenSource/Common/Data/Custom/ChessRogueRoomConfig.cs
Somebody e514af7678 Feature: Better Chess Rogue Room & Fix Bugs
- The room in chess rogue will be more
- Fix a res bug ( recommend to use Andy's res )
2024-07-07 17:15:21 +08:00

29 lines
1023 B
C#

using EggLink.DanhengServer.Enums.Rogue;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EggLink.DanhengServer.Data.Custom
{
public class ChessRogueRoomConfig
{
public int EntranceId { get; set; }
public int RoomPrefix { get; set; }
[JsonConverter(typeof(StringEnumConverter))]
public RogueDLCBlockTypeEnum BlockType { get; set; }
public int AnchorGroup { get; set; }
public int AnchorId { get; set; }
public List<int> DefaultLoadBasicGroup { get; set; } = [];
public List<int> DefaultLoadGroup { get; set; } = [];
public List<int> DoubleEventLoadGroup { get; set; } = []; // override DefaultLoadGroup
public List<int> SelectEventLoadGroup { get; set; } = []; // override DefaultLoadGroup
public List<int> SubMonsterGroup { get; set; } = []; // combine with DefaultLoadGroup
}
}