diff options
author | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2014-06-13 10:59:21 -0400 |
---|---|---|
committer | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2014-06-13 15:35:40 -0400 |
commit | e1a452de9e921a51a2bf40aced2b0e7a241d8cca (patch) | |
tree | a179a6248d35a88f6e52250ef1ddd32a4b7336bb | |
parent | 710ea8bec0e6643b91f292f855aab7c71a141caf (diff) |
Type constants
-rwxr-xr-x | constants.asm | 1 | ||||
-rwxr-xr-x | constants/type_constants.asm | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm index a769fbc..965e1c1 100755 --- a/constants.asm +++ b/constants.asm @@ -3,3 +3,4 @@ INCLUDE "constants/music_constants.asm" INCLUDE "constants/text_constants.asm" INCLUDE "constants/card_constants.asm" INCLUDE "constants/deck_constants.asm" +INCLUDE "constants/type_constants.asm" diff --git a/constants/type_constants.asm b/constants/type_constants.asm new file mode 100755 index 0000000..a976535 --- /dev/null +++ b/constants/type_constants.asm @@ -0,0 +1,17 @@ +FIRE EQU $0 +GRASS EQU $1 +LIGHTNING EQU $2 +WATER EQU $3 +FIGHTING EQU $4 +PSYCHIC EQU $5 +COLORLESS EQU $6 + +FIRE_ENERGY_CARD EQU $8 +GRASS_ENERGY_CARD EQU $9 +LIGHTNING_ENERGY_CARD EQU $A +WATER_ENERGY_CARD EQU $B +FIGHTING_ENERGY_CARD EQU $C +PSYCHIC_ENERGY_CARD EQU $D +DOUBLE_COLORLESS_ENERGY_CARD EQU $E + +TRAINER EQU $10 |