diff options
Diffstat (limited to 'constants/item_data_constants.asm')
-rwxr-xr-x | constants/item_data_constants.asm | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/constants/item_data_constants.asm b/constants/item_data_constants.asm index 80dfd14..a0543de 100755 --- a/constants/item_data_constants.asm +++ b/constants/item_data_constants.asm @@ -1,6 +1,6 @@ ; item_attributes struct members (see data/items/attributes.asm) const_def - const ITEMATTR_PRICE + const ITEMATTR_PRICE_LO const ITEMATTR_PRICE_HI const ITEMATTR_EFFECT const ITEMATTR_PARAM @@ -19,10 +19,12 @@ ITEMATTR_STRUCT_LENGTH EQU const_value ; item menu types ; UseItem.dw indexes (see engine/items/pack.asm) ; UseRegisteredItem.SwitchTo indexes (see engine/overworld/select_menu.asm) -ITEMMENU_NOUSE EQU 0 -ITEMMENU_CURRENT EQU 4 -ITEMMENU_PARTY EQU 5 -ITEMMENU_CLOSE EQU 6 + const_def + const ITEMMENU_NOUSE ; 0 + const_skip 3 + const ITEMMENU_CURRENT ; 4 + const ITEMMENU_PARTY ; 5 + const ITEMMENU_CLOSE ; 6 ; item actions CANT_SELECT_F EQU 6 @@ -56,7 +58,7 @@ MAX_PC_ITEMS EQU 50 const HELD_RESTORE_ALL_PP const HELD_CLEANSE_TAG - const_def 10 + const_next 10 const HELD_HEAL_POISON const HELD_HEAL_FREEZE const HELD_HEAL_BURN @@ -65,7 +67,7 @@ MAX_PC_ITEMS EQU 50 const HELD_HEAL_STATUS const HELD_HEAL_CONFUSION - const_def 20 + const_next 20 const HELD_PREVENT_POISON const HELD_PREVENT_BURN const HELD_PREVENT_FREEZE @@ -73,7 +75,7 @@ MAX_PC_ITEMS EQU 50 const HELD_PREVENT_PARALYZE const HELD_PREVENT_CONFUSE - const_def 30 + const_next 30 const HELD_30 const HELD_ATTACK_UP const HELD_DEFENSE_UP @@ -84,7 +86,7 @@ MAX_PC_ITEMS EQU 50 const HELD_EVASION_UP const HELD_38 - const_def 40 + const_next 40 const HELD_40 const HELD_41 const HELD_METAL_POWDER @@ -95,7 +97,7 @@ MAX_PC_ITEMS EQU 50 const HELD_47 const HELD_48 - const_def 50 + const_next 50 const HELD_NORMAL_BOOST const HELD_FIGHTING_BOOST const HELD_FLYING_BOOST @@ -114,7 +116,7 @@ MAX_PC_ITEMS EQU 50 const HELD_DARK_BOOST const HELD_STEEL_BOOST - const_def 70 + const_next 70 const HELD_CATCH_CHANCE const HELD_71 const HELD_ESCAPE |