mirror of
https://github.com/pret/pokeruby.git
synced 2026-03-21 17:54:19 -05:00
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
#ifndef GUARD_WILD_ENCOUNTER_H
|
|
#define GUARD_WILD_ENCOUNTER_H
|
|
|
|
struct WildPokemon
|
|
{
|
|
u8 minLevel;
|
|
u8 maxLevel;
|
|
u16 species;
|
|
};
|
|
|
|
struct WildPokemonInfo
|
|
{
|
|
u8 encounterRate;
|
|
const struct WildPokemon *wildPokemon;
|
|
};
|
|
|
|
struct WildPokemonHeader
|
|
{
|
|
u8 mapGroup;
|
|
u8 mapNum;
|
|
const struct WildPokemonInfo *landMonsInfo;
|
|
const struct WildPokemonInfo *waterMonsInfo;
|
|
const struct WildPokemonInfo *rockSmashMonsInfo;
|
|
const struct WildPokemonInfo *fishingMonsInfo;
|
|
};
|
|
|
|
extern const struct WildPokemonHeader gWildMonHeaders[];
|
|
|
|
void DisableWildEncounters(bool8 disabled);
|
|
bool8 StandardWildEncounter(u16 a, u16 b);
|
|
void ScrSpecial_RockSmashWildEncounter(void);
|
|
bool8 SweetScentWildEncounter(void);
|
|
bool8 DoesCurrentMapHaveFishingMons(void);
|
|
void FishingWildEncounter(u8 rod);
|
|
u16 GetLocalWildMon(bool8 *isWaterMon);
|
|
u16 GetLocalWaterMon(void);
|
|
bool8 UpdateRepelCounter(void);
|
|
#if DEBUG
|
|
u16 FeebasDebug_GetTrueNumberOfWaterTilesInMapThird(u8 arg0);
|
|
void FeebasSeedRng(u16 seed);
|
|
u16 FeebasRandom(void);
|
|
extern u8 gWildEncountersDisabled;
|
|
#endif // DEBUG
|
|
|
|
#endif // GUARD_WILD_ENCOUNTER_H
|