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

24 lines
1 KiB
Python
Raw Normal View History

2017-07-06 16:49:06 +00:00
from .Role import Role
import strings as s
class Terrorista(Role):
"""Il terrorista è un mifioso che può uccidere in un solo modo: facendosi uccidere dai Royal.
Se riesce, vince la partita e uccide tutti quelli che lo hanno votato."""
icon = s.terrorist_icon
team = "Evil"
name = s.terrorist_name
powerdesc = s.terrorist_power_description
def __repr__(self) -> str:
return "<Role: Terrorista>"
def ondeath(self):
2017-07-06 16:49:06 +00:00
# Se è stato ucciso da una votazione, attiva il suo potere
if self.player == self.player.game.lastlynch:
self.player.game.message(s.terrorist_kaboom)
for selectedplayer in self.player.game.players:
2017-07-06 16:49:06 +00:00
# Elimina ogni giocatore che sta votando per sè stesso
if selectedplayer.votingfor == self.player:
self.player.game.message(s.terrorist_target_killed.format(target=selectedplayer.tusername, icon=selectedplayer.role.icon, role=selectedplayer.role.name))
2017-07-19 18:26:21 +00:00
selectedplayer.kill()