diff options
-rwxr-xr-x | constants.asm | 1 | ||||
-rwxr-xr-x | constants/set_constants.asm | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm index 965e1c1..8674592 100755 --- a/constants.asm +++ b/constants.asm @@ -4,3 +4,4 @@ INCLUDE "constants/text_constants.asm" INCLUDE "constants/card_constants.asm" INCLUDE "constants/deck_constants.asm" INCLUDE "constants/type_constants.asm" +INCLUDE "constants/set_constants.asm" diff --git a/constants/set_constants.asm b/constants/set_constants.asm new file mode 100755 index 0000000..d3cfa57 --- /dev/null +++ b/constants/set_constants.asm @@ -0,0 +1,21 @@ +COLOSSEUM EQU $00 +EVOLUTION EQU $10 +MYSTERY EQU $20 +LABORATORY EQU $30 +PROMOTIONAL EQU $40 +ENERGY EQU $50 + +NONE EQU $0 +JUNGLE EQU $1 +FOSSIL EQU $2 +GB EQU $7 +PRO EQU $8 + +BASIC EQU $0 +STAGE1 EQU $1 +STAGE2 EQU $2 + +CIRCLE EQU $0 +DIAMOND EQU $1 +STAR EQU $2 +PROMOSTAR EQU $FF |