mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
23 lines
659 B
Python
23 lines
659 B
Python
|
from otp.speedchat.SCTerminal import SCTerminal
|
||
|
from toontown.chat import ResistanceChat
|
||
|
TTSCResistanceMsgEvent = 'TTSCResistanceMsg'
|
||
|
|
||
|
def decodeTTSCResistanceMsg(textId):
|
||
|
return ResistanceChat.getChatText(textId)
|
||
|
|
||
|
|
||
|
class TTSCResistanceTerminal(SCTerminal):
|
||
|
|
||
|
def __init__(self, textId, charges):
|
||
|
SCTerminal.__init__(self)
|
||
|
self.setCharges(charges)
|
||
|
self.textId = textId
|
||
|
self.text = ResistanceChat.getItemText(self.textId)
|
||
|
|
||
|
def isWhisperable(self):
|
||
|
return False
|
||
|
|
||
|
def handleSelect(self):
|
||
|
SCTerminal.handleSelect(self)
|
||
|
messenger.send(self.getEventName(TTSCResistanceMsgEvent), [self.textId])
|