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
|
2017-07-08 12:31:37 +00:00
|
|
|
value = -75
|
2017-07-06 16:49:06 +00:00
|
|
|
|
|
|
|
def __repr__(self) -> str:
|
|
|
|
return "<Role: Terrorista>"
|
|
|
|
|
|
|
|
def ondeath(self, bot, game):
|
|
|
|
# Se è stato ucciso da una votazione, attiva il suo potere
|
|
|
|
if self.player == game.lastlynch:
|
|
|
|
game.message(bot, s.terrorist_kaboom)
|
|
|
|
for selectedplayer in game.players:
|
|
|
|
# Elimina ogni giocatore che sta votando per sè stesso
|
|
|
|
if selectedplayer.votingfor == self.player:
|
|
|
|
game.message(bot, s.terrorist_target_killed.format(target=selectedplayer.tusername,
|
|
|
|
icon=selectedplayer.role.icon,
|
|
|
|
role=selectedplayer.role.name))
|
2017-07-08 12:31:37 +00:00
|
|
|
selectedplayer.kill(bot, game)
|