Poodletooth-iLand/toontown/toon/DistributedNPCScientistAI.py

8 lines
335 B
Python
Raw Normal View History

2015-05-10 15:05:09 -05:00
import DistributedNPCToonBaseAI, random
2015-03-03 16:10:12 -06:00
2015-05-10 15:05:09 -05:00
Animation = random.choice(["ScientistPlay", "ScientistWork", "ScientistLessWork", "ScientistJealous"])
2015-03-03 16:10:12 -06:00
2015-05-10 15:05:09 -05:00
class DistributedNPCScientistAI(DistributedNPCToonBaseAI.DistributedNPCToonBaseAI):
2015-05-10 15:05:09 -05:00
def getStartAnimState(self):
return 'ScientistEmcee' if self.npcId == 2020 else Animation