mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-21 17:25:15 -05:00
Moved StatusCheckerCheck nonmatching to C file
This commit is contained in:
parent
b0b0b958d2
commit
bf59433653
File diff suppressed because it is too large
Load Diff
|
|
@ -3,6 +3,10 @@
|
|||
|
||||
#include "dungeon_mode.h"
|
||||
|
||||
// Determines if using a given move against its intended targets would be redundant because all of them already have the effect caused by said move. Used for moves that affect the user or allies.
|
||||
// attacker: Pointer to the entity that is considering using the move
|
||||
// move: Move pointer
|
||||
// return: True if it makes sense to use the move, false if it would be redundant given the effects it causes and the effects that all the targets already have.
|
||||
bool8 StatusCheckerCheck(struct entity *attacker, struct move *move);
|
||||
// Checks if an entity pointer points to a valid entity (not entity type 0, which represents no entity).
|
||||
bool8 EntityIsValid__02333FAC(struct entity *entity);
|
||||
|
|
|
|||
1149
src/move_checks.c
1149
src/move_checks.c
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user