diff options
author | Daniel Harding <33dannye@gmail.com> | 2021-05-30 11:07:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-30 11:07:54 -0500 |
commit | e8cbcea8e76004a9cef04499301cec5755dcc942 (patch) | |
tree | c8ed944e6ea43d03cee5367603e40881b6ac17bb /src/constants/script_constants.asm | |
parent | 0a3b84155b53785c974a2b352a6473124c56631b (diff) | |
parent | 63f0559573cbec5a199645263a36b51b503d4ed1 (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.asm | 5 |
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 |