diff options
author | yenatch <yenatch@gmail.com> | 2013-06-17 21:16:16 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-06-17 21:30:25 -0400 |
commit | 41dbd3b4a6f43439f691918815f26cfad9c06231 (patch) | |
tree | 497e7fb82e133750f63e68f4041ef72cd5ce9da2 /constants/script_constants.asm | |
parent | 20c0c0e233a7599b1f21e05ddefbd67d0d17504c (diff) |
move constants files into constants/
Diffstat (limited to 'constants/script_constants.asm')
-rw-r--r-- | constants/script_constants.asm | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/constants/script_constants.asm b/constants/script_constants.asm new file mode 100644 index 000000000..30fdff8bc --- /dev/null +++ b/constants/script_constants.asm @@ -0,0 +1,42 @@ +; specials +NUM_SPECIALS EQU $a8 + +SPECIAL_UPDATESPRITETILES EQU $0038 + +SPECIAL_WAITSFX EQU $003b +SPECIAL_BIKESURFMUSIC EQU $003c + +SPECIAL_LOADFACESTEP EQU $003f + +SPECIAL_GIVESHUCKLE EQU $004b + +SPECIAL_SNORLAXAWAKE EQU $0060 + +SPECIAL_GAMEBOYCHECK EQU $0066 +SPECIAL_TRAINERHOUSE EQU $0067 + +SPECIAL_RUSTLETREE EQU $006a + +SPECIAL_ODDEGG EQU $007d + +SPECIAL_MOVETUTOR EQU $0083 +SPECIAL_OMANYTECHAMBER EQU $0084 + +SPECIAL_RUINCHAMBERWALL EQU $0087 + +SPECIAL_HOOHCHAMBER EQU $008d + +SPECIAL_CELEBI EQU $008f + +SPECIAL_AFTERCELEBI EQU $0090 +SPECIAL_POKESEER EQU $0091 + +SPECIAL_DRATINI EQU $0094 + +SPECIAL_BEASTSCHECK EQU $0096 +SPECIAL_MONCHECK EQU $0097 + + +; script vars +NUM_VARS EQU $1b +VAR_MOVEMENT EQU $08 |