emotion
This commit is contained in:
parent
eace6ea603
commit
5df08c48f8
5 changed files with 12 additions and 15 deletions
3
cc/bap
3
cc/bap
|
@ -1,3 +0,0 @@
|
|||
from random import choice
|
||||
a = ['Beep!', 'T-T', 'Ow!']
|
||||
print(choice(a))
|
|
@ -1,3 +0,0 @@
|
|||
from random import choice
|
||||
a=['Prr!', "Meep!", '-w-']
|
||||
print(choice(a))
|
4
cc/meow
4
cc/meow
|
@ -1,4 +0,0 @@
|
|||
from sys import argv
|
||||
from random import choice
|
||||
meows = ['Meow!', 'Nyaa~', 'Mrow.', 'Prr! :3', 'Hiss!', "Mrrp?", "Mreow.", "!woeM", "3: !rrP", "!ssiH", "~aayN", "Mew!", "Moew!"]
|
||||
print(argv[1] + ": " + choice(meows))
|
|
@ -1,3 +0,0 @@
|
|||
from random import choice
|
||||
a=['Prr!', "Meep!", '-w-']
|
||||
print(choice(a))
|
14
sweebot.py
14
sweebot.py
|
@ -432,13 +432,23 @@ while True:
|
|||
run-=1
|
||||
update()
|
||||
|
||||
elif command[0] == "$petpet" or command[0] == "$headpat":
|
||||
elif command[0] == "$patpat" or command[0] == "$headpat":
|
||||
happiness += (1 if happiness != 10 else 0)
|
||||
multiline(choice(pats) + " (Emotion: Upset " +
|
||||
("#" * int(happiness)) +
|
||||
("-" * int(10-happiness)) + " Happy)",
|
||||
channel)
|
||||
|
||||
elif command[0] == "$emotion":
|
||||
multiline("Emotion: Upset " +
|
||||
("#" * int(happiness)) +
|
||||
("-" * int(10-happiness)) + " Happy)",
|
||||
channel)
|
||||
elif command[0] == "$bap":
|
||||
happiness -= (1 if happiness != 0 else 0)
|
||||
multiline(choice(pats) + " (Emotion: Upset " +
|
||||
("#" * int(happiness)) +
|
||||
("-" * int(10-happiness)) + " Happy)",
|
||||
channel)
|
||||
|
||||
elif command[0] == "$shell":
|
||||
if perms == "full":
|
||||
|
|
Loading…
Reference in a new issue