Pony tweaks

This commit is contained in:
nyuszika7h 2016-04-10 22:10:47 +02:00
parent 7fc0ab9f39
commit 7fa7f8564f
2 changed files with 9 additions and 4 deletions

View File

@ -765,6 +765,7 @@
"plot"
],
"pony_land": "The pony lands on \u0002{0}\u0002.",
"pony_fly": "The pony flies away.",
"vengeful_role": "You are a \u0002vengeful ghost\u0002 who is against the \u0002{0}\u0002.",
"show_role": "You are a{0} \u0002{1}\u0002.",
"original_wolves": "Original wolves: ",

View File

@ -8554,12 +8554,16 @@ def coin(cli, nick, chan, rest):
@cmd("pony", pm=True)
def pony(cli, nick, chan, rest):
"""For entertaining bronies."""
"""Toss a magical pony into the air and see what happens!"""
reply(cli, nick, chan, messages["pony_toss"].format(nick))
pony = random.choice(messages["pony_choices"])
cmsg = messages["pony_land"].format(pony)
reply(cli, nick, chan, cmsg)
if random.random() < 1/3:
reply(cli, nick, chan, messages["pony_fly"])
else:
pony = random.choice(messages["pony_choices"])
cmsg = messages["pony_land"].format(pony)
reply(cli, nick, chan, cmsg)
@cmd("time", pm=True, phases=("join", "day", "night"))
def timeleft(cli, nick, chan, rest):