mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-07-17 09:08:39 -05:00
25 lines
571 B
C
25 lines
571 B
C
#ifndef POKEMON_DATA_H
|
|
#define POKEMON_DATA_H
|
|
|
|
#include <tonc.h>
|
|
|
|
#define erratic_max 600000
|
|
#define fast_max 800000
|
|
#define med_fast_max 1000000
|
|
#define med_slow_max 1059860
|
|
#define slow_max 1250000
|
|
#define flux_max 1640000
|
|
|
|
|
|
|
|
extern const u8 EXP_MAX[251];
|
|
extern const u32 EXP_TYPES[6];
|
|
extern const int GENDER_THRESHOLDS[2][8];
|
|
extern const u8 GENDER_RATIO[251];
|
|
extern const bool NUM_ABILITIES[251];
|
|
|
|
u32 get_max_exp(int index_num);
|
|
u8 get_gender_threshold(int index_num, bool is_gen_3);
|
|
bool get_num_abilities(int index_num);
|
|
|
|
#endif |