Poodletooth-iLand/toontown/coghq/CashbotMintLobby_Battle00_Cogs.py

124 lines
3.1 KiB
Python
Raw Normal View History

2015-03-03 22:10:12 +00:00
from SpecImports import *
from toontown.toonbase import ToontownGlobals
CogParent = 10000
MidCogParent = 10022
FrontCogParent = 10060
BattleCellId = 0
MidBattleCellId = 1
FrontBattleCellId = 2
BattleCells = {BattleCellId: {'parentEntId': CogParent,
'pos': Point3(0, 0, 0)},
MidBattleCellId: {'parentEntId': MidCogParent,
'pos': Point3(0, 0, 0)},
FrontBattleCellId: {'parentEntId': FrontCogParent,
'pos': Point3(0, 0, 0)}}
CogData = [{'parentEntId': CogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel + 1,
'battleCell': BattleCellId,
'pos': Point3(-6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': CogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': BattleCellId,
'pos': Point3(-2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': CogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': BattleCellId,
'pos': Point3(2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': CogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel + 1,
'battleCell': BattleCellId,
'pos': Point3(6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': MidCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': MidBattleCellId,
'pos': Point3(-6, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': MidCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': MidBattleCellId,
'pos': Point3(-2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': MidCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel,
'battleCell': MidBattleCellId,
'pos': Point3(2, 0, 0),
'h': 180,
'behavior': 'stand',
'path': None,
'skeleton': 0},
{'parentEntId': MidCogParent,
'boss': 0,
'level': ToontownGlobals.CashbotMintCogLevel + 1,
'battleCell': MidBattleCellId,
'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}]
ReserveCogData = []