Legendary and Mythical flags

This commit is contained in:
Eduardo Quezada D'Ottone 2022-04-14 18:44:20 -04:00
parent f8aa4d8e3a
commit 84d713a50f
3 changed files with 153 additions and 9 deletions

View File

@ -387,4 +387,12 @@
#define NUM_NORMAL_ABILITY_SLOTS 2
#define NUM_HIDDEN_ABILITY_SLOTS 1
// Species Flags
#define FLAG_LEGENDARY (1 << 0)
#define FLAG_MYTHICAL (1 << 1)
#define FLAG_ULTRA_BEAST (1 << 2)
#define FLAG_ALOLAN_FORM (1 << 3)
#define FLAG_GALARIAN_FORM (1 << 4)
#define FLAG_GENDER_DIFFERENCE (1 << 5)
#endif // GUARD_CONSTANTS_POKEMON_H

View File

@ -1344,10 +1344,4 @@
#define SPECIES_EGG SPECIES_CALYREX_SHADOW_RIDER + 1
#define NUM_SPECIES SPECIES_EGG
// Species Flags
#define FLAG_ULTRA_BEAST (1 << 0)
#define FLAG_ALOLAN_FORM (1 << 1)
#define FLAG_GALARIAN_FORM (1 << 2)
#define FLAG_GENDER_DIFFERENCE (1 << 3)
#endif // GUARD_CONSTANTS_SPECIES_H

File diff suppressed because it is too large Load Diff