Poodletooth-iLand/toontown/toon/DistributedNPCScientistAI.py
2015-07-05 19:59:25 -04:00

8 lines
332 B
Python
Executable file

import DistributedNPCToonBaseAI, random
Animation = random.choice(["ScientistPlay", "ScientistWork", "ScientistLessWork", "ScientistJealous"])
class DistributedNPCScientistAI(DistributedNPCToonBaseAI.DistributedNPCToonBaseAI):
def getStartAnimState(self):
return 'ScientistEmcee' if self.npcId == 2020 else Animation