pokeemerald-expansion/include/pokerus.h
FosterProgramming 550fe9a7de
Refactor pokerus and add configs (#7731)
Co-authored-by: Bassoonian <iasperbassoonian@gmail.com>
2026-01-14 12:04:33 +01:00

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