mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
18 lines
722 B
Python
18 lines
722 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from toontown.safezone import RegenTreasurePlannerAI
|
||
|
|
||
|
class TagTreasurePlannerAI(RegenTreasurePlannerAI.RegenTreasurePlannerAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('TagTreasurePlannerAI')
|
||
|
|
||
|
def __init__(self, zoneId, game, callback, treasureType, spawnPoints):
|
||
|
self.numPlayers = 0
|
||
|
self.game = game
|
||
|
self.spawnPoints = spawnPoints
|
||
|
RegenTreasurePlannerAI.RegenTreasurePlannerAI.__init__(self, zoneId, treasureType, 'TagTreasurePlanner-' + str(zoneId), 3, 6, callback)
|
||
|
|
||
|
def initSpawnPoints(self):
|
||
|
return self.spawnPoints
|
||
|
|
||
|
def validAvatar(self, treasure, av):
|
||
|
return av.doId != self.game.itAvId
|