diff options
author | entrpntr <entrpntr@gmail.com> | 2020-04-19 21:36:23 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-04-19 21:36:23 -0400 |
commit | 0def3b67fa0a64bc2e2778c99c53e1a77cbf302c (patch) | |
tree | c70beb8a39f122cad0753a2f4974ac6d1712e3f6 /data/battle/held_heal_status.asm | |
parent | 7b63a9c032a130a08fc554b9b6790fe47d170530 (diff) |
Start adding engine/battle/core.asm.
Diffstat (limited to 'data/battle/held_heal_status.asm')
-rw-r--r-- | data/battle/held_heal_status.asm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/data/battle/held_heal_status.asm b/data/battle/held_heal_status.asm new file mode 100644 index 00000000..ac11b645 --- /dev/null +++ b/data/battle/held_heal_status.asm @@ -0,0 +1,10 @@ +; See also data/items/heal_status.asm + +HeldStatusHealingEffects: + 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 |