pmd-red/include/move_checks.h
2024-09-25 12:53:10 +02:00

13 lines
361 B
C

#ifndef GUARD_MOVE_CHECKS_H
#define GUARD_MOVE_CHECKS_H
#include "structs/dungeon_entity.h"
bool8 CanUseOnSelfWithStatusChecker(Entity *pokemon, Move *move);
bool8 CanUseOnTargetWithStatusChecker(Entity *user, Entity *target, Move *move);
bool8 HasDisabledMove(Move *moves);
bool8 LastUsedMoveOutOfPP(Move *moves);
bool8 HasLastUsedMove(Move *moves);
#endif