This commit is contained in:
Nova Cat 2024-12-01 14:09:33 -08:00
parent eace6ea603
commit 5df08c48f8
5 changed files with 12 additions and 15 deletions

3
cc/bap
View file

@ -1,3 +0,0 @@
from random import choice
a = ['Beep!', 'T-T', 'Ow!']
print(choice(a))

View file

@ -1,3 +0,0 @@
from random import choice
a=['Prr!', "Meep!", '-w-']
print(choice(a))

View file

@ -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))

View file

@ -1,3 +0,0 @@
from random import choice
a=['Prr!', "Meep!", '-w-']
print(choice(a))

View file

@ -432,13 +432,23 @@ while True:
run-=1 run-=1
update() update()
elif command[0] == "$petpet" or command[0] == "$headpat": elif command[0] == "$patpat" or command[0] == "$headpat":
happiness += (1 if happiness != 10 else 0) happiness += (1 if happiness != 10 else 0)
multiline(choice(pats) + " (Emotion: Upset " + multiline(choice(pats) + " (Emotion: Upset " +
("#" * int(happiness)) + ("#" * int(happiness)) +
("-" * int(10-happiness)) + " Happy)", ("-" * int(10-happiness)) + " Happy)",
channel) 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": elif command[0] == "$shell":
if perms == "full": if perms == "full":