mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 13:12:30 -06:00
27 lines
No EOL
1,008 B
Python
27 lines
No EOL
1,008 B
Python
from DistributedNPCToonBase import *
|
|
from toontown.chat.ChatGlobals import *
|
|
from toontown.nametag.NametagGlobals import *
|
|
|
|
|
|
class DistributedNPCSecret(DistributedNPCToonBase):
|
|
|
|
def __init__(self, cr):
|
|
DistributedNPCToonBase.__init__(self, cr)
|
|
|
|
def delayDelete(self):
|
|
DistributedNPCToonBase.delayDelete(self)
|
|
DistributedNPCToonBase.disable(self)
|
|
|
|
def handleCollisionSphereEnter(self, collEntry):
|
|
self.sendUpdate('avatarEnter', [])
|
|
|
|
def createBot(self, chatPhraseId):
|
|
chatPhrases = [
|
|
"I'm Kyle, AKA the chicken lord, and I like to make bots!",
|
|
'I love the smell of fresh bots in the morning...',
|
|
'Bots... bots... bots...',
|
|
"Patch the Injector, or we'll continue...",
|
|
"All the kids who sweat it out... it's unbelievable! Let's give them more bots!",
|
|
"Master Milton is sweaty. Here's another bot!"
|
|
]
|
|
self.setChatAbsolute(chatPhrases[chatPhraseId], CFSpeech|CFTimeout) |