mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-25 07:28:17 -05:00
* 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
196 B
C
10 lines
196 B
C
#ifndef GUARD_DUNGEON_POKEMON_ATTRIBUTES_H
|
|
#define GUARD_DUNGEON_POKEMON_ATTRIBUTES_H
|
|
|
|
#include "dungeon_entity.h"
|
|
|
|
// 0x71824
|
|
bool8 HasAbility(struct DungeonEntity *pokemon, u8 ability);
|
|
|
|
#endif
|