summaryrefslogtreecommitdiff
path: root/src/status_checks_1.c
diff options
context:
space:
mode:
authorAnonymousRandomPerson <chenghanngan.us@gmail.com>2022-02-20 22:51:36 -0500
committerAnonymousRandomPerson <chenghanngan.us@gmail.com>2022-02-20 22:51:36 -0500
commitec6abc684ebc571fc186ca61f1410770ea17fa14 (patch)
tree6159c9e9bf9d2d39288cbd3931578a0e76d64e1e /src/status_checks_1.c
parent7c714bd14e68ee9528512108e8b2cbd7f9da46c7 (diff)
Decomped HasQuarterHPOrLess
Diffstat (limited to 'src/status_checks_1.c')
-rw-r--r--src/status_checks_1.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/status_checks_1.c b/src/status_checks_1.c
index 9d0bfe8..c49e127 100644
--- a/src/status_checks_1.c
+++ b/src/status_checks_1.c
@@ -53,3 +53,19 @@ bool8 IsSleeping(struct DungeonEntity *pokemon)
}
return TRUE;
}
+
+bool8 HasQuarterHPOrLess(struct DungeonEntity* pokemon)
+{
+ struct DungeonEntityData *pokemonData = pokemon->entityData;
+ struct DungeonEntityData *pokemonData2 = pokemon->entityData;
+ s32 maxHP = pokemonData->maxHP;
+ if (maxHP < 0)
+ {
+ maxHP += 3;
+ }
+ if (pokemonData2->HP <= maxHP >> 2)
+ {
+ return TRUE;
+ }
+ return FALSE;
+}