From dd128d78c6da20395edcbe8dab8a224aa6679146 Mon Sep 17 00:00:00 2001 From: Cheng Hann Gan Date: Thu, 28 Oct 2021 12:01:07 -0400 Subject: Decomped more dungeon AI (#67) * 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() --- include/dungeon_capabilities_1.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/dungeon_capabilities_1.h (limited to 'include/dungeon_capabilities_1.h') diff --git a/include/dungeon_capabilities_1.h b/include/dungeon_capabilities_1.h new file mode 100644 index 0000000..1d10a0f --- /dev/null +++ b/include/dungeon_capabilities_1.h @@ -0,0 +1,11 @@ +#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); + +#endif -- cgit v1.2.3