Poodletooth-iLand/toontown/coghq/CashbotHQBossBattle.py

29 lines
1 KiB
Python
Raw Normal View History

2015-03-03 22:10:12 +00:00
from pandac.PandaModules import *
from direct.interval.IntervalGlobal import *
from toontown.suit import DistributedCashbotBoss
from direct.directnotify import DirectNotifyGlobal
from toontown.coghq import CogHQBossBattle
class CashbotHQBossBattle(CogHQBossBattle.CogHQBossBattle):
notify = DirectNotifyGlobal.directNotify.newCategory('CashbotHQBossBattle')
def __init__(self, loader, parentFSM, doneEvent):
CogHQBossBattle.CogHQBossBattle.__init__(self, loader, parentFSM, doneEvent)
self.teleportInPosHpr = (88, -214, 0, 210, 0, 0)
def load(self):
CogHQBossBattle.CogHQBossBattle.load(self)
def unload(self):
CogHQBossBattle.CogHQBossBattle.unload(self)
def enter(self, requestStatus):
CogHQBossBattle.CogHQBossBattle.enter(self, requestStatus, DistributedCashbotBoss.OneBossCog)
def exit(self):
CogHQBossBattle.CogHQBossBattle.exit(self)
def exitCrane(self):
CogHQBossBattle.CogHQBossBattle.exitCrane(self)
messenger.send('exitCrane')