mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
22 lines
909 B
Python
22 lines
909 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||
|
from toontown.toon.ToonDNA import ToonDNA
|
||
|
|
||
|
class DistributedBlackCatMgrAI(DistributedObjectAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedBlackCatMgrAI")
|
||
|
|
||
|
def requestBlackCatTransformation(self):
|
||
|
avId = self.air.getAvatarIdFromSender()
|
||
|
av = self.air.doId2do.get(avId)
|
||
|
if not av: return
|
||
|
|
||
|
if av.dna.getAnimal() == 'cat' and av.dna.headColor != 0x1a:
|
||
|
newDNA = ToonDNA()
|
||
|
newDNA.makeFromNetString(av.getDNAString())
|
||
|
newDNA.headColor = 0x1a
|
||
|
newDNA.armColor = 0x1a
|
||
|
newDNA.legColor = 0x1a
|
||
|
taskMgr.doMethodLater(1.0, lambda task: av.b_setDNAString(newDNA.makeNetString()), 'transform-%d' % avId)
|
||
|
|
||
|
self.sendUpdate('doBlackCatTransformation', [avId])
|