emotion
This commit is contained in:
parent
d92130e93a
commit
50d77db17a
1 changed files with 14 additions and 2 deletions
14
sweebot.py
14
sweebot.py
|
@ -6,7 +6,7 @@ from os import system as ossystem, path, environ, listdir, getcwd
|
||||||
import sqlite3
|
import sqlite3
|
||||||
cwd = getcwd()
|
cwd = getcwd()
|
||||||
import re
|
import re
|
||||||
from random import choice, randint as random
|
from random import choice, randint as random, randrange
|
||||||
import traceback
|
import traceback
|
||||||
import threading
|
import threading
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
@ -194,6 +194,11 @@ irc.connect_irc(
|
||||||
sbconfig = config()
|
sbconfig = config()
|
||||||
threes = [":3", ":3c", "uwu", "owo", "/ᐠ。ꞈ。ᐟ\\", "(✿◠‿◠)"]
|
threes = [":3", ":3c", "uwu", "owo", "/ᐠ。ꞈ。ᐟ\\", "(✿◠‿◠)"]
|
||||||
snacks = ["PepperMintHTMLs", "Dice App candies", "SweeCrypt codes", "Windows 11 Bloomberry flavored icecream"]
|
snacks = ["PepperMintHTMLs", "Dice App candies", "SweeCrypt codes", "Windows 11 Bloomberry flavored icecream"]
|
||||||
|
baps = ["T-T", "Ow!", "Beep!"]
|
||||||
|
pats = ["-w-", "Meep...", "Prr!"]
|
||||||
|
meows_happy = ['Meow!', 'Nyaa~', 'Mrow.', 'Prr! :3', "Mrrp?", "Mreow.", "!woeM", "3: !rrP", "~aayN", "Mew!", "Moew!"]
|
||||||
|
meows_upset = ['Hiss!', "!ssiH", "Grrr..."]
|
||||||
|
happiness = 5
|
||||||
run = 0
|
run = 0
|
||||||
block = 0
|
block = 0
|
||||||
global times
|
global times
|
||||||
|
@ -427,6 +432,13 @@ while True:
|
||||||
run-=1
|
run-=1
|
||||||
update()
|
update()
|
||||||
|
|
||||||
|
elif command[0] == "$petpet" or command[0] == "$headpat":
|
||||||
|
happiness += 1
|
||||||
|
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":
|
||||||
|
|
Loading…
Reference in a new issue