1
Fork 0
mirror of https://github.com/RYGhub/royal-mifia.git synced 2024-11-22 22:04:18 +00:00
royal-mifia/roles/Royal.py

14 lines
362 B
Python
Raw Normal View History

2017-07-06 16:49:06 +00:00
from .Role import Role
import strings as s
class Royal(Role):
"""Un membro della Royal Games. Il ruolo principale, non ha alcun potere se non quello di votare."""
icon = s.royal_icon
team = 'Good'
name = s.royal_name
def __init__(self, player):
super().__init__(player)
def __repr__(self) -> str:
return "<Role: Royal>"