Thanks to irdumb for making such an excellent, fun cog. This was long overdue to get this bad boy on v3.
74 lines
3.3 KiB
Python
74 lines
3.3 KiB
Python
FRIENDS = {
|
|
"Snackburr": "ʕ •ᴥ•ʔ <",
|
|
"Pancakes": "₍⸍⸌̣ʷ̣̫⸍̣⸌₎ <",
|
|
"Mr Pickles": "(=`ェ´=) <",
|
|
"Satin": "▼・ᴥ・▼ <",
|
|
"Thunky": "ᘛ⁐̤ᕐᐷ <",
|
|
"Jingle": "꒰∗´꒳`꒱ <",
|
|
"FluffButt": "/ᐠ。ꞈ。ᐟ\ <",
|
|
"Staplefoot": "( ̄(エ) ̄) <",
|
|
}
|
|
|
|
|
|
SNACKBURR_PHRASES = {
|
|
"SNACKTIME": [
|
|
"It's snack time!",
|
|
"I'm back with s'more snacks! Who wants!?",
|
|
"I'm back errbody! Who wants some snacks!?",
|
|
"Woo man those errands are crazy! Anyways, anybody want some snacks?",
|
|
"I got snacks! If nobody wants em, I'm gonna eat em all!!",
|
|
"Hey, I'm back! Anybody in the mood for some snacks?!",
|
|
"Heyyaaayayyyaya! I say Hey, I got snacks!",
|
|
"Heyyaaayayyyaya! I say Hey, What's goin on?... I uh.. I got snacks.",
|
|
"If anybody has reason why these snacks and my belly should not be wed, speak now or forever hold your peace!",
|
|
"Got another snack delivery guys!",
|
|
"Did somebody say snacks?!?! o/",
|
|
"Choo Choo! it's the pb train! Come on over guys!",
|
|
"Snacks are here! Dig in! Who wants a plate?",
|
|
"Pstt.. I got the snacks you were lookin for. <.<",
|
|
"I hope you guys are hungry! Cause i'm loaded to the brim with snacks!!!",
|
|
"I was hungry on the way over so I kinda started without you guys :3 Who wants snacks!?!",
|
|
"Beep beep! I got a snack delivery comin in! Who wants snacks!",
|
|
"Guess what time it is?! It's snacktime!! Who wants?!",
|
|
"Hey check out this sweet stach o' snacks I found! Who wants a cut?",
|
|
"Who's ready to gobble down some snacks!?",
|
|
"So who's gonna help me eat all these snacks? :3",
|
|
],
|
|
"OUT": [
|
|
"I'm out of snacks! I'll be back with more soon.",
|
|
"I'm out of snacks :( I'll be back soon with more!",
|
|
"Aight, I gotta head out! I'll be back with more, don worry :3",
|
|
"Alright, I gotta get back to my errands. I'll see you guys soon!",
|
|
],
|
|
"LONELY": ["I guess you guys don't like snacktimes.. I'll stop comin around."],
|
|
"NO_TAKERS": [
|
|
"I guess nobody wants snacks... more for me!",
|
|
"Guess nobody's here.. I'll just head out then",
|
|
"I don't see anybody.. <.< ... >.> ... All the snacks for me!!",
|
|
"I guess nobody wants snacks huh.. Well, I'll come back later",
|
|
"I guess i'll just come back later..",
|
|
],
|
|
"GIVE": [
|
|
"Here ya go, {0}, here's {1} pb!",
|
|
"Alright here ya go, {0}, {1} pb for you!",
|
|
"Yeah! Here you go, {0}! {1} pb!",
|
|
"Of course {0}! Here's {1} pb!",
|
|
"Ok {0}, here's {1} pb for you. Anyone else want some?",
|
|
"Alllright, {1} pb for {0}!",
|
|
"Hold your horses {0}! Alright, {1} pb for you :)",
|
|
],
|
|
"LAST_SECOND": [
|
|
"Fine fine, {0}, I'll give you {1} of my on-the-road pb.. Cya!",
|
|
"Oh! {0}, you caught me right before I left! Alright, i'll give you {1} of my own pb",
|
|
],
|
|
"GREEDY": [
|
|
"Don't be greedy now! you already got some pb {0}!",
|
|
"You already got your snacks {0}!",
|
|
"Come on {0}, you already got your snacks! We gotta make sure there's some for errbody!",
|
|
],
|
|
"ENABLE": [
|
|
"Oh you guys want snacks?! Aight, I'll come around every so often to hand some out!"
|
|
],
|
|
"DISABLE": ["You guys don't want snacks anymore? Alright, I'll stop comin around."],
|
|
}
|