mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
12 lines
287 B
Python
12 lines
287 B
Python
import random
|
|
|
|
|
|
class PetManagerAI:
|
|
def __init__(self, air):
|
|
self.air = air
|
|
|
|
def getAvailablePets(self, numPets=5):
|
|
return random.sample(xrange(256), numPets)
|
|
|
|
def createNewPetFromSeed(self, avId, petSeeds, nameIndex, gender, safeZoneId):
|
|
pass # TODO
|