Pony tweaks
This commit is contained in:
parent
7fc0ab9f39
commit
7fa7f8564f
@ -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: ",
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user