diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-10-06 18:39:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-06 18:39:43 -0400 |
commit | 13f37cf974e8f227db9ee68b2ca7987cf1f509a8 (patch) | |
tree | e059372dd361e44dd854fa256c6b8ff5c31f2ad9 /include/constants/item_effects.h | |
parent | ba18f4011abd40e530500867b35716ce3d6dc6aa (diff) | |
parent | 65a4e067378b53225536d060d10fa306b6f045c2 (diff) |
Merge pull request #1223 from GriffinRichards/constants-misc
Add ITEM6_HEAL constants, change move flags to shifts
Diffstat (limited to 'include/constants/item_effects.h')
-rw-r--r-- | include/constants/item_effects.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/constants/item_effects.h b/include/constants/item_effects.h index 49fcedc61..6e61c4d7f 100644 --- a/include/constants/item_effects.h +++ b/include/constants/item_effects.h @@ -51,6 +51,11 @@ // fields 6 and onwards are item-specific arguments +// Special HP recovery amounts for ITEM4_HEAL_HP +#define ITEM6_HEAL_FULL ((u8) -1) +#define ITEM6_HEAL_HALF ((u8) -2) +#define ITEM6_HEAL_LVL_UP ((u8) -3) + // Used for GetItemEffectType. #define ITEM_EFFECT_X_ITEM 0 #define ITEM_EFFECT_RAISE_LEVEL 1 |