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