mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-25 07:28:17 -05:00
12 lines
281 B
C
12 lines
281 B
C
#ifndef GUARD_STATUS_CHECKS_1_H
|
|
#define GUARD_STATUS_CHECKS_1_H
|
|
|
|
#include "dungeon_entity.h"
|
|
|
|
s32 GetSpeedStatus(struct Entity *pokemon);
|
|
bool8 HasNegativeStatus(struct Entity *pokemon);
|
|
bool8 IsSleeping(struct Entity *pokemon);
|
|
bool8 HasLowHealth(struct Entity *pokemon);
|
|
|
|
#endif
|