summaryrefslogtreecommitdiff
path: root/include/constants
diff options
context:
space:
mode:
authorhuderlem <huderlem@gmail.com>2019-12-25 11:59:07 -0600
committerGitHub <noreply@github.com>2019-12-25 11:59:07 -0600
commit8d64bc9df837021584b1d1c34796a8b8290246d7 (patch)
treeef6fba7c76eb5f12b55926e53854b0849cfa13d0 /include/constants
parentee61726136c4d3c9a84eb89672890b66e31f4f45 (diff)
parent749965d56b00a33d988431eacf1405e8aeccb5bf (diff)
Merge pull request #944 from GriffinRichards/doc-itemuse
Document item_use.c
Diffstat (limited to 'include/constants')
-rw-r--r--include/constants/item_effects.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/constants/item_effects.h b/include/constants/item_effects.h
index a5bb77035..49fcedc61 100644
--- a/include/constants/item_effects.h
+++ b/include/constants/item_effects.h
@@ -3,7 +3,7 @@
// field 0 masks
#define ITEM0_X_ATTACK 0x0F
-#define ITEM0_HIGH_CRIT 0x30 // For Dire Hit, works the same way as move Focus Energy.
+#define ITEM0_DIRE_HIT 0x30 // Works the same way as the move Focus Energy.
#define ITEM0_SACRED_ASH 0x40
#define ITEM0_INFATUATION 0x80
@@ -23,7 +23,7 @@
#define ITEM3_POISON 0x10
#define ITEM3_SLEEP 0x20
#define ITEM3_LEVEL_UP 0x40
-#define ITEM3_MIST 0x80 // For Guard Specs, works the same way as move Mist.
+#define ITEM3_GUARD_SPEC 0x80 // Works the same way as the move Mist.
#define ITEM3_STATUS_ALL (ITEM3_CONFUSION | ITEM3_PARALYSIS | ITEM3_FREEZE | ITEM3_BURN | ITEM3_POISON | ITEM3_SLEEP)