mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-25 03:25:09 -05:00
11 lines
380 B
C
11 lines
380 B
C
#ifndef GUARD_MOVE_CHECKS_H
|
|
#define GUARD_MOVE_CHECKS_H
|
|
|
|
bool8 CanUseOnSelfWithStatusChecker(struct Entity *pokemon, struct Move *move);
|
|
bool8 CanUseOnTargetWithStatusChecker(struct Entity *user, struct Entity *target, struct Move *move);
|
|
bool8 HasDisabledMove(struct Move *moves);
|
|
bool8 LastUsedMoveOutOfPP(struct Move *moves);
|
|
bool8 HasLastUsedMove(struct Move *moves);
|
|
|
|
#endif
|