pmd-red/include/status_checks_1.h
2022-03-10 22:33:12 -05:00

11 lines
264 B
C

#ifndef GUARD_STATUS_CHECKS_1_H
#define GUARD_STATUS_CHECKS_1_H
#include "dungeon_entity.h"
bool8 HasNegativeStatus(struct DungeonEntity *pokemon);
bool8 IsSleeping(struct DungeonEntity *pokemon);
bool8 HasQuarterHPOrLess(struct DungeonEntity* pokemon);
#endif