1234567891011121314151617181920212223 |
- using System.Threading.Tasks;
- using MafiaTelegramBot.Game.GameRooms;
- using MafiaTelegramBot.Resources;
- using Telegram.Bot.Types;
- namespace MafiaTelegramBot.Game.GameRoles
- {
- public class DetectiveRole : GameRoom.Role
- {
- private int _color = 1;
- public override double ColorRole
- {
- get => _color;
- set => _color = (int) value;
- }
- public override Roles RoleKey => Roles.Detective;
- public override Task NightAction() { return Task.CompletedTask; }
- public override Task ApplyNightActionResult() { return Task.CompletedTask; }
- public override Task SetNightTarget(long userId) { return new (()=>new Message()); }
- public DetectiveRole(GameRoom room, Player player) : base(room, player) { }
- }
- }
|