diff options
| author | yenatch <yenatch@gmail.com> | 2017-09-26 18:16:52 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-26 18:16:52 -0400 |
| commit | 3c8091393ca12b8eeb26f236a997b70eea5688c6 (patch) | |
| tree | 4140bab7968e1f0d726adf8fdce180a186212940 /data/contest_effect.s | |
| parent | 701d53be8dc98d33d73536ac00ebe8db5d506f04 (diff) | |
| parent | def827fcd48353d8a0292db249d26ac7a85b54ef (diff) | |
Merge pull request #47 from PikalaxALT/split_data3
Split data3
Diffstat (limited to 'data/contest_effect.s')
| -rw-r--r-- | data/contest_effect.s | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/data/contest_effect.s b/data/contest_effect.s new file mode 100644 index 000000000..31b294836 --- /dev/null +++ b/data/contest_effect.s @@ -0,0 +1,22 @@ + .include "asm/macros.inc" + .include "constants/constants.inc" + + .section .rodata + +@ 858C2B4 + .include "data/contest_moves.inc" + +@ 858CDCC + .include "data/contest_effects.inc" + +@ A lookup table with a 1 for each combo starter ID and a 0 for ID 0, +@ which means "not a combo starter move". +gComboStarterLookupTable:: @ 858CE8C + .byte 0 + .rept 62 + .byte 1 + .endr + + .align 2 +@ 858CECC + .include "data/contest_effect_function_table.inc" |
