mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-21 17:25:15 -05:00
13 lines
541 B
C
13 lines
541 B
C
#ifndef PMDSKY_MAIN_02054BE0_H
|
|
#define PMDSKY_MAIN_02054BE0_H
|
|
|
|
#include "util.h"
|
|
|
|
bool8 IsDeoxys(s16 monster_id);
|
|
s16 GetSecondFormIfValid(s16 id);
|
|
// Returns the ID of the first form of the specified monster if the specified ID corresponds to a secondary form with female gender and the first form has male gender. If those conditions don't meet, returns the same ID unchanged.
|
|
// return: ID of the male form of the monster if the requirements meet, same ID otherwise.
|
|
s16 FemaleToMaleForm(s16 monster_id);
|
|
|
|
#endif //PMDSKY_MAIN_02054BE0_H
|