mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 00:37:54 +00:00
12 lines
497 B
Python
Executable file
12 lines
497 B
Python
Executable file
from direct.directnotify import DirectNotifyGlobal
|
|
from toontown.toonbase import TTLocalizer
|
|
from toontown.battle import DistributedBattleBldg
|
|
|
|
class DistributedCogdoBattleBldg(DistributedBattleBldg.DistributedBattleBldg):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedCogdoBattleBldg')
|
|
|
|
def __init__(self, cr):
|
|
DistributedBattleBldg.DistributedBattleBldg.__init__(self, cr)
|
|
|
|
def getBossBattleTaunt(self):
|
|
return TTLocalizer.CogdoBattleBldgBossTaunt
|