Poodletooth-iLand/toontown/coghq/LawbotOfficeBoilerRoom_Battle00_Cogs.py
2015-03-03 17:10:12 -05:00

165 lines
4.2 KiB
Python

from SpecImports import *
from toontown.toonbase import ToontownGlobals
CogParent = 10000
LowerCogParent = 10003
BattleParent = 10002
LowerBattleParent = 10005
FrontCogParent = 10013
CenterCogParent = 10040
BattleCellId = 0
LowerBattleCellId = 1
FrontBattleCellId = 2
CenterBattleCellId = 3
BattleCells = {BattleCellId: {'parentEntId': BattleParent,
'pos': Point3(0, 0, 0)},
LowerBattleCellId: {'parentEntId': LowerBattleParent,
'pos': Point3(0, 0, 0)},
FrontBattleCellId: {'parentEntId': FrontCogParent,
'pos': Point3(0, 0, 0)},
CenterBattleCellId: {'parentEntId': CenterCogParent,
'pos': Point3(0, 0, 0)}}
CogData = [{'parentEntId': CogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintSkelecogLevel,
'battleCell': BattleCellId,
'pos': Point3(-6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 1},
{'parentEntId': CogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintSkelecogLevel,
'battleCell': BattleCellId,
'pos': Point3(-2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 1},
{'parentEntId': CogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintSkelecogLevel,
'battleCell': BattleCellId,
'pos': Point3(2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 1},
{'parentEntId': CogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintSkelecogLevel,
'battleCell': BattleCellId,
'pos': Point3(6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 1},
{'parentEntId': LowerCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': LowerBattleCellId,
'pos': Point3(-6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': LowerCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintSkelecogLevel,
'battleCell': LowerBattleCellId,
'pos': Point3(-2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 1},
{'parentEntId': LowerCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintSkelecogLevel,
'battleCell': LowerBattleCellId,
'pos': Point3(2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 1},
{'parentEntId': LowerCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': LowerBattleCellId,
'pos': Point3(6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': FrontCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': FrontBattleCellId,
'pos': Point3(-6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': FrontCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': FrontBattleCellId,
'pos': Point3(-2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': FrontCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': FrontBattleCellId,
'pos': Point3(2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': FrontCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': FrontBattleCellId,
'pos': Point3(6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': CenterCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': CenterBattleCellId,
'pos': Point3(-6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': CenterCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintSkelecogLevel,
'battleCell': CenterBattleCellId,
'pos': Point3(-2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 1},
{'parentEntId': CenterCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintSkelecogLevel,
'battleCell': CenterBattleCellId,
'pos': Point3(2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 1},
{'parentEntId': CenterCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': CenterBattleCellId,
'pos': Point3(6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0}]
ReserveCogData = []