mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-27 15:00:33 +00:00
11 lines
264 B
C
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
|