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

44 lines
1.5 KiB
Python
Raw Normal View History

2017-07-06 16:49:06 +00:00
from .Role import Role
import strings as s
import random
2017-07-06 16:49:06 +00:00
class Investigatore(Role):
"""L'investigatore può indagare sul vero ruolo di una persona una volta al giorno."""
icon = s.detective_icon
team = 'Good'
name = s.detective_name
powerdesc = s.detective_power_description
def __init__(self, player):
super().__init__(player)
self.power_was_used = False
2017-07-06 16:49:06 +00:00
def __repr__(self) -> str:
return "<Role: Investigatore>"
2017-07-06 16:49:06 +00:00
def power(self, arg):
2017-07-06 16:49:06 +00:00
# Indaga sul vero ruolo di una persona, se sono ancora disponibili usi del potere.
if self.power_was_used:
2017-07-06 16:49:06 +00:00
# Non hai abbastanza cariche!
self.player.message(s.error_no_uses)
2017-07-06 16:49:06 +00:00
return
target = self.player.game.findplayerbyusername(arg)
2017-07-06 16:49:06 +00:00
if target is None:
# Username non valido
self.player.message(s.error_username)
2017-07-06 16:49:06 +00:00
return
# Utilizza il potere su quella persona
self.power_was_used = True
# Tira per investigare
2017-12-28 23:48:50 +00:00
target_score = random.randrange(0, 25) + 1
score = random.randrange(0, 100) + 1
2017-12-28 23:48:50 +00:00
if score > target_score:
role = target.role.name
else:
role = self.player.game.getrandomrole().name
2017-12-28 23:48:50 +00:00
self.player.message(s.detective_discovery.format(target_score=100-target_score, target=target.tusername, icon=target.role.icon, role=role))
2017-07-06 16:49:06 +00:00
def onendday(self):
2017-07-06 16:49:06 +00:00
# Ripristina il potere
self.power_was_used = False