mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
17 lines
520 B
Python
17 lines
520 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from toontown.estate.DistributedPlantBaseAI import DistributedPlantBaseAI
|
|
|
|
class DistributedGagTreeAI(DistributedPlantBaseAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedGagTreeAI")
|
|
|
|
def __init__(self, air, gagTrack, gagLevel):
|
|
self.air = air
|
|
self.track = gagTrack
|
|
self.level = level
|
|
self.wilted = 0
|
|
|
|
def setWilted(self, wilted):
|
|
self.wilted = wilted
|
|
|
|
def requestHarvest(self):
|
|
pass
|