2022-12-16 18:40:57 -06:00
|
|
|
from panda3d.core import *
|
2019-11-02 17:27:54 -05:00
|
|
|
from direct.interval.IntervalGlobal import *
|
|
|
|
from toontown.suit import DistributedLawbotBoss
|
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
from toontown.coghq import CogHQBossBattle
|
|
|
|
|
|
|
|
class LawbotHQBossBattle(CogHQBossBattle.CogHQBossBattle):
|
|
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('LawbotHQBossBattle')
|
|
|
|
|
|
|
|
def __init__(self, loader, parentFSM, doneEvent):
|
|
|
|
CogHQBossBattle.CogHQBossBattle.__init__(self, loader, parentFSM, doneEvent)
|
2022-12-28 17:15:38 -06:00
|
|
|
self.teleportInPosHpr = (-2.84, -99.47, 0, 360, 0, 0)
|
2019-11-02 17:27:54 -05:00
|
|
|
|
|
|
|
def load(self):
|
|
|
|
CogHQBossBattle.CogHQBossBattle.load(self)
|
|
|
|
|
|
|
|
def unload(self):
|
|
|
|
CogHQBossBattle.CogHQBossBattle.unload(self)
|
|
|
|
|
|
|
|
def enter(self, requestStatus):
|
|
|
|
CogHQBossBattle.CogHQBossBattle.enter(self, requestStatus, DistributedLawbotBoss.OneBossCog)
|
|
|
|
|
|
|
|
def exit(self):
|
|
|
|
CogHQBossBattle.CogHQBossBattle.exit(self)
|