1234567891011121314151617181920 |
- using MafiaTelegramBot.Game.GameRooms;
- using MafiaTelegramBot.Resources;
- namespace MafiaTelegramBot.Game.GameRoles
- {
- public class VillagerRole : GameRoom.Role
- {
- public override Roles RoleKey => Roles.Villager;
- public override int RankingCost { get; } = 10;
-
- private int _color = 1;
- public override int ColorRole
- {
- get => _color;
- set => _color = (int) value;
- }
- public VillagerRole(GameRoom room, Player player) : base(room, player) { }
- }
- }
|