mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-03-21 18:04:50 -05:00
15 lines
471 B
C
15 lines
471 B
C
#ifndef GUARD_POKERUS_H
|
|
#define GUARD_POKERUS_H
|
|
|
|
u32 GetDaysLeftBasedOnStrain(u32 strain);
|
|
void RandomlyGivePartyPokerus(void);
|
|
bool32 IsPokerusInParty(void);
|
|
bool32 CheckMonPokerus(struct Pokemon *mon);
|
|
bool32 CheckMonHasHadPokerus(struct Pokemon *mon);
|
|
bool32 ShouldPokemonShowActivePokerus(struct Pokemon *mon);
|
|
bool32 ShouldPokemonShowCuredPokerus(struct Pokemon *mon);
|
|
void UpdatePartyPokerusTime(u32 days);
|
|
void PartySpreadPokerus(void);
|
|
|
|
#endif // GUARD_POKERUS_H
|