Poodletooth-iLand/toontown/coghq/FactorySpecs.py

31 lines
1.1 KiB
Python
Raw Normal View History

2015-03-03 16:10:12 -06:00
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):
2015-03-04 04:42:16 -06:00
import SellbotMegaCorpLegSpec
import SellbotMegaCorpLegCogs
FactorySpecModules[ToontownGlobals.SellbotMegaCorpInt] = SellbotMegaCorpLegSpec
CogSpecModules[ToontownGlobals.SellbotMegaCorpInt] = SellbotMegaCorpLegCogs
2015-03-03 16:10:12 -06:00
if __dev__:
import FactoryMockupSpec
import FactoryMockupCogs
2015-03-04 04:42:16 -06:00
FactorySpecModules[ToontownGlobals.MockupFactoryId] = FactoryMockupSpec
2015-03-03 16:10:12 -06:00
CogSpecModules[ToontownGlobals.MockupFactoryId] = FactoryMockupCogs