1
Fork 0
mirror of https://github.com/RYGhub/royal-mifia.git synced 2024-11-22 13:54:19 +00:00
royal-mifia/roles/Royal.py
2017-07-18 00:50:31 +02:00

14 lines
No EOL
362 B
Python

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>"