mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 21:19:53 +00:00
16 lines
401 B
C
16 lines
401 B
C
#ifndef GUARD_DUNGEON_CAPABILITIES_1_H
|
|
#define GUARD_DUNGEON_CAPABILITIES_1_H
|
|
|
|
#include "dungeon_entity.h"
|
|
|
|
// 0x70C60
|
|
bool8 CannotUseItems(struct DungeonEntity *pokemon);
|
|
// 0x70CD0
|
|
bool8 CannotAct(struct DungeonEntity *pokemon);
|
|
// 0x70d04
|
|
bool8 CannotAttack(struct DungeonEntity *pokemon, bool8 skipSleep);
|
|
// 0x70D6C
|
|
bool8 CanMoveInDirection(struct DungeonEntity *pokemon, u32 facingDir);
|
|
|
|
#endif
|