1
0
Fork 0
forked from swee/MeowNex
This commit is contained in:
Nova Cat 2024-12-01 14:27:42 -08:00
parent 90669fd5f5
commit 2af1ca9f28

View file

@ -433,18 +433,26 @@ while True:
update()
elif command[0] == "$patpat" or command[0] == "$headpat":
happiness += (1 if happiness != 10 else 0)
if len(command) == 2:
for i in range(1,int(command[1])):
happiness += (1 if happiness != 10 else 0)
elif len(command) == 1:
happiness += (1 if happiness != 10 else 0)
multiline(choice(pats) + " (Emotion: Upset " +
("#" * int(happiness)) +
("-" * int(10-happiness)) + " Happy)",
channel)
("#" * 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)
if len(command) == 2:
for i in range(1,int(command[1])):
happiness -= (1 if happiness != 10 else 0)
elif len(command) == 1:
happiness -= (1 if happiness != 10 else 0)
multiline(choice(baps) + " (Emotion: Upset " +
("#" * int(happiness)) +
("-" * int(10-happiness)) + " Happy)",