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

9 lines
332 B
Python
Raw Permalink Normal View History

2024-07-07 23:08:39 +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