mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-25 15:42:34 -05:00
12 lines
450 B
C
12 lines
450 B
C
#ifndef PMDSKY_DUNGEON_POKEMON_ATTRIBUTES_H
|
|
#define PMDSKY_DUNGEON_POKEMON_ATTRIBUTES_H
|
|
|
|
#include "dungeon_mode.h"
|
|
|
|
// Checks if a monster does not have the Gastro Acid status.
|
|
bool8 NoGastroAcidStatus(struct entity *entity, enum ability_id ability);
|
|
// Checks if a monster has a certain ability that isn't disabled by Gastro Acid.
|
|
bool8 AbilityIsActive(struct entity *pokemon, enum ability_id ability);
|
|
|
|
#endif //PMDSKY_DUNGEON_POKEMON_ATTRIBUTES_H
|