diff options
Diffstat (limited to 'data/contest_effect.s')
-rw-r--r-- | data/contest_effect.s | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/data/contest_effect.s b/data/contest_effect.s new file mode 100644 index 000000000..7bcb36bf1 --- /dev/null +++ b/data/contest_effect.s @@ -0,0 +1,21 @@ + .include "asm/macros.inc" + .include "constants/constants.inc" + + .section .rodata + +@ 83CF594 + .include "data/contest_moves.inc" + +@ 83D00AC + .include "data/contest_effects.inc" + +@ A lookup table with TRUE for each combo starter ID and FALSE for ID 0, +@ which means "not a combo starter move". +gComboStarterLookupTable:: @ 83D016C + .byte FALSE + .rept 62 + .byte TRUE + .endr + +@ 83D01AC + .include "data/contest_effect_funcs.inc" |