Poodletooth-iLand/toontown/toon/DistributedNPCScientistAI.py

9 lines
332 B
Python
Raw Normal View History

2015-05-10 20:05:09 +00:00
import DistributedNPCToonBaseAI, random
2015-03-03 22:10:12 +00:00
2015-05-10 20:05:09 +00:00
Animation = random.choice(["ScientistPlay", "ScientistWork", "ScientistLessWork", "ScientistJealous"])
2015-03-03 22:10:12 +00:00
2015-05-10 20:05:09 +00:00
class DistributedNPCScientistAI(DistributedNPCToonBaseAI.DistributedNPCToonBaseAI):
2015-07-05 23:59:25 +00:00
2015-05-10 20:05:09 +00:00
def getStartAnimState(self):
2015-07-05 23:59:25 +00:00
return 'ScientistEmcee' if self.npcId == 2020 else Animation