26 lines
956 B
Python
26 lines
956 B
Python
from toontown.toonbase.ToontownGlobals import *
|
|
import RegenTreasurePlannerAI, DistributedOZTreasureAI
|
|
|
|
class OZTreasurePlannerAI(RegenTreasurePlannerAI.RegenTreasurePlannerAI):
|
|
|
|
def __init__(self, zoneId):
|
|
self.healAmount = 3
|
|
RegenTreasurePlannerAI.RegenTreasurePlannerAI.__init__(self, zoneId, DistributedOZTreasureAI.DistributedOZTreasureAI, 'OZTreasurePlanner', 20, 5)
|
|
|
|
def initSpawnPoints(self):
|
|
self.spawnPoints = [(-156.9, -118.9, 0.025),
|
|
(-35.6, 86.0, 1.25),
|
|
(116.8, 10.8, 0.104),
|
|
(-35, 145.7, 0.025),
|
|
(-198.8, -45.1, 0.025),
|
|
(-47.1, -25.5, 0.809),
|
|
(59.15, 34.8, 1.767),
|
|
(-81.02, -72.2, 0.026),
|
|
(-167.9, 124.5, 0.025),
|
|
(-226.7, -27.6, 0.025),
|
|
(-16.0, -108.9, 0.025),
|
|
(18.0, 58.5, 5.919),
|
|
(91.4, 127.8, 0.025),
|
|
(-86.5, -75.9, 0.025),
|
|
(-48.751, -32.3, 1.143)]
|
|
return self.spawnPoints
|