5d4bb8c5a0
changes include: - update .gitignore to ignore cog building backups - set text minfilter to more closely resemble TTO - fix more issues with cog battles - additionally, setup server code that cog battles require (mostly stubs) - begin work on cog buildings - can interact with gag shop clerks now - can also interact with other NPCs, they will always reject you for now
14 lines
375 B
Python
14 lines
375 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
|
|
class CogPageManagerAI:
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('CogPageManagerAI')
|
|
|
|
def __init__(self, air):
|
|
self.air = air
|
|
|
|
def toonKilledCogs(self, toon, suitsKilled, zoneId):
|
|
pass # TODO
|
|
|
|
def toonEncounteredCogs(self, toon, suitsEncountered, zoneId):
|
|
pass # TODO
|