Esempio n. 1
0
    def accion_nocturna(partida):

        text = Lang.get_text("lobos_noche")
        potenciales_victimas = []

        for potencial_potencial_victima in partida.jugadores:

            if potencial_potencial_victima.personaje.bando != "lobos":
                potenciales_victimas.append(potencial_potencial_victima)

        return text, potenciales_victimas
Esempio n. 2
0
    def _text_explicacion(self):

        return Lang.get_text("explicacion_inicial-%s" % self.nombre)