Poodletooth-iLand/toontown/catalog/CatalogSurfaceItem.py

31 lines
735 B
Python
Raw Normal View History

2015-03-03 16:10:12 -06:00
import CatalogItem
import CatalogAtticItem
from toontown.toonbase import ToontownGlobals
from toontown.toonbase import TTLocalizer
from CatalogSurfaceColors import *
STWallpaper = 0
STMoulding = 1
STFlooring = 2
STWainscoting = 3
NUM_ST_TYPES = 4
class CatalogSurfaceItem(CatalogAtticItem.CatalogAtticItem):
def setPatternIndex(self, patternIndex):
self.patternIndex = patternIndex
def setColorIndex(self, colorIndex):
self.colorIndex = colorIndex
def saveHistory(self):
return 1
def recordPurchase(self, avatar, optional):
self.giftTag = None
house, retcode = self.getHouseInfo(avatar)
if retcode >= 0:
house.addWallpaper(self)
return retcode