diff options
| author | Bryan Bishop <kanzure@gmail.com> | 2012-02-14 12:07:07 -0600 | 
|---|---|---|
| committer | Bryan Bishop <kanzure@gmail.com> | 2012-02-14 12:07:07 -0600 | 
| commit | 015e605dd1b99dfb0690f8e57d1d366bef051729 (patch) | |
| tree | ca0c35c46ecf1cfaa898821f91fb5033ea963b8a | |
| parent | 51cb5bca9791606385b1e1254fc180a342f91819 (diff) | |
more status ailment constants
hg-commit-id: fdf8b3f10a40
| -rw-r--r-- | constants.asm | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/constants.asm b/constants.asm index de605350..4eff3c5b 100644 --- a/constants.asm +++ b/constants.asm @@ -1985,8 +1985,11 @@ ITEM EQU $80  TRAINER EQU $40  ; status ailments (masks) -FRZ		EQU %00100000 -SLP		EQU %00000111 +SLP     EQU %00000111 +PSN     EQU %00001000 +BRN     EQU %00010000 +FRZ     EQU %00100000 +PAR     EQU %01000000  SPRITE_RED                       EQU $01  SPRITE_BLUE                      EQU $02 | 
