diff --git a/asm/macros.inc b/asm/macros.inc index 031b4cd1..651a3ca0 100644 --- a/asm/macros.inc +++ b/asm/macros.inc @@ -3,3 +3,4 @@ .include "asm/macros/m4a.inc" .include "asm/macros/map.inc" .include "asm/macros/entity.inc" + .include "asm/macros/music_voice.inc" \ No newline at end of file diff --git a/asm/macros/music_voice.inc b/asm/macros/music_voice.inc index 9a95d69f..cd1daa64 100644 --- a/asm/macros/music_voice.inc +++ b/asm/macros/music_voice.inc @@ -1,19 +1,19 @@ - .macro voice_directsound base_midi_key, pan, sample_data_pointer, attack, decay, sustain, release + .macro voice_directsound base_midi_key:req, pan:req, sample_data_pointer:req, attack:req, decay:req, sustain:req, release:req .byte 0 _voice_directsound \base_midi_key, \pan, \sample_data_pointer, \attack, \decay, \sustain, \release .endm - .macro voice_directsound_no_resample base_midi_key, pan, sample_data_pointer, attack, decay, sustain, release + .macro voice_directsound_no_resample base_midi_key:req, pan:req, sample_data_pointer:req, attack:req, decay:req, sustain:req, release:req .byte 8 _voice_directsound \base_midi_key, \pan, \sample_data_pointer, \attack, \decay, \sustain, \release .endm - .macro voice_directsound_alt base_midi_key, pan, sample_data_pointer, attack, decay, sustain, release + .macro voice_directsound_alt base_midi_key:req, pan:req, sample_data_pointer:req, attack:req, decay:req, sustain:req, release:req .byte 16 _voice_directsound \base_midi_key, \pan, \sample_data_pointer, \attack, \decay, \sustain, \release .endm - .macro _voice_directsound base_midi_key, pan, sample_data_pointer, attack, decay, sustain, release + .macro _voice_directsound base_midi_key:req, pan:req, sample_data_pointer:req, attack:req, decay:req, sustain:req, release:req .byte \base_midi_key .byte 0 .if \pan != 0 @@ -28,16 +28,22 @@ .byte \release .endm - .macro voice_square_1 sweep, duty_cycle, attack, decay, sustain, release - _voice_square_1 1, \sweep, \duty_cycle, \attack, \decay, \sustain, \release + .macro voice_square_1 base_midi_key:req, pan:req, sweep:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req + _voice_square_1 1, \base_midi_key, \pan, \sweep, \duty_cycle, \attack, \decay, \sustain, \release .endm - .macro voice_square_1_alt sweep, duty_cycle, attack, decay, sustain, release - _voice_square_1 9, \sweep, \duty_cycle, \attack, \decay, \sustain, \release + .macro voice_square_1_alt base_midi_key:req, pan:req, sweep:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req + _voice_square_1 9, \base_midi_key, \pan, \sweep, \duty_cycle, \attack, \decay, \sustain, \release .endm - .macro _voice_square_1 type, sweep, duty_cycle, attack, decay, sustain, release - .byte \type, 60, 0 + .macro _voice_square_1 type:req, base_midi_key:req, pan:req, sweep:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req + .byte \type + .byte \base_midi_key + .if \pan != 0 + .byte (0x80 | \pan) + .else + .byte 0 + .endif .byte \sweep .byte (\duty_cycle & 0x3) .byte 0, 0, 0 @@ -47,16 +53,23 @@ .byte (\release & 0x7) .endm - .macro voice_square_2 duty_cycle, attack, decay, sustain, release - _voice_square_2 2, \duty_cycle, \attack, \decay, \sustain, \release + .macro voice_square_2 base_midi_key:req, pan:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req + _voice_square_2 2, \base_midi_key, \pan, \duty_cycle, \attack, \decay, \sustain, \release .endm - .macro voice_square_2_alt duty_cycle, attack, decay, sustain, release - _voice_square_2 10, \duty_cycle, \attack, \decay, \sustain, \release + .macro voice_square_2_alt base_midi_key:req, pan:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req + _voice_square_2 10, \base_midi_key, \pan, \duty_cycle, \attack, \decay, \sustain, \release .endm - .macro _voice_square_2 type, duty_cycle, attack, decay, sustain, release - .byte \type, 60, 0, 0 + .macro _voice_square_2 type:req, base_midi_key:req, pan:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req + .byte \type + .byte \base_midi_key + .if \pan != 0 + .byte (0x80 | \pan) + .else + .byte 0 + .endif + .byte 0 .byte (\duty_cycle & 0x3) .byte 0, 0, 0 .byte (\attack & 0x7) @@ -65,16 +78,23 @@ .byte (\release & 0x7) .endm - .macro voice_programmable_wave wave_samples_pointer, attack, decay, sustain, release - _voice_programmable_wave 3, \wave_samples_pointer, \attack, \decay, \sustain, \release + .macro voice_programmable_wave base_midi_key:req, pan:req, wave_samples_pointer:req, attack:req, decay:req, sustain:req, release:req + _voice_programmable_wave 3, \base_midi_key, \pan, \wave_samples_pointer, \attack, \decay, \sustain, \release .endm - .macro voice_programmable_wave_alt wave_samples_pointer, attack, decay, sustain, release - _voice_programmable_wave 11, \wave_samples_pointer, \attack, \decay, \sustain, \release + .macro voice_programmable_wave_alt base_midi_key:req, pan:req, wave_samples_pointer:req, attack:req, decay:req, sustain:req, release:req + _voice_programmable_wave 11, \base_midi_key, \pan, \wave_samples_pointer, \attack, \decay, \sustain, \release .endm - .macro _voice_programmable_wave type, wave_samples_pointer, attack, decay, sustain, release - .byte \type, 60, 0, 0 + .macro _voice_programmable_wave type:req, base_midi_key:req, pan:req, wave_samples_pointer:req, attack:req, decay:req, sustain:req, release:req + .byte \type + .byte \base_midi_key + .if \pan != 0 + .byte (0x80 | \pan) + .else + .byte 0 + .endif + .byte 0 .4byte \wave_samples_pointer .byte (\attack & 0x7) .byte (\decay & 0x7) @@ -82,16 +102,23 @@ .byte (\release & 0x7) .endm - .macro voice_noise period, attack, decay, sustain, release - _voice_noise 4, \period, \attack, \decay, \sustain, \release + .macro voice_noise base_midi_key:req, pan:req, period:req, attack:req, decay:req, sustain:req, release:req + _voice_noise 4, \base_midi_key, \pan, \period, \attack, \decay, \sustain, \release .endm - .macro voice_noise_alt period, attack, decay, sustain, release - _voice_noise 12, \period, \attack, \decay, \sustain, \release + .macro voice_noise_alt base_midi_key:req, pan:req, period:req, attack:req, decay:req, sustain:req, release:req + _voice_noise 12, \base_midi_key, \pan, \period, \attack, \decay, \sustain, \release .endm - .macro _voice_noise type, period, attack, decay, sustain, release - .byte \type, 60, 0, 0 + .macro _voice_noise type:req, base_midi_key:req, pan:req, period:req, attack:req, decay:req, sustain:req, release:req + .byte \type + .byte \base_midi_key + .byte 0 + .if \pan != 0 + .byte (0x80 | \pan) + .else + .byte 0 + .endif .byte (\period & 0x1) .byte 0, 0, 0 .byte (\attack & 0x7) @@ -100,14 +127,14 @@ .byte (\release & 0x7) .endm - .macro voice_keysplit voice_group_pointer, keysplit_table_pointer + .macro voice_keysplit voice_group_pointer:req, keysplit_table_pointer:req .byte 0x40, 0, 0, 0 .4byte \voice_group_pointer .4byte \keysplit_table_pointer .endm - .macro voice_keysplit_all voice_group_pointer + .macro voice_keysplit_all voice_group_pointer:req .byte 0x80, 0, 0, 0 .4byte \voice_group_pointer .4byte 0 - .endm + .endm \ No newline at end of file diff --git a/data/voicegroups.s b/data/voicegroups.s index 5bb56e08..21f0f18e 100644 --- a/data/voicegroups.s +++ b/data/voicegroups.s @@ -5,3820 +5,8280 @@ .align 2 voicegroup000:: @ 089FC99C - .incbin "voicegroups/voicegroup000.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 3, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 1, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 3, 0, 0, 15, 0 voicegroup001:: @ 089FC9FC - .incbin "voicegroups/voicegroup001.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup001_1.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup001_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup001_3.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup001_4.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup001_5.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup001_6.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup001_7.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup001_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup001_9.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup001_10.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup001_11.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup001_12.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup001_13.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup001_14.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup001_15.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup001_16.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup001_17.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup001_18.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup001_19.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 216 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup002:: @ 089FCFFC - .incbin "voicegroups/voicegroup002.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup002_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup002_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup002_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup002_4.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup002_5.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup002_6.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup002_7.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup003:: @ 089FD5FC - .incbin "voicegroups/voicegroup003.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup003_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup003_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup003_3.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup003_4.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup003_5.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup003_6.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup003_7.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup003_8.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup003_9.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup003_10.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup003_11.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup003_12.bin" - .4byte gUnk_08A5A90C - .incbin "voicegroups/voicegroup003_13.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup003_14.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup003_15.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup003_16.bin" - .4byte gUnk_08A5DF38 - .incbin "voicegroups/voicegroup003_17.bin" - .4byte gUnk_08A5DF38 - .incbin "voicegroups/voicegroup003_18.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup003_19.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 231, 226 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 231, 242 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 231, 127 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A5A90C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5DF38, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5DF38, 255, 0, 255, 235 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup004:: @ 089FDBFC - .incbin "voicegroups/voicegroup004.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup004_1.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup004_2.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup004_3.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup004_4.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 242 voicegroup005:: @ 089FDDF4 - .incbin "voicegroups/voicegroup005.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup005_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup005_2.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup005_3.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup005_4.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup005_5.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup005_6.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup005_7.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup005_8.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup005_9.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1F640, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 204 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup006:: @ 089FE3F4 - .incbin "voicegroups/voicegroup006.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup006_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup006_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup006_3.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup006_4.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup006_5.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup006_6.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup006_7.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup006_8.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup006_9.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup006_10.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup006_11.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup006_12.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup006_13.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 226 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 voicegroup007:: @ 089FE6B8 - .incbin "voicegroups/voicegroup007.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup007_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup007_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup007_3.bin" - .4byte gUnk_08A94EFC - .incbin "voicegroups/voicegroup007_4.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup007_5.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup007_6.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup007_7.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup007_8.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup007_9.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup007_10.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup007_11.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup007_12.bin" - .4byte gUnk_08A9CA48 - .incbin "voicegroups/voicegroup007_13.bin" - .4byte gUnk_08AA2720 - .incbin "voicegroups/voicegroup007_14.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup007_15.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup007_16.bin" - .4byte gUnk_08A94EFC - .incbin "voicegroups/voicegroup007_17.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A94EFC, 255, 0, 128, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A9CA48, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08AA2720, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A94EFC, 255, 0, 255, 216 voicegroup008:: @ 089FE9A0 - .incbin "voicegroups/voicegroup008.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup008_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup008_2.bin" - .4byte gUnk_08AAC0D8 - .incbin "voicegroups/voicegroup008_3.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup008_4.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup008_5.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup008_6.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup008_7.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup008_8.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup008_9.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup008_10.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup008_11.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup008_12.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup008_13.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup008_14.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup008_15.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup008_16.bin" - .4byte gUnk_08A5A90C - .incbin "voicegroups/voicegroup008_17.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup008_18.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup008_19.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup008_20.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup008_21.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup008_22.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup008_23.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup008_24.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup008_25.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup008_26.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup008_27.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup008_28.bin" - .4byte gUnk_08A9CA48 - .incbin "voicegroups/voicegroup008_29.bin" - .4byte gUnk_08ABFDEC - .incbin "voicegroups/voicegroup008_30.bin" - .4byte gUnk_08AA2720 - .incbin "voicegroups/voicegroup008_31.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup008_32.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup008_33.bin" - .4byte gUnk_08A94EFC - .incbin "voicegroups/voicegroup008_34.bin" - .4byte gUnk_08A5DF38 - .incbin "voicegroups/voicegroup008_35.bin" - .4byte gUnk_08A5DF38 - .incbin "voicegroups/voicegroup008_36.bin" - .4byte gUnk_08AC7984 - .incbin "voicegroups/voicegroup008_37.bin" - .4byte gUnk_08AAC0D8 - .incbin "voicegroups/voicegroup008_38.bin" - .4byte gUnk_08ADD258 - .incbin "voicegroups/voicegroup008_39.bin" - .4byte gUnk_08AAC0D8 - .incbin "voicegroups/voicegroup008_40.bin" - .4byte gUnk_08ADD258 - .incbin "voicegroups/voicegroup008_41.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup008_42.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 64, 0, 231, 127 + voice_directsound 60, 0, gUnk_08AAC0D8, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 231, 249 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 231, 226 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 231, 242 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 231, 127 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 128, 127 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A5A90C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A9CA48, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08ABFDEC, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AA2720, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A94EFC, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5DF38, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5DF38, 255, 0, 255, 235 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AC7984, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AAC0D8, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08ADD258, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08AAC0D8, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08ADD258, 255, 0, 255, 249 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup009:: @ 089FEFA0 - .incbin "voicegroups/voicegroup009.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup009_1.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup009_2.bin" - .4byte gUnk_08ABFDEC - .incbin "voicegroups/voicegroup009_3.bin" - .4byte gUnk_08AA2720 - .incbin "voicegroups/voicegroup009_4.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 235 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08ABFDEC, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AA2720, 255, 0, 255, 127 voicegroup010:: @ 089FF24C - .incbin "voicegroups/voicegroup010.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup010_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup010_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup010_3.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup010_4.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup010_5.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup010_6.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup010_7.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup010_8.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup010_9.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup010_10.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup010_11.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup010_12.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup010_13.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup010_14.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup010_15.bin" - .4byte gUnk_08A94EFC - .incbin "voicegroups/voicegroup010_16.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup010_17.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 226 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A94EFC, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup011:: @ 089FF84C - .incbin "voicegroups/voicegroup011.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup011_1.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup011_2.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup011_3.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup011_4.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup011_5.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1F640, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup012:: @ 089FFE4C - .incbin "voicegroups/voicegroup012.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup012_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup012_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup012_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup012_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup012_5.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup012_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup012_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup012_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup012_9.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup012_10.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup012_11.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup012_12.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup012_13.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup012_14.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup012_15.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup012_16.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup012_17.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup012_18.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup012_19.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup013:: @ 08A0044C - .incbin "voicegroups/voicegroup013.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup013_1.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup013_2.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup013_3.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup013_4.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup013_5.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup013_6.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup013_7.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup014:: @ 08A00A4C - .incbin "voicegroups/voicegroup014.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup014_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup014_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup014_3.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup014_4.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup014_5.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup014_6.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup014_7.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup014_8.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup014_9.bin" - .4byte gUnk_08A9CA48 - .incbin "voicegroups/voicegroup014_10.bin" - .4byte gUnk_08AA2720 - .incbin "voicegroups/voicegroup014_11.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A12ED0, 11, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A9CA48, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08AA2720, 255, 0, 255, 242 voicegroup015:: @ 08A00CF8 - .incbin "voicegroups/voicegroup015.bin" - .4byte gUnk_08A11BDC - .incbin "voicegroups/voicegroup015_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup015_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup015_3.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup015_4.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup015_5.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup015_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup015_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup015_8.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup015_9.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup015_10.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup015_11.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup015_12.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup015_13.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup015_14.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup015_15.bin" - .4byte gUnk_08A9CA48 - .incbin "voicegroups/voicegroup015_16.bin" - .4byte gUnk_08AF1E3C - .incbin "voicegroups/voicegroup015_17.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup015_18.bin" - .4byte gUnk_08AF5C90 - .incbin "voicegroups/voicegroup015_19.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup015_20.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11BDC, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A9CA48, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AF1E3C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AF5C90, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup016:: @ 08A012F8 - .incbin "voicegroups/voicegroup016.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup016_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup016_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup016_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup016_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup016_5.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup016_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup016_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup016_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup016_9.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup016_10.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup016_11.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup016_12.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup016_13.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup016_14.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup016_15.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup016_16.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup016_17.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup016_18.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup016_19.bin" - .4byte gUnk_08A9CA48 - .incbin "voicegroups/voicegroup016_20.bin" - .4byte gUnk_08AA2720 - .incbin "voicegroups/voicegroup016_21.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup016_22.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup016_23.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A9CA48, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AA2720, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup017:: @ 08A018F8 - .incbin "voicegroups/voicegroup017.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup017_1.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup017_2.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup017_3.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup017_4.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup017_5.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup017_6.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup017_7.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup017_8.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup017_9.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup017_10.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup017_11.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup017_12.bin" - .4byte gUnk_08AC7984 - .incbin "voicegroups/voicegroup017_13.bin" - .4byte gUnk_08B08B14 - .incbin "voicegroups/voicegroup017_14.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup017_15.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AC7984, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08B08B14, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup018:: @ 08A01EF8 - .incbin "voicegroups/voicegroup018.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup018_1.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup018_2.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup018_3.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup018_4.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup018_5.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup018_6.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup018_7.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 216 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 226 voicegroup019:: @ 08A022C4 - .incbin "voicegroups/voicegroup019.bin" - .4byte gUnk_08A11BDC - .incbin "voicegroups/voicegroup019_1.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup019_2.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup019_3.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup019_4.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup019_5.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup019_6.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup019_7.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup019_8.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup019_9.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup019_10.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11BDC, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup020:: @ 08A028C4 - .incbin "voicegroups/voicegroup020.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup020_1.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup020_2.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup020_3.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup020_4.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup020_5.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup020_6.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup020_7.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup020_8.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup020_9.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup020_10.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 216 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 226 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup021:: @ 08A02EC4 - .incbin "voicegroups/voicegroup021.bin" - .4byte gUnk_08A11BDC - .incbin "voicegroups/voicegroup021_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup021_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup021_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup021_4.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup021_5.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup021_6.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup021_7.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup021_8.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup021_9.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup021_10.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup021_11.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup021_12.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup021_13.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup021_14.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup021_15.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup021_16.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup021_17.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11BDC, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup022:: @ 08A034C4 - .incbin "voicegroups/voicegroup022.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup022_1.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup022_2.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup022_3.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup022_4.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup022_5.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 voicegroup023:: @ 08A03794 - .incbin "voicegroups/voicegroup023.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup023_1.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup023_2.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup023_3.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup023_4.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup023_5.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup023_6.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup023_7.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 216 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 226 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 188 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup024:: @ 08A03D94 - .incbin "voicegroups/voicegroup024.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup024_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup024_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup024_3.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup024_4.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup024_5.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup024_6.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup024_7.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup024_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup024_9.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup024_10.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup024_11.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup024_12.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup024_13.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup024_14.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup024_15.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup024_16.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup024_17.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup024_18.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup024_19.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup025:: @ 08A04394 - .incbin "voicegroups/voicegroup025.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup025_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup025_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup025_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup025_4.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup025_5.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup025_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup025_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup025_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup025_9.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup025_10.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup025_11.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup025_12.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup025_13.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup025_14.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup025_15.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup025_16.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup025_17.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup025_18.bin" - .4byte gUnk_08A94EFC - .incbin "voicegroups/voicegroup025_19.bin" - .4byte gUnk_08AC7984 - .incbin "voicegroups/voicegroup025_20.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup025_21.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 226 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A94EFC, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AC7984, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup026:: @ 08A04994 - .incbin "voicegroups/voicegroup026.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup026_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup026_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup026_3.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup026_4.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup026_5.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup026_6.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup026_7.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup026_8.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup026_9.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup026_10.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup026_11.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup026_12.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup026_13.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup026_14.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup026_15.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup026_16.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 216 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 235 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup027:: @ 08A04F94 - .incbin "voicegroups/voicegroup027.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup027_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup027_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup027_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup027_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup027_5.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup027_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup027_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup027_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup027_9.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup027_10.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup027_11.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup027_12.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup027_13.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup027_14.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup027_15.bin" - .4byte gUnk_08B10568 - .incbin "voicegroups/voicegroup027_16.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup027_17.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 226 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08B10568, 255, 0, 255, 89 + voice_keysplit_all voicegroup059 voicegroup028:: @ 08A05594 - .incbin "voicegroups/voicegroup028.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup028_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup028_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup028_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup028_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup028_5.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup028_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup028_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup028_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup028_9.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup028_10.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup028_11.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup028_12.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup028_13.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup028_14.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup028_15.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup028_16.bin" - .4byte gUnk_08B1CC7C - .incbin "voicegroups/voicegroup028_17.bin" - .4byte gUnk_08AF5C90 - .incbin "voicegroups/voicegroup028_18.bin" - .4byte gUnk_08B25CD0 - .incbin "voicegroups/voicegroup028_19.bin" - .4byte gUnk_08B2A77C - .incbin "voicegroups/voicegroup028_20.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup028_21.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 226 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08B1CC7C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AF5C90, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B25CD0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B2A77C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup029:: @ 08A05B94 - .incbin "voicegroups/voicegroup029.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup029_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup029_2.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup029_3.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup029_4.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup029_5.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup029_6.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup029_7.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup029_8.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup029_9.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 216 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup030:: @ 08A06194 - .incbin "voicegroups/voicegroup030.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup030_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup030_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup030_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup030_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup030_5.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup030_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup030_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup030_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup030_9.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup030_10.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup030_11.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup030_12.bin" - .4byte gUnk_08B2EB90 - .incbin "voicegroups/voicegroup030_13.bin" - .4byte gUnk_08B39D60 - .incbin "voicegroups/voicegroup030_14.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup030_15.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup030_16.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup030_17.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup030_18.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup030_19.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup030_20.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup030_21.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup030_22.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A3C71C, 19, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08B2EB90, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B39D60, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 26, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup031:: @ 08A06794 - .incbin "voicegroups/voicegroup031.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup031_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup031_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup031_3.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup031_4.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup031_5.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup031_6.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup031_7.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup031_8.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup031_9.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup031_10.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup031_11.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup031_12.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup031_13.bin" - .4byte gUnk_08A5A90C - .incbin "voicegroups/voicegroup031_14.bin" - .4byte gUnk_08A5A90C - .incbin "voicegroups/voicegroup031_15.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup031_16.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup031_17.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup031_18.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup031_19.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup031_20.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup031_21.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup031_22.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup031_23.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup031_24.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup031_25.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup031_26.bin" - .4byte gUnk_08A5DF38 - .incbin "voicegroups/voicegroup031_27.bin" - .4byte gUnk_08A5DF38 - .incbin "voicegroups/voicegroup031_28.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup031_29.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 231, 226 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 231, 242 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 231, 127 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A5A90C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5A90C, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 226 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5DF38, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5DF38, 255, 0, 255, 235 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup032:: @ 08A06D94 - .incbin "voicegroups/voicegroup032.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup032_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup032_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup032_3.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup032_4.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup032_5.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup032_6.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup032_7.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup032_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup032_9.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup032_10.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup032_11.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup032_12.bin" - .4byte gUnk_08A5A90C - .incbin "voicegroups/voicegroup032_13.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup032_14.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup032_15.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup032_16.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup032_17.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup032_18.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup032_19.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A5A90C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup033:: @ 08A07394 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 .ifdef EU - @ TODO only small differences - .incbin "voicegroups/voicegroup033_EU.bin" - .4byte 0x2 - .incbin "voicegroups/voicegroup033_1_EU.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 .else - .incbin "voicegroups/voicegroup033_2_USA-JP-DEMO_USA-DEMO_JP.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup033_3_USA-JP-DEMO_USA-DEMO_JP.bin" + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 216 .endif - .4byte gUnk_08A16610 -.ifdef EU - @ TODO only small differences - .incbin "voicegroups/voicegroup033_4_EU.bin" -.else - .incbin "voicegroups/voicegroup033_5_USA-JP-DEMO_USA-DEMO_JP.bin" -.endif - .4byte gUnk_08A12ED0 -.ifdef EU - @ TODO only small differences - .incbin "voicegroups/voicegroup033_6_EU.bin" -.else - .incbin "voicegroups/voicegroup033_7_USA-JP-DEMO_USA-DEMO_JP.bin" -.endif - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup033_8.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup033_9.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup033_10.bin" + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + +@ .ifdef EU +@ @ TODO only small differences +@ .incbin "voicegroups/voicegroup033_EU.bin" +@ .4byte 0x2 +@ .incbin "voicegroups/voicegroup033_1_EU.bin" +@ .else +@ .incbin "voicegroups/voicegroup033_2_USA-JP-DEMO_USA-DEMO_JP.bin" +@ .4byte gUnk_08A12ED0 +@ .incbin "voicegroups/voicegroup033_3_USA-JP-DEMO_USA-DEMO_JP.bin" +@ .endif +@ .4byte gUnk_08A16610 +@ .ifdef EU +@ @ TODO only small differences +@ .incbin "voicegroups/voicegroup033_4_EU.bin" +@ .else +@ .incbin "voicegroups/voicegroup033_5_USA-JP-DEMO_USA-DEMO_JP.bin" +@ .endif +@ .4byte gUnk_08A12ED0 +@ .ifdef EU +@ @ TODO only small differences +@ .incbin "voicegroups/voicegroup033_6_EU.bin" +@ .else +@ .incbin "voicegroups/voicegroup033_7_USA-JP-DEMO_USA-DEMO_JP.bin" +@ .endif +@ .4byte gUnk_08A1A54C +@ .incbin "voicegroups/voicegroup033_8.bin" +@ .4byte gUnk_08A84DCC +@ .incbin "voicegroups/voicegroup033_9.bin" +@ .4byte gUnk_08A5496C +@ .incbin "voicegroups/voicegroup033_10.bin" voicegroup034:: @ 08A07610 - .incbin "voicegroups/voicegroup034.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup034_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup034_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup034_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup034_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup034_5.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup034_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup034_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup034_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup034_9.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup034_10.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup034_11.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup034_12.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup034_13.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup034_14.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup034_15.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup034_16.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup034_17.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup035:: @ 08A07C10 - .incbin "voicegroups/voicegroup035.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup035_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup035_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup035_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup035_4.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup035_5.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup035_6.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup035_7.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup035_8.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup036:: @ 08A08210 - .incbin "voicegroups/voicegroup036.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup036_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup036_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup036_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup036_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup036_5.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup036_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup036_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup036_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup036_9.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup036_10.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup036_11.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup036_12.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup036_13.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup036_14.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup036_15.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup036_16.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup037:: @ 08A08810 - .incbin "voicegroups/voicegroup037.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup037_1.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup037_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup037_3.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup037_4.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup037_5.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup037_6.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup037_7.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup037_8.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup037_9.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup037_10.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup037_11.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup037_12.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup037_13.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup037_14.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup037_15.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup037_16.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup037_17.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup037_18.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup037_19.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup037_20.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup037_21.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup037_22.bin" - .4byte gUnk_08B08B14 - .incbin "voicegroups/voicegroup037_23.bin" - .4byte gUnk_08AAC0D8 - .incbin "voicegroups/voicegroup037_24.bin" - .4byte gUnk_08ADD258 - .incbin "voicegroups/voicegroup037_25.bin" - .4byte gUnk_08AAC0D8 - .incbin "voicegroups/voicegroup037_26.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup037_27.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08B08B14, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AAC0D8, 26, 0, 255, 165 + voice_directsound 60, 0, gUnk_08ADD258, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08AAC0D8, 26, 0, 255, 249 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup038:: @ 08A08E10 - .incbin "voicegroups/voicegroup038.bin" - .4byte gUnk_08A11C0C - .incbin "voicegroups/voicegroup038_1.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup038_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup038_3.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup038_4.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup038_5.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup038_6.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup038_7.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup038_8.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup038_9.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup038_10.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup038_11.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup038_12.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup038_13.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup038_14.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup038_15.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup038_16.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup038_17.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup038_18.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup038_19.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup038_20.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup038_21.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup038_22.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup038_23.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup038_24.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup038_25.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup038_26.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup038_27.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup038_28.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup038_29.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup038_30.bin" - .4byte gUnk_08B1CC7C - .incbin "voicegroups/voicegroup038_31.bin" - .4byte gUnk_08A94EFC - .incbin "voicegroups/voicegroup038_32.bin" - .4byte gUnk_08AC7984 - .incbin "voicegroups/voicegroup038_33.bin" - .4byte gUnk_08AF5C90 - .incbin "voicegroups/voicegroup038_34.bin" - .4byte gUnk_08B25CD0 - .incbin "voicegroups/voicegroup038_35.bin" - .4byte gUnk_08B2A77C - .incbin "voicegroups/voicegroup038_36.bin" - .4byte gUnk_08B08B14 - .incbin "voicegroups/voicegroup038_37.bin" - .4byte gUnk_08B3F61C - .incbin "voicegroups/voicegroup038_38.bin" - .4byte gUnk_08B47114 - .incbin "voicegroups/voicegroup038_39.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup038_40.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C0C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B1CC7C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A94EFC, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AC7984, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AF5C90, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B25CD0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B2A77C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B08B14, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B3F61C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B47114, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup039:: @ 08A09410 - .incbin "voicegroups/voicegroup039.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup039_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup039_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup039_3.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup039_4.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup039_5.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup039_6.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup039_7.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup039_8.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup039_9.bin" - .4byte gUnk_08A9CA48 - .incbin "voicegroups/voicegroup039_10.bin" - .4byte gUnk_08AA2720 - .incbin "voicegroups/voicegroup039_11.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup039_12.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A12ED0, 15, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A9CA48, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08AA2720, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 voicegroup040:: @ 08A096D4 - .incbin "voicegroups/voicegroup040.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup040_1.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup040_2.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup040_3.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup040_4.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup040_5.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup040_6.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup040_7.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup040_8.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup040_9.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup040_10.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup040_11.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup040_12.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup040_13.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup041:: @ 08A09CD4 - .incbin "voicegroups/voicegroup041.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup041_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup041_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup041_3.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup041_4.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup041_5.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup041_6.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup041_7.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup041_8.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup041_9.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup041_10.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup041_11.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 226 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 voicegroup042:: @ 08A09F44 - .incbin "voicegroups/voicegroup042.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup042_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup042_2.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup042_3.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup042_4.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup042_5.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup042_6.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup042_7.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1F640, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup043:: @ 08A0A544 - .incbin "voicegroups/voicegroup043.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup043_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup043_2.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup043_3.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup043_4.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup043_5.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup043_6.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup043_7.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup043_8.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup043_9.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1F640, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup044:: @ 08A0AB44 - .incbin "voicegroups/voicegroup044.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup044_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup044_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup044_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup044_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup044_5.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup044_6.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup044_7.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup044_8.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup044_9.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup044_10.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup044_11.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup044_12.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup044_13.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup044_14.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup044_15.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup044_16.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup044_17.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup044_18.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup045:: @ 08A0B144 - .incbin "voicegroups/voicegroup045.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup045_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup045_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup045_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup045_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup045_5.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup045_6.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup045_7.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup045_8.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup045_9.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup045_10.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 0, 15, 1 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1F640, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup046:: @ 08A0B744 - .incbin "voicegroups/voicegroup046.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup046_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup046_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup046_3.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup046_4.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup046_5.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup046_6.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup046_7.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup046_8.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup046_9.bin" - .4byte gUnk_08B3F61C - .incbin "voicegroups/voicegroup046_10.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup046_11.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1F640, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 204 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08B3F61C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup047:: @ 08A0BD44 - .incbin "voicegroups/voicegroup047.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup047_1.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup047_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup047_3.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup047_4.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup047_5.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup047_6.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup047_7.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup047_8.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup047_9.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup047_10.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup047_11.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup047_12.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup047_13.bin" - .4byte gUnk_08A5A90C - .incbin "voicegroups/voicegroup047_14.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup047_15.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup047_16.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup047_17.bin" - .4byte gUnk_08A5DF38 - .incbin "voicegroups/voicegroup047_18.bin" - .4byte gUnk_08AC7984 - .incbin "voicegroups/voicegroup047_19.bin" - .4byte gUnk_08B08B14 - .incbin "voicegroups/voicegroup047_20.bin" - .4byte gUnk_08B3F61C - .incbin "voicegroups/voicegroup047_21.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup047_22.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1F640, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5A90C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5DF38, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AC7984, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08B08B14, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B3F61C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup048:: @ 08A0C344 - .incbin "voicegroups/voicegroup048.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup048_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup048_2.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup048_3.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup048_4.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup048_5.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup048_6.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup048_7.bin" - .4byte gUnk_08B3F61C - .incbin "voicegroups/voicegroup048_8.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup048_9.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 149 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A1F640, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 204 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08B3F61C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup049:: @ 08A0C944 - .incbin "voicegroups/voicegroup049.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup049_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup049_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup049_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup049_4.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup049_5.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup049_6.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup049_7.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup049_8.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup049_9.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup049_10.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup049_11.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup049_12.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup049_13.bin" - .4byte gUnk_08AC7984 - .incbin "voicegroups/voicegroup049_14.bin" - .4byte gUnk_08B08B14 - .incbin "voicegroups/voicegroup049_15.bin" - .4byte gUnk_08B3F61C - .incbin "voicegroups/voicegroup049_16.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup049_17.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AC7984, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08B08B14, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B3F61C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup050:: @ 08A0CF44 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 .ifdef EU - @ TODO only small differences - .incbin "voicegroups/voicegroup050_EU.bin" - .4byte 0x2 - .incbin "voicegroups/voicegroup050_1_EU.bin" - .4byte 0x2 - .incbin "voicegroups/voicegroup050_2_EU.bin" - .4byte 0x2 - .incbin "voicegroups/voicegroup050_3_EU.bin" - .4byte 0x2 - .incbin "voicegroups/voicegroup050_4_EU.bin" - .4byte 0x2 - .incbin "voicegroups/voicegroup050_5_EU.bin" - .4byte 0x2 - .incbin "voicegroups/voicegroup050_6_EU.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 +.else + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 127 +.endif + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 +.ifdef EU + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 +.else + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 +.endif + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 +.ifdef EU + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 +.else + voice_directsound 60, 0, gUnk_08B1CC7C, 255, 0, 255, 127 +.endif + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 +.ifdef EU + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 +.else + voice_directsound 60, 0, gUnk_08AF5C90, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B25CD0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B2A77C, 255, 0, 255, 127 +.endif + voice_directsound 60, 0, gUnk_08B08B14, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B3F61C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B47114, 255, 0, 255, 127 +.ifndef EU + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 +.endif -.else - .incbin "voicegroups/voicegroup050_7_USA-JP-DEMO_USA-DEMO_JP.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup050_8_USA-JP-DEMO_USA-DEMO_JP.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup050_9_USA-JP-DEMO_USA-DEMO_JP.bin" - .4byte gUnk_08B1CC7C - .incbin "voicegroups/voicegroup050_10_USA-JP-DEMO_USA-DEMO_JP.bin" - .4byte gUnk_08AF5C90 - .incbin "voicegroups/voicegroup050_11_USA-JP-DEMO_USA-DEMO_JP.bin" - .4byte gUnk_08B25CD0 - .incbin "voicegroups/voicegroup050_12_USA-JP-DEMO_USA-DEMO_JP.bin" - .4byte gUnk_08B2A77C - .incbin "voicegroups/voicegroup050_13_USA-JP-DEMO_USA-DEMO_JP.bin" -.endif - .4byte gUnk_08B08B14 - .incbin "voicegroups/voicegroup050_14.bin" - .4byte gUnk_08B3F61C - .incbin "voicegroups/voicegroup050_15.bin" - .4byte gUnk_08B47114 -.ifdef EU - .4byte 0x7FFF00FF -.else - .incbin "voicegroups/voicegroup050_16_USA-JP-DEMO_USA-DEMO_JP.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup050_17_USA-JP-DEMO_USA-DEMO_JP.bin" -.endif voicegroup051:: @ 08A0D544 - .incbin "voicegroups/voicegroup051.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup051_1.bin" - .4byte gUnk_08A11BDC - .incbin "voicegroups/voicegroup051_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup051_3.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup051_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup051_5.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup051_6.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup051_7.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup051_8.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup051_9.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup051_10.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup051_11.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup051_12.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup051_13.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup051_14.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup051_15.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup051_16.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup051_17.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup051_18.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup051_19.bin" - .4byte gUnk_08A9CA48 - .incbin "voicegroups/voicegroup051_20.bin" - .4byte gUnk_08AA2720 - .incbin "voicegroups/voicegroup051_21.bin" - .4byte gUnk_08AF1E3C - .incbin "voicegroups/voicegroup051_22.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup051_23.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup051_24.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup051_25.bin" + voice_directsound 60, 0, gUnk_08A3C71C, 64, 0, 255, 216 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11BDC, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A9CA48, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AA2720, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AF1E3C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup052:: @ 08A0DB44 - .incbin "voicegroups/voicegroup052.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup052_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup052_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup052_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup052_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup052_5.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup052_6.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup052_7.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup052_8.bin" - .4byte gUnk_08A5A90C - .incbin "voicegroups/voicegroup052_9.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup052_10.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup052_11.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A5A90C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup053:: @ 08A0E144 - .incbin "voicegroups/voicegroup053.bin" - .4byte gUnk_08A11BDC - .incbin "voicegroups/voicegroup053_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup053_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup053_3.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup053_4.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup053_5.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup053_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup053_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup053_8.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup053_9.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup053_10.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup053_11.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup053_12.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup053_13.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup053_14.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup053_15.bin" - .4byte gUnk_08A9CA48 - .incbin "voicegroups/voicegroup053_16.bin" - .4byte gUnk_08AF1E3C - .incbin "voicegroups/voicegroup053_17.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup053_18.bin" - .4byte gUnk_08AF5C90 - .incbin "voicegroups/voicegroup053_19.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup053_20.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11BDC, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A9CA48, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AF1E3C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AF5C90, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup054:: @ 08A0E744 - .incbin "voicegroups/voicegroup054.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup054_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup054_2.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup054_3.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup054_4.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup054_5.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup054_6.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup054_7.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup054_8.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup054_9.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup054_10.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup054_11.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup054_12.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup054_13.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup054_14.bin" - .4byte gUnk_08A7D788 - .incbin "voicegroups/voicegroup054_15.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup054_16.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup054_17.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup054_18.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup054_19.bin" - .4byte gUnk_08AF1E3C - .incbin "voicegroups/voicegroup054_20.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup054_21.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup054_22.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup054_23.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup054_24.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 180, 242 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 180, 216 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A7D788, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 154, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AF1E3C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 249 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 249 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup055:: @ 08A0ED44 - .incbin "voicegroups/voicegroup055.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup055_1.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup055_2.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup055_3.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup055_4.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup055_5.bin" - .4byte gUnk_08A2C558 - .incbin "voicegroups/voicegroup055_6.bin" - .4byte gUnk_08A34EF4 - .incbin "voicegroups/voicegroup055_7.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup055_8.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup055_9.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup055_10.bin" - .4byte gUnk_08A4EDE8 - .incbin "voicegroups/voicegroup055_11.bin" - .4byte gUnk_08A80924 - .incbin "voicegroups/voicegroup055_12.bin" - .4byte gUnk_08A88854 - .incbin "voicegroups/voicegroup055_13.bin" - .4byte gUnk_08ABFDEC - .incbin "voicegroups/voicegroup055_14.bin" - .4byte gUnk_08A9CA48 - .incbin "voicegroups/voicegroup055_15.bin" - .4byte gUnk_08AA2720 - .incbin "voicegroups/voicegroup055_16.bin" - .4byte gUnk_08AAA1D0 - .incbin "voicegroups/voicegroup055_17.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A2C558, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A34EF4, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 249 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A4EDE8, 255, 0, 255, 242 + voice_directsound 60, 0, gUnk_08A80924, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A88854, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08ABFDEC, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A9CA48, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AA2720, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AAA1D0, 255, 0, 255, 127 voicegroup056:: @ 08A0F014 - .incbin "voicegroups/voicegroup056.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup056_1.bin" - .4byte gUnk_08A16610 - .incbin "voicegroups/voicegroup056_2.bin" - .4byte gUnk_08A12ED0 - .incbin "voicegroups/voicegroup056_3.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup056_4.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup056_5.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup056_6.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup056_7.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup056_8.bin" - .4byte gUnk_08A2834C - .incbin "voicegroups/voicegroup056_9.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup056_10.bin" - .4byte gUnk_08A45160 - .incbin "voicegroups/voicegroup056_11.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup056_12.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup056_13.bin" - .4byte gUnk_08A7BF5C - .incbin "voicegroups/voicegroup056_14.bin" - .4byte gUnk_08A84DCC - .incbin "voicegroups/voicegroup056_15.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup056_16.bin" - .4byte gUnk_08A8F6A8 - .incbin "voicegroups/voicegroup056_17.bin" - .4byte gUnk_08B1CC7C - .incbin "voicegroups/voicegroup056_18.bin" - .4byte gUnk_08AF5C90 - .incbin "voicegroups/voicegroup056_19.bin" - .4byte gUnk_08B25CD0 - .incbin "voicegroups/voicegroup056_20.bin" - .4byte gUnk_08B2A77C - .incbin "voicegroups/voicegroup056_21.bin" - .4byte gUnk_08B08B14 - .incbin "voicegroups/voicegroup056_22.bin" - .4byte gUnk_08B3F61C - .incbin "voicegroups/voicegroup056_23.bin" - .4byte gUnk_08B47114 - .incbin "voicegroups/voicegroup056_24.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup056_25.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A16610, 255, 0, 255, 226 + voice_directsound 60, 0, gUnk_08A12ED0, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 204 + voice_directsound 60, 0, gUnk_08A2834C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A45160, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A47F98, 255, 0, 255, 188 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A7BF5C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A84DCC, 255, 0, 255, 165 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A8F6A8, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08B1CC7C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AF5C90, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B25CD0, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B2A77C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B08B14, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B3F61C, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08B47114, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 voicegroup057:: @ 08A0F614 - .incbin "voicegroups/voicegroup057.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup057_1.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup057_2.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup057_3.bin" - .4byte gUnk_08A5A90C - .incbin "voicegroups/voicegroup057_4.bin" - .4byte gUnk_08A5A90C - .incbin "voicegroups/voicegroup057_5.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup057_6.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup057_7.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 216 + voice_directsound 60, 0, gUnk_08A5A90C, 255, 0, 255, 235 + voice_directsound 60, 0, gUnk_08A5A90C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 242 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 226 voicegroup058:: @ 08A0F890 - .incbin "voicegroups/voicegroup058.bin" - .4byte gUnk_08A11BDC - .incbin "voicegroups/voicegroup058_1.bin" - .4byte gUnk_08A1A54C - .incbin "voicegroups/voicegroup058_2.bin" - .4byte gUnk_08A1F640 - .incbin "voicegroups/voicegroup058_3.bin" - .4byte gUnk_08A6639C - .incbin "voicegroups/voicegroup058_4.bin" - .4byte gUnk_08A231A4 - .incbin "voicegroups/voicegroup058_5.bin" - .4byte gUnk_08A240F8 - .incbin "voicegroups/voicegroup058_6.bin" - .4byte gUnk_08A6CB30 - .incbin "voicegroups/voicegroup058_7.bin" - .4byte gUnk_08A3C71C - .incbin "voicegroups/voicegroup058_8.bin" - .4byte gUnk_08A5A90C - .incbin "voicegroups/voicegroup058_9.bin" - .4byte gUnk_08A792C0 - .incbin "voicegroups/voicegroup058_10.bin" - .4byte gUnk_08A5496C - .incbin "voicegroups/voicegroup058_11.bin" - .4byte gUnk_08AA2720 - .incbin "voicegroups/voicegroup058_12.bin" - .4byte gUnk_08AF1E3C - .incbin "voicegroups/voicegroup058_13.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 3, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 1, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 3, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11BDC, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A1A54C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A1F640, 37, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6639C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A231A4, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A240F8, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08A6CB30, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A3C71C, 255, 0, 255, 89 + voice_directsound 60, 0, gUnk_08A5A90C, 255, 0, 255, 89 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A792C0, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08A5496C, 255, 0, 255, 127 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound 60, 0, gUnk_08AA2720, 255, 0, 255, 127 + voice_directsound 60, 0, gUnk_08AF1E3C, 255, 0, 255, 165 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 voicegroup059:: @ 08A0FCE0 - .incbin "voicegroups/voicegroup059.bin" - .4byte voicegroup059 - .incbin "voicegroups/voicegroup059_1.bin" - .4byte gUnk_08B49C80 - .incbin "voicegroups/voicegroup059_2.bin" - .4byte gUnk_08B4ABD4 - .incbin "voicegroups/voicegroup059_3.bin" - .4byte gUnk_08B4C670 - .incbin "voicegroups/voicegroup059_4.bin" - .4byte gUnk_08B4CBB4 - .incbin "voicegroups/voicegroup059_5.bin" - .4byte gUnk_08B4E28C - .incbin "voicegroups/voicegroup059_6.bin" - .4byte gUnk_08B4ABD4 - .incbin "voicegroups/voicegroup059_7.bin" - .4byte gUnk_08B51838 - .incbin "voicegroups/voicegroup059_8.bin" + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_keysplit_all voicegroup059 + voice_directsound_no_resample 36, 192, gUnk_08B49C80, 255, 0, 255, 0 + voice_directsound_no_resample 37, 192, gUnk_08B4ABD4, 255, 0, 255, 0 + voice_directsound_no_resample 38, 192, gUnk_08B4C670, 255, 0, 255, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound_no_resample 40, 192, gUnk_08B4CBB4, 255, 0, 255, 0 + voice_directsound_no_resample 41, 192, gUnk_08B4E28C, 255, 0, 255, 0 + voice_noise_alt 78, 192, 0, 0, 2, 0, 0 + voice_directsound_no_resample 43, 192, gUnk_08B4ABD4, 255, 0, 128, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_noise 80, 192, 0, 0, 2, 12, 1 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1 60, 0, 0, 2, 0, 0, 15, 0 + voice_directsound_no_resample 50, 192, gUnk_08B51838, 255, 0, 255, 0 voicegroup060:: @ 08A0FF44 - .incbin "voicegroups/voicegroup060.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup061:: @ 08A0FF50 - .incbin "voicegroups/voicegroup061.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 0, 0, 0, 15, 0 voicegroup062:: @ 08A0FF80 - .incbin "voicegroups/voicegroup062.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup063:: @ 08A0FF98 - .incbin "voicegroups/voicegroup063.bin" + voice_square_2_alt 60, 0, 2, 0, 1, 7, 0 voicegroup064:: @ 08A0FFA4 - .incbin "voicegroups/voicegroup064.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup065:: @ 08A0FFB0 - .incbin "voicegroups/voicegroup065.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup066:: @ 08A0FFBC - .incbin "voicegroups/voicegroup066.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup067:: @ 08A0FFC8 - .incbin "voicegroups/voicegroup067.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup068:: @ 08A0FFD4 - .incbin "voicegroups/voicegroup068.bin" + voice_square_1_alt 60, 0, 37, 2, 1, 0, 15, 0 + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 voicegroup069:: @ 08A0FFEC - .incbin "voicegroups/voicegroup069.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 voicegroup070:: @ 08A0FFF8 - .incbin "voicegroups/voicegroup070.bin" + voice_square_2_alt 60, 0, 1, 0, 1, 3, 0 voicegroup071:: @ 08A10004 - .incbin "voicegroups/voicegroup071.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup072:: @ 08A10010 - .incbin "voicegroups/voicegroup072.bin" + voice_square_2_alt 60, 0, 1, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 1, 0, 2, 0, 0 voicegroup073:: @ 08A10028 - .incbin "voicegroups/voicegroup073.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup074:: @ 08A10034 - .incbin "voicegroups/voicegroup074.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 1, 6, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 2, 0, 0 voicegroup075:: @ 08A1004C - .incbin "voicegroups/voicegroup075.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 1, 6, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 2, 0, 0 + voice_square_2_alt 60, 0, 2, 0, 1, 6, 0 + voice_square_2_alt 60, 0, 2, 0, 2, 0, 0 voicegroup076:: @ 08A1007C - .incbin "voicegroups/voicegroup076.bin" + voice_square_2_alt 60, 0, 1, 0, 2, 0, 0 voicegroup077:: @ 08A10088 - .incbin "voicegroups/voicegroup077.bin" - .4byte gUnk_08B55BAC - .incbin "voicegroups/voicegroup077_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B55BAC, 255, 0, 255, 0 voicegroup078:: @ 08A10094 - .incbin "voicegroups/voicegroup078.bin" - .4byte gUnk_08B56A50 - .incbin "voicegroups/voicegroup078_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B56A50, 255, 0, 255, 0 voicegroup079:: @ 08A100A0 - .incbin "voicegroups/voicegroup079.bin" - .4byte gUnk_08B592C4 - .incbin "voicegroups/voicegroup079_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B592C4, 255, 0, 255, 0 voicegroup080:: @ 08A100AC - .incbin "voicegroups/voicegroup080.bin" - .4byte gUnk_08B5B26C - .incbin "voicegroups/voicegroup080_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B5B26C, 255, 0, 255, 0 voicegroup081:: @ 08A100B8 - .incbin "voicegroups/voicegroup081.bin" - .4byte gUnk_08B5BD88 - .incbin "voicegroups/voicegroup081_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B5BD88, 255, 0, 255, 0 voicegroup082:: @ 08A100C4 - .incbin "voicegroups/voicegroup082.bin" - .4byte gUnk_08B5CD00 - .incbin "voicegroups/voicegroup082_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B5CD00, 255, 0, 255, 0 voicegroup083:: @ 08A100D0 - .incbin "voicegroups/voicegroup083.bin" - .4byte gUnk_08B5E02C - .incbin "voicegroups/voicegroup083_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B5E02C, 255, 0, 255, 0 voicegroup084:: @ 08A100DC - .incbin "voicegroups/voicegroup084.bin" + voice_square_1_alt 60, 0, 23, 2, 0, 2, 0, 0 voicegroup085:: @ 08A100E8 - .incbin "voicegroups/voicegroup085.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup086:: @ 08A100F4 - .incbin "voicegroups/voicegroup086.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup087:: @ 08A10100 - .incbin "voicegroups/voicegroup087.bin" + voice_square_1_alt 60, 0, 0, 2, 1, 5, 0, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 1, 0, 0 voicegroup088:: @ 08A10118 - .incbin "voicegroups/voicegroup088.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup089:: @ 08A10124 - .incbin "voicegroups/voicegroup089.bin" + voice_square_2_alt 60, 0, 2, 1, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 2, 0, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup090:: @ 08A10148 - .incbin "voicegroups/voicegroup090.bin" - .4byte gUnk_08B6349C - .incbin "voicegroups/voicegroup090_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B6349C, 255, 0, 255, 0 voicegroup091:: @ 08A10154 - .incbin "voicegroups/voicegroup091.bin" + voice_square_1_alt 60, 0, 39, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup092:: @ 08A1016C - .incbin "voicegroups/voicegroup092.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 39, 2, 0, 0, 15, 0 voicegroup093:: @ 08A10184 - .incbin "voicegroups/voicegroup093.bin" - .4byte gUnk_08A11BAC - .incbin "voicegroups/voicegroup093_1.bin" + voice_programmable_wave_alt 60, 0, gUnk_08A11BAC, 0, 0, 15, 0 voicegroup094:: @ 08A10190 - .incbin "voicegroups/voicegroup094.bin" - .4byte gUnk_08B63ED8 - .incbin "voicegroups/voicegroup094_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B63ED8, 255, 0, 255, 0 voicegroup095:: @ 08A1019C - .incbin "voicegroups/voicegroup095.bin" - .4byte gUnk_08A11BAC - .incbin "voicegroups/voicegroup095_1.bin" + voice_programmable_wave_alt 60, 0, gUnk_08A11BAC, 0, 0, 15, 0 voicegroup096:: @ 08A101A8 - .incbin "voicegroups/voicegroup096.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup097:: @ 08A101B4 - .incbin "voicegroups/voicegroup097.bin" - .4byte gUnk_08B6495C - .incbin "voicegroups/voicegroup097_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B6495C, 255, 0, 255, 0 voicegroup098:: @ 08A101C0 - .incbin "voicegroups/voicegroup098.bin" - .4byte gUnk_08B68A1C - .incbin "voicegroups/voicegroup098_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B68A1C, 255, 0, 255, 0 voicegroup099:: @ 08A101CC - .incbin "voicegroups/voicegroup099.bin" - .4byte gUnk_08B6A220 - .incbin "voicegroups/voicegroup099_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B6A220, 255, 0, 255, 0 voicegroup100:: @ 08A101D8 - .incbin "voicegroups/voicegroup100.bin" - .4byte gUnk_08B6C97C - .incbin "voicegroups/voicegroup100_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B6C97C, 255, 0, 255, 0 voicegroup101:: @ 08A101E4 - .incbin "voicegroups/voicegroup101.bin" - .4byte gUnk_08B6E53C - .incbin "voicegroups/voicegroup101_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B6E53C, 255, 0, 255, 0 voicegroup102:: @ 08A101F0 - .incbin "voicegroups/voicegroup102.bin" - .4byte gUnk_08B70494 - .incbin "voicegroups/voicegroup102_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B70494, 255, 0, 255, 0 voicegroup103:: @ 08A101FC - .incbin "voicegroups/voicegroup103.bin" - .4byte gUnk_08B72618 - .incbin "voicegroups/voicegroup103_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B72618, 255, 0, 255, 0 voicegroup104:: @ 08A10208 - .incbin "voicegroups/voicegroup104.bin" - .4byte gUnk_08B7359C - .incbin "voicegroups/voicegroup104_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B7359C, 255, 0, 255, 0 voicegroup105:: @ 08A10214 - .incbin "voicegroups/voicegroup105.bin" - .4byte gUnk_08B77BB0 - .incbin "voicegroups/voicegroup105_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B77BB0, 255, 0, 255, 0 voicegroup106:: @ 08A10220 - .incbin "voicegroups/voicegroup106.bin" - .4byte gUnk_08B7AFEC - .incbin "voicegroups/voicegroup106_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B7AFEC, 255, 0, 255, 0 voicegroup107:: @ 08A1022C - .incbin "voicegroups/voicegroup107.bin" - .4byte gUnk_08B7D32C - .incbin "voicegroups/voicegroup107_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B7D32C, 255, 0, 255, 0 voicegroup108:: @ 08A10238 - .incbin "voicegroups/voicegroup108.bin" - .4byte gUnk_08B81410 - .incbin "voicegroups/voicegroup108_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B81410, 255, 0, 255, 0 voicegroup109:: @ 08A10244 - .incbin "voicegroups/voicegroup109.bin" - .4byte gUnk_08B82F44 - .incbin "voicegroups/voicegroup109_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B82F44, 255, 0, 255, 0 voicegroup110:: @ 08A10250 - .incbin "voicegroups/voicegroup110.bin" - .4byte gUnk_08B861EC - .incbin "voicegroups/voicegroup110_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B861EC, 255, 0, 255, 0 voicegroup111:: @ 08A1025C - .incbin "voicegroups/voicegroup111.bin" - .4byte gUnk_08B87AA4 - .incbin "voicegroups/voicegroup111_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B87AA4, 255, 0, 255, 0 voicegroup112:: @ 08A10268 - .incbin "voicegroups/voicegroup112.bin" - .4byte gUnk_08B8ADC4 - .incbin "voicegroups/voicegroup112_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B8ADC4, 255, 0, 255, 0 voicegroup113:: @ 08A10274 - .incbin "voicegroups/voicegroup113.bin" - .4byte gUnk_08B8DA80 - .incbin "voicegroups/voicegroup113_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B8DA80, 255, 0, 255, 0 voicegroup114:: @ 08A10280 - .incbin "voicegroups/voicegroup114.bin" - .4byte gUnk_08B93990 - .incbin "voicegroups/voicegroup114_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B93990, 255, 0, 255, 0 voicegroup115:: @ 08A1028C - .incbin "voicegroups/voicegroup115.bin" - .4byte gUnk_08B97154 - .incbin "voicegroups/voicegroup115_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B97154, 255, 0, 255, 0 voicegroup116:: @ 08A10298 - .incbin "voicegroups/voicegroup116.bin" - .4byte gUnk_08B99E24 - .incbin "voicegroups/voicegroup116_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B99E24, 255, 0, 255, 0 voicegroup117:: @ 08A102A4 - .incbin "voicegroups/voicegroup117.bin" - .4byte gUnk_08B9BC20 - .incbin "voicegroups/voicegroup117_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08B9BC20, 255, 0, 255, 0 voicegroup118:: @ 08A102B0 - .incbin "voicegroups/voicegroup118.bin" - .4byte gUnk_08BA04B8 - .incbin "voicegroups/voicegroup118_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BA04B8, 255, 0, 255, 0 voicegroup119:: @ 08A102BC - .incbin "voicegroups/voicegroup119.bin" - .4byte gUnk_08BA608C - .incbin "voicegroups/voicegroup119_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BA608C, 255, 0, 255, 0 voicegroup120:: @ 08A102C8 - .incbin "voicegroups/voicegroup120.bin" - .4byte gUnk_08BA79EC - .incbin "voicegroups/voicegroup120_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BA79EC, 255, 0, 255, 0 voicegroup121:: @ 08A102D4 - .incbin "voicegroups/voicegroup121.bin" - .4byte gUnk_08BAF158 - .incbin "voicegroups/voicegroup121_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BAF158, 255, 0, 255, 0 voicegroup122:: @ 08A102E0 - .incbin "voicegroups/voicegroup122.bin" - .4byte gUnk_08BB2030 - .incbin "voicegroups/voicegroup122_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BB2030, 255, 0, 255, 0 voicegroup123:: @ 08A102EC - .incbin "voicegroups/voicegroup123.bin" - .4byte gUnk_08BB60F4 - .incbin "voicegroups/voicegroup123_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BB60F4, 255, 0, 255, 0 voicegroup124:: @ 08A102F8 - .incbin "voicegroups/voicegroup124.bin" - .4byte gUnk_08BB72F8 - .incbin "voicegroups/voicegroup124_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BB72F8, 255, 0, 255, 0 voicegroup125:: @ 08A10304 - .incbin "voicegroups/voicegroup125.bin" - .4byte gUnk_08BB82E0 - .incbin "voicegroups/voicegroup125_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BB82E0, 255, 0, 255, 0 voicegroup126:: @ 08A10310 - .incbin "voicegroups/voicegroup126.bin" - .4byte gUnk_08BBC36C - .incbin "voicegroups/voicegroup126_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BBC36C, 255, 0, 255, 0 voicegroup127:: @ 08A1031C - .incbin "voicegroups/voicegroup127.bin" - .4byte gUnk_08BBFA80 - .incbin "voicegroups/voicegroup127_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BBFA80, 255, 0, 255, 0 voicegroup128:: @ 08A10328 - .incbin "voicegroups/voicegroup128.bin" - .4byte gUnk_08BC2F48 - .incbin "voicegroups/voicegroup128_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BC2F48, 255, 0, 255, 0 voicegroup129:: @ 08A10334 - .incbin "voicegroups/voicegroup129.bin" - .4byte gUnk_08BC4B90 - .incbin "voicegroups/voicegroup129_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BC4B90, 255, 0, 255, 0 voicegroup130:: @ 08A10340 - .incbin "voicegroups/voicegroup130.bin" - .4byte gUnk_08BC6320 - .incbin "voicegroups/voicegroup130_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BC6320, 255, 0, 255, 0 voicegroup131:: @ 08A1034C - .incbin "voicegroups/voicegroup131.bin" - .4byte gUnk_08BC7CD0 - .incbin "voicegroups/voicegroup131_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BC7CD0, 255, 0, 255, 0 voicegroup132:: @ 08A10358 - .incbin "voicegroups/voicegroup132.bin" - .4byte gUnk_08BD63A0 - .incbin "voicegroups/voicegroup132_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BD63A0, 255, 0, 255, 0 voicegroup133:: @ 08A10364 - .incbin "voicegroups/voicegroup133.bin" - .4byte gUnk_08BDAF60 - .incbin "voicegroups/voicegroup133_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BDAF60, 255, 0, 255, 0 voicegroup134:: @ 08A10370 - .incbin "voicegroups/voicegroup134.bin" - .4byte gUnk_08BDDE54 - .incbin "voicegroups/voicegroup134_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BDDE54, 255, 0, 255, 0 voicegroup135:: @ 08A1037C - .incbin "voicegroups/voicegroup135.bin" - .4byte gUnk_08BE1C78 - .incbin "voicegroups/voicegroup135_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BE1C78, 255, 0, 255, 0 voicegroup136:: @ 08A10388 - .incbin "voicegroups/voicegroup136.bin" - .4byte gUnk_08BE62AC - .incbin "voicegroups/voicegroup136_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BE62AC, 255, 0, 255, 0 voicegroup137:: @ 08A10394 - .incbin "voicegroups/voicegroup137.bin" - .4byte gUnk_08BE8BAC - .incbin "voicegroups/voicegroup137_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BE8BAC, 255, 0, 255, 0 voicegroup138:: @ 08A103A0 - .incbin "voicegroups/voicegroup138.bin" - .4byte gUnk_08BE8BAC - .incbin "voicegroups/voicegroup138_1.bin" + voice_directsound 60, 0, gUnk_08BE8BAC, 255, 0, 255, 0 voicegroup139:: @ 08A103AC - .incbin "voicegroups/voicegroup139.bin" - .4byte gUnk_08BEB1D0 - .incbin "voicegroups/voicegroup139_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BEB1D0, 255, 0, 255, 0 voicegroup140:: @ 08A103B8 - .incbin "voicegroups/voicegroup140.bin" - .4byte gUnk_08BEB1D0 - .incbin "voicegroups/voicegroup140_1.bin" + voice_directsound 60, 0, gUnk_08BEB1D0, 255, 0, 255, 0 voicegroup141:: @ 08A103C4 - .incbin "voicegroups/voicegroup141.bin" - .4byte gUnk_08BEC358 - .incbin "voicegroups/voicegroup141_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BEC358, 255, 0, 255, 0 voicegroup142:: @ 08A103D0 - .incbin "voicegroups/voicegroup142.bin" - .4byte gUnk_08BF0264 - .incbin "voicegroups/voicegroup142_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BF0264, 255, 0, 255, 0 voicegroup143:: @ 08A103DC - .incbin "voicegroups/voicegroup143.bin" - .4byte gUnk_08BF3CB4 - .incbin "voicegroups/voicegroup143_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BF3CB4, 255, 0, 255, 0 voicegroup144:: @ 08A103E8 - .incbin "voicegroups/voicegroup144.bin" - .4byte gUnk_08BF7CC4 - .incbin "voicegroups/voicegroup144_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BF7CC4, 255, 0, 255, 0 voicegroup145:: @ 08A103F4 - .incbin "voicegroups/voicegroup145.bin" - .4byte gUnk_08BFB7F4 - .incbin "voicegroups/voicegroup145_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BFB7F4, 255, 0, 255, 0 voicegroup146:: @ 08A10400 - .incbin "voicegroups/voicegroup146.bin" - .4byte gUnk_08BFE5A8 - .incbin "voicegroups/voicegroup146_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08BFE5A8, 255, 0, 255, 0 voicegroup147:: @ 08A1040C - .incbin "voicegroups/voicegroup147.bin" - .4byte gUnk_08C020C8 - .incbin "voicegroups/voicegroup147_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C020C8, 255, 0, 255, 0 voicegroup148:: @ 08A10418 - .incbin "voicegroups/voicegroup148.bin" - .4byte gUnk_08C064DC - .incbin "voicegroups/voicegroup148_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C064DC, 255, 0, 255, 0 voicegroup149:: @ 08A10424 - .incbin "voicegroups/voicegroup149.bin" - .4byte gUnk_08C0A208 - .incbin "voicegroups/voicegroup149_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C0A208, 255, 0, 255, 0 voicegroup150:: @ 08A10430 - .incbin "voicegroups/voicegroup150.bin" - .4byte gUnk_08C0D458 - .incbin "voicegroups/voicegroup150_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C0D458, 255, 0, 255, 0 voicegroup151:: @ 08A1043C - .incbin "voicegroups/voicegroup151.bin" - .4byte gUnk_08C0D458 - .incbin "voicegroups/voicegroup151_1.bin" + voice_directsound 60, 0, gUnk_08C0D458, 255, 0, 255, 0 voicegroup152:: @ 08A10448 - .incbin "voicegroups/voicegroup152.bin" - .4byte gUnk_08C0F47C - .incbin "voicegroups/voicegroup152_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C0F47C, 255, 0, 255, 0 voicegroup153:: @ 08A10454 - .incbin "voicegroups/voicegroup153.bin" - .4byte gUnk_08C111B4 - .incbin "voicegroups/voicegroup153_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C111B4, 255, 0, 255, 0 voicegroup154:: @ 08A10460 - .incbin "voicegroups/voicegroup154.bin" - .4byte gUnk_08C15410 - .incbin "voicegroups/voicegroup154_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C15410, 255, 0, 255, 0 voicegroup155:: @ 08A1046C - .incbin "voicegroups/voicegroup155.bin" - .4byte gUnk_08C19B78 - .incbin "voicegroups/voicegroup155_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C19B78, 255, 0, 255, 0 voicegroup156:: @ 08A10478 - .incbin "voicegroups/voicegroup156.bin" - .4byte gUnk_08C1C4D0 - .incbin "voicegroups/voicegroup156_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C1C4D0, 255, 0, 255, 0 voicegroup157:: @ 08A10484 - .incbin "voicegroups/voicegroup157.bin" - .4byte gUnk_08C1F7C0 - .incbin "voicegroups/voicegroup157_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C1F7C0, 255, 0, 255, 0 voicegroup158:: @ 08A10490 - .incbin "voicegroups/voicegroup158.bin" - .4byte gUnk_08C24ABC - .incbin "voicegroups/voicegroup158_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C24ABC, 255, 0, 255, 0 voicegroup159:: @ 08A1049C - .incbin "voicegroups/voicegroup159.bin" - .4byte gUnk_08C2896C - .incbin "voicegroups/voicegroup159_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C2896C, 255, 0, 255, 0 voicegroup160:: @ 08A104A8 - .incbin "voicegroups/voicegroup160.bin" - .4byte gUnk_08C2AB60 - .incbin "voicegroups/voicegroup160_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C2AB60, 255, 0, 255, 0 voicegroup161:: @ 08A104B4 - .incbin "voicegroups/voicegroup161.bin" - .4byte gUnk_08C2D6D4 - .incbin "voicegroups/voicegroup161_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C2D6D4, 255, 0, 255, 0 voicegroup162:: @ 08A104C0 - .incbin "voicegroups/voicegroup162.bin" - .4byte gUnk_08C2F808 - .incbin "voicegroups/voicegroup162_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C2F808, 255, 0, 255, 0 voicegroup163:: @ 08A104CC - .incbin "voicegroups/voicegroup163.bin" - .4byte gUnk_08C30AFC - .incbin "voicegroups/voicegroup163_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C30AFC, 255, 0, 255, 0 voicegroup164:: @ 08A104D8 - .incbin "voicegroups/voicegroup164.bin" - .4byte gUnk_08C328E0 - .incbin "voicegroups/voicegroup164_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C328E0, 255, 0, 255, 0 voicegroup165:: @ 08A104E4 - .incbin "voicegroups/voicegroup165.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 1, 6, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 2, 0, 0 voicegroup166:: @ 08A104FC - .incbin "voicegroups/voicegroup166.bin" - .4byte gUnk_08A11BAC - .incbin "voicegroups/voicegroup166_1.bin" - .4byte gUnk_08A11BAC - .incbin "voicegroups/voicegroup166_2.bin" + voice_programmable_wave 60, 0, gUnk_08A11BAC, 0, 1, 6, 0 + voice_programmable_wave 60, 0, gUnk_08A11BAC, 0, 1, 0, 0 voicegroup167:: @ 08A10514 - .incbin "voicegroups/voicegroup167.bin" - .4byte gUnk_08C388AC - .incbin "voicegroups/voicegroup167_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C388AC, 255, 0, 255, 0 voicegroup168:: @ 08A10520 - .incbin "voicegroups/voicegroup168.bin" - .4byte gUnk_08C3A0F4 - .incbin "voicegroups/voicegroup168_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C3A0F4, 255, 0, 255, 0 voicegroup169:: @ 08A1052C - .incbin "voicegroups/voicegroup169.bin" - .4byte gUnk_08C3DFA4 - .incbin "voicegroups/voicegroup169_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C3DFA4, 255, 0, 255, 0 voicegroup170:: @ 08A10538 - .incbin "voicegroups/voicegroup170.bin" - .4byte gUnk_08C3E9A8 - .incbin "voicegroups/voicegroup170_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C3E9A8, 255, 0, 255, 0 voicegroup171:: @ 08A10544 - .incbin "voicegroups/voicegroup171.bin" - .4byte gUnk_08C419D4 - .incbin "voicegroups/voicegroup171_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C419D4, 255, 0, 255, 0 voicegroup172:: @ 08A10550 - .incbin "voicegroups/voicegroup172.bin" - .4byte gUnk_08C450DC - .incbin "voicegroups/voicegroup172_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C450DC, 255, 0, 255, 0 voicegroup173:: @ 08A1055C - .incbin "voicegroups/voicegroup173.bin" - .4byte gUnk_08C48774 - .incbin "voicegroups/voicegroup173_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C48774, 255, 0, 255, 0 voicegroup174:: @ 08A10568 - .incbin "voicegroups/voicegroup174.bin" - .4byte gUnk_08C4D34C - .incbin "voicegroups/voicegroup174_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C4D34C, 255, 0, 255, 0 voicegroup175:: @ 08A10574 - .incbin "voicegroups/voicegroup175.bin" - .4byte gUnk_08C4DDB4 - .incbin "voicegroups/voicegroup175_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C4DDB4, 255, 0, 255, 0 voicegroup176:: @ 08A10580 - .incbin "voicegroups/voicegroup176.bin" - .4byte gUnk_08C4F184 - .incbin "voicegroups/voicegroup176_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C4F184, 255, 0, 255, 0 voicegroup177:: @ 08A1058C - .incbin "voicegroups/voicegroup177.bin" - .4byte gUnk_08C51314 - .incbin "voicegroups/voicegroup177_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C51314, 255, 0, 255, 0 voicegroup178:: @ 08A10598 - .incbin "voicegroups/voicegroup178.bin" - .4byte gUnk_08C5721C - .incbin "voicegroups/voicegroup178_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C5721C, 255, 0, 255, 0 voicegroup179:: @ 08A105A4 - .incbin "voicegroups/voicegroup179.bin" - .4byte gUnk_08C5B538 - .incbin "voicegroups/voicegroup179_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C5B538, 255, 0, 255, 0 voicegroup180:: @ 08A105B0 - .incbin "voicegroups/voicegroup180.bin" - .4byte gUnk_08C602FC - .incbin "voicegroups/voicegroup180_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C602FC, 255, 0, 255, 0 voicegroup181:: @ 08A105BC - .incbin "voicegroups/voicegroup181.bin" - .4byte gUnk_08C61AF0 - .incbin "voicegroups/voicegroup181_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C61AF0, 255, 0, 255, 0 voicegroup182:: @ 08A105C8 - .incbin "voicegroups/voicegroup182.bin" - .4byte gUnk_08C63574 - .incbin "voicegroups/voicegroup182_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C63574, 255, 0, 255, 0 voicegroup183:: @ 08A105D4 - .incbin "voicegroups/voicegroup183.bin" - .4byte gUnk_08C602FC - .incbin "voicegroups/voicegroup183_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C602FC, 255, 0, 255, 0 voicegroup184:: @ 08A105E0 - .incbin "voicegroups/voicegroup184.bin" - .4byte gUnk_08C61AF0 - .incbin "voicegroups/voicegroup184_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C61AF0, 255, 0, 255, 0 voicegroup185:: @ 08A105EC - .incbin "voicegroups/voicegroup185.bin" - .4byte gUnk_08C63574 - .incbin "voicegroups/voicegroup185_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C63574, 255, 0, 255, 0 voicegroup186:: @ 08A105F8 - .incbin "voicegroups/voicegroup186.bin" - .4byte gUnk_08C6495C - .incbin "voicegroups/voicegroup186_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C6495C, 255, 0, 255, 0 voicegroup187:: @ 08A10604 - .incbin "voicegroups/voicegroup187.bin" - .4byte gUnk_08C6CEBC - .incbin "voicegroups/voicegroup187_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C6CEBC, 255, 0, 255, 0 voicegroup188:: @ 08A10610 - .incbin "voicegroups/voicegroup188.bin" - .4byte gUnk_08C6E5FC - .incbin "voicegroups/voicegroup188_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C6E5FC, 255, 0, 255, 0 voicegroup189:: @ 08A1061C - .incbin "voicegroups/voicegroup189.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup190:: @ 08A10628 - .incbin "voicegroups/voicegroup190.bin" - .4byte gUnk_08C6FCC8 - .incbin "voicegroups/voicegroup190_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C6FCC8, 255, 0, 255, 0 voicegroup191:: @ 08A10634 - .incbin "voicegroups/voicegroup191.bin" + voice_noise_alt 60, 0, 0, 1, 0, 15, 0 voicegroup192:: @ 08A10640 - .incbin "voicegroups/voicegroup192.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup193:: @ 08A1064C - .incbin "voicegroups/voicegroup193.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup194:: @ 08A10658 - .incbin "voicegroups/voicegroup194.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup195:: @ 08A1067C - .incbin "voicegroups/voicegroup195.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup196:: @ 08A106A0 - .incbin "voicegroups/voicegroup196.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup197:: @ 08A106C4 - .incbin "voicegroups/voicegroup197.bin" + voice_square_2_alt 60, 0, 2, 1, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 2, 0, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup198:: @ 08A106E8 - .incbin "voicegroups/voicegroup198.bin" + voice_noise_alt 60, 0, 0, 1, 0, 15, 0 voicegroup199:: @ 08A106F4 - .incbin "voicegroups/voicegroup199.bin" - .4byte gUnk_08C72870 - .incbin "voicegroups/voicegroup199_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C72870, 255, 0, 255, 0 voicegroup200:: @ 08A10700 - .incbin "voicegroups/voicegroup200.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup201:: @ 08A1070C - .incbin "voicegroups/voicegroup201.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup202:: @ 08A10718 - .incbin "voicegroups/voicegroup202.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup203:: @ 08A1073C - .incbin "voicegroups/voicegroup203.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 voicegroup204:: @ 08A10760 - .incbin "voicegroups/voicegroup204.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup205:: @ 08A1076C - .incbin "voicegroups/voicegroup205.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup206:: @ 08A10778 - .incbin "voicegroups/voicegroup206.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup207:: @ 08A10784 - .incbin "voicegroups/voicegroup207.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup208:: @ 08A10790 - .incbin "voicegroups/voicegroup208.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 1, 0, 2, 0, 0 + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup209:: @ 08A107B4 - .incbin "voicegroups/voicegroup209.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 voicegroup210:: @ 08A107C0 - .incbin "voicegroups/voicegroup210.bin" - .4byte gUnk_08A11C1C - .incbin "voicegroups/voicegroup210_1.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 1, 0, 2, 0, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11C1C, 0, 0, 15, 0 voicegroup211:: @ 08A107E4 - .incbin "voicegroups/voicegroup211.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup212:: @ 08A107FC - .incbin "voicegroups/voicegroup212.bin" + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup213:: @ 08A10820 - .incbin "voicegroups/voicegroup213.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup214:: @ 08A10838 - .incbin "voicegroups/voicegroup214.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup215:: @ 08A1085C - .incbin "voicegroups/voicegroup215.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup216:: @ 08A10874 - .incbin "voicegroups/voicegroup216.bin" + voice_square_1_alt 60, 0, 34, 2, 0, 2, 0, 0 voicegroup217:: @ 08A10880 - .incbin "voicegroups/voicegroup217.bin" + voice_square_1_alt 60, 0, 21, 2, 1, 1, 0, 0 voicegroup218:: @ 08A1088C - .incbin "voicegroups/voicegroup218.bin" - .4byte gUnk_08C7447C - .incbin "voicegroups/voicegroup218_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C7447C, 255, 0, 255, 0 voicegroup219:: @ 08A10898 - .incbin "voicegroups/voicegroup219.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup220:: @ 08A108A4 - .incbin "voicegroups/voicegroup220.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup221:: @ 08A108B0 - .incbin "voicegroups/voicegroup221.bin" - .4byte gUnk_08C749A8 - .incbin "voicegroups/voicegroup221_1.bin" - .4byte gUnk_08A11BAC - .incbin "voicegroups/voicegroup221_2.bin" + voice_directsound_no_resample 60, 0, gUnk_08C749A8, 255, 0, 255, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 + voice_programmable_wave_alt 60, 0, gUnk_08A11BAC, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup222:: @ 08A108EC - .incbin "voicegroups/voicegroup222.bin" + voice_square_1_alt 60, 0, 47, 2, 1, 0, 15, 0 voicegroup223:: @ 08A108F8 - .incbin "voicegroups/voicegroup223.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup224:: @ 08A10904 - .incbin "voicegroups/voicegroup224.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 voicegroup225:: @ 08A1091C - .incbin "voicegroups/voicegroup225.bin" - .4byte gUnk_08C80650 - .incbin "voicegroups/voicegroup225_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C80650, 255, 0, 255, 0 voicegroup226:: @ 08A10928 - .incbin "voicegroups/voicegroup226.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup227:: @ 08A10940 - .incbin "voicegroups/voicegroup227.bin" + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup228:: @ 08A10958 - .incbin "voicegroups/voicegroup228.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup229:: @ 08A10970 - .incbin "voicegroups/voicegroup229.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup230:: @ 08A10988 - .incbin "voicegroups/voicegroup230.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup231:: @ 08A10994 - .incbin "voicegroups/voicegroup231.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup232:: @ 08A109A0 - .incbin "voicegroups/voicegroup232.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup233:: @ 08A109B8 - .incbin "voicegroups/voicegroup233.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup234:: @ 08A109C4 - .incbin "voicegroups/voicegroup234.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup235:: @ 08A109DC - .incbin "voicegroups/voicegroup235.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 2, 0, 0 voicegroup236:: @ 08A109E8 - .incbin "voicegroups/voicegroup236.bin" + voice_square_1_alt 60, 0, 79, 2, 0, 0, 15, 0 voicegroup237:: @ 08A109F4 - .incbin "voicegroups/voicegroup237.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup238:: @ 08A10A00 - .incbin "voicegroups/voicegroup238.bin" - .4byte gUnk_08C91F68 - .incbin "voicegroups/voicegroup238_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C91F68, 255, 0, 255, 0 voicegroup239:: @ 08A10A0C - .incbin "voicegroups/voicegroup239.bin" + voice_square_2_alt 60, 0, 1, 0, 2, 0, 0 + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 voicegroup240:: @ 08A10A24 - .incbin "voicegroups/voicegroup240.bin" + voice_square_2_alt 60, 0, 1, 0, 2, 0, 0 + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 voicegroup241:: @ 08A10A3C - .incbin "voicegroups/voicegroup241.bin" - .4byte gUnk_08C93850 - .incbin "voicegroups/voicegroup241_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C93850, 255, 0, 255, 0 voicegroup242:: @ 08A10A48 - .incbin "voicegroups/voicegroup242.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup243:: @ 08A10A54 - .incbin "voicegroups/voicegroup243.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 voicegroup244:: @ 08A10A6C - .incbin "voicegroups/voicegroup244.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 voicegroup245:: @ 08A10A84 - .incbin "voicegroups/voicegroup245.bin" - .4byte gUnk_08C970D8 - .incbin "voicegroups/voicegroup245_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C970D8, 255, 0, 255, 0 voicegroup246:: @ 08A10A90 - .incbin "voicegroups/voicegroup246.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup247:: @ 08A10A9C - .incbin "voicegroups/voicegroup247.bin" - .4byte gUnk_08C983E4 - .incbin "voicegroups/voicegroup247_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08C983E4, 255, 0, 255, 0 voicegroup248:: @ 08A10AA8 - .incbin "voicegroups/voicegroup248.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup249:: @ 08A10AB4 - .incbin "voicegroups/voicegroup249.bin" - .4byte gUnk_08CA0C14 - .incbin "voicegroups/voicegroup249_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CA0C14, 255, 0, 255, 0 voicegroup250:: @ 08A10AC0 - .incbin "voicegroups/voicegroup250.bin" + voice_noise_alt 60, 0, 0, 0, 2, 0, 0 voicegroup251:: @ 08A10ACC - .incbin "voicegroups/voicegroup251.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 voicegroup252:: @ 08A10AE4 - .incbin "voicegroups/voicegroup252.bin" - .4byte gUnk_08CA2B20 - .incbin "voicegroups/voicegroup252_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CA2B20, 255, 0, 255, 0 voicegroup253:: @ 08A10AF0 - .incbin "voicegroups/voicegroup253.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup254:: @ 08A10B08 - .incbin "voicegroups/voicegroup254.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup255:: @ 08A10B20 - .incbin "voicegroups/voicegroup255.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 0, 0, 0, 15, 0 voicegroup256:: @ 08A10B38 - .incbin "voicegroups/voicegroup256.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup257:: @ 08A10B44 - .incbin "voicegroups/voicegroup257.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup258:: @ 08A10B5C - .incbin "voicegroups/voicegroup258.bin" + voice_square_1_alt 60, 0, 39, 2, 0, 0, 15, 0 voicegroup259:: @ 08A10B68 - .incbin "voicegroups/voicegroup259.bin" - .4byte gUnk_08CA8A7C - .incbin "voicegroups/voicegroup259_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CA8A7C, 255, 0, 255, 0 voicegroup260:: @ 08A10B74 - .incbin "voicegroups/voicegroup260.bin" + voice_square_1_alt 60, 0, 47, 2, 0, 0, 15, 0 voicegroup261:: @ 08A10B80 - .incbin "voicegroups/voicegroup261.bin" + voice_square_1_alt 60, 0, 21, 2, 0, 0, 15, 0 voicegroup262:: @ 08A10B8C - .incbin "voicegroups/voicegroup262.bin" + voice_square_1_alt 60, 0, 22, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup263:: @ 08A10BA4 - .incbin "voicegroups/voicegroup263.bin" + voice_square_1_alt 60, 0, 21, 2, 0, 0, 15, 0 voicegroup264:: @ 08A10BB0 - .incbin "voicegroups/voicegroup264.bin" - .4byte gUnk_08CAA460 - .incbin "voicegroups/voicegroup264_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CAA460, 255, 0, 255, 0 voicegroup265:: @ 08A10BBC - .incbin "voicegroups/voicegroup265.bin" - .4byte gUnk_08CABA54 - .incbin "voicegroups/voicegroup265_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CABA54, 255, 0, 255, 0 voicegroup266:: @ 08A10BC8 - .incbin "voicegroups/voicegroup266.bin" - .4byte gUnk_08CADF04 - .incbin "voicegroups/voicegroup266_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CADF04, 255, 0, 255, 0 voicegroup267:: @ 08A10BD4 - .incbin "voicegroups/voicegroup267.bin" - .4byte gUnk_08CB064C - .incbin "voicegroups/voicegroup267_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CB064C, 255, 0, 255, 0 voicegroup268:: @ 08A10BE0 - .incbin "voicegroups/voicegroup268.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup269:: @ 08A10BEC - .incbin "voicegroups/voicegroup269.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 voicegroup270:: @ 08A10BF8 - .incbin "voicegroups/voicegroup270.bin" - .4byte gUnk_08CB2E0C - .incbin "voicegroups/voicegroup270_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CB2E0C, 255, 0, 255, 0 voicegroup271:: @ 08A10C04 - .incbin "voicegroups/voicegroup271.bin" - .4byte gUnk_08CB49A0 - .incbin "voicegroups/voicegroup271_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CB49A0, 255, 0, 255, 0 voicegroup272:: @ 08A10C10 - .incbin "voicegroups/voicegroup272.bin" - .4byte gUnk_08CB7C74 - .incbin "voicegroups/voicegroup272_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CB7C74, 255, 0, 255, 0 voicegroup273:: @ 08A10C1C - .incbin "voicegroups/voicegroup273.bin" - .4byte gUnk_08CB9B60 - .incbin "voicegroups/voicegroup273_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CB9B60, 255, 0, 255, 0 voicegroup274:: @ 08A10C28 - .incbin "voicegroups/voicegroup274.bin" - .4byte gUnk_08CBC0EC - .incbin "voicegroups/voicegroup274_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CBC0EC, 255, 0, 255, 0 voicegroup275:: @ 08A10C34 - .incbin "voicegroups/voicegroup275.bin" - .4byte gUnk_08CBD6C4 - .incbin "voicegroups/voicegroup275_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CBD6C4, 255, 0, 255, 0 voicegroup276:: @ 08A10C40 - .incbin "voicegroups/voicegroup276.bin" - .4byte gUnk_08CBE994 - .incbin "voicegroups/voicegroup276_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CBE994, 255, 0, 255, 0 voicegroup277:: @ 08A10C4C - .incbin "voicegroups/voicegroup277.bin" - .4byte gUnk_08CC2AFC - .incbin "voicegroups/voicegroup277_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CC2AFC, 255, 0, 255, 0 voicegroup278:: @ 08A10C58 - .incbin "voicegroups/voicegroup278.bin" + voice_square_2_alt 60, 0, 0, 0, 0, 15, 0 voicegroup279:: @ 08A10C64 - .incbin "voicegroups/voicegroup279.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup280:: @ 08A10C70 - .incbin "voicegroups/voicegroup280.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 2, 0, 0 voicegroup281:: @ 08A10C94 - .incbin "voicegroups/voicegroup281.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 voicegroup282:: @ 08A10CAC - .incbin "voicegroups/voicegroup282.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup283:: @ 08A10CB8 - .incbin "voicegroups/voicegroup283.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup284:: @ 08A10CC4 - .incbin "voicegroups/voicegroup284.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 voicegroup285:: @ 08A10CDC - .incbin "voicegroups/voicegroup285.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup286:: @ 08A10CE8 - .incbin "voicegroups/voicegroup286.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 1, 0, 0, 15, 0 voicegroup287:: @ 08A10D00 - .incbin "voicegroups/voicegroup287.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup288:: @ 08A10D24 - .incbin "voicegroups/voicegroup288.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 voicegroup289:: @ 08A10D30 - .incbin "voicegroups/voicegroup289.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup290:: @ 08A10D3C - .incbin "voicegroups/voicegroup290.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 voicegroup291:: @ 08A10D54 - .incbin "voicegroups/voicegroup291.bin" + voice_square_1_alt 60, 0, 38, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 voicegroup292:: @ 08A10D84 - .incbin "voicegroups/voicegroup292.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup293:: @ 08A10D90 - .incbin "voicegroups/voicegroup293.bin" - .4byte gUnk_08CC36D0 - .incbin "voicegroups/voicegroup293_1.bin" + voice_directsound 60, 0, gUnk_08CC36D0, 255, 0, 255, 0 voicegroup294:: @ 08A10D9C - .incbin "voicegroups/voicegroup294.bin" + voice_square_1_alt 60, 0, 38, 1, 0, 0, 15, 0 voicegroup295:: @ 08A10DA8 - .incbin "voicegroups/voicegroup295.bin" + voice_square_1_alt 60, 0, 38, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup296:: @ 08A10DC0 - .incbin "voicegroups/voicegroup296.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup297:: @ 08A10DD8 - .incbin "voicegroups/voicegroup297.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 1, 0, 0, 15, 0 voicegroup298:: @ 08A10DF0 - .incbin "voicegroups/voicegroup298.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup299:: @ 08A10DFC - .incbin "voicegroups/voicegroup299.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup300:: @ 08A10E14 - .incbin "voicegroups/voicegroup300.bin" + voice_square_1_alt 60, 0, 38, 1, 0, 0, 15, 0 voicegroup301:: @ 08A10E20 - .incbin "voicegroups/voicegroup301.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 1 voicegroup302:: @ 08A10E2C - .incbin "voicegroups/voicegroup302.bin" + voice_square_1_alt 60, 0, 22, 2, 1, 0, 15, 0 + voice_square_1_alt 60, 0, 124, 2, 0, 4, 0, 0 voicegroup303:: @ 08A10E44 - .incbin "voicegroups/voicegroup303.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup304:: @ 08A10E68 - .incbin "voicegroups/voicegroup304.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 voicegroup305:: @ 08A10E74 - .incbin "voicegroups/voicegroup305.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 1, 7, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup306:: @ 08A10EA4 - .incbin "voicegroups/voicegroup306.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup307:: @ 08A10EBC - .incbin "voicegroups/voicegroup307.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 voicegroup308:: @ 08A10EC8 - .incbin "voicegroups/voicegroup308.bin" + voice_square_2_alt 60, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup309:: @ 08A10EEC - .incbin "voicegroups/voicegroup309.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 voicegroup310:: @ 08A10EF8 - .incbin "voicegroups/voicegroup310.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup311:: @ 08A10F04 - .incbin "voicegroups/voicegroup311.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 voicegroup312:: @ 08A10F1C - .incbin "voicegroups/voicegroup312.bin" - .4byte gUnk_08CC41A4 - .incbin "voicegroups/voicegroup312_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CC41A4, 255, 0, 255, 0 voicegroup313:: @ 08A10F28 - .incbin "voicegroups/voicegroup313.bin" + voice_square_1_alt 60, 0, 39, 2, 2, 0, 15, 0 voicegroup314:: @ 08A10F34 - .incbin "voicegroups/voicegroup314.bin" + voice_square_1_alt 60, 0, 47, 2, 1, 0, 15, 0 + voice_square_1_alt 60, 0, 39, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup315:: @ 08A10F58 - .incbin "voicegroups/voicegroup315.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup316:: @ 08A10F70 - .incbin "voicegroups/voicegroup316.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup317:: @ 08A10F88 - .incbin "voicegroups/voicegroup317.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup318:: @ 08A10FA0 - .incbin "voicegroups/voicegroup318.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup319:: @ 08A10FB8 - .incbin "voicegroups/voicegroup319.bin" + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup320:: @ 08A10FD0 - .incbin "voicegroups/voicegroup320.bin" + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup321:: @ 08A10FE8 - .incbin "voicegroups/voicegroup321.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup322:: @ 08A11000 - .incbin "voicegroups/voicegroup322.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup323:: @ 08A11018 - .incbin "voicegroups/voicegroup323.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 + voice_noise_alt 60, 0, 0, 0, 2, 0, 0 voicegroup324:: @ 08A11048 - .incbin "voicegroups/voicegroup324.bin" + voice_square_1_alt 60, 0, 38, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup325:: @ 08A1106C - .incbin "voicegroups/voicegroup325.bin" + voice_square_1_alt 60, 0, 20, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 voicegroup326:: @ 08A11084 - .incbin "voicegroups/voicegroup326.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup327:: @ 08A11090 - .incbin "voicegroups/voicegroup327.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup328:: @ 08A1109C - .incbin "voicegroups/voicegroup328.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup329:: @ 08A110A8 - .incbin "voicegroups/voicegroup329.bin" + voice_square_1_alt 60, 0, 39, 2, 0, 0, 15, 0 voicegroup330:: @ 08A110B4 - .incbin "voicegroups/voicegroup330.bin" - .4byte gUnk_08CC5C4C - .incbin "voicegroups/voicegroup330_1.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 2, 0, 0 + voice_directsound 60, 0, gUnk_08CC5C4C, 255, 236, 0, 0 voicegroup331:: @ 08A110CC - .incbin "voicegroups/voicegroup331.bin" + voice_square_1_alt 60, 0, 23, 1, 0, 0, 15, 0 voicegroup332:: @ 08A110D8 - .incbin "voicegroups/voicegroup332.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup333:: @ 08A110E4 - .incbin "voicegroups/voicegroup333.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 voicegroup334:: @ 08A11108 - .incbin "voicegroups/voicegroup334.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 voicegroup335:: @ 08A1112C - .incbin "voicegroups/voicegroup335.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 voicegroup336:: @ 08A11144 - .incbin "voicegroups/voicegroup336.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup337:: @ 08A11150 - .incbin "voicegroups/voicegroup337.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup338:: @ 08A11168 - .incbin "voicegroups/voicegroup338.bin" - .4byte gUnk_08CC5CA4 - .incbin "voicegroups/voicegroup338_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CC5CA4, 255, 0, 255, 0 voicegroup339:: @ 08A11174 - .incbin "voicegroups/voicegroup339.bin" - .4byte gUnk_08CC7454 - .incbin "voicegroups/voicegroup339_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CC7454, 255, 0, 255, 0 voicegroup340:: @ 08A11180 - .incbin "voicegroups/voicegroup340.bin" - .4byte gUnk_08CC9A60 - .incbin "voicegroups/voicegroup340_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CC9A60, 255, 0, 255, 0 voicegroup341:: @ 08A1118C - .incbin "voicegroups/voicegroup341.bin" - .4byte gUnk_08CCBF44 - .incbin "voicegroups/voicegroup341_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CCBF44, 255, 0, 255, 0 voicegroup342:: @ 08A11198 - .incbin "voicegroups/voicegroup342.bin" - .4byte gUnk_08CCDACC - .incbin "voicegroups/voicegroup342_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CCDACC, 255, 0, 255, 0 voicegroup343:: @ 08A111A4 - .incbin "voicegroups/voicegroup343.bin" + voice_square_2_alt 60, 0, 2, 0, 1, 7, 0 voicegroup344:: @ 08A111B0 - .incbin "voicegroups/voicegroup344.bin" + voice_square_2_alt 60, 0, 2, 0, 1, 7, 0 voicegroup345:: @ 08A111BC - .incbin "voicegroups/voicegroup345.bin" + voice_square_1_alt 60, 0, 38, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup346:: @ 08A111E0 - .incbin "voicegroups/voicegroup346.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup347:: @ 08A111F8 - .incbin "voicegroups/voicegroup347.bin" - .4byte gUnk_08CCFE10 - .incbin "voicegroups/voicegroup347_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CCFE10, 255, 0, 255, 0 voicegroup348:: @ 08A11204 - .incbin "voicegroups/voicegroup348.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup349:: @ 08A11228 - .incbin "voicegroups/voicegroup349.bin" + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 voicegroup350:: @ 08A11234 - .incbin "voicegroups/voicegroup350.bin" + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 voicegroup351:: @ 08A11240 - .incbin "voicegroups/voicegroup351.bin" + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 voicegroup352:: @ 08A1124C - .incbin "voicegroups/voicegroup352.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup353:: @ 08A11258 - .incbin "voicegroups/voicegroup353.bin" + voice_square_1_alt 60, 0, 23, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup354:: @ 08A1127C - .incbin "voicegroups/voicegroup354.bin" + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup355:: @ 08A112AC - .incbin "voicegroups/voicegroup355.bin" + voice_square_2_alt 60, 0, 1, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup356:: @ 08A112D0 - .incbin "voicegroups/voicegroup356.bin" + voice_noise_alt 60, 0, 0, 0, 2, 0, 0 + voice_noise_alt 60, 0, 1, 0, 2, 0, 0 voicegroup357:: @ 08A112E8 - .incbin "voicegroups/voicegroup357.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 + voice_noise_alt 60, 0, 1, 0, 1, 0, 0 voicegroup358:: @ 08A11300 - .incbin "voicegroups/voicegroup358.bin" + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup359:: @ 08A1130C - .incbin "voicegroups/voicegroup359.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup360:: @ 08A11318 - .incbin "voicegroups/voicegroup360.bin" + voice_square_1_alt 60, 0, 23, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 voicegroup361:: @ 08A11330 - .incbin "voicegroups/voicegroup361.bin" + voice_square_1_alt 60, 0, 29, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 39, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup362:: @ 08A11360 - .incbin "voicegroups/voicegroup362.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 voicegroup363:: @ 08A1136C - .incbin "voicegroups/voicegroup363.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup364:: @ 08A11384 - .incbin "voicegroups/voicegroup364.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup365:: @ 08A1139C - .incbin "voicegroups/voicegroup365.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup366:: @ 08A113B4 - .incbin "voicegroups/voicegroup366.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup367:: @ 08A113C0 - .incbin "voicegroups/voicegroup367.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 voicegroup368:: @ 08A113E4 - .incbin "voicegroups/voicegroup368.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 voicegroup369:: @ 08A113FC - .incbin "voicegroups/voicegroup369.bin" + voice_square_1_alt 60, 0, 20, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup370:: @ 08A11414 - .incbin "voicegroups/voicegroup370.bin" + voice_square_1_alt 60, 0, 45, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup371:: @ 08A1142C - .incbin "voicegroups/voicegroup371.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup372:: @ 08A11444 - .incbin "voicegroups/voicegroup372.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 2, 0, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup373:: @ 08A1145C - .incbin "voicegroups/voicegroup373.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 voicegroup374:: @ 08A11468 - .incbin "voicegroups/voicegroup374.bin" + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup375:: @ 08A1148C - .incbin "voicegroups/voicegroup375.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 38, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup376:: @ 08A114BC - .incbin "voicegroups/voicegroup376.bin" + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup377:: @ 08A114E0 - .incbin "voicegroups/voicegroup377.bin" + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 38, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 39, 2, 0, 0, 15, 0 voicegroup378:: @ 08A11504 - .incbin "voicegroups/voicegroup378.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup379:: @ 08A1151C - .incbin "voicegroups/voicegroup379.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 2, 0, 0 voicegroup380:: @ 08A11528 - .incbin "voicegroups/voicegroup380.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup381:: @ 08A11534 - .incbin "voicegroups/voicegroup381.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup382:: @ 08A11540 - .incbin "voicegroups/voicegroup382.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup383:: @ 08A1154C - .incbin "voicegroups/voicegroup383.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup384:: @ 08A11564 - .incbin "voicegroups/voicegroup384.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 voicegroup385:: @ 08A11570 - .incbin "voicegroups/voicegroup385.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 45, 1, 0, 0, 15, 0 voicegroup386:: @ 08A11588 - .incbin "voicegroups/voicegroup386.bin" + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 + voice_square_1_alt 60, 0, 45, 1, 0, 0, 15, 0 voicegroup387:: @ 08A115A0 - .incbin "voicegroups/voicegroup387.bin" + voice_square_1_alt 60, 0, 0, 1, 0, 0, 15, 0 voicegroup388:: @ 08A115AC - .incbin "voicegroups/voicegroup388.bin" + voice_square_1_alt 60, 0, 38, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup389:: @ 08A115D0 - .incbin "voicegroups/voicegroup389.bin" + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 2, 0, 5, 0, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup390:: @ 08A115F4 - .incbin "voicegroups/voicegroup390.bin" + voice_square_1_alt 60, 0, 29, 2, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup391:: @ 08A1160C - .incbin "voicegroups/voicegroup391.bin" + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup392:: @ 08A11618 - .incbin "voicegroups/voicegroup392.bin" - .4byte gUnk_08CD1498 - .incbin "voicegroups/voicegroup392_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CD1498, 255, 0, 255, 0 voicegroup393:: @ 08A11624 - .incbin "voicegroups/voicegroup393.bin" - .4byte gUnk_08CD2AAC - .incbin "voicegroups/voicegroup393_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CD2AAC, 255, 0, 255, 0 voicegroup394:: @ 08A11630 - .incbin "voicegroups/voicegroup394.bin" - .4byte gUnk_08CD3E08 - .incbin "voicegroups/voicegroup394_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CD3E08, 255, 0, 255, 0 voicegroup395:: @ 08A1163C - .incbin "voicegroups/voicegroup395.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup396:: @ 08A11654 - .incbin "voicegroups/voicegroup396.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 voicegroup397:: @ 08A1166C - .incbin "voicegroups/voicegroup397.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 + voice_noise_alt 60, 0, 0, 0, 0, 15, 0 + voice_square_1_alt 60, 0, 0, 0, 0, 0, 15, 0 voicegroup398:: @ 08A11690 - .incbin "voicegroups/voicegroup398.bin" - .4byte gUnk_08CD6718 - .incbin "voicegroups/voicegroup398_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CD6718, 255, 0, 255, 0 voicegroup399:: @ 08A1169C - .incbin "voicegroups/voicegroup399.bin" - .4byte gUnk_08CD75EC - .incbin "voicegroups/voicegroup399_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CD75EC, 255, 0, 255, 0 voicegroup400:: @ 08A116A8 - .incbin "voicegroups/voicegroup400.bin" - .4byte gUnk_08CDC0A4 - .incbin "voicegroups/voicegroup400_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CDC0A4, 255, 0, 255, 0 voicegroup401:: @ 08A116B4 - .incbin "voicegroups/voicegroup401.bin" - .4byte gUnk_08CD6718 - .incbin "voicegroups/voicegroup401_1.bin" - .4byte gUnk_08CD6718 - .incbin "voicegroups/voicegroup401_2.bin" + voice_directsound_no_resample 60, 0, gUnk_08CD6718, 255, 0, 255, 153 + voice_directsound_no_resample 60, 0, gUnk_08CD6718, 255, 0, 255, 0 voicegroup402:: @ 08A116CC - .incbin "voicegroups/voicegroup402.bin" - .4byte gUnk_08CE0C0C - .incbin "voicegroups/voicegroup402_1.bin" + voice_directsound 60, 0, gUnk_08CE0C0C, 255, 0, 255, 0 voicegroup403:: @ 08A116D8 - .incbin "voicegroups/voicegroup403.bin" - .4byte gUnk_08CE2334 - .incbin "voicegroups/voicegroup403_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CE2334, 255, 0, 255, 0 voicegroup404:: @ 08A116E4 - .incbin "voicegroups/voicegroup404.bin" - .4byte gUnk_08CE696C - .incbin "voicegroups/voicegroup404_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CE696C, 255, 0, 255, 0 voicegroup405:: @ 08A116F0 - .incbin "voicegroups/voicegroup405.bin" - .4byte gUnk_08CEA5A4 - .incbin "voicegroups/voicegroup405_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CEA5A4, 255, 0, 255, 0 voicegroup406:: @ 08A116FC - .incbin "voicegroups/voicegroup406.bin" - .4byte gUnk_08CEC404 - .incbin "voicegroups/voicegroup406_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CEC404, 255, 0, 255, 0 voicegroup407:: @ 08A11708 - .incbin "voicegroups/voicegroup407.bin" - .4byte gUnk_08CF134C - .incbin "voicegroups/voicegroup407_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CF134C, 255, 0, 255, 0 voicegroup408:: @ 08A11714 - .incbin "voicegroups/voicegroup408.bin" - .4byte gUnk_08CF62B4 - .incbin "voicegroups/voicegroup408_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CF62B4, 255, 0, 255, 0 voicegroup409:: @ 08A11720 - .incbin "voicegroups/voicegroup409.bin" - .4byte gUnk_08CFA0D4 - .incbin "voicegroups/voicegroup409_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CFA0D4, 255, 0, 255, 0 voicegroup410:: @ 08A1172C - .incbin "voicegroups/voicegroup410.bin" - .4byte gUnk_08CFD434 - .incbin "voicegroups/voicegroup410_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08CFD434, 255, 0, 255, 0 voicegroup411:: @ 08A11738 - .incbin "voicegroups/voicegroup411.bin" - .4byte gUnk_08D00154 - .incbin "voicegroups/voicegroup411_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D00154, 255, 0, 255, 0 voicegroup412:: @ 08A11744 - .incbin "voicegroups/voicegroup412.bin" - .4byte gUnk_08D07C1C - .incbin "voicegroups/voicegroup412_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D07C1C, 255, 0, 255, 0 voicegroup413:: @ 08A11750 - .incbin "voicegroups/voicegroup413.bin" - .4byte gUnk_08D0A7B4 - .incbin "voicegroups/voicegroup413_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D0A7B4, 255, 0, 255, 0 voicegroup414:: @ 08A1175C - .incbin "voicegroups/voicegroup414.bin" - .4byte gUnk_08D0E778 - .incbin "voicegroups/voicegroup414_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D0E778, 255, 0, 255, 0 voicegroup415:: @ 08A11768 - .incbin "voicegroups/voicegroup415.bin" + voice_noise_alt 60, 0, 1, 0, 0, 15, 0 voicegroup416:: @ 08A11774 - .incbin "voicegroups/voicegroup416.bin" + voice_noise_alt 60, 0, 0, 6, 0, 15, 0 voicegroup417:: @ 08A11780 - .incbin "voicegroups/voicegroup417.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 2, 0, 0 + voice_square_2_alt 60, 0, 2, 0, 2, 0, 0 voicegroup418:: @ 08A11798 - .incbin "voicegroups/voicegroup418.bin" - .4byte gUnk_08D100B0 - .incbin "voicegroups/voicegroup418_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D100B0, 255, 0, 255, 0 voicegroup419:: @ 08A117A4 - .incbin "voicegroups/voicegroup419.bin" - .4byte gUnk_08D1269C - .incbin "voicegroups/voicegroup419_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D1269C, 255, 0, 255, 0 voicegroup420:: @ 08A117B0 - .incbin "voicegroups/voicegroup420.bin" - .4byte gUnk_08D15558 - .incbin "voicegroups/voicegroup420_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D15558, 255, 0, 255, 0 voicegroup421:: @ 08A117BC - .incbin "voicegroups/voicegroup421.bin" - .4byte gUnk_08D16540 - .incbin "voicegroups/voicegroup421_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D16540, 255, 0, 255, 0 voicegroup422:: @ 08A117C8 - .incbin "voicegroups/voicegroup422.bin" - .4byte gUnk_08D1ACC4 - .incbin "voicegroups/voicegroup422_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D1ACC4, 255, 0, 255, 0 voicegroup423:: @ 08A117D4 - .incbin "voicegroups/voicegroup423.bin" - .4byte gUnk_08D1EC5C - .incbin "voicegroups/voicegroup423_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D1EC5C, 255, 0, 255, 0 voicegroup424:: @ 08A117E0 - .incbin "voicegroups/voicegroup424.bin" - .4byte gUnk_08D2085C - .incbin "voicegroups/voicegroup424_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D2085C, 255, 0, 255, 0 voicegroup425:: @ 08A117EC - .incbin "voicegroups/voicegroup425.bin" - .4byte gUnk_08D21C64 - .incbin "voicegroups/voicegroup425_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D21C64, 255, 0, 255, 0 voicegroup426:: @ 08A117F8 - .incbin "voicegroups/voicegroup426.bin" - .4byte gUnk_08D23EC8 - .incbin "voicegroups/voicegroup426_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D23EC8, 255, 0, 255, 0 voicegroup427:: @ 08A11804 - .incbin "voicegroups/voicegroup427.bin" - .4byte gUnk_08D24B34 - .incbin "voicegroups/voicegroup427_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D24B34, 255, 0, 255, 0 voicegroup428:: @ 08A11810 - .incbin "voicegroups/voicegroup428.bin" - .4byte gUnk_08D26DD0 - .incbin "voicegroups/voicegroup428_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D26DD0, 255, 0, 255, 0 voicegroup429:: @ 08A1181C - .incbin "voicegroups/voicegroup429.bin" - .4byte gUnk_08D284B8 - .incbin "voicegroups/voicegroup429_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D284B8, 255, 0, 255, 0 voicegroup430:: @ 08A11828 - .incbin "voicegroups/voicegroup430.bin" - .4byte gUnk_08D291FC - .incbin "voicegroups/voicegroup430_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D291FC, 255, 0, 255, 0 voicegroup431:: @ 08A11834 - .incbin "voicegroups/voicegroup431.bin" - .4byte gUnk_08D2AC08 - .incbin "voicegroups/voicegroup431_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D2AC08, 255, 0, 255, 0 voicegroup432:: @ 08A11840 - .incbin "voicegroups/voicegroup432.bin" - .4byte gUnk_08D2E0DC - .incbin "voicegroups/voicegroup432_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D2E0DC, 255, 0, 255, 0 voicegroup433:: @ 08A1184C - .incbin "voicegroups/voicegroup433.bin" - .4byte gUnk_08D2FBEC - .incbin "voicegroups/voicegroup433_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D2FBEC, 255, 0, 255, 0 voicegroup434:: @ 08A11858 - .incbin "voicegroups/voicegroup434.bin" + voice_square_1_alt 60, 0, 0, 2, 0, 0, 15, 0 + voice_square_2_alt 60, 0, 2, 0, 0, 15, 0 voicegroup435:: @ 08A11870 - .incbin "voicegroups/voicegroup435.bin" + voice_noise_alt 60, 0, 0, 1, 2, 0, 0 + voice_noise_alt 60, 0, 0, 0, 1, 0, 0 voicegroup436:: @ 08A11888 - .incbin "voicegroups/voicegroup436.bin" + voice_square_2_alt 60, 0, 0, 0, 0, 15, 0 voicegroup437:: @ 08A11894 - .incbin "voicegroups/voicegroup437.bin" - .4byte gUnk_08D348D0 - .incbin "voicegroups/voicegroup437_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D348D0, 255, 0, 255, 0 voicegroup438:: @ 08A118A0 - .incbin "voicegroups/voicegroup438.bin" - .4byte gUnk_08D37084 - .incbin "voicegroups/voicegroup438_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D37084, 255, 0, 255, 0 voicegroup439:: @ 08A118AC - .incbin "voicegroups/voicegroup439.bin" - .4byte gUnk_08D39220 - .incbin "voicegroups/voicegroup439_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D39220, 255, 0, 255, 0 voicegroup440:: @ 08A118B8 - .incbin "voicegroups/voicegroup440.bin" - .4byte gUnk_08D3B394 - .incbin "voicegroups/voicegroup440_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D3B394, 255, 0, 255, 0 voicegroup441:: @ 08A118C4 - .incbin "voicegroups/voicegroup441.bin" - .4byte gUnk_08D40028 - .incbin "voicegroups/voicegroup441_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D40028, 255, 0, 255, 0 voicegroup442:: @ 08A118D0 - .incbin "voicegroups/voicegroup442.bin" - .4byte gUnk_08D41D50 - .incbin "voicegroups/voicegroup442_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D41D50, 255, 0, 255, 0 voicegroup443:: @ 08A118DC - .incbin "voicegroups/voicegroup443.bin" - .4byte gUnk_08D43F74 - .incbin "voicegroups/voicegroup443_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D43F74, 255, 0, 255, 0 voicegroup444:: @ 08A118E8 - .incbin "voicegroups/voicegroup444.bin" - .4byte gUnk_08D47BE8 - .incbin "voicegroups/voicegroup444_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D47BE8, 255, 0, 255, 0 voicegroup445:: @ 08A118F4 - .incbin "voicegroups/voicegroup445.bin" - .4byte gUnk_08D49F34 - .incbin "voicegroups/voicegroup445_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D49F34, 255, 0, 255, 0 voicegroup446:: @ 08A11900 - .incbin "voicegroups/voicegroup446.bin" - .4byte gUnk_08D4BFD4 - .incbin "voicegroups/voicegroup446_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D4BFD4, 255, 0, 255, 0 voicegroup447:: @ 08A1190C - .incbin "voicegroups/voicegroup447.bin" - .4byte gUnk_08D4E178 - .incbin "voicegroups/voicegroup447_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D4E178, 255, 0, 255, 0 voicegroup448:: @ 08A11918 - .incbin "voicegroups/voicegroup448.bin" - .4byte gUnk_08D51A54 - .incbin "voicegroups/voicegroup448_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D51A54, 255, 0, 255, 0 voicegroup449:: @ 08A11924 - .incbin "voicegroups/voicegroup449.bin" - .4byte gUnk_08D5305C - .incbin "voicegroups/voicegroup449_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D5305C, 255, 0, 255, 0 voicegroup450:: @ 08A11930 - .incbin "voicegroups/voicegroup450.bin" - .4byte gUnk_08D54AA0 - .incbin "voicegroups/voicegroup450_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D54AA0, 255, 0, 255, 0 voicegroup451:: @ 08A1193C - .incbin "voicegroups/voicegroup451.bin" - .4byte gUnk_08D57758 - .incbin "voicegroups/voicegroup451_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D57758, 255, 0, 255, 0 voicegroup452:: @ 08A11948 - .incbin "voicegroups/voicegroup452.bin" - .4byte gUnk_08D59010 - .incbin "voicegroups/voicegroup452_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D59010, 255, 0, 255, 0 voicegroup453:: @ 08A11954 - .incbin "voicegroups/voicegroup453.bin" - .4byte gUnk_08D5D308 - .incbin "voicegroups/voicegroup453_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D5D308, 255, 0, 255, 0 voicegroup454:: @ 08A11960 - .incbin "voicegroups/voicegroup454.bin" - .4byte gUnk_08D60368 - .incbin "voicegroups/voicegroup454_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D60368, 255, 0, 255, 0 voicegroup455:: @ 08A1196C - .incbin "voicegroups/voicegroup455.bin" - .4byte gUnk_08D61538 - .incbin "voicegroups/voicegroup455_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D61538, 255, 0, 255, 0 voicegroup456:: @ 08A11978 - .incbin "voicegroups/voicegroup456.bin" - .4byte gUnk_08D633FC - .incbin "voicegroups/voicegroup456_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D633FC, 255, 0, 255, 0 voicegroup457:: @ 08A11984 - .incbin "voicegroups/voicegroup457.bin" - .4byte gUnk_08D65C1C - .incbin "voicegroups/voicegroup457_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D65C1C, 255, 0, 255, 0 voicegroup458:: @ 08A11990 - .incbin "voicegroups/voicegroup458.bin" - .4byte gUnk_08D67F9C - .incbin "voicegroups/voicegroup458_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D67F9C, 255, 0, 255, 0 voicegroup459:: @ 08A1199C - .incbin "voicegroups/voicegroup459.bin" - .4byte gUnk_08D69250 - .incbin "voicegroups/voicegroup459_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D69250, 255, 0, 255, 0 voicegroup460:: @ 08A119A8 - .incbin "voicegroups/voicegroup460.bin" - .4byte gUnk_08D6B644 - .incbin "voicegroups/voicegroup460_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D6B644, 255, 0, 255, 0 voicegroup461:: @ 08A119B4 - .incbin "voicegroups/voicegroup461.bin" - .4byte gUnk_08D6DB68 - .incbin "voicegroups/voicegroup461_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D6DB68, 255, 0, 255, 0 voicegroup462:: @ 08A119C0 - .incbin "voicegroups/voicegroup462.bin" - .4byte gUnk_08D6EF78 - .incbin "voicegroups/voicegroup462_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D6EF78, 255, 0, 255, 0 voicegroup463:: @ 08A119CC - .incbin "voicegroups/voicegroup463.bin" - .4byte gUnk_08D7012C - .incbin "voicegroups/voicegroup463_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D7012C, 255, 0, 255, 0 voicegroup464:: @ 08A119D8 - .incbin "voicegroups/voicegroup464.bin" - .4byte gUnk_08D71A88 - .incbin "voicegroups/voicegroup464_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D71A88, 255, 0, 255, 0 voicegroup465:: @ 08A119E4 - .incbin "voicegroups/voicegroup465.bin" - .4byte gUnk_08D73768 - .incbin "voicegroups/voicegroup465_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D73768, 255, 0, 255, 0 voicegroup466:: @ 08A119F0 - .incbin "voicegroups/voicegroup466.bin" - .4byte gUnk_08D75030 - .incbin "voicegroups/voicegroup466_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D75030, 255, 0, 255, 0 voicegroup467:: @ 08A119FC - .incbin "voicegroups/voicegroup467.bin" - .4byte gUnk_08D75F98 - .incbin "voicegroups/voicegroup467_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D75F98, 255, 0, 255, 0 voicegroup468:: @ 08A11A08 - .incbin "voicegroups/voicegroup468.bin" - .4byte gUnk_08D776D0 - .incbin "voicegroups/voicegroup468_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D776D0, 255, 0, 255, 0 voicegroup469:: @ 08A11A14 - .incbin "voicegroups/voicegroup469.bin" - .4byte gUnk_08D78D34 - .incbin "voicegroups/voicegroup469_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D78D34, 255, 0, 255, 0 voicegroup470:: @ 08A11A20 - .incbin "voicegroups/voicegroup470.bin" - .4byte gUnk_08D7A490 - .incbin "voicegroups/voicegroup470_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D7A490, 255, 0, 255, 0 voicegroup471:: @ 08A11A2C - .incbin "voicegroups/voicegroup471.bin" - .4byte gUnk_08D7B1D4 - .incbin "voicegroups/voicegroup471_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D7B1D4, 255, 0, 255, 0 voicegroup472:: @ 08A11A38 - .incbin "voicegroups/voicegroup472.bin" - .4byte gUnk_08D7C7C8 - .incbin "voicegroups/voicegroup472_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D7C7C8, 255, 0, 255, 0 voicegroup473:: @ 08A11A44 - .incbin "voicegroups/voicegroup473.bin" - .4byte gUnk_08D7E444 - .incbin "voicegroups/voicegroup473_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D7E444, 255, 0, 255, 0 voicegroup474:: @ 08A11A50 - .incbin "voicegroups/voicegroup474.bin" - .4byte gUnk_08D7FE50 - .incbin "voicegroups/voicegroup474_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D7FE50, 255, 0, 255, 0 voicegroup475:: @ 08A11A5C - .incbin "voicegroups/voicegroup475.bin" - .4byte gUnk_08D82A44 - .incbin "voicegroups/voicegroup475_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D82A44, 255, 0, 255, 0 voicegroup476:: @ 08A11A68 - .incbin "voicegroups/voicegroup476.bin" - .4byte gUnk_08D85798 - .incbin "voicegroups/voicegroup476_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D85798, 255, 0, 255, 0 voicegroup477:: @ 08A11A74 - .incbin "voicegroups/voicegroup477.bin" - .4byte gUnk_08D87154 - .incbin "voicegroups/voicegroup477_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D87154, 255, 0, 255, 0 voicegroup478:: @ 08A11A80 - .incbin "voicegroups/voicegroup478.bin" - .4byte gUnk_08D8A284 - .incbin "voicegroups/voicegroup478_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D8A284, 255, 0, 255, 0 voicegroup479:: @ 08A11A8C - .incbin "voicegroups/voicegroup479.bin" - .4byte gUnk_08D8DAA8 - .incbin "voicegroups/voicegroup479_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D8DAA8, 255, 0, 255, 0 voicegroup480:: @ 08A11A98 - .incbin "voicegroups/voicegroup480.bin" - .4byte gUnk_08D912E8 - .incbin "voicegroups/voicegroup480_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D912E8, 255, 0, 255, 0 voicegroup481:: @ 08A11AA4 - .incbin "voicegroups/voicegroup481.bin" - .4byte gUnk_08D9484C - .incbin "voicegroups/voicegroup481_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D9484C, 255, 0, 255, 0 voicegroup482:: @ 08A11AB0 - .incbin "voicegroups/voicegroup482.bin" - .4byte gUnk_08D965F8 - .incbin "voicegroups/voicegroup482_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D965F8, 255, 0, 255, 0 voicegroup483:: @ 08A11ABC - .incbin "voicegroups/voicegroup483.bin" - .4byte gUnk_08D987E0 - .incbin "voicegroups/voicegroup483_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D987E0, 255, 0, 255, 0 voicegroup484:: @ 08A11AC8 - .incbin "voicegroups/voicegroup484.bin" - .4byte gUnk_08D9A870 - .incbin "voicegroups/voicegroup484_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D9A870, 255, 0, 255, 0 voicegroup485:: @ 08A11AD4 - .incbin "voicegroups/voicegroup485.bin" - .4byte gUnk_08D9CA34 - .incbin "voicegroups/voicegroup485_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08D9CA34, 255, 0, 255, 0 voicegroup486:: @ 08A11AE0 - .incbin "voicegroups/voicegroup486.bin" - .4byte gUnk_08DA0A78 - .incbin "voicegroups/voicegroup486_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DA0A78, 255, 0, 255, 0 voicegroup487:: @ 08A11AEC - .incbin "voicegroups/voicegroup487.bin" - .4byte gUnk_08DA4584 - .incbin "voicegroups/voicegroup487_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DA4584, 255, 0, 255, 0 voicegroup488:: @ 08A11AF8 - .incbin "voicegroups/voicegroup488.bin" - .4byte gUnk_08DAA744 - .incbin "voicegroups/voicegroup488_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DAA744, 255, 0, 255, 0 voicegroup489:: @ 08A11B04 - .incbin "voicegroups/voicegroup489.bin" - .4byte gUnk_08DAE6FC - .incbin "voicegroups/voicegroup489_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DAE6FC, 255, 0, 255, 0 voicegroup490:: @ 08A11B10 - .incbin "voicegroups/voicegroup490.bin" - .4byte gUnk_08DB38A8 - .incbin "voicegroups/voicegroup490_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DB38A8, 255, 0, 255, 0 voicegroup491:: @ 08A11B1C - .incbin "voicegroups/voicegroup491.bin" - .4byte gUnk_08DB7E4C - .incbin "voicegroups/voicegroup491_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DB7E4C, 255, 0, 255, 0 voicegroup492:: @ 08A11B28 - .incbin "voicegroups/voicegroup492.bin" - .4byte gUnk_08CC5C4C - .incbin "voicegroups/voicegroup492_1.bin" + voice_directsound 60, 0, gUnk_08CC5C4C, 255, 188, 108, 0 voicegroup493:: @ 08A11B34 - .incbin "voicegroups/voicegroup493.bin" - .4byte gUnk_08DBE34C - .incbin "voicegroups/voicegroup493_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DBE34C, 255, 0, 255, 0 voicegroup494:: @ 08A11B40 - .incbin "voicegroups/voicegroup494.bin" - .4byte gUnk_08DBE5BC - .incbin "voicegroups/voicegroup494_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DBE5BC, 255, 0, 255, 0 voicegroup495:: @ 08A11B4C - .incbin "voicegroups/voicegroup495.bin" - .4byte gUnk_08A47F98 - .incbin "voicegroups/voicegroup495_1.bin" + voice_directsound 60, 0, gUnk_08A47F98, 255, 246, 108, 153 voicegroup496:: @ 08A11B58 - .incbin "voicegroups/voicegroup496.bin" - .4byte gUnk_08CCFE10 - .incbin "voicegroups/voicegroup496_1.bin" + voice_directsound 60, 0, gUnk_08CCFE10, 255, 0, 255, 0 voicegroup497:: @ 08A11B64 - .incbin "voicegroups/voicegroup497.bin" - .4byte gUnk_08DBF620 - .incbin "voicegroups/voicegroup497_1.bin" + voice_directsound 60, 0, gUnk_08DBF620, 255, 246, 0, 0 voicegroup498:: @ 08A11B70 - .incbin "voicegroups/voicegroup498.bin" - .4byte gUnk_08DC1738 - .incbin "voicegroups/voicegroup498_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DC1738, 255, 0, 255, 0 voicegroup499:: @ 08A11B7C - .incbin "voicegroups/voicegroup499.bin" - .4byte gUnk_08DC1738 - .incbin "voicegroups/voicegroup499_1.bin" + voice_directsound 60, 0, gUnk_08DC1738, 255, 0, 255, 0 voicegroup500:: @ 08A11B88 - .incbin "voicegroups/voicegroup500.bin" - .4byte gUnk_08DBF620 - .incbin "voicegroups/voicegroup500_1.bin" + voice_directsound 60, 0, gUnk_08DBF620, 255, 0, 255, 0 voicegroup501:: @ 08A11B94 - .incbin "voicegroups/voicegroup501.bin" - .4byte gUnk_08DC4E4C - .incbin "voicegroups/voicegroup501_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DC4E4C, 255, 0, 255, 0 voicegroup502:: @ 08A11BA0 - .incbin "voicegroups/voicegroup502.bin" - .4byte gUnk_08DC81BC - .incbin "voicegroups/voicegroup502_1.bin" + voice_directsound_no_resample 60, 0, gUnk_08DC81BC, 255, 0, 255, 0 gUnk_08A11BAC:: @ 08A11BAC .incbin "voicegroups/gUnk_08A11BAC.bin" diff --git a/tools/preproc/asm_file.cpp b/tools/preproc/asm_file.cpp index 07921321..e4ebe5b9 100755 --- a/tools/preproc/asm_file.cpp +++ b/tools/preproc/asm_file.cpp @@ -31,8 +31,13 @@ AsmFile::AsmFile(std::string filename) : m_filename(filename) { FILE *fp = std::fopen(filename.c_str(), "rb"); - if (fp == NULL) - FATAL_ERROR("Failed to open \"%s\" for reading.\n", filename.c_str()); + if (fp == NULL) { + // TODO pass current build assets path to preproc + fp = std::fopen(("build/tmc_eu/assets/" + filename).c_str(), "rb"); + + if (fp == NULL) + FATAL_ERROR("Failed to open \"%s\" for reading.\n", filename.c_str()); + } std::fseek(fp, 0, SEEK_END);