mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
23 lines
732 B
Python
23 lines
732 B
Python
|
import PurchaseManagerAI
|
||
|
|
||
|
class NewbiePurchaseManagerAI(PurchaseManagerAI.PurchaseManagerAI):
|
||
|
|
||
|
def __init__(self, air, newbieId, playerArray, mpArray, previousMinigameId, trolleyZone):
|
||
|
self.ownedNewbieId = newbieId
|
||
|
newbieList = []
|
||
|
PurchaseManagerAI.PurchaseManagerAI.__init__(self, air, playerArray, mpArray, previousMinigameId, trolleyZone, newbieList)
|
||
|
|
||
|
def startCountdown(self):
|
||
|
pass
|
||
|
|
||
|
def getOwnedNewbieId(self):
|
||
|
return self.ownedNewbieId
|
||
|
|
||
|
def getInvolvedPlayerIds(self):
|
||
|
return [self.ownedNewbieId]
|
||
|
|
||
|
def handlePlayerLeaving(self, avId):
|
||
|
toon = self.air.doId2do.get(avId)
|
||
|
if toon:
|
||
|
self.air.questManager.toonRodeTrolleyFirstTime(toon)
|