1
Fork 0
mirror of https://github.com/RYGhub/royal-mifia.git synced 2024-11-22 13:54:19 +00:00

Altre cose

This commit is contained in:
Steffo 2016-04-23 17:12:52 +02:00
parent 8974a36f0c
commit 8e885fc91d

29
main.py
View file

@ -58,22 +58,17 @@ class Investigatore(Role):
name = "Investigatore"
def power(self, bot, game, player, arg):
# Visualizza il ruolo di qualcuno
pass
def onendday(self, bot, game):
# Ripristina il potere
self.poweruses = 1
class Angelo(Role):
icon = "\U0001F607"
team = 'Good'
name = "Angelo"
def power(self, bot, game, player, arg):
# Salva qualcuno dalla morte!
pass
if self.poweruses > 0:
target = game.findplayerbyusername(arg)
if target is not None:
self.poweruses -= 1
player.message(bot, "{0} è un {1} {2}.\n"
"Puoi usare il tuo potere ancora {3} volte oggi."
.format(target.tusername, target.role.icon, target.role.name, self.poweruses))
else:
player.message(bot, "Il nome utente specificato non esiste.")
else:
player.message(bot, "Non puoi più usare il tuo potere oggi.")
def onendday(self, bot, game):
# Ripristina il potere
@ -269,7 +264,7 @@ def endjoin(bot, update):
if game is not None and game.phase is 'Join' and update.message.from_user['id'] == game.adminid:
game.phase = 'Voting'
bot.sendMessage(update.message.chat['id'], "La fase di join è terminata.")
game.assignroles(1, 0, 0)
game.assignroles(0, 1, 0)
bot.sendMessage(update.message.chat['id'], "I ruoli sono stati assegnati.")