2015-03-03 16:10:12 -06:00
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
from toontown.estate.DistributedLawnDecorAI import DistributedLawnDecorAI
|
|
|
|
|
|
|
|
class DistributedStatuaryAI(DistributedLawnDecorAI):
|
|
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedStatuaryAI")
|
|
|
|
|
2015-05-24 18:23:54 -05:00
|
|
|
def __init__(self, air):
|
|
|
|
DistributedLawnDecorAI.__init__(self, air)
|
2015-05-10 07:10:32 -05:00
|
|
|
self.air = air
|
|
|
|
|
2015-05-24 18:23:54 -05:00
|
|
|
def setTypeIndex(self, typeIndex):
|
|
|
|
self.typeIndex = typeIndex
|
2015-03-03 16:10:12 -06:00
|
|
|
|
2015-05-24 18:23:54 -05:00
|
|
|
def getTypeIndex(self):
|
|
|
|
return self.typeIndex
|
2015-03-03 16:10:12 -06:00
|
|
|
|
2015-05-24 18:23:54 -05:00
|
|
|
def setOwnerPlot(self, owner):
|
|
|
|
self.ownerPlot = owner
|
|
|
|
|
|
|
|
def getOwnerPlot(self):
|
|
|
|
return self.ownerPlot
|
|
|
|
|
|
|
|
def setWaterLevel(self, waterLevel):
|
|
|
|
self.waterLevel = waterLevel
|
|
|
|
|
|
|
|
def getWaterLevel(self):
|
|
|
|
return self.waterLevel
|
|
|
|
|
|
|
|
def setGrowthLevel(self, growthLevel):
|
|
|
|
self.growthLevel = growthLevel
|
|
|
|
|
|
|
|
def getGrowthLevel(self):
|
|
|
|
return self.growthLevel
|