diff options
author | Sawakita <sawakitanoodles@gmail.com> | 2011-12-27 00:35:59 +0100 |
---|---|---|
committer | Sawakita <sawakitanoodles@gmail.com> | 2011-12-27 00:35:59 +0100 |
commit | bb75886d1ac5875a3a9459d2daa44452730b216a (patch) | |
tree | e84951a697a175b162144cbbe490ea155417e591 /constants.asm | |
parent | ba98f3bc22b4ae5ce1ab7c051577f012ec07658e (diff) |
Add status ailments masks (FRZ, SLP).
hg-commit-id: 59498d11c5aa
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/constants.asm b/constants.asm index 520aa073..f972a5f4 100644 --- a/constants.asm +++ b/constants.asm @@ -90,7 +90,7 @@ W_ISLINKBATTLE EQU $D12B W_CURMAP EQU $D35E -W_YCOORD EQU $D361 ; player’s position on the current map +W_YCOORD EQU $D361 ; player¿s position on the current map W_XCOORD EQU $D362 W_RIVALSTARTER EQU $D715 @@ -913,3 +913,8 @@ NORTH EQU 8 ; different kinds of people events ITEM EQU $80 TRAINER EQU $40 + +; status ailments (masks) +FRZ EQU %00100000 +SLP EQU %00000111 + |