mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-27 15:00:33 +00:00
dd128d78c6
* Decomped IsMovingClient() * Fixed typos in boss dialogue * Fixed spelling of Pelipper * Decomped CannotUseItems * Decomped ShouldAvoidEnemies() * Decomped HasAbility() * Decomped HasTactic() * Decomped CannotMove * Decomped CannotAct() and IsCharging()
10 lines
192 B
C
10 lines
192 B
C
#ifndef GUARD_DUNGEON_CAPABILITIES_H
|
|
#define GUARD_DUNGEON_CAPABILITIES_H
|
|
|
|
#include "dungeon_entity.h"
|
|
|
|
// 0x70B6C
|
|
bool8 CannotMove(struct DungeonEntity *pokemon, bool8 checkBlinker);
|
|
|
|
#endif
|