Poodletooth-iLand/toontown/toon/DistributedNPCScientistAI.py

9 lines
332 B
Python
Raw Normal View History

2015-11-14 13:28:53 -06:00
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