1234567891011121314151617181920212223 |
- using System.Threading.Tasks;
- using MafiaTelegramBot.Game.GameRooms;
- using MafiaTelegramBot.Models;
- using MafiaTelegramBot.Resources;
- using Telegram.Bot.Types;
- namespace MafiaTelegramBot.Game.GameRoles
- {
- public class VillagerRole : GameRoom.Role
- {
- public override Roles RoleKey => Roles.Villager;
-
- protected override async Task<Message> NightAction(Player player)
- {
- //TODO this is what user can do in night phase
- return await Bot.SendWithMarkdown2(player.ChatId, strings.unexpected_error);
- }
- public VillagerRole(GameRoom room) : base(room)
- {
- }
- }
- }
|