Files
Pokemon-Firered/include/constants/trainers.h
T
jiangzhengwenjz f03807931f thru sub_8011B94
2019-10-17 02:01:07 +08:00

15 lines
438 B
C

#ifndef GUARD_TRAINERS_H
#define GUARD_TRAINERS_H
#define TRAINER_SECRET_BASE 1024
#define F_TRAINER_FEMALE (1 << 7)
// All trainer parties specify the IV, level, and species for each Pokémon in the
// party. Some trainer parties also specify held items and custom moves for each
// Pokémon.
#define F_TRAINER_PARTY_CUSTOM_MOVESET (1 << 0)
#define F_TRAINER_PARTY_HELD_ITEM (1 << 1)
#endif // GUARD_TRAINERS_H