mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-23 07:28:10 -05:00
12 lines
347 B
C
12 lines
347 B
C
#ifndef GUARD_DUNGEON_CAPABILITIES_1_H
|
|
#define GUARD_DUNGEON_CAPABILITIES_1_H
|
|
|
|
#include "dungeon_entity.h"
|
|
|
|
bool8 CannotUseItems(struct Entity *pokemon);
|
|
bool8 HasStatusThatPreventsActing(struct Entity *pokemon);
|
|
bool8 CannotAttack(struct Entity *pokemon, bool8 skipSleep);
|
|
bool8 CanMoveInDirection(struct Entity *pokemon, u32 direction);
|
|
|
|
#endif
|