You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
664 B
18 lines
664 B
|
|
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
|
|
|