class PokemonForm: def __init__(self, pfic: int, name: str, form_name: str, national_dex: int, generation: int, is_baby_form: bool, storable_in_home: bool): self.pfic = pfic self.name = name self.form_name = form_name self.national_dex = national_dex self.generation = generation self.is_baby_form = is_baby_form self.storable_in_home = storable_in_home class EvolveEncounter: def __init__(self, pfic: int, game_id: int, day: str, time: str, from_pfic: int): self.pfic = pfic self.game_id = game_id self.day = day self.time = time self.from_pfic = from_pfic