pmd-sky/include/dungeon_pokemon_attributes.h
2024-12-01 18:20:37 -06:00

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