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

22 lines
763 B
Python

from .Role import Role
from .SignoreDelCaos import SignoreDelCaos
import strings as s
class Servitore(Role):
"""Il servitore del Caos è il sottoposto al Signore del Caos.
Se non ci sono Signori del Caos in partita diventa Signore del Caos."""
icon = s.chaos_servant_icon
team = 'Chaos'
name = s.chaos_servant_name
powerdesc = s.chaos_servant_power_description
def __repr__(self) -> str:
return "<Role: Servitore del Caos>"
def onendday(self):
for chaoslord in self.player.game.playersinrole["SignoreDelCaos"]:
if chaoslord.alive:
break
else:
self.player.game.changerole(self.player, SignoreDelCaos)
self.player.game.message(s.chaos_servant_inherited)