historical/toontown-just-works.git/toontown/toon/DistributedNPCScientistAI.py

9 lines
332 B
Python
Raw Normal View History

2024-01-16 17:20:27 +00: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