mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-26 08:35:04 -05:00
15 lines
687 B
C
15 lines
687 B
C
#ifndef PMDSKY_DUNGEON_POKEMON_ATTRIBUTES_1_H
|
|
#define PMDSKY_DUNGEON_POKEMON_ATTRIBUTES_1_H
|
|
|
|
#include "dungeon_mode.h"
|
|
|
|
// Returns whether a certain monster can see other invisible monsters.
|
|
// To be precise, this function returns true if the monster is holding Goggle Specs or if it has the status status::STATUS_EYEDROPS.
|
|
bool8 CanSeeInvisibleMonsters(struct entity *entity);
|
|
// Returns whether a monster is set to use a specific tactic.
|
|
bool8 IsTacticSet(struct entity *entity, enum tactic_id tactic_id);
|
|
// Returns whether a certain monster is under the effect of status::STATUS_DROPEYE.
|
|
bool8 HasDropeyeStatus(struct entity* entity);
|
|
|
|
#endif //PMDSKY_DUNGEON_POKEMON_ATTRIBUTES_1_H
|