mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
13 lines
287 B
Python
13 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
|