mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-25 15:49:02 -05:00
Named a bunch of variables Created make_pokedex_enc_platinum tool Added pokedex categories to encounter json files Changed wildEncountersArchiveID to decimal
18 lines
980 B
C
18 lines
980 B
C
#ifndef POKEPLATINUM_Pokedex_HeightWeight_H
|
|
#define POKEPLATINUM_Pokedex_HeightWeight_H
|
|
|
|
#include "struct_decls/struct_02098700_decl.h"
|
|
|
|
HeightWeightData *Pokedex_HeightWeightData(int heapID);
|
|
void Pokedex_HeightWeightData_Free(HeightWeightData *HWData);
|
|
void Pokedex_HeightWeightData_Load(HeightWeightData *HWData, int trainerIsGirl, int param2);
|
|
void Pokedex_HeightWeightData_Release(HeightWeightData *HWData);
|
|
int Pokedex_HeightWeightData_Height(const HeightWeightData *HWData, int species);
|
|
int Pokedex_HeightWeightData_Weight(const HeightWeightData *HWData, int species);
|
|
short Pokedex_HeightWeightData_TrainerPos(const HeightWeightData *HWData, int species);
|
|
short Pokedex_HeightWeightData_PokemonPos(const HeightWeightData *HWData, int species);
|
|
short Pokedex_HeightWeightData_TrainerScale(const HeightWeightData *HWData, int species);
|
|
short Pokedex_HeightWeightData_PokemonScale(const HeightWeightData *HWData, int species);
|
|
|
|
#endif // POKEPLATINUM_Pokedex_HeightWeight_H
|