From 91af4cb51631ea4257a8aeb61b836fa304aa17f5 Mon Sep 17 00:00:00 2001 From: ElectroDeoxys Date: Mon, 17 May 2021 11:08:02 +0100 Subject: NPC functions disasm and documenting --- src/constants/script_constants.asm | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/constants/script_constants.asm') diff --git a/src/constants/script_constants.asm b/src/constants/script_constants.asm index d7ae7d6..3a44694 100644 --- a/src/constants/script_constants.asm +++ b/src/constants/script_constants.asm @@ -276,6 +276,7 @@ EAST EQU $01 SOUTH EQU $02 WEST EQU $03 NO_MOVE EQU %10000000 ; For rotations without movement +DIRECTION_MASK EQU $ff ^ NO_MOVE VARIABLE_CARD EQU 0 ; use the card located in wCardReceived instead of using the script's argument @@ -300,3 +301,7 @@ SCIENCE_MEDAL EQU 1 << SCIENCE_MEDAL_F GRASS_MEDAL EQU 1 << GRASS_MEDAL_F NUM_MEDALS EQU 8 + +; total number of packs that are obtained through the PC +NUM_PC_PACKS EQU 15 +PACK_OPENED EQU %10000000 -- cgit v1.2.3