shithub: pokecrystal

Download patch

ref: bf73fd43db61dca451be553aec4227be5e004540
parent: 9f5396eff6bd7b8cded83cc450ea7ded8b6c0f9f
author: yenatch <yenatch@gmail.com>
date: Mon May 6 07:41:12 EDT 2013

residual status constants

--- a/constants.asm
+++ b/constants.asm
@@ -3772,6 +3772,12 @@
 SUBSTATUS_TOXIC        EQU 0
 
 
+SCREENS_REFLECT      EQU 4
+SCREENS_LIGHT_SCREEN EQU 3
+SCREENS_SAFEGUARD    EQU 2
+SCREENS_SPIKES       EQU 0
+
+
 ; status
 SLP EQU 7 ; 7 turns
 
--- a/wram.asm
+++ b/wram.asm
@@ -711,6 +711,7 @@
 ; bit
 ; 4 reflect
 ; 3 light screen
+; 2 safeguard
 ; 0 spikes
 	ds 1
 
--