pokecrystal-board/data/battle/held_heal_status.asm

12 lines
289 B
NASM
Raw Normal View History

2018-01-25 18:34:42 -08:00
; See also data/items/heal_status.asm
HeldStatusHealingEffects: ; 3de44
db HELD_HEAL_POISON, 1 << PSN
db HELD_HEAL_FREEZE, 1 << FRZ
db HELD_HEAL_BURN, 1 << BRN
db HELD_HEAL_SLEEP, SLP
db HELD_HEAL_PARALYZE, 1 << PAR
db HELD_HEAL_STATUS, ALL_STATUS
db -1 ; end
; 3de51