blob: 5c8e3d0a6e9425f5d034cbde1772570a50384f84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef GUARD_DUNGEON_CAPABILITIES_1_H
#define GUARD_DUNGEON_CAPABILITIES_1_H
#include "dungeon_entity.h"
bool8 CannotUseItems(struct DungeonEntity *pokemon);
bool8 CannotAct(struct DungeonEntity *pokemon);
bool8 CannotAttack(struct DungeonEntity *pokemon, bool8 skipSleep);
bool8 CanMoveInDirection(struct DungeonEntity *pokemon, u32 facingDir);
#endif
|