diff options
| author | Marcus Huderle <huderlem@gmail.com> | 2014-05-12 17:41:21 -0500 |
|---|---|---|
| committer | Marcus Huderle <huderlem@gmail.com> | 2014-05-12 17:41:21 -0500 |
| commit | 36d588a83c249e2df7a3177eb7aa22e2b09658e0 (patch) | |
| tree | 5c98d8090ac12e4ac400fd7ceb7631bd8b68caed /constants/status_constants.asm | |
| parent | Documented/labeled lots of move-effect-related stuff. (diff) | |
| parent | Merge remote-tracking branch 'iimarckus/master' (diff) | |
| download | pokeyellow-36d588a83c249e2df7a3177eb7aa22e2b09658e0.tar.gz pokeyellow-36d588a83c249e2df7a3177eb7aa22e2b09658e0.tar.xz pokeyellow-36d588a83c249e2df7a3177eb7aa22e2b09658e0.zip | |
Merged with yenatch
Diffstat (limited to 'constants/status_constants.asm')
| -rwxr-xr-x | constants/status_constants.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/constants/status_constants.asm b/constants/status_constants.asm index 8dd99e1d..866ea03c 100755 --- a/constants/status_constants.asm +++ b/constants/status_constants.asm @@ -1,6 +1,6 @@ -; status ailments (masks)
-SLP EQU %00000111
-PSN EQU %00001000
-BRN EQU %00010000
-FRZ EQU %00100000
-PAR EQU %01000000
\ No newline at end of file +; status ailments
+SLP EQU %111 ; mask
+PSN EQU 3
+BRN EQU 4
+FRZ EQU 5
+PAR EQU 6
|
