summaryrefslogtreecommitdiff
path: root/src/constants/script_constants.asm
diff options
context:
space:
mode:
authorDaniel Harding <33dannye@gmail.com>2021-05-30 11:07:54 -0500
committerGitHub <noreply@github.com>2021-05-30 11:07:54 -0500
commite8cbcea8e76004a9cef04499301cec5755dcc942 (patch)
treec8ed944e6ea43d03cee5367603e40881b6ac17bb /src/constants/script_constants.asm
parent0a3b84155b53785c974a2b352a6473124c56631b (diff)
parent63f0559573cbec5a199645263a36b51b503d4ed1 (diff)
Merge pull request #105 from ElectroDeoxys/master
Work on Bank $7 (NPCs, Start Menu and Opening/Credits sequences)
Diffstat (limited to 'src/constants/script_constants.asm')
-rw-r--r--src/constants/script_constants.asm5
1 files changed, 5 insertions, 0 deletions
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