mirror of
https://github.com/RYGhub/royal-mifia.git
synced 2024-11-22 22:04:18 +00:00
14 lines
362 B
Python
14 lines
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>"
|