diff options
Diffstat (limited to 'stadiumgs/constants')
-rw-r--r-- | stadiumgs/constants/item_constants.s | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/stadiumgs/constants/item_constants.s b/stadiumgs/constants/item_constants.s index 22a3c8d..9d876ed 100644 --- a/stadiumgs/constants/item_constants.s +++ b/stadiumgs/constants/item_constants.s @@ -1006,6 +1006,7 @@ ABC_RGBY_ITEM_C2 EQU 249 ABC_RGBY_ITEM_C3 EQU 250 ; held item effects +HELD_NONE EQU 0 HELD_BERRY EQU 1 HELD_2 EQU 2 HELD_LEFTOVERS EQU 3 @@ -1067,8 +1068,19 @@ HELD_71 EQU 71 HELD_ESCAPE EQU 72 HELD_CRITICAL_UP EQU 73 HELD_QUICK_CLAW EQU 74 -HELD_TRADE_EVOLVE EQU 75 +HELD_FLINCH EQU 75 HELD_AMULET_COIN EQU 76 HELD_BRIGHTPOWDER EQU 77 HELD_78 EQU 78 HELD_FOCUS_BAND EQU 79 + +HELD_BERSERK_GENE EQU 254 + +CANT_TOSS EQU 0x80 +CANT_SELECT EQU 0x40 +NO_LIMITS EQU 0x00 + +ITEM EQU 1 +KEY EQU 2 +BALL EQU 3 +TM_HM EQU 4 |