hood: generate bossbot hq
This commit is contained in:
parent
f3b8669ed5
commit
a3910d34f6
1 changed files with 12 additions and 0 deletions
|
@ -11,6 +11,7 @@ from toontown.ai.WelcomeValleyManagerAI import WelcomeValleyManagerAI
|
||||||
from toontown.building.DistributedTrophyMgrAI import DistributedTrophyMgrAI
|
from toontown.building.DistributedTrophyMgrAI import DistributedTrophyMgrAI
|
||||||
from toontown.catalog.CatalogManagerAI import CatalogManagerAI
|
from toontown.catalog.CatalogManagerAI import CatalogManagerAI
|
||||||
from toontown.coghq.CogSuitManagerAI import CogSuitManagerAI
|
from toontown.coghq.CogSuitManagerAI import CogSuitManagerAI
|
||||||
|
from toontown.coghq.CountryClubManagerAI import CountryClubManagerAI
|
||||||
from toontown.coghq.FactoryManagerAI import FactoryManagerAI
|
from toontown.coghq.FactoryManagerAI import FactoryManagerAI
|
||||||
from toontown.coghq.LawOfficeManagerAI import LawOfficeManagerAI
|
from toontown.coghq.LawOfficeManagerAI import LawOfficeManagerAI
|
||||||
from toontown.coghq.MintManagerAI import MintManagerAI
|
from toontown.coghq.MintManagerAI import MintManagerAI
|
||||||
|
@ -20,6 +21,7 @@ from toontown.distributed.ToontownDistrictStatsAI import ToontownDistrictStatsAI
|
||||||
from toontown.distributed.ToontownInternalRepository import ToontownInternalRepository
|
from toontown.distributed.ToontownInternalRepository import ToontownInternalRepository
|
||||||
from toontown.hood import ZoneUtil
|
from toontown.hood import ZoneUtil
|
||||||
from toontown.hood.BRHoodDataAI import BRHoodDataAI
|
from toontown.hood.BRHoodDataAI import BRHoodDataAI
|
||||||
|
from toontown.hood.BossbotHQDataAI import BossbotHQDataAI
|
||||||
from toontown.hood.CSHoodDataAI import CSHoodDataAI
|
from toontown.hood.CSHoodDataAI import CSHoodDataAI
|
||||||
from toontown.hood.CashbotHQDataAI import CashbotHQDataAI
|
from toontown.hood.CashbotHQDataAI import CashbotHQDataAI
|
||||||
from toontown.hood.DDHoodDataAI import DDHoodDataAI
|
from toontown.hood.DDHoodDataAI import DDHoodDataAI
|
||||||
|
@ -69,6 +71,7 @@ class ToontownAIRepository(ToontownInternalRepository):
|
||||||
self.promotionMgr = None
|
self.promotionMgr = None
|
||||||
self.cogPageManager = None
|
self.cogPageManager = None
|
||||||
self.raceMgr = None
|
self.raceMgr = None
|
||||||
|
self.countryClubMgr = None
|
||||||
self.factoryMgr = None
|
self.factoryMgr = None
|
||||||
self.mintMgr = None
|
self.mintMgr = None
|
||||||
self.lawMgr = None
|
self.lawMgr = None
|
||||||
|
@ -143,6 +146,9 @@ class ToontownAIRepository(ToontownInternalRepository):
|
||||||
# Create our race manager...
|
# Create our race manager...
|
||||||
self.raceMgr = RaceManagerAI(self)
|
self.raceMgr = RaceManagerAI(self)
|
||||||
|
|
||||||
|
# Create our country club manager...
|
||||||
|
self.countryClubMgr = CountryClubManagerAI(self)
|
||||||
|
|
||||||
# Create our factory manager...
|
# Create our factory manager...
|
||||||
self.factoryMgr = FactoryManagerAI(self)
|
self.factoryMgr = FactoryManagerAI(self)
|
||||||
|
|
||||||
|
@ -262,6 +268,12 @@ class ToontownAIRepository(ToontownInternalRepository):
|
||||||
)
|
)
|
||||||
self.generateHood(DLHoodDataAI, ToontownGlobals.DonaldsDreamland)
|
self.generateHood(DLHoodDataAI, ToontownGlobals.DonaldsDreamland)
|
||||||
|
|
||||||
|
# Bossbot HQ
|
||||||
|
self.zoneTable[ToontownGlobals.BossbotHQ] = (
|
||||||
|
(ToontownGlobals.BossbotHQ, 0, 0),
|
||||||
|
)
|
||||||
|
self.generateHood(BossbotHQDataAI, ToontownGlobals.BossbotHQ)
|
||||||
|
|
||||||
# Sellbot HQ
|
# Sellbot HQ
|
||||||
self.zoneTable[ToontownGlobals.SellbotHQ] = (
|
self.zoneTable[ToontownGlobals.SellbotHQ] = (
|
||||||
(ToontownGlobals.SellbotHQ, 0, 1), (ToontownGlobals.SellbotFactoryExt, 0, 1)
|
(ToontownGlobals.SellbotHQ, 0, 1), (ToontownGlobals.SellbotFactoryExt, 0, 1)
|
||||||
|
|
Loading…
Reference in a new issue