mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
from toontown.toonbase import ToontownGlobals
|
|
import SellbotLegFactorySpec
|
|
import SellbotLegFactoryCogs
|
|
import LawbotLegFactorySpec
|
|
import LawbotLegFactoryCogs
|
|
|
|
def getFactorySpecModule(factoryId):
|
|
return FactorySpecModules[factoryId]
|
|
|
|
|
|
def getCogSpecModule(factoryId):
|
|
return CogSpecModules[factoryId]
|
|
|
|
|
|
FactorySpecModules = {ToontownGlobals.SellbotFactoryInt: SellbotLegFactorySpec,
|
|
ToontownGlobals.LawbotOfficeInt: LawbotLegFactorySpec}
|
|
CogSpecModules = {ToontownGlobals.SellbotFactoryInt: SellbotLegFactoryCogs,
|
|
ToontownGlobals.LawbotOfficeInt: LawbotLegFactoryCogs}
|
|
|
|
if config.GetBool('want-brutal-factory', True):
|
|
import SellbotMegaCorpLegSpec
|
|
import SellbotMegaCorpLegCogs
|
|
FactorySpecModules[ToontownGlobals.SellbotMegaCorpInt] = SellbotMegaCorpLegSpec
|
|
CogSpecModules[ToontownGlobals.SellbotMegaCorpInt] = SellbotMegaCorpLegCogs
|
|
|
|
if __dev__:
|
|
import FactoryMockupSpec
|
|
import FactoryMockupCogs
|
|
FactorySpecModules[ToontownGlobals.MockupFactoryId] = FactoryMockupSpec
|
|
CogSpecModules[ToontownGlobals.MockupFactoryId] = FactoryMockupCogs
|