Update audio macro names

change audio channel numbers from 0-7 back to 1-8
change all note macros back to single note macro
todo: fix comments with old macro names, update noise macros/instrument names
This commit is contained in:
dannye 2019-07-27 23:21:39 -05:00
parent 36597a7917
commit 20c4116788
392 changed files with 21932 additions and 21963 deletions

View file

@ -155,7 +155,7 @@ INCLUDE "audio/sfx/ball_poof.asm"
INCLUDE "audio/sfx/faint_thud.asm"
INCLUDE "audio/sfx/run.asm"
INCLUDE "audio/sfx/dex_page_added.asm"
INCLUDE "audio/sfx/pokeflute_ch6.asm"
INCLUDE "audio/sfx/pokeflute_ch7.asm"
INCLUDE "audio/sfx/peck.asm"
INCLUDE "audio/sfx/faint_fall.asm"
INCLUDE "audio/sfx/battle_09.asm"
@ -470,7 +470,7 @@ Music_DoLowHealthAlarm::
.asm_2138a
ld a, $86
ld [wChannelSoundIDs + Ch4], a ;disable sound channel?
ld [wChannelSoundIDs + Ch5], a ;disable sound channel?
ld a, [wLowHealthAlarm]
and $7f ;decrement alarm timer.
dec a
@ -484,7 +484,7 @@ Music_DoLowHealthAlarm::
.disableAlarm
xor a
ld [wLowHealthAlarm], a ;disable alarm
ld [wChannelSoundIDs + Ch4], a ;re-enable sound channel?
ld [wChannelSoundIDs + Ch5], a ;re-enable sound channel?
ld de, .toneDataSilence
jr .playTone
@ -535,12 +535,12 @@ Music_PokeFluteInBattle::
ld a, SFX_CAUGHT_MON
call PlaySoundWaitForCurrent
; then immediately overwrite the channel pointers
ld hl, wChannelCommandPointers + Ch4 * 2
ld de, SFX_08_PokeFlute_Ch4
ld hl, wChannelCommandPointers + Ch5 * 2
ld de, SFX_Pokeflute_Ch5
call Audio2_OverwriteChannelPointer
ld de, SFX_08_PokeFlute_Ch5
ld de, SFX_Pokeflute_Ch6
call Audio2_OverwriteChannelPointer
ld de, SFX_08_PokeFlute_Ch6
ld de, SFX_Pokeflute_Ch7
Audio2_OverwriteChannelPointer:
ld a, e
@ -625,7 +625,7 @@ INCLUDE "audio/music/pokecenter.asm"
SECTION "Music 2", ROMX ; BANK $08
INCLUDE "audio/sfx/pokeflute_ch4_ch5.asm"
INCLUDE "audio/sfx/pokeflute_ch5_ch6.asm"
INCLUDE "audio/sfx/unused2_2.asm"
INCLUDE "audio/music/gymleaderbattle.asm"
INCLUDE "audio/music/trainerbattle.asm"

View file

@ -1,7 +1,7 @@
; The first of three duplicated sound engines.
Audio1_UpdateMusic::
ld c, Ch0
ld c, Ch1
.loop
ld b, 0
ld hl, wChannelSoundIDs
@ -10,7 +10,7 @@ Audio1_UpdateMusic::
and a
jr z, .nextChannel
ld a, c
cp Ch4
cp Ch5
jr nc, .applyAffects ; if sfx channel
ld a, [wMuteAudioAndPauseMusic]
and a
@ -30,7 +30,7 @@ Audio1_UpdateMusic::
.nextChannel
ld a, c
inc c ; inc channel number
cp Ch7
cp Ch8
jr nz, .loop
ret
@ -46,9 +46,9 @@ Audio1_ApplyMusicAffects:
dec a ; otherwise, decrease the delay timer
ld [hl], a
ld a, c
cp Ch4
cp Ch5
jr nc, .startChecks ; if a sfx channel
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
add hl, bc
ld a, [hl]
and a
@ -171,7 +171,7 @@ Audio1_endchannel:
bit BIT_CHANNEL_CALL, [hl]
jr nz, .returnFromCall
ld a, c
cp Ch3
cp Ch4
jr nc, .noiseOrSfxChannel
jr .disableChannelOutput
.noiseOrSfxChannel
@ -179,7 +179,7 @@ Audio1_endchannel:
ld hl, wChannelFlags2
add hl, bc
res BIT_EXECUTE_MUSIC, [hl]
cp Ch6
cp Ch7
jr nz, .skipSfxChannel3
; restart hardware channel 3 (wave channel) output
ld a, $0
@ -223,19 +223,19 @@ Audio1_endchannel:
and [hl]
ld [rNR51], a
.asm_9248
ld a, [wChannelSoundIDs + Ch4]
ld a, [wChannelSoundIDs + Ch5]
cp CRY_SFX_START
jr nc, .asm_9251
jr .skipCry
.asm_9251
ld a, [wChannelSoundIDs + Ch4]
ld a, [wChannelSoundIDs + Ch5]
cp CRY_SFX_END
jr z, .skipCry
jr c, .cry
jr .skipCry
.cry
ld a, c
cp Ch4
cp Ch5
jr z, .asm_9265
call Audio1_GoBackOneCommandIfCry
ret c
@ -336,14 +336,14 @@ Audio1_notetype:
add hl, bc
ld [hl], a ; store low nibble as speed
ld a, c
cp Ch3
cp Ch4
jr z, .noiseChannel ; noise channel has 0 params
call Audio1_GetNextMusicByte
ld d, a
ld a, c
cp Ch2
cp Ch3
jr z, .musicChannel3
cp Ch6
cp Ch7
jr nz, .skipChannel3
ld hl, wSfxWaveInstrument
jr .channel3
@ -477,7 +477,7 @@ Audio1_tempo:
cp $ed ; is this command a tempo?
jr nz, Audio1_stereopanning ; no
ld a, c
cp Ch4
cp Ch5
jr nc, .sfxChannel
call Audio1_GetNextMusicByte
ld [wMusicTempo], a ; store first param
@ -520,10 +520,10 @@ Audio1_unknownmusic0xef:
ld a, [wDisableChannelOutputWhenSfxEnds]
and a
jr nz, .skip
ld a, [wChannelSoundIDs + Ch7]
ld a, [wChannelSoundIDs + Ch8]
ld [wDisableChannelOutputWhenSfxEnds], a
xor a
ld [wChannelSoundIDs + Ch7], a
ld [wChannelSoundIDs + Ch8], a
.skip
jp Audio1_endchannel
@ -577,7 +577,7 @@ Audio1_sfxnote:
cp $20 ; is this command a sfxnote?
jr nz, Audio1_pitchenvelope
ld a, c
cp Ch3 ; is this a noise or sfx channel?
cp Ch4 ; is this a noise or sfx channel?
jr c, Audio1_pitchenvelope ; no
ld b, 0
ld hl, wChannelFlags2
@ -607,7 +607,7 @@ Audio1_sfxnote:
call Audio1_GetNextMusicByte
ld e, a
ld a, c
cp Ch7
cp Ch8
ld a, 0
jr z, .skip
; Channels 1 through 3 have 2 registers that control frequency, but the noise
@ -627,7 +627,7 @@ Audio1_sfxnote:
Audio1_pitchenvelope:
ld a, c
cp Ch4
cp Ch5
jr c, Audio1_note ; if not a sfx
ld a, d
cp $10 ; is this command a pitchenvelope?
@ -643,7 +643,7 @@ Audio1_pitchenvelope:
Audio1_note:
ld a, c
cp Ch3
cp Ch4
jr nz, Audio1_notelength ; if not noise channel
ld a, d
and $f0
@ -691,7 +691,7 @@ Audio1_notelength:
ld l, b
call Audio1_MultiplyAdd
ld a, c
cp Ch4
cp Ch5
jr nc, .sfxChannel
ld a, [wMusicTempo]
ld d, a
@ -701,7 +701,7 @@ Audio1_notelength:
.sfxChannel
ld d, $1
ld e, $0
cp Ch7
cp Ch8
jr z, .skip ; if noise channel
call Audio1_SetSfxTempo
ld a, [wSfxTempo]
@ -741,10 +741,10 @@ Audio1_notepitch:
cp $c0 ; compare to rest
jr nz, .notRest
ld a, c
cp Ch4
cp Ch5
jr nc, .next
; If this isn't an SFX channel, try the corresponding SFX channel.
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
add hl, bc
ld a, [hl]
and a
@ -752,9 +752,9 @@ Audio1_notepitch:
; fall through
.next
ld a, c
cp Ch2
cp Ch3
jr z, .channel3
cp Ch6
cp Ch7
jr nz, .notChannel3
.channel3
ld b, 0
@ -790,10 +790,10 @@ Audio1_notepitch:
.skipPitchBend
push de
ld a, c
cp Ch4
cp Ch5
jr nc, .sfxChannel ; if sfx channel
; If this isn't an SFX channel, try the corresponding SFX channel.
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
ld d, 0
ld e, a
add hl, de
@ -838,12 +838,12 @@ Audio1_EnableChannelOutput:
or [hl] ; set this channel's bits
ld d, a
ld a, c
cp Ch7
cp Ch8
jr z, .noiseChannelOrNoSfx
cp Ch4
cp Ch5
jr nc, .skip ; if sfx channel
; If this isn't an SFX channel, try the corresponding SFX channel.
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
add hl, bc
ld a, [hl]
and a
@ -873,9 +873,9 @@ Audio1_ApplyDutyAndSoundLength:
add hl, bc
ld d, [hl]
ld a, c
cp Ch2
cp Ch3
jr z, .skipDuty ; if music channel 3
cp Ch6
cp Ch7
jr z, .skipDuty ; if sfx channel 3
; include duty (except on channel 3 which doesn't have it)
ld a, d
@ -894,15 +894,15 @@ Audio1_ApplyDutyAndSoundLength:
Audio1_ApplyWavePatternAndFrequency:
ld a, c
cp Ch2
cp Ch3
jr z, .channel3
cp Ch6
cp Ch7
jr nz, .notChannel3
; fall through
.channel3
push de
ld de, wMusicWaveInstrument
cp Ch2
cp Ch3
jr z, .next
ld de, wSfxWaveInstrument
.next
@ -1006,7 +1006,7 @@ Audio1_GoBackOneCommandIfCry:
Audio1_IsCry:
; Returns whether the currently playing audio is a cry in carry.
ld a, [wChannelSoundIDs + Ch4]
ld a, [wChannelSoundIDs + Ch5]
cp CRY_SFX_START
jr nc, .next
jr .no
@ -1542,7 +1542,7 @@ Audio1_PlaySound::
add hl, de
ld [hl], a
ld a, e
cp Ch4
cp Ch5
jr nz, .asm_9a2b
ld a, $8
ld [rNR10], a ; sweep off
@ -1644,7 +1644,7 @@ Audio1_PlaySound::
ld a, [wSoundID]
ld [hl], a
pop af
cp Ch3
cp Ch4
jr c, .skipSettingFlag
ld hl, wChannelFlags1
add hl, bc
@ -1676,12 +1676,12 @@ Audio1_PlaySound::
jr c, .cry
jr .done
.cry
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
ld [hli], a
ld [hli], a
ld [hli], a
ld [hl], a
ld hl, wChannelCommandPointers + Ch6 * 2 ; sfx wave channel pointer
ld hl, wChannelCommandPointers + Ch7 * 2 ; sfx wave channel pointer
ld de, Audio1_CryEndchannel
ld [hl], e
inc hl
@ -1697,7 +1697,7 @@ Audio1_PlaySound::
ret
Audio1_CryEndchannel:
endchannel
sound_ret
Audio1_HWChannelBaseAddresses:
; the low bytes of each HW channel's base address

View file

@ -1,7 +1,7 @@
; The second of three duplicated sound engines.
Audio2_UpdateMusic::
ld c, Ch0
ld c, Ch1
.loop
ld b, $0
ld hl, wChannelSoundIDs
@ -10,7 +10,7 @@ Audio2_UpdateMusic::
and a
jr z, .nextChannel
ld a, c
cp Ch4
cp Ch5
jr nc, .applyAffects ; if sfx channel
ld a, [wMuteAudioAndPauseMusic]
and a
@ -30,7 +30,7 @@ Audio2_UpdateMusic::
.nextChannel
ld a, c
inc c
cp Ch7
cp Ch8
jr nz, .loop
ret
@ -52,9 +52,9 @@ Audio2_ApplyMusicAffects:
dec a ; otherwise, decrease the delay timer
ld [hl], a
ld a, c
cp Ch4
cp Ch5
jr nc, .startChecks ; if a sfx channel
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
add hl, bc
ld a, [hl]
and a
@ -160,7 +160,7 @@ Audio2_PlayNextNote:
res 4, [hl]
res 5, [hl]
ld a, c
cp Ch4
cp Ch5
jr nz, .beginChecks
ld a, [wLowHealthAlarm] ;low health alarm enabled?
bit 7, a
@ -180,7 +180,7 @@ Audio2_endchannel:
bit 1, [hl]
jr nz, .returnFromCall
ld a, c
cp Ch3
cp Ch4
jr nc, .noiseOrSfxChannel
jr .asm_219c0
.noiseOrSfxChannel
@ -188,7 +188,7 @@ Audio2_endchannel:
ld hl, wChannelFlags2
add hl, bc
res 0, [hl]
cp Ch6
cp Ch7
jr nz, .notSfxChannel3
ld a, $0
ld [rNR30], a
@ -231,19 +231,19 @@ Audio2_endchannel:
and [hl]
ld [rNR51], a
.asm_219c9
ld a, [wChannelSoundIDs + Ch4]
ld a, [wChannelSoundIDs + Ch5]
cp $14
jr nc, .asm_219d2
jr .asm_219ef
.asm_219d2
ld a, [wChannelSoundIDs + Ch4]
ld a, [wChannelSoundIDs + Ch5]
cp $86
jr z, .asm_219ef
jr c, .asm_219dd
jr .asm_219ef
.asm_219dd
ld a, c
cp Ch4
cp Ch5
jr z, .asm_219e6
call Audio2_21e6d
ret c
@ -344,14 +344,14 @@ Audio2_notetype:
add hl, bc
ld [hl], a ; store low nibble as speed
ld a, c
cp Ch3
cp Ch4
jr z, .noiseChannel ; noise channel has 0 params
call Audio2_GetNextMusicByte
ld d, a
ld a, c
cp Ch2
cp Ch3
jr z, .musicChannel3
cp Ch6
cp Ch7
jr nz, .notChannel3
ld hl, wSfxWaveInstrument
jr .sfxChannel3
@ -471,7 +471,7 @@ Audio2_tempo:
cp $ed ; is this command a tempo?
jr nz, Audio2_stereopanning ; no
ld a, c ; yes
cp Ch4
cp Ch5
jr nc, .sfxChannel
call Audio2_GetNextMusicByte
ld [wMusicTempo], a ; store first param
@ -514,10 +514,10 @@ Audio2_unknownmusic0xef:
ld a, [wDisableChannelOutputWhenSfxEnds]
and a
jr nz, .skip
ld a, [wChannelSoundIDs + Ch7]
ld a, [wChannelSoundIDs + Ch8]
ld [wDisableChannelOutputWhenSfxEnds], a
xor a
ld [wChannelSoundIDs + Ch7], a
ld [wChannelSoundIDs + Ch8], a
.skip
jp Audio2_endchannel
@ -571,7 +571,7 @@ Audio2_sfxnote:
cp $20 ; is this command an sfxnote?
jr nz, Audio2_pitchenvelope ; no
ld a, c
cp Ch3 ; is this a noise or sfx channel?
cp Ch4 ; is this a noise or sfx channel?
jr c, Audio2_pitchenvelope ; no
ld b, $0
ld hl, wChannelFlags2
@ -597,7 +597,7 @@ Audio2_sfxnote:
call Audio2_GetNextMusicByte
ld e, a
ld a, c
cp Ch7
cp Ch8
ld a, $0
jr z, .sfxNoiseChannel ; only two params for noise channel
push de
@ -614,7 +614,7 @@ Audio2_sfxnote:
Audio2_pitchenvelope:
ld a, c
cp Ch4
cp Ch5
jr c, Audio2_note ; if not a sfx
ld a, d
cp $10 ; is this command a pitchenvelope?
@ -630,7 +630,7 @@ Audio2_pitchenvelope:
Audio2_note:
ld a, c
cp Ch3
cp Ch4
jr nz, Audio2_notelength ; if not noise channel
ld a, d
and $f0
@ -678,7 +678,7 @@ Audio2_notelength:
ld l, b
call Audio2_22006
ld a, c
cp Ch4
cp Ch5
jr nc, .sfxChannel
ld a, [wMusicTempo]
ld d, a
@ -688,7 +688,7 @@ Audio2_notelength:
.sfxChannel
ld d, $1
ld e, $0
cp Ch7
cp Ch8
jr z, .skip ; if noise channel
call Audio2_21e2f
ld a, [wSfxTempo]
@ -728,9 +728,9 @@ Audio2_notepitch:
cp $c0 ; compare to rest
jr nz, .notRest
ld a, c
cp Ch4
cp Ch5
jr nc, .sfxChannel
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
add hl, bc
ld a, [hl]
and a
@ -738,9 +738,9 @@ Audio2_notepitch:
; fall through
.sfxChannel
ld a, c
cp Ch2
cp Ch3
jr z, .musicChannel3
cp Ch6
cp Ch7
jr nz, .notSfxChannel3
.musicChannel3
ld b, $0
@ -776,9 +776,9 @@ Audio2_notepitch:
.asm_21d39
push de
ld a, c
cp Ch4
cp Ch5
jr nc, .skip ; if sfx channel
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
ld d, $0
ld e, a
add hl, de
@ -823,11 +823,11 @@ Audio2_21d79:
or [hl]
ld d, a
ld a, c
cp Ch7
cp Ch8
jr z, .sfxNoiseChannel
cp Ch4
cp Ch5
jr nc, .skip ; if sfx channel
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
add hl, bc
ld a, [hl]
and a
@ -855,9 +855,9 @@ Audio2_21daa:
add hl, bc
ld d, [hl]
ld a, c
cp Ch2
cp Ch3
jr z, .channel3 ; if music channel 3
cp Ch6
cp Ch7
jr z, .channel3 ; if sfx channel 3
ld a, d
and $3f
@ -875,15 +875,15 @@ Audio2_21daa:
Audio2_21dcc:
ld a, c
cp Ch2
cp Ch3
jr z, .channel3
cp Ch6
cp Ch7
jr nz, .notSfxChannel3
; fall through
.channel3
push de
ld de, wMusicWaveInstrument
cp Ch2
cp Ch3
jr z, .musicChannel3
ld de, wSfxWaveInstrument
.musicChannel3
@ -922,7 +922,7 @@ Audio2_21dcc:
inc hl
ld [hl], d
ld a, c
cp Ch4
cp Ch5
jr c, .musicChannel
call Audio2_21e56
.musicChannel
@ -930,7 +930,7 @@ Audio2_21dcc:
Audio2_21e19:
ld a, c
cp Ch4
cp Ch5
jr nz, .asm_21e2e
ld a, [wLowHealthAlarm]
bit 7, a
@ -1009,7 +1009,7 @@ Audio2_21e6d:
ret
Audio2_21e8b:
ld a, [wChannelSoundIDs + Ch4]
ld a, [wChannelSoundIDs + Ch5]
cp $14
jr nc, .asm_21e94
jr .asm_21e9a
@ -1026,9 +1026,9 @@ Audio2_21e8b:
ret
Audio2_21e9f:
ld a, [wChannelSoundIDs + Ch7]
ld a, [wChannelSoundIDs + Ch8]
ld b, a
ld a, [wChannelSoundIDs + Ch4]
ld a, [wChannelSoundIDs + Ch5]
or b
cp $9d
jr nc, .asm_21ead
@ -1314,7 +1314,7 @@ Audio2_22017:
ld d, [hl]
ld a, b
.loop
cp Ch7
cp Ch8
jr z, .done
sra d
rr e
@ -1683,12 +1683,12 @@ Audio2_2224e:
jr c, .asm_222b5
jr .asm_222d4
.asm_222b5
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
ld [hli], a
ld [hli], a
ld [hli], a
ld [hl], a
ld hl, wChannelCommandPointers + Ch6 * 2 ; sfx noise channel pointer
ld hl, wChannelCommandPointers + Ch7 * 2 ; sfx noise channel pointer
ld de, Noise2_endchannel
ld [hl], e
inc hl
@ -1704,7 +1704,7 @@ Audio2_2224e:
ret
Noise2_endchannel:
endchannel
sound_ret
Unknown_222d6:
db $10, $15, $1A, $1F ; channels 0-3

View file

@ -1,7 +1,7 @@
; The third of three duplicated sound engines.
Audio3_UpdateMusic::
ld c, Ch0
ld c, Ch1
.loop
ld b, $0
ld hl, wChannelSoundIDs
@ -10,7 +10,7 @@ Audio3_UpdateMusic::
and a
jr z, .nextChannel
ld a, c
cp Ch4
cp Ch5
jr nc, .applyAffects ; if sfx channel
ld a, [wMuteAudioAndPauseMusic]
and a
@ -30,7 +30,7 @@ Audio3_UpdateMusic::
.nextChannel
ld a, c
inc c ; inc channel number
cp Ch7
cp Ch8
jr nz, .loop
ret
@ -52,9 +52,9 @@ Audio3_ApplyMusicAffects:
dec a ; otherwise, decrease the delay timer
ld [hl], a
ld a, c
cp Ch4
cp Ch5
jr nc, .startChecks ; if a sfx channel
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
add hl, bc
ld a, [hl]
and a
@ -173,7 +173,7 @@ Audio3_endchannel:
bit 1, [hl]
jr nz, .returnFromCall
ld a, c
cp Ch3
cp Ch4
jr nc, .noiseOrSfxChannel
jr .asm_7d2b3
.noiseOrSfxChannel
@ -181,7 +181,7 @@ Audio3_endchannel:
ld hl, wChannelFlags2
add hl, bc
res 0, [hl]
cp Ch6
cp Ch7
jr nz, .notSfxChannel3
ld a, $0
ld [rNR30], a
@ -224,19 +224,19 @@ Audio3_endchannel:
and [hl]
ld [rNR51], a
.asm_7d2bc
ld a, [wChannelSoundIDs + Ch4]
ld a, [wChannelSoundIDs + Ch5]
cp $14
jr nc, .asm_7d2c5
jr .asm_7d2e2
.asm_7d2c5
ld a, [wChannelSoundIDs + Ch4]
ld a, [wChannelSoundIDs + Ch5]
cp $86
jr z, .asm_7d2e2
jr c, .asm_7d2d0
jr .asm_7d2e2
.asm_7d2d0
ld a, c
cp Ch4
cp Ch5
jr z, .asm_7d2d9
call Audio3_7d73b
ret c
@ -337,14 +337,14 @@ Audio3_notetype:
add hl, bc
ld [hl], a ; store low nibble as speed
ld a, c
cp Ch3
cp Ch4
jr z, .noiseChannel ; noise channel has 0 params
call Audio3_GetNextMusicByte
ld d, a
ld a, c
cp Ch2
cp Ch3
jr z, .musicChannel3
cp Ch6
cp Ch7
jr nz, .notChannel3
ld hl, wSfxWaveInstrument
jr .sfxChannel3
@ -464,7 +464,7 @@ Audio3_tempo:
cp $ed ; is this command a tempo?
jr nz, Audio3_stereopanning ; no
ld a, c ; yes
cp Ch4
cp Ch5
jr nc, .sfxChannel
call Audio3_GetNextMusicByte
ld [wMusicTempo], a ; store first param
@ -507,10 +507,10 @@ Audio3_unknownmusic0xef:
ld a, [wDisableChannelOutputWhenSfxEnds]
and a
jr nz, .skip
ld a, [wChannelSoundIDs + Ch7]
ld a, [wChannelSoundIDs + Ch8]
ld [wDisableChannelOutputWhenSfxEnds], a
xor a
ld [wChannelSoundIDs + Ch7], a
ld [wChannelSoundIDs + Ch8], a
.skip
jp Audio3_endchannel
@ -564,7 +564,7 @@ Audio3_sfxnote:
cp $20 ; is this command an sfxnote?
jr nz, Audio3_pitchenvelope ; no
ld a, c
cp Ch3 ; is this a noise or sfx channel?
cp Ch4 ; is this a noise or sfx channel?
jr c, Audio3_pitchenvelope ; no
ld b, $0
ld hl, wChannelFlags2
@ -590,7 +590,7 @@ Audio3_sfxnote:
call Audio3_GetNextMusicByte
ld e, a
ld a, c
cp Ch7
cp Ch8
ld a, $0
jr z, .sfxNoiseChannel ; only two params for noise channel
push de
@ -607,7 +607,7 @@ Audio3_sfxnote:
Audio3_pitchenvelope:
ld a, c
cp Ch4
cp Ch5
jr c, Audio3_note ; if not a sfx
ld a, d
cp $10 ; is this command an pitchenvelope?
@ -623,7 +623,7 @@ Audio3_pitchenvelope:
Audio3_note:
ld a, c
cp Ch3
cp Ch4
jr nz, Audio3_notelength ; if not noise channel
ld a, d
and $f0
@ -671,7 +671,7 @@ Audio3_notelength:
ld l, b
call Audio3_7d8bb
ld a, c
cp Ch4
cp Ch5
jr nc, .sfxChannel
ld a, [wMusicTempo]
ld d, a
@ -681,7 +681,7 @@ Audio3_notelength:
.sfxChannel
ld d, $1
ld e, $0
cp Ch7
cp Ch8
jr z, .skip ; if noise channel
call Audio3_7d707
ld a, [wSfxTempo]
@ -721,9 +721,9 @@ Audio3_notepitch:
cp $c0 ; compare to rest
jr nz, .notRest
ld a, c
cp Ch4
cp Ch5
jr nc, .sfxChannel
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
add hl, bc
ld a, [hl]
and a
@ -731,9 +731,9 @@ Audio3_notepitch:
; fall through
.sfxChannel
ld a, c
cp Ch2
cp Ch3
jr z, .musicChannel3
cp Ch6
cp Ch7
jr nz, .notSfxChannel3
.musicChannel3
ld b, $0
@ -769,9 +769,9 @@ Audio3_notepitch:
.asm_7d62c
push de
ld a, c
cp Ch4
cp Ch5
jr nc, .skip ; if sfx Channel
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
ld d, $0
ld e, a
add hl, de
@ -816,11 +816,11 @@ Audio3_7d66c:
or [hl]
ld d, a
ld a, c
cp Ch7
cp Ch8
jr z, .sfxNoiseChannel
cp Ch4
cp Ch5
jr nc, .skip ; if sfx channel
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
add hl, bc
ld a, [hl]
and a
@ -848,9 +848,9 @@ Audio3_7d69d:
add hl, bc
ld d, [hl]
ld a, c
cp Ch2
cp Ch3
jr z, .channel3 ; if music channel 3
cp Ch6
cp Ch7
jr z, .channel3 ; if sfx channel 3
ld a, d
and $3f
@ -868,15 +868,15 @@ Audio3_7d69d:
Audio3_7d6bf:
ld a, c
cp Ch2
cp Ch3
jr z, .channel3
cp Ch6
cp Ch7
jr nz, .notSfxChannel3
; fall through
.channel3
push de
ld de, wMusicWaveInstrument
cp Ch2
cp Ch3
jr z, .musicChannel3
ld de, wSfxWaveInstrument
.musicChannel3
@ -978,7 +978,7 @@ Audio3_7d73b:
ret
Audio3_7d759:
ld a, [wChannelSoundIDs + Ch4]
ld a, [wChannelSoundIDs + Ch5]
cp $14
jr nc, .asm_7d762
jr .asm_7d768
@ -1632,12 +1632,12 @@ Audio3_7db03:
jr c, .asm_7db6a
jr .asm_7db89
.asm_7db6a
ld hl, wChannelSoundIDs + Ch4
ld hl, wChannelSoundIDs + Ch5
ld [hli], a
ld [hli], a
ld [hli], a
ld [hl], a
ld hl, wChannelCommandPointers + Ch6 * 2 ; sfx noise channel pointer
ld hl, wChannelCommandPointers + Ch7 * 2 ; sfx noise channel pointer
ld de, Noise3_endchannel
ld [hl], e
inc hl
@ -1653,7 +1653,7 @@ Audio3_7db03:
ret
Noise3_endchannel:
endchannel
sound_ret
Unknown_7db8b:
db $10, $15, $1A, $1F ; channels 0-3

View file

@ -1,66 +1,66 @@
Music_PalletTown::
audio Music_PalletTown, Ch0, Ch1, Ch2
audio_header Music_PalletTown, Ch1, Ch2, Ch3
Music_Pokecenter::
audio Music_Pokecenter, Ch0, Ch1, Ch2
audio_header Music_Pokecenter, Ch1, Ch2, Ch3
Music_Gym::
audio Music_Gym, Ch0, Ch1, Ch2
audio_header Music_Gym, Ch1, Ch2, Ch3
; Viridian City, Pewter City, Saffron City
Music_Cities1::
audio Music_Cities1, Ch0, Ch1, Ch2, Ch3
audio_header Music_Cities1, Ch1, Ch2, Ch3, Ch4
; Cerulean City, Fuchsia City
Music_Cities2::
audio Music_Cities2, Ch0, Ch1, Ch2
audio_header Music_Cities2, Ch1, Ch2, Ch3
Music_Celadon::
audio Music_Celadon, Ch0, Ch1, Ch2
audio_header Music_Celadon, Ch1, Ch2, Ch3
Music_Cinnabar::
audio Music_Cinnabar, Ch0, Ch1, Ch2
audio_header Music_Cinnabar, Ch1, Ch2, Ch3
Music_Vermilion::
audio Music_Vermilion, Ch0, Ch1, Ch2, Ch3
audio_header Music_Vermilion, Ch1, Ch2, Ch3, Ch4
Music_Lavender::
audio Music_Lavender, Ch0, Ch1, Ch2, Ch3
audio_header Music_Lavender, Ch1, Ch2, Ch3, Ch4
Music_SSAnne::
audio Music_SSAnne, Ch0, Ch1, Ch2
audio_header Music_SSAnne, Ch1, Ch2, Ch3
Music_MeetProfOak::
audio Music_MeetProfOak, Ch0, Ch1, Ch2
audio_header Music_MeetProfOak, Ch1, Ch2, Ch3
Music_MeetRival::
audio Music_MeetRival, Ch0, Ch1, Ch2
audio_header Music_MeetRival, Ch1, Ch2, Ch3
Music_MuseumGuy::
audio Music_MuseumGuy, Ch0, Ch1, Ch2, Ch3
audio_header Music_MuseumGuy, Ch1, Ch2, Ch3, Ch4
Music_SafariZone::
audio Music_SafariZone, Ch0, Ch1, Ch2
audio_header Music_SafariZone, Ch1, Ch2, Ch3
Music_PkmnHealed::
audio Music_PkmnHealed, Ch0, Ch1, Ch2
audio_header Music_PkmnHealed, Ch1, Ch2, Ch3
; Routes 1 and 2
Music_Routes1::
audio Music_Routes1, Ch0, Ch1, Ch2, Ch3
audio_header Music_Routes1, Ch1, Ch2, Ch3, Ch4
; Routes 24 and 25
Music_Routes2::
audio Music_Routes2, Ch0, Ch1, Ch2, Ch3
audio_header Music_Routes2, Ch1, Ch2, Ch3, Ch4
; Routes 3, 4, 5, 6, 7, 8, 9, 10, 16, 17, 18, 19, 20, 21, 22
Music_Routes3::
audio Music_Routes3, Ch0, Ch1, Ch2, Ch3
audio_header Music_Routes3, Ch1, Ch2, Ch3, Ch4
; Routes 11, 12, 13, 14, 15
Music_Routes4::
audio Music_Routes4, Ch0, Ch1, Ch2, Ch3
audio_header Music_Routes4, Ch1, Ch2, Ch3, Ch4
; Route 23, Indigo Plateau
Music_IndigoPlateau::
audio Music_IndigoPlateau, Ch0, Ch1, Ch2, Ch3
audio_header Music_IndigoPlateau, Ch1, Ch2, Ch3, Ch4

View file

@ -1,20 +1,20 @@
Music_GymLeaderBattle::
audio Music_GymLeaderBattle, Ch0, Ch1, Ch2
audio_header Music_GymLeaderBattle, Ch1, Ch2, Ch3
Music_TrainerBattle::
audio Music_TrainerBattle, Ch0, Ch1, Ch2
audio_header Music_TrainerBattle, Ch1, Ch2, Ch3
Music_WildBattle::
audio Music_WildBattle, Ch0, Ch1, Ch2
audio_header Music_WildBattle, Ch1, Ch2, Ch3
Music_FinalBattle::
audio Music_FinalBattle, Ch0, Ch1, Ch2
audio_header Music_FinalBattle, Ch1, Ch2, Ch3
Music_DefeatedTrainer::
audio Music_DefeatedTrainer, Ch0, Ch1, Ch2
audio_header Music_DefeatedTrainer, Ch1, Ch2, Ch3
Music_DefeatedWildMon::
audio Music_DefeatedWildMon, Ch0, Ch1, Ch2
audio_header Music_DefeatedWildMon, Ch1, Ch2, Ch3
Music_DefeatedGymLeader::
audio Music_DefeatedGymLeader, Ch0, Ch1, Ch2
audio_header Music_DefeatedGymLeader, Ch1, Ch2, Ch3

View file

@ -1,56 +1,56 @@
Music_TitleScreen::
audio Music_TitleScreen, Ch0, Ch1, Ch2, Ch3
audio_header Music_TitleScreen, Ch1, Ch2, Ch3, Ch4
Music_Credits::
audio Music_Credits, Ch0, Ch1, Ch2
audio_header Music_Credits, Ch1, Ch2, Ch3
Music_HallOfFame::
audio Music_HallOfFame, Ch0, Ch1, Ch2
audio_header Music_HallOfFame, Ch1, Ch2, Ch3
Music_OaksLab::
audio Music_OaksLab, Ch0, Ch1, Ch2
audio_header Music_OaksLab, Ch1, Ch2, Ch3
Music_JigglypuffSong::
audio Music_JigglypuffSong, Ch0, Ch1
audio_header Music_JigglypuffSong, Ch1, Ch2
Music_BikeRiding::
audio Music_BikeRiding, Ch0, Ch1, Ch2, Ch3
audio_header Music_BikeRiding, Ch1, Ch2, Ch3, Ch4
Music_Surfing::
audio Music_Surfing, Ch0, Ch1, Ch2
audio_header Music_Surfing, Ch1, Ch2, Ch3
Music_GameCorner::
audio Music_GameCorner, Ch0, Ch1, Ch2
audio_header Music_GameCorner, Ch1, Ch2, Ch3
Music_IntroBattle::
audio Music_IntroBattle, Ch0, Ch1, Ch2, Ch3
audio_header Music_IntroBattle, Ch1, Ch2, Ch3, Ch4
; Power Plant, Cerulean Cave, Rocket HQ
Music_Dungeon1::
audio Music_Dungeon1, Ch0, Ch1, Ch2, Ch3
audio_header Music_Dungeon1, Ch1, Ch2, Ch3, Ch4
; Viridian Forest, Seafoam Islands
Music_Dungeon2::
audio Music_Dungeon2, Ch0, Ch1, Ch2, Ch3
audio_header Music_Dungeon2, Ch1, Ch2, Ch3, Ch4
; Mt. Moon, Rock Tunnel, Victory Road
Music_Dungeon3::
audio Music_Dungeon3, Ch0, Ch1, Ch2, Ch3
audio_header Music_Dungeon3, Ch1, Ch2, Ch3, Ch4
Music_CinnabarMansion::
audio Music_CinnabarMansion, Ch0, Ch1, Ch2, Ch3
audio_header Music_CinnabarMansion, Ch1, Ch2, Ch3, Ch4
Music_PokemonTower::
audio Music_PokemonTower, Ch0, Ch1, Ch2
audio_header Music_PokemonTower, Ch1, Ch2, Ch3
Music_SilphCo::
audio Music_SilphCo, Ch0, Ch1, Ch2
audio_header Music_SilphCo, Ch1, Ch2, Ch3
Music_MeetEvilTrainer::
audio Music_MeetEvilTrainer, Ch0, Ch1, Ch2
audio_header Music_MeetEvilTrainer, Ch1, Ch2, Ch3
Music_MeetFemaleTrainer::
audio Music_MeetFemaleTrainer, Ch0, Ch1, Ch2
audio_header Music_MeetFemaleTrainer, Ch1, Ch2, Ch3
Music_MeetMaleTrainer::
audio Music_MeetMaleTrainer, Ch0, Ch1, Ch2
audio_header Music_MeetMaleTrainer, Ch1, Ch2, Ch3

View file

@ -2,287 +2,287 @@ SFX_Headers_1::
db $ff, $ff, $ff ; padding
SFX_Snare1_1::
audio SFX_Snare1_1, Ch7
audio_header SFX_Snare1_1, Ch8
SFX_Snare2_1::
audio SFX_Snare2_1, Ch7
audio_header SFX_Snare2_1, Ch8
SFX_Snare3_1::
audio SFX_Snare3_1, Ch7
audio_header SFX_Snare3_1, Ch8
SFX_Snare4_1::
audio SFX_Snare4_1, Ch7
audio_header SFX_Snare4_1, Ch8
SFX_Snare5_1::
audio SFX_Snare5_1, Ch7
audio_header SFX_Snare5_1, Ch8
SFX_Triangle1_1::
audio SFX_Triangle1_1, Ch7
audio_header SFX_Triangle1_1, Ch8
SFX_Triangle2_1::
audio SFX_Triangle2_1, Ch7
audio_header SFX_Triangle2_1, Ch8
SFX_Snare6_1::
audio SFX_Snare6_1, Ch7
audio_header SFX_Snare6_1, Ch8
SFX_Snare7_1::
audio SFX_Snare7_1, Ch7
audio_header SFX_Snare7_1, Ch8
SFX_Snare8_1::
audio SFX_Snare8_1, Ch7
audio_header SFX_Snare8_1, Ch8
SFX_Snare9_1::
audio SFX_Snare9_1, Ch7
audio_header SFX_Snare9_1, Ch8
SFX_Cymbal1_1::
audio SFX_Cymbal1_1, Ch7
audio_header SFX_Cymbal1_1, Ch8
SFX_Cymbal2_1::
audio SFX_Cymbal2_1, Ch7
audio_header SFX_Cymbal2_1, Ch8
SFX_Cymbal3_1::
audio SFX_Cymbal3_1, Ch7
audio_header SFX_Cymbal3_1, Ch8
SFX_Muted_Snare1_1::
audio SFX_Muted_Snare1_1, Ch7
audio_header SFX_Muted_Snare1_1, Ch8
SFX_Triangle3_1::
audio SFX_Triangle3_1, Ch7
audio_header SFX_Triangle3_1, Ch8
SFX_Muted_Snare2_1::
audio SFX_Muted_Snare2_1, Ch7
audio_header SFX_Muted_Snare2_1, Ch8
SFX_Muted_Snare3_1::
audio SFX_Muted_Snare3_1, Ch7
audio_header SFX_Muted_Snare3_1, Ch8
SFX_Muted_Snare4_1::
audio SFX_Muted_Snare4_1, Ch7
audio_header SFX_Muted_Snare4_1, Ch8
SFX_Cry00_1::
audio SFX_Cry00_1, Ch4, Ch5, Ch7
audio_header SFX_Cry00_1, Ch5, Ch6, Ch8
SFX_Cry01_1::
audio SFX_Cry01_1, Ch4, Ch5, Ch7
audio_header SFX_Cry01_1, Ch5, Ch6, Ch8
SFX_Cry02_1::
audio SFX_Cry02_1, Ch4, Ch5, Ch7
audio_header SFX_Cry02_1, Ch5, Ch6, Ch8
SFX_Cry03_1::
audio SFX_Cry03_1, Ch4, Ch5, Ch7
audio_header SFX_Cry03_1, Ch5, Ch6, Ch8
SFX_Cry04_1::
audio SFX_Cry04_1, Ch4, Ch5, Ch7
audio_header SFX_Cry04_1, Ch5, Ch6, Ch8
SFX_Cry05_1::
audio SFX_Cry05_1, Ch4, Ch5, Ch7
audio_header SFX_Cry05_1, Ch5, Ch6, Ch8
SFX_Cry06_1::
audio SFX_Cry06_1, Ch4, Ch5, Ch7
audio_header SFX_Cry06_1, Ch5, Ch6, Ch8
SFX_Cry07_1::
audio SFX_Cry07_1, Ch4, Ch5, Ch7
audio_header SFX_Cry07_1, Ch5, Ch6, Ch8
SFX_Cry08_1::
audio SFX_Cry08_1, Ch4, Ch5, Ch7
audio_header SFX_Cry08_1, Ch5, Ch6, Ch8
SFX_Cry09_1::
audio SFX_Cry09_1, Ch4, Ch5, Ch7
audio_header SFX_Cry09_1, Ch5, Ch6, Ch8
SFX_Cry0A_1::
audio SFX_Cry0A_1, Ch4, Ch5, Ch7
audio_header SFX_Cry0A_1, Ch5, Ch6, Ch8
SFX_Cry0B_1::
audio SFX_Cry0B_1, Ch4, Ch5, Ch7
audio_header SFX_Cry0B_1, Ch5, Ch6, Ch8
SFX_Cry0C_1::
audio SFX_Cry0C_1, Ch4, Ch5, Ch7
audio_header SFX_Cry0C_1, Ch5, Ch6, Ch8
SFX_Cry0D_1::
audio SFX_Cry0D_1, Ch4, Ch5, Ch7
audio_header SFX_Cry0D_1, Ch5, Ch6, Ch8
SFX_Cry0E_1::
audio SFX_Cry0E_1, Ch4, Ch5, Ch7
audio_header SFX_Cry0E_1, Ch5, Ch6, Ch8
SFX_Cry0F_1::
audio SFX_Cry0F_1, Ch4, Ch5, Ch7
audio_header SFX_Cry0F_1, Ch5, Ch6, Ch8
SFX_Cry10_1::
audio SFX_Cry10_1, Ch4, Ch5, Ch7
audio_header SFX_Cry10_1, Ch5, Ch6, Ch8
SFX_Cry11_1::
audio SFX_Cry11_1, Ch4, Ch5, Ch7
audio_header SFX_Cry11_1, Ch5, Ch6, Ch8
SFX_Cry12_1::
audio SFX_Cry12_1, Ch4, Ch5, Ch7
audio_header SFX_Cry12_1, Ch5, Ch6, Ch8
SFX_Cry13_1::
audio SFX_Cry13_1, Ch4, Ch5, Ch7
audio_header SFX_Cry13_1, Ch5, Ch6, Ch8
SFX_Cry14_1::
audio SFX_Cry14_1, Ch4, Ch5, Ch7
audio_header SFX_Cry14_1, Ch5, Ch6, Ch8
SFX_Cry15_1::
audio SFX_Cry15_1, Ch4, Ch5, Ch7
audio_header SFX_Cry15_1, Ch5, Ch6, Ch8
SFX_Cry16_1::
audio SFX_Cry16_1, Ch4, Ch5, Ch7
audio_header SFX_Cry16_1, Ch5, Ch6, Ch8
SFX_Cry17_1::
audio SFX_Cry17_1, Ch4, Ch5, Ch7
audio_header SFX_Cry17_1, Ch5, Ch6, Ch8
SFX_Cry18_1::
audio SFX_Cry18_1, Ch4, Ch5, Ch7
audio_header SFX_Cry18_1, Ch5, Ch6, Ch8
SFX_Cry19_1::
audio SFX_Cry19_1, Ch4, Ch5, Ch7
audio_header SFX_Cry19_1, Ch5, Ch6, Ch8
SFX_Cry1A_1::
audio SFX_Cry1A_1, Ch4, Ch5, Ch7
audio_header SFX_Cry1A_1, Ch5, Ch6, Ch8
SFX_Cry1B_1::
audio SFX_Cry1B_1, Ch4, Ch5, Ch7
audio_header SFX_Cry1B_1, Ch5, Ch6, Ch8
SFX_Cry1C_1::
audio SFX_Cry1C_1, Ch4, Ch5, Ch7
audio_header SFX_Cry1C_1, Ch5, Ch6, Ch8
SFX_Cry1D_1::
audio SFX_Cry1D_1, Ch4, Ch5, Ch7
audio_header SFX_Cry1D_1, Ch5, Ch6, Ch8
SFX_Cry1E_1::
audio SFX_Cry1E_1, Ch4, Ch5, Ch7
audio_header SFX_Cry1E_1, Ch5, Ch6, Ch8
SFX_Cry1F_1::
audio SFX_Cry1F_1, Ch4, Ch5, Ch7
audio_header SFX_Cry1F_1, Ch5, Ch6, Ch8
SFX_Cry20_1::
audio SFX_Cry20_1, Ch4, Ch5, Ch7
audio_header SFX_Cry20_1, Ch5, Ch6, Ch8
SFX_Cry21_1::
audio SFX_Cry21_1, Ch4, Ch5, Ch7
audio_header SFX_Cry21_1, Ch5, Ch6, Ch8
SFX_Cry22_1::
audio SFX_Cry22_1, Ch4, Ch5, Ch7
audio_header SFX_Cry22_1, Ch5, Ch6, Ch8
SFX_Cry23_1::
audio SFX_Cry23_1, Ch4, Ch5, Ch7
audio_header SFX_Cry23_1, Ch5, Ch6, Ch8
SFX_Cry24_1::
audio SFX_Cry24_1, Ch4, Ch5, Ch7
audio_header SFX_Cry24_1, Ch5, Ch6, Ch8
SFX_Cry25_1::
audio SFX_Cry25_1, Ch4, Ch5, Ch7
audio_header SFX_Cry25_1, Ch5, Ch6, Ch8
SFX_Get_Item1_1::
audio SFX_Get_Item1_1, Ch4, Ch5, Ch6
audio_header SFX_Get_Item1_1, Ch5, Ch6, Ch7
SFX_Get_Item2_1::
audio SFX_Get_Item2_1, Ch4, Ch5, Ch6
audio_header SFX_Get_Item2_1, Ch5, Ch6, Ch7
SFX_Tink_1::
audio SFX_Tink_1, Ch4
audio_header SFX_Tink_1, Ch5
SFX_Heal_HP_1::
audio SFX_Heal_HP_1, Ch4
audio_header SFX_Heal_HP_1, Ch5
SFX_Heal_Ailment_1::
audio SFX_Heal_Ailment_1, Ch4
audio_header SFX_Heal_Ailment_1, Ch5
SFX_Start_Menu_1::
audio SFX_Start_Menu_1, Ch7
audio_header SFX_Start_Menu_1, Ch8
SFX_Press_AB_1::
audio SFX_Press_AB_1, Ch4
audio_header SFX_Press_AB_1, Ch5
SFX_Pokedex_Rating_1::
audio SFX_Pokedex_Rating_1, Ch4, Ch5, Ch6
audio_header SFX_Pokedex_Rating_1, Ch5, Ch6, Ch7
SFX_Get_Key_Item_1::
audio SFX_Get_Key_Item_1, Ch4, Ch5, Ch6
audio_header SFX_Get_Key_Item_1, Ch5, Ch6, Ch7
SFX_Poisoned_1::
audio SFX_Poisoned_1, Ch4
audio_header SFX_Poisoned_1, Ch5
SFX_Trade_Machine_1::
audio SFX_Trade_Machine_1, Ch4
audio_header SFX_Trade_Machine_1, Ch5
SFX_Turn_On_PC_1::
audio SFX_Turn_On_PC_1, Ch4
audio_header SFX_Turn_On_PC_1, Ch5
SFX_Turn_Off_PC_1::
audio SFX_Turn_Off_PC_1, Ch4
audio_header SFX_Turn_Off_PC_1, Ch5
SFX_Enter_PC_1::
audio SFX_Enter_PC_1, Ch4
audio_header SFX_Enter_PC_1, Ch5
SFX_Shrink_1::
audio SFX_Shrink_1, Ch4
audio_header SFX_Shrink_1, Ch5
SFX_Switch_1::
audio SFX_Switch_1, Ch4
audio_header SFX_Switch_1, Ch5
SFX_Healing_Machine_1::
audio SFX_Healing_Machine_1, Ch4
audio_header SFX_Healing_Machine_1, Ch5
SFX_Teleport_Exit1_1::
audio SFX_Teleport_Exit1_1, Ch4
audio_header SFX_Teleport_Exit1_1, Ch5
SFX_Teleport_Enter1_1::
audio SFX_Teleport_Enter1_1, Ch4
audio_header SFX_Teleport_Enter1_1, Ch5
SFX_Teleport_Exit2_1::
audio SFX_Teleport_Exit2_1, Ch4
audio_header SFX_Teleport_Exit2_1, Ch5
SFX_Ledge_1::
audio SFX_Ledge_1, Ch4
audio_header SFX_Ledge_1, Ch5
SFX_Teleport_Enter2_1::
audio SFX_Teleport_Enter2_1, Ch7
audio_header SFX_Teleport_Enter2_1, Ch8
SFX_Fly_1::
audio SFX_Fly_1, Ch7
audio_header SFX_Fly_1, Ch8
SFX_Denied_1::
audio SFX_Denied_1, Ch4, Ch5
audio_header SFX_Denied_1, Ch5, Ch6
SFX_Arrow_Tiles_1::
audio SFX_Arrow_Tiles_1, Ch4
audio_header SFX_Arrow_Tiles_1, Ch5
SFX_Push_Boulder_1::
audio SFX_Push_Boulder_1, Ch7
audio_header SFX_Push_Boulder_1, Ch8
SFX_SS_Anne_Horn_1::
audio SFX_SS_Anne_Horn_1, Ch4, Ch5
audio_header SFX_SS_Anne_Horn_1, Ch5, Ch6
SFX_Withdraw_Deposit_1::
audio SFX_Withdraw_Deposit_1, Ch4
audio_header SFX_Withdraw_Deposit_1, Ch5
SFX_Cut_1::
audio SFX_Cut_1, Ch7
audio_header SFX_Cut_1, Ch8
SFX_Go_Inside_1::
audio SFX_Go_Inside_1, Ch7
audio_header SFX_Go_Inside_1, Ch8
SFX_Swap_1::
audio SFX_Swap_1, Ch4, Ch5
audio_header SFX_Swap_1, Ch5, Ch6
SFX_59_1::
audio SFX_59_1, Ch4, Ch5
audio_header SFX_59_1, Ch5, Ch6
SFX_Purchase_1::
audio SFX_Purchase_1, Ch4, Ch5
audio_header SFX_Purchase_1, Ch5, Ch6
SFX_Collision_1::
audio SFX_Collision_1, Ch4
audio_header SFX_Collision_1, Ch5
SFX_Go_Outside_1::
audio SFX_Go_Outside_1, Ch7
audio_header SFX_Go_Outside_1, Ch8
SFX_Save_1::
audio SFX_Save_1, Ch4, Ch5
audio_header SFX_Save_1, Ch5, Ch6
; the Pokeflute sound effect directly hijacks channel 2
; the Pokeflute sound effect directly hijacks channel 3
SFX_Pokeflute::
audio SFX_Pokeflute, Ch2
audio_header SFX_Pokeflute, Ch3
SFX_Safari_Zone_PA::
audio SFX_Safari_Zone_PA, Ch4
audio_header SFX_Safari_Zone_PA, Ch5

View file

@ -2,358 +2,358 @@ SFX_Headers_2::
db $ff, $ff, $ff ; padding
SFX_Snare1_2::
audio SFX_Snare1_2, Ch7
audio_header SFX_Snare1_2, Ch8
SFX_Snare2_2::
audio SFX_Snare2_2, Ch7
audio_header SFX_Snare2_2, Ch8
SFX_Snare3_2::
audio SFX_Snare3_2, Ch7
audio_header SFX_Snare3_2, Ch8
SFX_Snare4_2::
audio SFX_Snare4_2, Ch7
audio_header SFX_Snare4_2, Ch8
SFX_Snare5_2::
audio SFX_Snare5_2, Ch7
audio_header SFX_Snare5_2, Ch8
SFX_Triangle1_2::
audio SFX_Triangle1_2, Ch7
audio_header SFX_Triangle1_2, Ch8
SFX_Triangle2_2::
audio SFX_Triangle2_2, Ch7
audio_header SFX_Triangle2_2, Ch8
SFX_Snare6_2::
audio SFX_Snare6_2, Ch7
audio_header SFX_Snare6_2, Ch8
SFX_Snare7_2::
audio SFX_Snare7_2, Ch7
audio_header SFX_Snare7_2, Ch8
SFX_Snare8_2::
audio SFX_Snare8_2, Ch7
audio_header SFX_Snare8_2, Ch8
SFX_Snare9_2::
audio SFX_Snare9_2, Ch7
audio_header SFX_Snare9_2, Ch8
SFX_Cymbal1_2::
audio SFX_Cymbal1_2, Ch7
audio_header SFX_Cymbal1_2, Ch8
SFX_Cymbal2_2::
audio SFX_Cymbal2_2, Ch7
audio_header SFX_Cymbal2_2, Ch8
SFX_Cymbal3_2::
audio SFX_Cymbal3_2, Ch7
audio_header SFX_Cymbal3_2, Ch8
SFX_Muted_Snare1_2::
audio SFX_Muted_Snare1_2, Ch7
audio_header SFX_Muted_Snare1_2, Ch8
SFX_Triangle3_2::
audio SFX_Triangle3_2, Ch7
audio_header SFX_Triangle3_2, Ch8
SFX_Muted_Snare2_2::
audio SFX_Muted_Snare2_2, Ch7
audio_header SFX_Muted_Snare2_2, Ch8
SFX_Muted_Snare3_2::
audio SFX_Muted_Snare3_2, Ch7
audio_header SFX_Muted_Snare3_2, Ch8
SFX_Muted_Snare4_2::
audio SFX_Muted_Snare4_2, Ch7
audio_header SFX_Muted_Snare4_2, Ch8
SFX_Cry00_2::
audio SFX_Cry00_2, Ch4, Ch5, Ch7
audio_header SFX_Cry00_2, Ch5, Ch6, Ch8
SFX_Cry01_2::
audio SFX_Cry01_2, Ch4, Ch5, Ch7
audio_header SFX_Cry01_2, Ch5, Ch6, Ch8
SFX_Cry02_2::
audio SFX_Cry02_2, Ch4, Ch5, Ch7
audio_header SFX_Cry02_2, Ch5, Ch6, Ch8
SFX_Cry03_2::
audio SFX_Cry03_2, Ch4, Ch5, Ch7
audio_header SFX_Cry03_2, Ch5, Ch6, Ch8
SFX_Cry04_2::
audio SFX_Cry04_2, Ch4, Ch5, Ch7
audio_header SFX_Cry04_2, Ch5, Ch6, Ch8
SFX_Cry05_2::
audio SFX_Cry05_2, Ch4, Ch5, Ch7
audio_header SFX_Cry05_2, Ch5, Ch6, Ch8
SFX_Cry06_2::
audio SFX_Cry06_2, Ch4, Ch5, Ch7
audio_header SFX_Cry06_2, Ch5, Ch6, Ch8
SFX_Cry07_2::
audio SFX_Cry07_2, Ch4, Ch5, Ch7
audio_header SFX_Cry07_2, Ch5, Ch6, Ch8
SFX_Cry08_2::
audio SFX_Cry08_2, Ch4, Ch5, Ch7
audio_header SFX_Cry08_2, Ch5, Ch6, Ch8
SFX_Cry09_2::
audio SFX_Cry09_2, Ch4, Ch5, Ch7
audio_header SFX_Cry09_2, Ch5, Ch6, Ch8
SFX_Cry0A_2::
audio SFX_Cry0A_2, Ch4, Ch5, Ch7
audio_header SFX_Cry0A_2, Ch5, Ch6, Ch8
SFX_Cry0B_2::
audio SFX_Cry0B_2, Ch4, Ch5, Ch7
audio_header SFX_Cry0B_2, Ch5, Ch6, Ch8
SFX_Cry0C_2::
audio SFX_Cry0C_2, Ch4, Ch5, Ch7
audio_header SFX_Cry0C_2, Ch5, Ch6, Ch8
SFX_Cry0D_2::
audio SFX_Cry0D_2, Ch4, Ch5, Ch7
audio_header SFX_Cry0D_2, Ch5, Ch6, Ch8
SFX_Cry0E_2::
audio SFX_Cry0E_2, Ch4, Ch5, Ch7
audio_header SFX_Cry0E_2, Ch5, Ch6, Ch8
SFX_Cry0F_2::
audio SFX_Cry0F_2, Ch4, Ch5, Ch7
audio_header SFX_Cry0F_2, Ch5, Ch6, Ch8
SFX_Cry10_2::
audio SFX_Cry10_2, Ch4, Ch5, Ch7
audio_header SFX_Cry10_2, Ch5, Ch6, Ch8
SFX_Cry11_2::
audio SFX_Cry11_2, Ch4, Ch5, Ch7
audio_header SFX_Cry11_2, Ch5, Ch6, Ch8
SFX_Cry12_2::
audio SFX_Cry12_2, Ch4, Ch5, Ch7
audio_header SFX_Cry12_2, Ch5, Ch6, Ch8
SFX_Cry13_2::
audio SFX_Cry13_2, Ch4, Ch5, Ch7
audio_header SFX_Cry13_2, Ch5, Ch6, Ch8
SFX_Cry14_2::
audio SFX_Cry14_2, Ch4, Ch5, Ch7
audio_header SFX_Cry14_2, Ch5, Ch6, Ch8
SFX_Cry15_2::
audio SFX_Cry15_2, Ch4, Ch5, Ch7
audio_header SFX_Cry15_2, Ch5, Ch6, Ch8
SFX_Cry16_2::
audio SFX_Cry16_2, Ch4, Ch5, Ch7
audio_header SFX_Cry16_2, Ch5, Ch6, Ch8
SFX_Cry17_2::
audio SFX_Cry17_2, Ch4, Ch5, Ch7
audio_header SFX_Cry17_2, Ch5, Ch6, Ch8
SFX_Cry18_2::
audio SFX_Cry18_2, Ch4, Ch5, Ch7
audio_header SFX_Cry18_2, Ch5, Ch6, Ch8
SFX_Cry19_2::
audio SFX_Cry19_2, Ch4, Ch5, Ch7
audio_header SFX_Cry19_2, Ch5, Ch6, Ch8
SFX_Cry1A_2::
audio SFX_Cry1A_2, Ch4, Ch5, Ch7
audio_header SFX_Cry1A_2, Ch5, Ch6, Ch8
SFX_Cry1B_2::
audio SFX_Cry1B_2, Ch4, Ch5, Ch7
audio_header SFX_Cry1B_2, Ch5, Ch6, Ch8
SFX_Cry1C_2::
audio SFX_Cry1C_2, Ch4, Ch5, Ch7
audio_header SFX_Cry1C_2, Ch5, Ch6, Ch8
SFX_Cry1D_2::
audio SFX_Cry1D_2, Ch4, Ch5, Ch7
audio_header SFX_Cry1D_2, Ch5, Ch6, Ch8
SFX_Cry1E_2::
audio SFX_Cry1E_2, Ch4, Ch5, Ch7
audio_header SFX_Cry1E_2, Ch5, Ch6, Ch8
SFX_Cry1F_2::
audio SFX_Cry1F_2, Ch4, Ch5, Ch7
audio_header SFX_Cry1F_2, Ch5, Ch6, Ch8
SFX_Cry20_2::
audio SFX_Cry20_2, Ch4, Ch5, Ch7
audio_header SFX_Cry20_2, Ch5, Ch6, Ch8
SFX_Cry21_2::
audio SFX_Cry21_2, Ch4, Ch5, Ch7
audio_header SFX_Cry21_2, Ch5, Ch6, Ch8
SFX_Cry22_2::
audio SFX_Cry22_2, Ch4, Ch5, Ch7
audio_header SFX_Cry22_2, Ch5, Ch6, Ch8
SFX_Cry23_2::
audio SFX_Cry23_2, Ch4, Ch5, Ch7
audio_header SFX_Cry23_2, Ch5, Ch6, Ch8
SFX_Cry24_2::
audio SFX_Cry24_2, Ch4, Ch5, Ch7
audio_header SFX_Cry24_2, Ch5, Ch6, Ch8
SFX_Cry25_2::
audio SFX_Cry25_2, Ch4, Ch5, Ch7
audio_header SFX_Cry25_2, Ch5, Ch6, Ch8
SFX_Level_Up::
audio SFX_Level_Up, Ch4, Ch5, Ch6
audio_header SFX_Level_Up, Ch5, Ch6, Ch7
SFX_Get_Item2_2::
audio SFX_Get_Item2_2, Ch4, Ch5, Ch6
audio_header SFX_Get_Item2_2, Ch5, Ch6, Ch7
SFX_Tink_2::
audio SFX_Tink_2, Ch4
audio_header SFX_Tink_2, Ch5
SFX_Heal_HP_2::
audio SFX_Heal_HP_2, Ch4
audio_header SFX_Heal_HP_2, Ch5
SFX_Heal_Ailment_2::
audio SFX_Heal_Ailment_2, Ch4
audio_header SFX_Heal_Ailment_2, Ch5
SFX_Start_Menu_2::
audio SFX_Start_Menu_2, Ch7
audio_header SFX_Start_Menu_2, Ch8
SFX_Press_AB_2::
audio SFX_Press_AB_2, Ch4
audio_header SFX_Press_AB_2, Ch5
SFX_Ball_Toss::
audio SFX_Ball_Toss, Ch4, Ch5
audio_header SFX_Ball_Toss, Ch5, Ch6
SFX_Ball_Poof::
audio SFX_Ball_Poof, Ch4, Ch7
audio_header SFX_Ball_Poof, Ch5, Ch8
SFX_Faint_Thud::
audio SFX_Faint_Thud, Ch4, Ch7
audio_header SFX_Faint_Thud, Ch5, Ch8
SFX_Run::
audio SFX_Run, Ch7
audio_header SFX_Run, Ch8
SFX_Dex_Page_Added::
audio SFX_Dex_Page_Added, Ch4, Ch5
audio_header SFX_Dex_Page_Added, Ch5, Ch6
SFX_Caught_Mon::
audio SFX_Caught_Mon, Ch4, Ch5, Ch6
audio_header SFX_Caught_Mon, Ch5, Ch6, Ch7
SFX_Peck::
audio SFX_Peck, Ch7
audio_header SFX_Peck, Ch8
SFX_Faint_Fall::
audio SFX_Faint_Fall, Ch4
audio_header SFX_Faint_Fall, Ch5
SFX_Battle_09::
audio SFX_Battle_09, Ch4
audio_header SFX_Battle_09, Ch5
SFX_Pound::
audio SFX_Pound, Ch7
audio_header SFX_Pound, Ch8
SFX_Battle_0B::
audio SFX_Battle_0B, Ch7
audio_header SFX_Battle_0B, Ch8
SFX_Battle_0C::
audio SFX_Battle_0C, Ch7
audio_header SFX_Battle_0C, Ch8
SFX_Battle_0D::
audio SFX_Battle_0D, Ch7
audio_header SFX_Battle_0D, Ch8
SFX_Battle_0E::
audio SFX_Battle_0E, Ch7
audio_header SFX_Battle_0E, Ch8
SFX_Battle_0F::
audio SFX_Battle_0F, Ch7
audio_header SFX_Battle_0F, Ch8
SFX_Damage::
audio SFX_Damage, Ch7
audio_header SFX_Damage, Ch8
SFX_Not_Very_Effective::
audio SFX_Not_Very_Effective, Ch7
audio_header SFX_Not_Very_Effective, Ch8
SFX_Battle_12::
audio SFX_Battle_12, Ch7
audio_header SFX_Battle_12, Ch8
SFX_Battle_13::
audio SFX_Battle_13, Ch7
audio_header SFX_Battle_13, Ch8
SFX_Battle_14::
audio SFX_Battle_14, Ch7
audio_header SFX_Battle_14, Ch8
SFX_Vine_Whip::
audio SFX_Vine_Whip, Ch7
audio_header SFX_Vine_Whip, Ch8
SFX_Battle_16::
audio SFX_Battle_16, Ch7
audio_header SFX_Battle_16, Ch8
SFX_Battle_17::
audio SFX_Battle_17, Ch7
audio_header SFX_Battle_17, Ch8
SFX_Battle_18::
audio SFX_Battle_18, Ch7
audio_header SFX_Battle_18, Ch8
SFX_Battle_19::
audio SFX_Battle_19, Ch7
audio_header SFX_Battle_19, Ch8
SFX_Super_Effective::
audio SFX_Super_Effective, Ch7
audio_header SFX_Super_Effective, Ch8
SFX_Battle_1B::
audio SFX_Battle_1B, Ch7
audio_header SFX_Battle_1B, Ch8
SFX_Battle_1C::
audio SFX_Battle_1C, Ch7
audio_header SFX_Battle_1C, Ch8
SFX_Doubleslap::
audio SFX_Doubleslap, Ch7
audio_header SFX_Doubleslap, Ch8
SFX_Battle_1E::
audio SFX_Battle_1E, Ch4, Ch7
audio_header SFX_Battle_1E, Ch5, Ch8
SFX_Horn_Drill::
audio SFX_Horn_Drill, Ch7
audio_header SFX_Horn_Drill, Ch8
SFX_Battle_20::
audio SFX_Battle_20, Ch7
audio_header SFX_Battle_20, Ch8
SFX_Battle_21::
audio SFX_Battle_21, Ch7
audio_header SFX_Battle_21, Ch8
SFX_Battle_22::
audio SFX_Battle_22, Ch7
audio_header SFX_Battle_22, Ch8
SFX_Battle_23::
audio SFX_Battle_23, Ch7
audio_header SFX_Battle_23, Ch8
SFX_Battle_24::
audio SFX_Battle_24, Ch4, Ch7
audio_header SFX_Battle_24, Ch5, Ch8
SFX_Battle_25::
audio SFX_Battle_25, Ch7
audio_header SFX_Battle_25, Ch8
SFX_Battle_26::
audio SFX_Battle_26, Ch7
audio_header SFX_Battle_26, Ch8
SFX_Battle_27::
audio SFX_Battle_27, Ch4, Ch5, Ch7
audio_header SFX_Battle_27, Ch5, Ch6, Ch8
SFX_Battle_28::
audio SFX_Battle_28, Ch4, Ch5, Ch7
audio_header SFX_Battle_28, Ch5, Ch6, Ch8
SFX_Battle_29::
audio SFX_Battle_29, Ch4, Ch7
audio_header SFX_Battle_29, Ch5, Ch8
SFX_Battle_2A::
audio SFX_Battle_2A, Ch4, Ch5, Ch7
audio_header SFX_Battle_2A, Ch5, Ch6, Ch8
SFX_Battle_2B::
audio SFX_Battle_2B, Ch4, Ch7
audio_header SFX_Battle_2B, Ch5, Ch8
SFX_Battle_2C::
audio SFX_Battle_2C, Ch4, Ch5, Ch7
audio_header SFX_Battle_2C, Ch5, Ch6, Ch8
SFX_Psybeam::
audio SFX_Psybeam, Ch4, Ch5, Ch7
audio_header SFX_Psybeam, Ch5, Ch6, Ch8
SFX_Battle_2E::
audio SFX_Battle_2E, Ch4, Ch5, Ch7
audio_header SFX_Battle_2E, Ch5, Ch6, Ch8
SFX_Battle_2F::
audio SFX_Battle_2F, Ch4, Ch5, Ch7
audio_header SFX_Battle_2F, Ch5, Ch6, Ch8
SFX_Psychic_M::
audio SFX_Psychic_M, Ch4, Ch5, Ch7
audio_header SFX_Psychic_M, Ch5, Ch6, Ch8
SFX_Battle_31::
audio SFX_Battle_31, Ch4, Ch5
audio_header SFX_Battle_31, Ch5, Ch6
SFX_Battle_32::
audio SFX_Battle_32, Ch4, Ch5
audio_header SFX_Battle_32, Ch5, Ch6
SFX_Battle_33::
audio SFX_Battle_33, Ch4, Ch5
audio_header SFX_Battle_33, Ch5, Ch6
SFX_Battle_34::
audio SFX_Battle_34, Ch4, Ch5, Ch7
audio_header SFX_Battle_34, Ch5, Ch6, Ch8
SFX_Battle_35::
audio SFX_Battle_35, Ch4, Ch5
audio_header SFX_Battle_35, Ch5, Ch6
SFX_Battle_36::
audio SFX_Battle_36, Ch4, Ch5, Ch7
audio_header SFX_Battle_36, Ch5, Ch6, Ch8
SFX_Silph_Scope::
audio SFX_Silph_Scope, Ch4
audio_header SFX_Silph_Scope, Ch5

View file

@ -2,310 +2,310 @@ SFX_Headers_3::
db $ff, $ff, $ff ; padding
SFX_Snare1_3::
audio SFX_Snare1_3, Ch7
audio_header SFX_Snare1_3, Ch8
SFX_Snare2_3::
audio SFX_Snare2_3, Ch7
audio_header SFX_Snare2_3, Ch8
SFX_Snare3_3::
audio SFX_Snare3_3, Ch7
audio_header SFX_Snare3_3, Ch8
SFX_Snare4_3::
audio SFX_Snare4_3, Ch7
audio_header SFX_Snare4_3, Ch8
SFX_Snare5_3::
audio SFX_Snare5_3, Ch7
audio_header SFX_Snare5_3, Ch8
SFX_Triangle1_3::
audio SFX_Triangle1_3, Ch7
audio_header SFX_Triangle1_3, Ch8
SFX_Triangle2_3::
audio SFX_Triangle2_3, Ch7
audio_header SFX_Triangle2_3, Ch8
SFX_Snare6_3::
audio SFX_Snare6_3, Ch7
audio_header SFX_Snare6_3, Ch8
SFX_Snare7_3::
audio SFX_Snare7_3, Ch7
audio_header SFX_Snare7_3, Ch8
SFX_Snare8_3::
audio SFX_Snare8_3, Ch7
audio_header SFX_Snare8_3, Ch8
SFX_Snare9_3::
audio SFX_Snare9_3, Ch7
audio_header SFX_Snare9_3, Ch8
SFX_Cymbal1_3::
audio SFX_Cymbal1_3, Ch7
audio_header SFX_Cymbal1_3, Ch8
SFX_Cymbal2_3::
audio SFX_Cymbal2_3, Ch7
audio_header SFX_Cymbal2_3, Ch8
SFX_Cymbal3_3::
audio SFX_Cymbal3_3, Ch7
audio_header SFX_Cymbal3_3, Ch8
SFX_Muted_Snare1_3::
audio SFX_Muted_Snare1_3, Ch7
audio_header SFX_Muted_Snare1_3, Ch8
SFX_Triangle3_3::
audio SFX_Triangle3_3, Ch7
audio_header SFX_Triangle3_3, Ch8
SFX_Muted_Snare2_3::
audio SFX_Muted_Snare2_3, Ch7
audio_header SFX_Muted_Snare2_3, Ch8
SFX_Muted_Snare3_3::
audio SFX_Muted_Snare3_3, Ch7
audio_header SFX_Muted_Snare3_3, Ch8
SFX_Muted_Snare4_3::
audio SFX_Muted_Snare4_3, Ch7
audio_header SFX_Muted_Snare4_3, Ch8
SFX_Cry00_3::
audio SFX_Cry00_3, Ch4, Ch5, Ch7
audio_header SFX_Cry00_3, Ch5, Ch6, Ch8
SFX_Cry01_3::
audio SFX_Cry01_3, Ch4, Ch5, Ch7
audio_header SFX_Cry01_3, Ch5, Ch6, Ch8
SFX_Cry02_3::
audio SFX_Cry02_3, Ch4, Ch5, Ch7
audio_header SFX_Cry02_3, Ch5, Ch6, Ch8
SFX_Cry03_3::
audio SFX_Cry03_3, Ch4, Ch5, Ch7
audio_header SFX_Cry03_3, Ch5, Ch6, Ch8
SFX_Cry04_3::
audio SFX_Cry04_3, Ch4, Ch5, Ch7
audio_header SFX_Cry04_3, Ch5, Ch6, Ch8
SFX_Cry05_3::
audio SFX_Cry05_3, Ch4, Ch5, Ch7
audio_header SFX_Cry05_3, Ch5, Ch6, Ch8
SFX_Cry06_3::
audio SFX_Cry06_3, Ch4, Ch5, Ch7
audio_header SFX_Cry06_3, Ch5, Ch6, Ch8
SFX_Cry07_3::
audio SFX_Cry07_3, Ch4, Ch5, Ch7
audio_header SFX_Cry07_3, Ch5, Ch6, Ch8
SFX_Cry08_3::
audio SFX_Cry08_3, Ch4, Ch5, Ch7
audio_header SFX_Cry08_3, Ch5, Ch6, Ch8
SFX_Cry09_3::
audio SFX_Cry09_3, Ch4, Ch5, Ch7
audio_header SFX_Cry09_3, Ch5, Ch6, Ch8
SFX_Cry0A_3::
audio SFX_Cry0A_3, Ch4, Ch5, Ch7
audio_header SFX_Cry0A_3, Ch5, Ch6, Ch8
SFX_Cry0B_3::
audio SFX_Cry0B_3, Ch4, Ch5, Ch7
audio_header SFX_Cry0B_3, Ch5, Ch6, Ch8
SFX_Cry0C_3::
audio SFX_Cry0C_3, Ch4, Ch5, Ch7
audio_header SFX_Cry0C_3, Ch5, Ch6, Ch8
SFX_Cry0D_3::
audio SFX_Cry0D_3, Ch4, Ch5, Ch7
audio_header SFX_Cry0D_3, Ch5, Ch6, Ch8
SFX_Cry0E_3::
audio SFX_Cry0E_3, Ch4, Ch5, Ch7
audio_header SFX_Cry0E_3, Ch5, Ch6, Ch8
SFX_Cry0F_3::
audio SFX_Cry0F_3, Ch4, Ch5, Ch7
audio_header SFX_Cry0F_3, Ch5, Ch6, Ch8
SFX_Cry10_3::
audio SFX_Cry10_3, Ch4, Ch5, Ch7
audio_header SFX_Cry10_3, Ch5, Ch6, Ch8
SFX_Cry11_3::
audio SFX_Cry11_3, Ch4, Ch5, Ch7
audio_header SFX_Cry11_3, Ch5, Ch6, Ch8
SFX_Cry12_3::
audio SFX_Cry12_3, Ch4, Ch5, Ch7
audio_header SFX_Cry12_3, Ch5, Ch6, Ch8
SFX_Cry13_3::
audio SFX_Cry13_3, Ch4, Ch5, Ch7
audio_header SFX_Cry13_3, Ch5, Ch6, Ch8
SFX_Cry14_3::
audio SFX_Cry14_3, Ch4, Ch5, Ch7
audio_header SFX_Cry14_3, Ch5, Ch6, Ch8
SFX_Cry15_3::
audio SFX_Cry15_3, Ch4, Ch5, Ch7
audio_header SFX_Cry15_3, Ch5, Ch6, Ch8
SFX_Cry16_3::
audio SFX_Cry16_3, Ch4, Ch5, Ch7
audio_header SFX_Cry16_3, Ch5, Ch6, Ch8
SFX_Cry17_3::
audio SFX_Cry17_3, Ch4, Ch5, Ch7
audio_header SFX_Cry17_3, Ch5, Ch6, Ch8
SFX_Cry18_3::
audio SFX_Cry18_3, Ch4, Ch5, Ch7
audio_header SFX_Cry18_3, Ch5, Ch6, Ch8
SFX_Cry19_3::
audio SFX_Cry19_3, Ch4, Ch5, Ch7
audio_header SFX_Cry19_3, Ch5, Ch6, Ch8
SFX_Cry1A_3::
audio SFX_Cry1A_3, Ch4, Ch5, Ch7
audio_header SFX_Cry1A_3, Ch5, Ch6, Ch8
SFX_Cry1B_3::
audio SFX_Cry1B_3, Ch4, Ch5, Ch7
audio_header SFX_Cry1B_3, Ch5, Ch6, Ch8
SFX_Cry1C_3::
audio SFX_Cry1C_3, Ch4, Ch5, Ch7
audio_header SFX_Cry1C_3, Ch5, Ch6, Ch8
SFX_Cry1D_3::
audio SFX_Cry1D_3, Ch4, Ch5, Ch7
audio_header SFX_Cry1D_3, Ch5, Ch6, Ch8
SFX_Cry1E_3::
audio SFX_Cry1E_3, Ch4, Ch5, Ch7
audio_header SFX_Cry1E_3, Ch5, Ch6, Ch8
SFX_Cry1F_3::
audio SFX_Cry1F_3, Ch4, Ch5, Ch7
audio_header SFX_Cry1F_3, Ch5, Ch6, Ch8
SFX_Cry20_3::
audio SFX_Cry20_3, Ch4, Ch5, Ch7
audio_header SFX_Cry20_3, Ch5, Ch6, Ch8
SFX_Cry21_3::
audio SFX_Cry21_3, Ch4, Ch5, Ch7
audio_header SFX_Cry21_3, Ch5, Ch6, Ch8
SFX_Cry22_3::
audio SFX_Cry22_3, Ch4, Ch5, Ch7
audio_header SFX_Cry22_3, Ch5, Ch6, Ch8
SFX_Cry23_3::
audio SFX_Cry23_3, Ch4, Ch5, Ch7
audio_header SFX_Cry23_3, Ch5, Ch6, Ch8
SFX_Cry24_3::
audio SFX_Cry24_3, Ch4, Ch5, Ch7
audio_header SFX_Cry24_3, Ch5, Ch6, Ch8
SFX_Cry25_3::
audio SFX_Cry25_3, Ch4, Ch5, Ch7
audio_header SFX_Cry25_3, Ch5, Ch6, Ch8
SFX_Get_Item1_3::
audio SFX_Get_Item1_3, Ch4, Ch5, Ch6
audio_header SFX_Get_Item1_3, Ch5, Ch6, Ch7
SFX_Get_Item2_3::
audio SFX_Get_Item2_3, Ch4, Ch5, Ch6
audio_header SFX_Get_Item2_3, Ch5, Ch6, Ch7
SFX_Tink_3::
audio SFX_Tink_3, Ch4
audio_header SFX_Tink_3, Ch5
SFX_Heal_HP_3::
audio SFX_Heal_HP_3, Ch4
audio_header SFX_Heal_HP_3, Ch5
SFX_Heal_Ailment_3::
audio SFX_Heal_Ailment_3, Ch4
audio_header SFX_Heal_Ailment_3, Ch5
SFX_Start_Menu_3::
audio SFX_Start_Menu_3, Ch7
audio_header SFX_Start_Menu_3, Ch8
SFX_Press_AB_3::
audio SFX_Press_AB_3, Ch4
audio_header SFX_Press_AB_3, Ch5
SFX_Pokedex_Rating_3::
audio SFX_Pokedex_Rating_3, Ch4, Ch5, Ch6
audio_header SFX_Pokedex_Rating_3, Ch5, Ch6, Ch7
SFX_Get_Key_Item_3::
audio SFX_Get_Key_Item_3, Ch4, Ch5, Ch6
audio_header SFX_Get_Key_Item_3, Ch5, Ch6, Ch7
SFX_Poisoned_3::
audio SFX_Poisoned_3, Ch4
audio_header SFX_Poisoned_3, Ch5
SFX_Trade_Machine_3::
audio SFX_Trade_Machine_3, Ch4
audio_header SFX_Trade_Machine_3, Ch5
SFX_Turn_On_PC_3::
audio SFX_Turn_On_PC_3, Ch4
audio_header SFX_Turn_On_PC_3, Ch5
SFX_Turn_Off_PC_3::
audio SFX_Turn_Off_PC_3, Ch4
audio_header SFX_Turn_Off_PC_3, Ch5
SFX_Enter_PC_3::
audio SFX_Enter_PC_3, Ch4
audio_header SFX_Enter_PC_3, Ch5
SFX_Shrink_3::
audio SFX_Shrink_3, Ch4
audio_header SFX_Shrink_3, Ch5
SFX_Switch_3::
audio SFX_Switch_3, Ch4
audio_header SFX_Switch_3, Ch5
SFX_Healing_Machine_3::
audio SFX_Healing_Machine_3, Ch4
audio_header SFX_Healing_Machine_3, Ch5
SFX_Teleport_Exit1_3::
audio SFX_Teleport_Exit1_3, Ch4
audio_header SFX_Teleport_Exit1_3, Ch5
SFX_Teleport_Enter1_3::
audio SFX_Teleport_Enter1_3, Ch4
audio_header SFX_Teleport_Enter1_3, Ch5
SFX_Teleport_Exit2_3::
audio SFX_Teleport_Exit2_3, Ch4
audio_header SFX_Teleport_Exit2_3, Ch5
SFX_Ledge_3::
audio SFX_Ledge_3, Ch4
audio_header SFX_Ledge_3, Ch5
SFX_Teleport_Enter2_3::
audio SFX_Teleport_Enter2_3, Ch7
audio_header SFX_Teleport_Enter2_3, Ch8
SFX_Fly_3::
audio SFX_Fly_3, Ch7
audio_header SFX_Fly_3, Ch8
SFX_Denied_3::
audio SFX_Denied_3, Ch4, Ch5
audio_header SFX_Denied_3, Ch5, Ch6
SFX_Arrow_Tiles_3::
audio SFX_Arrow_Tiles_3, Ch4
audio_header SFX_Arrow_Tiles_3, Ch5
SFX_Push_Boulder_3::
audio SFX_Push_Boulder_3, Ch7
audio_header SFX_Push_Boulder_3, Ch8
SFX_SS_Anne_Horn_3::
audio SFX_SS_Anne_Horn_3, Ch4, Ch5
audio_header SFX_SS_Anne_Horn_3, Ch5, Ch6
SFX_Withdraw_Deposit_3::
audio SFX_Withdraw_Deposit_3, Ch4
audio_header SFX_Withdraw_Deposit_3, Ch5
SFX_Cut_3::
audio SFX_Cut_3, Ch7
audio_header SFX_Cut_3, Ch8
SFX_Go_Inside_3::
audio SFX_Go_Inside_3, Ch7
audio_header SFX_Go_Inside_3, Ch8
SFX_Swap_3::
audio SFX_Swap_3, Ch4, Ch5
audio_header SFX_Swap_3, Ch5, Ch6
SFX_59_3::
audio SFX_59_3, Ch4, Ch5
audio_header SFX_59_3, Ch5, Ch6
SFX_Purchase_3::
audio SFX_Purchase_3, Ch4, Ch5
audio_header SFX_Purchase_3, Ch5, Ch6
SFX_Collision_3::
audio SFX_Collision_3, Ch4
audio_header SFX_Collision_3, Ch5
SFX_Go_Outside_3::
audio SFX_Go_Outside_3, Ch7
audio_header SFX_Go_Outside_3, Ch8
SFX_Save_3::
audio SFX_Save_3, Ch4, Ch5
audio_header SFX_Save_3, Ch5, Ch6
SFX_Intro_Lunge::
audio SFX_Intro_Lunge, Ch7
audio_header SFX_Intro_Lunge, Ch8
SFX_Intro_Hip::
audio SFX_Intro_Hip, Ch4
audio_header SFX_Intro_Hip, Ch5
SFX_Intro_Hop::
audio SFX_Intro_Hop, Ch4
audio_header SFX_Intro_Hop, Ch5
SFX_Intro_Raise::
audio SFX_Intro_Raise, Ch7
audio_header SFX_Intro_Raise, Ch8
SFX_Intro_Crash::
audio SFX_Intro_Crash, Ch7
audio_header SFX_Intro_Crash, Ch8
SFX_Intro_Whoosh::
audio SFX_Intro_Whoosh, Ch7
audio_header SFX_Intro_Whoosh, Ch8
SFX_Slots_Stop_Wheel::
audio SFX_Slots_Stop_Wheel, Ch4
audio_header SFX_Slots_Stop_Wheel, Ch5
SFX_Slots_Reward::
audio SFX_Slots_Reward, Ch4
audio_header SFX_Slots_Reward, Ch5
SFX_Slots_New_Spin::
audio SFX_Slots_New_Spin, Ch4, Ch5
audio_header SFX_Slots_New_Spin, Ch5, Ch6
SFX_Shooting_Star::
audio SFX_Shooting_Star, Ch4
audio_header SFX_Shooting_Star, Ch5

File diff suppressed because it is too large Load diff

View file

@ -1,411 +1,411 @@
Music_Celadon_Ch0::
Music_Celadon_Ch1::
tempo 144
volume 7, 7
duty 3
toggleperfectpitch
notetype 12, 2, 15
duty_cycle 3
toggle_perfect_pitch
note_type 12, 2, 15
rest 8
octave 3
D_ 8
note D_, 8
Music_Celadon_branch_b6d4::
duty 2
notetype 12, 11, 2
G_ 4
B_ 4
G_ 2
B_ 4
G_ 2
E_ 1
E_ 1
G_ 1
E_ 1
B_ 2
duty_cycle 2
note_type 12, 11, 2
note G_, 4
note B_, 4
note G_, 2
note B_, 4
note G_, 2
note E_, 1
note E_, 1
note G_, 1
note E_, 1
note B_, 2
octave 4
C_ 2
note C_, 2
octave 3
A_ 8
F# 4
A_ 4
F# 2
A_ 6
A_ 1
B_ 1
note A_, 8
note F#, 4
note A_, 4
note F#, 2
note A_, 6
note A_, 1
note B_, 1
octave 4
C_ 1
note C_, 1
octave 3
B_ 1
A_ 2
B_ 2
G_ 4
note B_, 1
note A_, 2
note B_, 2
note G_, 4
octave 4
G_ 4
note G_, 4
octave 3
G_ 4
B_ 4
G_ 2
B_ 4
G_ 2
E_ 1
F# 1
G_ 1
A_ 1
B_ 2
note G_, 4
note B_, 4
note G_, 2
note B_, 4
note G_, 2
note E_, 1
note F#, 1
note G_, 1
note A_, 1
note B_, 2
octave 4
C_ 2
note C_, 2
octave 3
A_ 8
A_ 2
B_ 2
note A_, 8
note A_, 2
note B_, 2
octave 4
C_ 2
note C_, 2
octave 3
B_ 2
A_ 2
G_ 2
F# 2
G_ 2
F# 4
D_ 1
E_ 1
F# 1
G_ 1
A_ 8
notetype 12, 9, 4
B_ 8
G_ 4
D_ 4
G_ 4
A_ 2
note B_, 2
note A_, 2
note G_, 2
note F#, 2
note G_, 2
note F#, 4
note D_, 1
note E_, 1
note F#, 1
note G_, 1
note A_, 8
note_type 12, 9, 4
note B_, 8
note G_, 4
note D_, 4
note G_, 4
note A_, 2
octave 4
C_ 2
note C_, 2
octave 3
B_ 8
A_ 8
F# 4
G_ 4
A_ 4
G_ 4
F# 4
A_ 4
B_ 8
G_ 4
D_ 4
G_ 4
A_ 2
note B_, 8
note A_, 8
note F#, 4
note G_, 4
note A_, 4
note G_, 4
note F#, 4
note A_, 4
note B_, 8
note G_, 4
note D_, 4
note G_, 4
note A_, 2
octave 4
C_ 2
note C_, 2
octave 3
B_ 8
A_ 8
F# 4
G_ 4
A_ 4
G_ 4
F# 4
A_ 4
loopchannel 0, Music_Celadon_branch_b6d4
Music_Celadon_Ch1::
duty 3
notetype 12, 12, 2
octave 4
D_ 1
C# 1
D_ 1
E_ 1
F# 1
E_ 1
F# 1
G_ 1
notetype 12, 10, 0
A_ 8
Music_Celadon_branch_b74a::
duty 2
notetype 12, 12, 2
octave 4
B_ 4
G_ 4
B_ 2
G_ 6
B_ 1
G_ 1
A_ 1
B_ 1
octave 5
C_ 2
octave 4
B_ 2
A_ 8
A_ 4
F# 4
A_ 2
F# 6
A_ 1
G_ 1
F# 1
G_ 1
A_ 2
B_ 2
G_ 4
B_ 4
B_ 4
G_ 4
B_ 2
G_ 4
octave 3
B_ 2
octave 4
B_ 1
G_ 1
A_ 1
B_ 1
octave 5
C_ 2
octave 4
B_ 2
A_ 8
A_ 2
G_ 2
F# 2
G_ 2
F# 2
E_ 2
D_ 2
C# 2
D_ 8
octave 5
D_ 8
notetype 12, 11, 4
octave 4
D_ 8
C_ 2
octave 3
B_ 2
A_ 2
B_ 2
octave 4
E_ 4
F# 4
D_ 8
C_ 8
octave 3
A_ 2
B_ 2
octave 4
C_ 2
D_ 2
E_ 2
C_ 2
D_ 2
E_ 2
D_ 8
D_ 8
C_ 2
octave 3
B_ 2
A_ 2
B_ 2
octave 4
E_ 4
D_ 2
E_ 2
D_ 8
C_ 8
A_ 2
G_ 2
F# 2
E_ 2
F# 2
E_ 2
D_ 2
E_ 2
D_ 8
loopchannel 0, Music_Celadon_branch_b74a
note B_, 8
note A_, 8
note F#, 4
note G_, 4
note A_, 4
note G_, 4
note F#, 4
note A_, 4
sound_loop 0, Music_Celadon_branch_b6d4
Music_Celadon_Ch2::
notetype 12, 1, 3
duty_cycle 3
note_type 12, 12, 2
octave 4
note D_, 1
note C#, 1
note D_, 1
note E_, 1
note F#, 1
note E_, 1
note F#, 1
note G_, 1
note_type 12, 10, 0
note A_, 8
Music_Celadon_branch_b74a::
duty_cycle 2
note_type 12, 12, 2
octave 4
note B_, 4
note G_, 4
note B_, 2
note G_, 6
note B_, 1
note G_, 1
note A_, 1
note B_, 1
octave 5
note C_, 2
octave 4
note B_, 2
note A_, 8
note A_, 4
note F#, 4
note A_, 2
note F#, 6
note A_, 1
note G_, 1
note F#, 1
note G_, 1
note A_, 2
note B_, 2
note G_, 4
note B_, 4
note B_, 4
note G_, 4
note B_, 2
note G_, 4
octave 3
note B_, 2
octave 4
note B_, 1
note G_, 1
note A_, 1
note B_, 1
octave 5
note C_, 2
octave 4
note B_, 2
note A_, 8
note A_, 2
note G_, 2
note F#, 2
note G_, 2
note F#, 2
note E_, 2
note D_, 2
note C#, 2
note D_, 8
octave 5
note D_, 8
note_type 12, 11, 4
octave 4
note D_, 8
note C_, 2
octave 3
note B_, 2
note A_, 2
note B_, 2
octave 4
note E_, 4
note F#, 4
note D_, 8
note C_, 8
octave 3
note A_, 2
note B_, 2
octave 4
note C_, 2
note D_, 2
note E_, 2
note C_, 2
note D_, 2
note E_, 2
note D_, 8
note D_, 8
note C_, 2
octave 3
note B_, 2
note A_, 2
note B_, 2
octave 4
note E_, 4
note D_, 2
note E_, 2
note D_, 8
note C_, 8
note A_, 2
note G_, 2
note F#, 2
note E_, 2
note F#, 2
note E_, 2
note D_, 2
note E_, 2
note D_, 8
sound_loop 0, Music_Celadon_branch_b74a
Music_Celadon_Ch3::
note_type 12, 1, 3
rest 8
octave 5
D_ 1
C# 1
D_ 1
E_ 1
F# 1
E_ 1
F# 1
G_ 1
note D_, 1
note C#, 1
note D_, 1
note E_, 1
note F#, 1
note E_, 1
note F#, 1
note G_, 1
Music_Celadon_branch_b7c1::
octave 4
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
A_ 2
D_ 2
A_ 2
D_ 2
A_ 2
D_ 2
A_ 2
D_ 2
A_ 2
D_ 2
A_ 2
D_ 2
A_ 2
D_ 2
A_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
B_ 2
D_ 2
A_ 2
D_ 2
A_ 2
D_ 2
A_ 2
G_ 2
A_ 2
G_ 2
F# 2
E_ 2
C# 2
D_ 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note A_, 2
note D_, 2
note A_, 2
note D_, 2
note A_, 2
note D_, 2
note A_, 2
note D_, 2
note A_, 2
note D_, 2
note A_, 2
note D_, 2
note A_, 2
note D_, 2
note A_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note B_, 2
note D_, 2
note A_, 2
note D_, 2
note A_, 2
note D_, 2
note A_, 2
note G_, 2
note A_, 2
note G_, 2
note F#, 2
note E_, 2
note C#, 2
note D_, 2
rest 6
F# 2
note F#, 2
rest 4
F# 2
G_ 2
note F#, 2
note G_, 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
note G_, 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
note G_, 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
B_ 2
G_ 2
note G_, 2
note B_, 2
note G_, 2
octave 5
E_ 2
D_ 2
C_ 2
D_ 2
note E_, 2
note D_, 2
note C_, 2
note D_, 2
octave 4
B_ 2
G_ 2
note B_, 2
note G_, 2
octave 5
C_ 2
note C_, 2
octave 4
F# 2
note F#, 2
octave 5
D_ 2
note D_, 2
octave 4
F# 2
note F#, 2
octave 5
D_ 2
note D_, 2
octave 4
F# 2
note F#, 2
octave 5
D_ 2
note D_, 2
octave 4
F# 2
note F#, 2
octave 5
D_ 2
note D_, 2
octave 4
F# 2
note F#, 2
octave 5
E_ 2
D_ 2
C_ 2
D_ 2
note E_, 2
note D_, 2
note C_, 2
note D_, 2
octave 4
B_ 2
A_ 2
note B_, 2
note A_, 2
octave 5
C_ 2
note C_, 2
octave 4
G_ 2
note G_, 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
note G_, 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
note G_, 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
B_ 2
G_ 2
note G_, 2
note B_, 2
note G_, 2
octave 5
E_ 2
D_ 2
C_ 2
D_ 2
note E_, 2
note D_, 2
note C_, 2
note D_, 2
octave 4
B_ 2
G_ 2
note B_, 2
note G_, 2
octave 5
C_ 2
note C_, 2
octave 4
F# 2
note F#, 2
octave 5
D_ 2
note D_, 2
octave 4
F# 2
note F#, 2
octave 5
D_ 2
note D_, 2
octave 4
F# 2
note F#, 2
octave 5
D_ 2
note D_, 2
octave 4
F# 2
note F#, 2
octave 5
D_ 2
note D_, 2
octave 4
F# 2
note F#, 2
octave 5
D_ 2
C_ 2
note D_, 2
note C_, 2
octave 4
B_ 2
A_ 2
G_ 2
F# 2
E_ 2
loopchannel 0, Music_Celadon_branch_b7c1
note B_, 2
note A_, 2
note G_, 2
note F#, 2
note E_, 2
sound_loop 0, Music_Celadon_branch_b7c1

View file

@ -1,354 +1,354 @@
Music_Cinnabar_Ch0::
Music_Cinnabar_Ch1::
tempo 144
volume 7, 7
duty 3
duty_cycle 3
vibrato 12, 3, 4
toggleperfectpitch
toggle_perfect_pitch
Music_Cinnabar_branch_b878::
notetype 12, 11, 5
note_type 12, 11, 5
rest 4
octave 3
D_ 4
E_ 6
C# 2
notetype 12, 11, 1
D_ 4
notetype 12, 11, 5
B_ 4
note D_, 4
note E_, 6
note C#, 2
note_type 12, 11, 1
note D_, 4
note_type 12, 11, 5
note B_, 4
octave 4
C_ 6
note C_, 6
octave 3
A_ 2
notetype 12, 11, 1
B_ 4
notetype 12, 11, 5
G_ 4
F# 4
E_ 2
F# 2
notetype 12, 11, 1
G_ 4
notetype 12, 11, 5
G_ 4
F# 4
E_ 4
D_ 4
E_ 4
F# 6
A_ 2
notetype 12, 11, 1
G_ 4
notetype 12, 11, 5
B_ 4
note A_, 2
note_type 12, 11, 1
note B_, 4
note_type 12, 11, 5
note G_, 4
note F#, 4
note E_, 2
note F#, 2
note_type 12, 11, 1
note G_, 4
note_type 12, 11, 5
note G_, 4
note F#, 4
note E_, 4
note D_, 4
note E_, 4
note F#, 6
note A_, 2
note_type 12, 11, 1
note G_, 4
note_type 12, 11, 5
note B_, 4
octave 4
C_ 6
note C_, 6
octave 3
A_ 2
B_ 4
G_ 4
F# 3
E_ 1
F# 2
A_ 2
notetype 12, 10, 2
G_ 4
note A_, 2
note B_, 4
note G_, 4
note F#, 3
note E_, 1
note F#, 2
note A_, 2
note_type 12, 10, 2
note G_, 4
octave 4
D_ 1
E_ 1
D_ 4
notetype 12, 7, 2
D_ 1
E_ 1
D_ 4
notetype 12, 10, 7
note D_, 1
note E_, 1
note D_, 4
note_type 12, 7, 2
note D_, 1
note E_, 1
note D_, 4
note_type 12, 10, 7
octave 3
B_ 6
G_ 2
E_ 8
note B_, 6
note G_, 2
note E_, 8
octave 4
C_ 6
note C_, 6
octave 3
A_ 2
F# 8
note A_, 2
note F#, 8
octave 4
F# 6
D_ 2
note F#, 6
note D_, 2
octave 3
B_ 2
A_ 2
G_ 2
F# 2
G_ 8
F# 4
E_ 4
loopchannel 0, Music_Cinnabar_branch_b878
Music_Cinnabar_Ch1::
duty 3
vibrato 10, 2, 3
Music_Cinnabar_branch_b8d9::
notetype 12, 12, 7
octave 3
G_ 6
A_ 1
B_ 1
octave 4
C_ 6
D_ 1
E_ 1
notetype 12, 12, 1
D_ 4
notetype 12, 12, 7
G_ 4
A_ 6
G_ 1
F# 1
E_ 4
D_ 4
C_ 3
octave 3
B_ 1
octave 4
C_ 2
D_ 1
E_ 1
notetype 12, 12, 1
D_ 4
notetype 12, 12, 7
octave 3
B_ 8
A_ 4
G_ 6
A_ 1
B_ 1
octave 4
C_ 6
D_ 1
E_ 1
notetype 12, 12, 1
D_ 4
notetype 12, 12, 7
G_ 4
A_ 6
G_ 1
F# 1
E_ 4
D_ 4
C_ 3
octave 3
B_ 1
octave 4
C_ 2
D_ 1
E_ 1
notetype 12, 12, 1
D_ 4
notetype 12, 12, 7
octave 3
A_ 4
G_ 4
F# 4
notetype 12, 11, 0
octave 4
D_ 6
octave 3
B_ 2
G_ 8
octave 4
E_ 6
C_ 2
octave 3
A_ 8
octave 4
A_ 6
F# 2
D_ 2
C_ 2
octave 3
B_ 2
A_ 2
B_ 4
octave 4
D_ 4
octave 3
B_ 2
A_ 6
loopchannel 0, Music_Cinnabar_branch_b8d9
note B_, 2
note A_, 2
note G_, 2
note F#, 2
note G_, 8
note F#, 4
note E_, 4
sound_loop 0, Music_Cinnabar_branch_b878
Music_Cinnabar_Ch2::
notetype 12, 1, 0
duty_cycle 3
vibrato 10, 2, 3
Music_Cinnabar_branch_b8d9::
note_type 12, 12, 7
octave 3
note G_, 6
note A_, 1
note B_, 1
octave 4
note C_, 6
note D_, 1
note E_, 1
note_type 12, 12, 1
note D_, 4
note_type 12, 12, 7
note G_, 4
note A_, 6
note G_, 1
note F#, 1
note E_, 4
note D_, 4
note C_, 3
octave 3
note B_, 1
octave 4
note C_, 2
note D_, 1
note E_, 1
note_type 12, 12, 1
note D_, 4
note_type 12, 12, 7
octave 3
note B_, 8
note A_, 4
note G_, 6
note A_, 1
note B_, 1
octave 4
note C_, 6
note D_, 1
note E_, 1
note_type 12, 12, 1
note D_, 4
note_type 12, 12, 7
note G_, 4
note A_, 6
note G_, 1
note F#, 1
note E_, 4
note D_, 4
note C_, 3
octave 3
note B_, 1
octave 4
note C_, 2
note D_, 1
note E_, 1
note_type 12, 12, 1
note D_, 4
note_type 12, 12, 7
octave 3
note A_, 4
note G_, 4
note F#, 4
note_type 12, 11, 0
octave 4
note D_, 6
octave 3
note B_, 2
note G_, 8
octave 4
note E_, 6
note C_, 2
octave 3
note A_, 8
octave 4
note A_, 6
note F#, 2
note D_, 2
note C_, 2
octave 3
note B_, 2
note A_, 2
note B_, 4
octave 4
note D_, 4
octave 3
note B_, 2
note A_, 6
sound_loop 0, Music_Cinnabar_branch_b8d9
Music_Cinnabar_Ch3::
note_type 12, 1, 0
Music_Cinnabar_branch_b93f::
octave 4
G_ 1
note G_, 1
rest 3
B_ 2
G_ 1
G_ 1
A_ 1
note B_, 2
note G_, 1
note G_, 1
note A_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 5
C_ 2
note C_, 2
octave 4
F# 1
note F#, 1
rest 1
G_ 1
note G_, 1
rest 3
B_ 2
G_ 1
G_ 1
A_ 1
note B_, 2
note G_, 1
note G_, 1
note A_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 5
C_ 2
note C_, 2
octave 4
F# 1
note F#, 1
rest 1
G_ 1
note G_, 1
rest 3
B_ 2
G_ 1
G_ 1
A_ 1
note B_, 2
note G_, 1
note G_, 1
note A_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 5
C_ 2
note C_, 2
octave 4
F# 1
note F#, 1
rest 1
G_ 1
note G_, 1
rest 3
B_ 2
G_ 1
G_ 1
A_ 1
note B_, 2
note G_, 1
note G_, 1
note A_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 5
C_ 2
note C_, 2
octave 4
A_ 1
note A_, 1
rest 1
G_ 1
note G_, 1
rest 3
B_ 2
G_ 1
G_ 1
A_ 1
note B_, 2
note G_, 1
note G_, 1
note A_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 5
C_ 2
note C_, 2
octave 4
F# 1
note F#, 1
rest 1
G_ 1
note G_, 1
rest 3
B_ 2
G_ 1
G_ 1
A_ 1
note B_, 2
note G_, 1
note G_, 1
note A_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 5
C_ 2
note C_, 2
octave 4
F# 1
note F#, 1
rest 1
G_ 1
note G_, 1
rest 3
B_ 2
G_ 1
G_ 1
A_ 1
note B_, 2
note G_, 1
note G_, 1
note A_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 5
C_ 2
note C_, 2
octave 4
F# 1
note F#, 1
rest 1
G_ 1
note G_, 1
rest 3
B_ 4
A_ 1
note B_, 4
note A_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 5
C_ 4
note C_, 4
octave 4
B_ 1
note B_, 1
rest 3
octave 5
D_ 2
note D_, 2
octave 4
B_ 1
B_ 1
B_ 1
note B_, 1
note B_, 1
note B_, 1
rest 1
B_ 1
note B_, 1
rest 1
octave 5
C_ 2
note C_, 2
octave 4
B_ 1
note B_, 1
rest 1
G_ 1
note G_, 1
rest 3
octave 5
E_ 2
C_ 1
C_ 1
C_ 1
note E_, 2
note C_, 1
note C_, 1
note C_, 1
rest 1
C_ 1
note C_, 1
rest 1
E_ 2
C_ 1
note E_, 2
note C_, 1
rest 1
octave 4
A_ 1
note A_, 1
rest 3
octave 5
A_ 2
F# 1
F# 1
D_ 1
note A_, 2
note F#, 1
note F#, 1
note D_, 1
rest 1
D_ 1
note D_, 1
rest 1
D_ 2
C_ 1
note D_, 2
note C_, 1
rest 1
octave 4
B_ 1
note B_, 1
rest 3
octave 5
D_ 2
C_ 1
C_ 1
note D_, 2
note C_, 1
note C_, 1
octave 4
B_ 1
note B_, 1
rest 1
B_ 1
note B_, 1
rest 1
A_ 2
note A_, 2
octave 5
C_ 1
note C_, 1
rest 1
loopchannel 0, Music_Cinnabar_branch_b93f
sound_loop 0, Music_Cinnabar_branch_b93f

View file

@ -1,149 +1,149 @@
Music_CinnabarMansion_Ch0::
Music_CinnabarMansion_Ch1::
tempo 144
volume 7, 7
vibrato 11, 2, 5
duty 2
duty_cycle 2
Music_CinnabarMansion_branch_7ed19::
notetype 12, 6, 2
note_type 12, 6, 2
octave 5
E_ 1
E_ 1
note E_, 1
note E_, 1
octave 4
B_ 1
B_ 1
C_ 1
note B_, 1
note B_, 1
note C_, 1
rest 2
octave 5
B_ 2
E_ 2
note B_, 2
note E_, 2
octave 4
C_ 2
B_ 2
E_ 2
C_ 1
note C_, 2
note B_, 2
note E_, 2
note C_, 1
octave 5
B_ 1
note B_, 1
rest 2
loopchannel 14, Music_CinnabarMansion_branch_7ed19
notetype 12, 10, 5
sound_loop 14, Music_CinnabarMansion_branch_7ed19
note_type 12, 10, 5
rest 16
rest 16
rest 15
octave 4
C_ 1
note C_, 1
octave 5
B_ 1
B_ 2
loopchannel 0, Music_CinnabarMansion_branch_7ed19
note B_, 1
note B_, 2
sound_loop 0, Music_CinnabarMansion_branch_7ed19
Music_CinnabarMansion_Ch1::
duty 2
toggleperfectpitch
Music_CinnabarMansion_Ch2::
duty_cycle 2
toggle_perfect_pitch
vibrato 10, 2, 4
notetype 12, 12, 2
note_type 12, 12, 2
Music_CinnabarMansion_branch_7ed48::
rest 16
rest 16
loopchannel 4, Music_CinnabarMansion_branch_7ed48
sound_loop 4, Music_CinnabarMansion_branch_7ed48
Music_CinnabarMansion_branch_7ed4e::
notetype 12, 12, 2
note_type 12, 12, 2
Music_CinnabarMansion_branch_7ed50::
callchannel Music_CinnabarMansion_branch_7ed6c
loopchannel 3, Music_CinnabarMansion_branch_7ed50
sound_call Music_CinnabarMansion_branch_7ed6c
sound_loop 3, Music_CinnabarMansion_branch_7ed50
octave 3
E_ 4
D# 4
B_ 4
A# 4
G_ 4
G# 4
note E_, 4
note D#, 4
note B_, 4
note A#, 4
note G_, 4
note G#, 4
rest 4
A# 4
E_ 4
D# 4
B_ 4
A# 4
G_ 4
G# 4
G_ 4
D# 4
loopchannel 0, Music_CinnabarMansion_branch_7ed4e
note A#, 4
note E_, 4
note D#, 4
note B_, 4
note A#, 4
note G_, 4
note G#, 4
note G_, 4
note D#, 4
sound_loop 0, Music_CinnabarMansion_branch_7ed4e
Music_CinnabarMansion_branch_7ed6c::
octave 3
E_ 4
D# 4
B_ 4
A# 4
G_ 4
G# 4
A_ 4
A# 4
E_ 4
D# 4
B_ 4
A# 4
G_ 4
G# 4
note E_, 4
note D#, 4
note B_, 4
note A#, 4
note G_, 4
note G#, 4
note A_, 4
note A#, 4
note E_, 4
note D#, 4
note B_, 4
note A#, 4
note G_, 4
note G#, 4
rest 4
A# 4
endchannel
Music_CinnabarMansion_Ch2::
notetype 12, 1, 1
Music_CinnabarMansion_branch_7ed80::
octave 2
B_ 2
rest 2
octave 3
E_ 2
rest 2
E_ 2
rest 2
E_ 2
rest 2
E_ 2
rest 2
E_ 2
rest 2
E_ 2
rest 2
E_ 2
rest 2
C_ 2
rest 2
octave 3
D# 2
rest 2
D# 2
rest 2
D# 2
rest 2
D# 2
rest 2
D# 2
rest 2
D# 2
rest 2
D# 2
rest 2
loopchannel 8, Music_CinnabarMansion_branch_7ed80
E_ 16
D# 16
G_ 16
G# 8
D# 8
loopchannel 0, Music_CinnabarMansion_branch_7ed80
note A#, 4
sound_ret
Music_CinnabarMansion_Ch3::
note_type 12, 1, 1
Music_CinnabarMansion_branch_7ed80::
octave 2
note B_, 2
rest 2
octave 3
note E_, 2
rest 2
note E_, 2
rest 2
note E_, 2
rest 2
note E_, 2
rest 2
note E_, 2
rest 2
note E_, 2
rest 2
note E_, 2
rest 2
note C_, 2
rest 2
octave 3
note D#, 2
rest 2
note D#, 2
rest 2
note D#, 2
rest 2
note D#, 2
rest 2
note D#, 2
rest 2
note D#, 2
rest 2
note D#, 2
rest 2
sound_loop 8, Music_CinnabarMansion_branch_7ed80
note E_, 16
note D#, 16
note G_, 16
note G#, 8
note D#, 8
sound_loop 0, Music_CinnabarMansion_branch_7ed80
Music_CinnabarMansion_Ch4::
dspeed 6
rest 16
rest 16
@ -169,4 +169,4 @@ Music_CinnabarMansion_branch_7edb5::
rest 10
rest 8
cymbal3 8
loopchannel 0, Music_CinnabarMansion_branch_7edb5
sound_loop 0, Music_CinnabarMansion_branch_7edb5

File diff suppressed because it is too large Load diff

View file

@ -1,416 +1,416 @@
Music_Cities2_Ch0::
Music_Cities2_Ch1::
tempo 148
volume 7, 7
duty 3
duty_cycle 3
vibrato 8, 3, 2
toggleperfectpitch
notetype 12, 11, 6
toggle_perfect_pitch
note_type 12, 11, 6
rest 8
octave 3
E_ 2
D# 2
C# 2
C_ 2
note E_, 2
note D#, 2
note C#, 2
note C_, 2
octave 2
B_ 2
note B_, 2
rest 14
Music_Cities2_branch_b51a::
octave 3
B_ 4
note B_, 4
octave 4
C# 2
D# 1
D_ 1
C# 4
note C#, 2
note D#, 1
note D_, 1
note C#, 4
octave 3
B_ 4
G# 8
E_ 8
A_ 4
G# 2
F# 2
G# 2
A_ 2
B_ 2
note B_, 4
note G#, 8
note E_, 8
note A_, 4
note G#, 2
note F#, 2
note G#, 2
note A_, 2
note B_, 2
octave 4
C# 2
note C#, 2
rest 16
C# 4
note C#, 4
octave 3
B_ 2
note B_, 2
octave 4
C# 1
D# 1
C# 4
note C#, 1
note D#, 1
note C#, 4
octave 3
B_ 4
E_ 1
E_ 1
E_ 1
E_ 1
E_ 1
note B_, 4
note E_, 1
note E_, 1
note E_, 1
note E_, 1
note E_, 1
rest 3
G# 8
B_ 4
A_ 2
G# 2
F# 2
G# 2
A_ 2
B_ 2
E_ 2
F# 2
G# 2
note G#, 8
note B_, 4
note A_, 2
note G#, 2
note F#, 2
note G#, 2
note A_, 2
note B_, 2
note E_, 2
note F#, 2
note G#, 2
rest 2
octave 4
E_ 4
note E_, 4
octave 3
B_ 4
F# 2
G# 2
A_ 2
note B_, 4
note F#, 2
note G#, 2
note A_, 2
rest 2
octave 4
F# 4
D# 4
note F#, 4
note D#, 4
octave 3
E_ 2
note E_, 2
rest 4
F# 2
note F#, 2
rest 4
A_ 2
note A_, 2
rest 2
B_ 2
note B_, 2
rest 16
rest 16
rest 14
E_ 16
F# 8
G# 4
F# 4
E_ 2
note E_, 16
note F#, 8
note G#, 4
note F#, 4
note E_, 2
rest 14
loopchannel 0, Music_Cities2_branch_b51a
Music_Cities2_Ch1::
duty 3
vibrato 8, 2, 3
notetype 12, 12, 2
octave 4
E_ 2
D# 2
C# 2
octave 3
B_ 2
A_ 2
B_ 2
octave 4
C# 2
D# 2
E_ 6
notetype 12, 12, 2
duty 2
octave 4
E_ 1
octave 3
B_ 1
octave 4
C# 2
D# 2
E_ 1
F# 1
G# 1
A_ 1
Music_Cities2_branch_b58b::
notetype 12, 10, 6
G# 6
notetype 12, 12, 2
A_ 1
G# 1
notetype 12, 12, 4
F# 14
notetype 12, 12, 2
E_ 1
octave 3
B_ 1
octave 4
C# 2
D# 2
E_ 1
F# 1
G# 1
A_ 1
notetype 12, 12, 4
G# 6
notetype 12, 12, 2
E_ 1
G# 1
notetype 12, 12, 5
B_ 14
notetype 12, 12, 2
E_ 1
octave 3
B_ 1
octave 4
C# 2
D# 2
E_ 1
F# 1
G# 1
A_ 1
notetype 12, 10, 6
G# 6
notetype 12, 12, 2
A_ 1
G# 1
notetype 12, 12, 4
F# 8
notetype 12, 10, 1
duty 1
octave 3
G# 1
G# 1
G# 1
G# 1
G# 1
rest 1
notetype 12, 12, 2
duty 2
octave 4
E_ 1
octave 3
B_ 1
octave 4
C# 2
D# 2
E_ 1
F# 1
G# 1
A_ 1
notetype 12, 12, 4
G# 6
E_ 1
G# 1
notetype 12, 12, 6
B_ 8
notetype 12, 12, 2
C# 1
octave 3
B_ 1
octave 4
C# 1
D# 1
E_ 4
notetype 12, 12, 7
G# 4
E_ 4
notetype 12, 12, 2
D# 1
C# 1
D# 1
E_ 1
F# 4
notetype 12, 12, 7
B_ 4
F# 4
notetype 12, 12, 2
C# 1
octave 3
B_ 1
octave 4
C# 1
D# 1
E_ 2
E_ 1
D# 1
E_ 1
F# 1
G# 2
G# 1
A_ 1
G# 1
A_ 1
B_ 1
F# 1
D# 1
C# 1
octave 3
B_ 1
octave 4
C# 1
D# 1
F# 1
notetype 12, 12, 2
B_ 8
notetype 12, 11, 7
octave 3
E_ 8
octave 2
B_ 4
octave 3
F# 4
G# 4
A_ 4
B_ 8
B_ 8
G# 4
octave 4
D# 4
C# 4
D# 4
E_ 2
D# 2
C# 2
D# 2
notetype 12, 12, 2
E_ 6
E_ 1
octave 3
B_ 1
octave 4
C# 2
D# 2
E_ 1
F# 1
G# 1
A_ 1
loopchannel 0, Music_Cities2_branch_b58b
sound_loop 0, Music_Cities2_branch_b51a
Music_Cities2_Ch2::
notetype 12, 1, 1
duty_cycle 3
vibrato 8, 2, 3
note_type 12, 12, 2
octave 4
note E_, 2
note D#, 2
note C#, 2
octave 3
note B_, 2
note A_, 2
note B_, 2
octave 4
note C#, 2
note D#, 2
note E_, 6
note_type 12, 12, 2
duty_cycle 2
octave 4
note E_, 1
octave 3
note B_, 1
octave 4
note C#, 2
note D#, 2
note E_, 1
note F#, 1
note G#, 1
note A_, 1
Music_Cities2_branch_b58b::
note_type 12, 10, 6
note G#, 6
note_type 12, 12, 2
note A_, 1
note G#, 1
note_type 12, 12, 4
note F#, 14
note_type 12, 12, 2
note E_, 1
octave 3
note B_, 1
octave 4
note C#, 2
note D#, 2
note E_, 1
note F#, 1
note G#, 1
note A_, 1
note_type 12, 12, 4
note G#, 6
note_type 12, 12, 2
note E_, 1
note G#, 1
note_type 12, 12, 5
note B_, 14
note_type 12, 12, 2
note E_, 1
octave 3
note B_, 1
octave 4
note C#, 2
note D#, 2
note E_, 1
note F#, 1
note G#, 1
note A_, 1
note_type 12, 10, 6
note G#, 6
note_type 12, 12, 2
note A_, 1
note G#, 1
note_type 12, 12, 4
note F#, 8
note_type 12, 10, 1
duty_cycle 1
octave 3
note G#, 1
note G#, 1
note G#, 1
note G#, 1
note G#, 1
rest 1
note_type 12, 12, 2
duty_cycle 2
octave 4
note E_, 1
octave 3
note B_, 1
octave 4
note C#, 2
note D#, 2
note E_, 1
note F#, 1
note G#, 1
note A_, 1
note_type 12, 12, 4
note G#, 6
note E_, 1
note G#, 1
note_type 12, 12, 6
note B_, 8
note_type 12, 12, 2
note C#, 1
octave 3
note B_, 1
octave 4
note C#, 1
note D#, 1
note E_, 4
note_type 12, 12, 7
note G#, 4
note E_, 4
note_type 12, 12, 2
note D#, 1
note C#, 1
note D#, 1
note E_, 1
note F#, 4
note_type 12, 12, 7
note B_, 4
note F#, 4
note_type 12, 12, 2
note C#, 1
octave 3
note B_, 1
octave 4
note C#, 1
note D#, 1
note E_, 2
note E_, 1
note D#, 1
note E_, 1
note F#, 1
note G#, 2
note G#, 1
note A_, 1
note G#, 1
note A_, 1
note B_, 1
note F#, 1
note D#, 1
note C#, 1
octave 3
note B_, 1
octave 4
note C#, 1
note D#, 1
note F#, 1
note_type 12, 12, 2
note B_, 8
note_type 12, 11, 7
octave 3
note E_, 8
octave 2
note B_, 4
octave 3
note F#, 4
note G#, 4
note A_, 4
note B_, 8
note B_, 8
note G#, 4
octave 4
note D#, 4
note C#, 4
note D#, 4
note E_, 2
note D#, 2
note C#, 2
note D#, 2
note_type 12, 12, 2
note E_, 6
note E_, 1
octave 3
note B_, 1
octave 4
note C#, 2
note D#, 2
note E_, 1
note F#, 1
note G#, 1
note A_, 1
sound_loop 0, Music_Cities2_branch_b58b
Music_Cities2_Ch3::
note_type 12, 1, 1
rest 16
octave 4
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
Music_Cities2_branch_b64c::
F# 2
A_ 2
F# 2
A_ 2
B_ 2
A_ 2
G# 2
F# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
F# 2
A_ 2
F# 2
A_ 2
B_ 2
A_ 2
G# 2
F# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
F# 2
A_ 2
F# 2
A_ 2
B_ 2
A_ 2
G# 2
F# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
F# 2
A_ 2
F# 2
A_ 2
B_ 2
A_ 2
G# 2
F# 2
E_ 2
G# 2
E_ 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note G#, 2
note E_, 2
rest 2
E_ 4
G# 4
F# 2
A_ 2
F# 2
note E_, 4
note G#, 4
note F#, 2
note A_, 2
note F#, 2
rest 2
F# 4
A_ 4
C# 2
note F#, 4
note A_, 4
note C#, 2
rest 4
E_ 2
note E_, 2
rest 4
G# 2
A_ 2
B_ 2
note G#, 2
note A_, 2
note B_, 2
rest 8
A_ 2
G# 2
F# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
F# 2
A_ 2
F# 2
A_ 2
B_ 2
A_ 2
G# 2
F# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
F# 2
A_ 2
F# 2
A_ 2
B_ 2
A_ 2
G# 2
F# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
G# 2
loopchannel 0, Music_Cities2_branch_b64c
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
sound_loop 0, Music_Cities2_branch_b64c

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,266 +1,266 @@
Music_DefeatedTrainer_Ch0::
Music_DefeatedTrainer_Ch1::
tempo 224
volume 7, 7
duty 2
toggleperfectpitch
duty_cycle 2
toggle_perfect_pitch
tempo 224
notetype 4, 10, 2
note_type 4, 10, 2
octave 4
D_ 2
note D_, 2
tempo 224
notetype 4, 10, 2
D_ 2
D_ 2
D_ 2
note_type 4, 10, 2
note D_, 2
note D_, 2
note D_, 2
octave 3
A_ 2
note A_, 2
octave 4
D_ 2
notetype 4, 11, 3
F# 12
duty 1
note D_, 2
note_type 4, 11, 3
note F#, 12
duty_cycle 1
tempo 224
Music_DefeatedTrainer_branch_23a76::
notetype 4, 6, 3
note_type 4, 6, 3
octave 3
A_ 6
F# 3
A_ 3
B_ 6
G# 3
B_ 3
note A_, 6
note F#, 3
note A_, 3
note B_, 6
note G#, 3
note B_, 3
octave 4
C# 3
note C#, 3
octave 3
B_ 3
A_ 3
G_ 3
A_ 3
B_ 3
A_ 3
G_ 3
A_ 6
F# 3
A_ 3
B_ 6
G# 3
B_ 3
note B_, 3
note A_, 3
note G_, 3
note A_, 3
note B_, 3
note A_, 3
note G_, 3
note A_, 6
note F#, 3
note A_, 3
note B_, 6
note G#, 3
note B_, 3
octave 4
C# 3
D_ 3
E_ 3
F# 3
C# 3
note C#, 3
note D_, 3
note E_, 3
note F#, 3
note C#, 3
octave 3
B_ 3
A_ 3
note B_, 3
note A_, 3
octave 4
C# 3
note C#, 3
octave 3
A_ 6
F# 3
A_ 3
B_ 6
G# 3
B_ 3
note A_, 6
note F#, 3
note A_, 3
note B_, 6
note G#, 3
note B_, 3
octave 4
C_ 6
note C_, 6
octave 3
A_ 3
note A_, 3
octave 4
C_ 3
D_ 3
note C_, 3
note D_, 3
octave 3
B_ 3
note B_, 3
octave 4
D_ 6
C# 3
note D_, 6
note C#, 3
octave 3
B_ 3
A_ 3
G_ 3
F# 3
G_ 3
A_ 3
B_ 3
A_ 3
G_ 3
F# 3
E_ 3
F# 3
G_ 3
A_ 3
B_ 3
loopchannel 0, Music_DefeatedTrainer_branch_23a76
Music_DefeatedTrainer_Ch1::
duty 2
notetype 4, 12, 3
octave 4
A_ 2
notetype 4, 12, 3
A_ 2
A_ 2
A_ 2
B_ 2
octave 5
C# 2
notetype 4, 12, 4
D_ 12
Music_DefeatedTrainer_branch_23ad2::
notetype 4, 8, 5
octave 4
D_ 6
octave 3
A_ 3
octave 4
D_ 3
E_ 6
octave 3
B_ 3
octave 4
E_ 3
F# 3
G_ 3
A_ 6
E_ 3
F# 3
G_ 6
D_ 6
octave 3
A_ 3
octave 4
D_ 3
E_ 6
octave 3
B_ 3
octave 4
E_ 3
F# 3
G_ 3
A_ 6
F# 3
G_ 3
A_ 6
D_ 6
octave 3
A_ 3
octave 4
D_ 3
E_ 6
octave 3
B_ 3
octave 4
E_ 3
F_ 6
C_ 3
F_ 3
G_ 3
D_ 3
G_ 6
notetype 4, 7, 0
F# 12
notetype 4, 7, 7
F# 12
notetype 4, 6, 0
E_ 12
notetype 4, 6, 7
E_ 12
loopchannel 0, Music_DefeatedTrainer_branch_23ad2
note B_, 3
note A_, 3
note G_, 3
note F#, 3
note G_, 3
note A_, 3
note B_, 3
note A_, 3
note G_, 3
note F#, 3
note E_, 3
note F#, 3
note G_, 3
note A_, 3
note B_, 3
sound_loop 0, Music_DefeatedTrainer_branch_23a76
Music_DefeatedTrainer_Ch2::
notetype 4, 1, 0
octave 5
D_ 2
notetype 4, 1, 0
D_ 2
D_ 2
duty_cycle 2
note_type 4, 12, 3
octave 4
B_ 2
A_ 2
G_ 2
A_ 12
notetype 4, 2, 1
note A_, 2
note_type 4, 12, 3
note A_, 2
note A_, 2
note A_, 2
note B_, 2
octave 5
note C#, 2
note_type 4, 12, 4
note D_, 12
Music_DefeatedTrainer_branch_23ad2::
note_type 4, 8, 5
octave 4
note D_, 6
octave 3
note A_, 3
octave 4
note D_, 3
note E_, 6
octave 3
note B_, 3
octave 4
note E_, 3
note F#, 3
note G_, 3
note A_, 6
note E_, 3
note F#, 3
note G_, 6
note D_, 6
octave 3
note A_, 3
octave 4
note D_, 3
note E_, 6
octave 3
note B_, 3
octave 4
note E_, 3
note F#, 3
note G_, 3
note A_, 6
note F#, 3
note G_, 3
note A_, 6
note D_, 6
octave 3
note A_, 3
octave 4
note D_, 3
note E_, 6
octave 3
note B_, 3
octave 4
note E_, 3
note F_, 6
note C_, 3
note F_, 3
note G_, 3
note D_, 3
note G_, 6
note_type 4, 7, 0
note F#, 12
note_type 4, 7, 7
note F#, 12
note_type 4, 6, 0
note E_, 12
note_type 4, 6, 7
note E_, 12
sound_loop 0, Music_DefeatedTrainer_branch_23ad2
Music_DefeatedTrainer_Ch3::
note_type 4, 1, 0
octave 5
note D_, 2
note_type 4, 1, 0
note D_, 2
note D_, 2
octave 4
note B_, 2
note A_, 2
note G_, 2
note A_, 12
note_type 4, 2, 1
Music_DefeatedTrainer_branch_23b24::
F# 3
note F#, 3
rest 3
F# 3
note F#, 3
rest 3
G# 3
note G#, 3
rest 3
G# 3
note G#, 3
rest 3
A_ 3
note A_, 3
rest 3
A_ 3
note A_, 3
rest 3
B_ 3
note B_, 3
rest 3
B_ 3
note B_, 3
rest 3
F# 3
note F#, 3
rest 3
F# 3
note F#, 3
rest 3
G# 3
note G#, 3
rest 3
G# 3
note G#, 3
rest 3
A_ 3
note A_, 3
rest 3
A_ 3
note A_, 3
rest 3
octave 5
C# 3
note C#, 3
rest 3
C# 3
note C#, 3
octave 4
A_ 3
F# 3
note A_, 3
note F#, 3
octave 5
D_ 3
note D_, 3
octave 4
F# 3
note F#, 3
rest 3
G# 3
note G#, 3
octave 5
E_ 3
note E_, 3
octave 4
G# 3
note G#, 3
rest 3
A_ 3
note A_, 3
octave 5
F_ 3
note F_, 3
octave 4
A_ 3
note A_, 3
rest 3
B_ 3
note B_, 3
octave 5
G_ 3
note G_, 3
octave 4
B_ 3
A# 3
A_ 3
note B_, 3
note A#, 3
note A_, 3
rest 3
A_ 3
note A_, 3
rest 3
A_ 3
note A_, 3
rest 3
A_ 3
note A_, 3
octave 5
C_ 3
C# 3
note C_, 3
note C#, 3
rest 3
C# 3
note C#, 3
rest 3
C# 3
note C#, 3
rest 3
C# 3
note C#, 3
octave 4
A_ 3
loopchannel 0, Music_DefeatedTrainer_branch_23b24
note A_, 3
sound_loop 0, Music_DefeatedTrainer_branch_23b24

View file

@ -1,302 +1,302 @@
Music_DefeatedWildMon_Ch0::
Music_DefeatedWildMon_Ch1::
tempo 112
volume 7, 7
executemusic
duty 3
execute_music
duty_cycle 3
vibrato 6, 3, 4
toggleperfectpitch
toggle_perfect_pitch
tempo 112
notetype 12, 11, 7
note_type 12, 11, 7
octave 3
B_ 1
A_ 1
G# 1
F# 1
E_ 12
note B_, 1
note A_, 1
note G#, 1
note F#, 1
note E_, 12
Music_DefeatedWildMon_branch_23b8b::
notetype 12, 6, 2
E_ 2
F# 2
E_ 2
F# 2
G# 2
G# 2
G# 4
A_ 2
A_ 2
A_ 4
G# 2
G# 2
G# 4
E_ 2
F# 2
E_ 2
F# 2
G# 2
G# 2
G# 4
A_ 2
A_ 2
A_ 4
G# 8
F_ 2
G_ 2
F_ 2
G_ 2
A_ 2
A_ 2
A_ 4
A# 2
A# 2
A# 4
A_ 2
A_ 2
A_ 4
F_ 2
G_ 2
F_ 2
G_ 2
A_ 2
A_ 2
A_ 4
A# 2
A# 2
A# 4
A_ 8
loopchannel 0, Music_DefeatedWildMon_branch_23b8b
Music_DefeatedWildMon_Ch1::
executemusic
duty 2
notetype 12, 12, 3
octave 4
E_ 1
F# 1
G# 1
A_ 1
notetype 12, 12, 7
B_ 12
Music_DefeatedWildMon_branch_23bce::
notetype 12, 8, 2
octave 3
B_ 2
A_ 2
G# 2
A_ 2
B_ 2
B_ 2
B_ 4
octave 4
C# 2
C# 2
C# 4
octave 3
B_ 2
B_ 2
B_ 4
B_ 2
A_ 2
G# 2
A_ 2
B_ 2
B_ 2
B_ 4
octave 4
C# 2
C# 2
C# 4
octave 3
B_ 8
octave 4
C_ 2
octave 3
A# 2
A_ 2
A# 2
octave 4
C_ 2
C_ 2
C_ 4
D_ 2
D_ 2
D_ 4
C_ 2
C_ 2
C_ 4
C_ 2
octave 3
A# 2
A_ 2
A# 2
octave 4
C_ 2
C_ 2
C_ 4
D_ 2
D_ 2
D_ 4
C_ 8
loopchannel 0, Music_DefeatedWildMon_branch_23bce
note_type 12, 6, 2
note E_, 2
note F#, 2
note E_, 2
note F#, 2
note G#, 2
note G#, 2
note G#, 4
note A_, 2
note A_, 2
note A_, 4
note G#, 2
note G#, 2
note G#, 4
note E_, 2
note F#, 2
note E_, 2
note F#, 2
note G#, 2
note G#, 2
note G#, 4
note A_, 2
note A_, 2
note A_, 4
note G#, 8
note F_, 2
note G_, 2
note F_, 2
note G_, 2
note A_, 2
note A_, 2
note A_, 4
note A#, 2
note A#, 2
note A#, 4
note A_, 2
note A_, 2
note A_, 4
note F_, 2
note G_, 2
note F_, 2
note G_, 2
note A_, 2
note A_, 2
note A_, 4
note A#, 2
note A#, 2
note A#, 4
note A_, 8
sound_loop 0, Music_DefeatedWildMon_branch_23b8b
Music_DefeatedWildMon_Ch2::
executemusic
notetype 12, 2, 0
execute_music
duty_cycle 2
note_type 12, 12, 3
octave 4
note E_, 1
note F#, 1
note G#, 1
note A_, 1
note_type 12, 12, 7
note B_, 12
Music_DefeatedWildMon_branch_23bce::
note_type 12, 8, 2
octave 3
note B_, 2
note A_, 2
note G#, 2
note A_, 2
note B_, 2
note B_, 2
note B_, 4
octave 4
note C#, 2
note C#, 2
note C#, 4
octave 3
note B_, 2
note B_, 2
note B_, 4
note B_, 2
note A_, 2
note G#, 2
note A_, 2
note B_, 2
note B_, 2
note B_, 4
octave 4
note C#, 2
note C#, 2
note C#, 4
octave 3
note B_, 8
octave 4
note C_, 2
octave 3
note A#, 2
note A_, 2
note A#, 2
octave 4
note C_, 2
note C_, 2
note C_, 4
note D_, 2
note D_, 2
note D_, 4
note C_, 2
note C_, 2
note C_, 4
note C_, 2
octave 3
note A#, 2
note A_, 2
note A#, 2
octave 4
note C_, 2
note C_, 2
note C_, 4
note D_, 2
note D_, 2
note D_, 4
note C_, 8
sound_loop 0, Music_DefeatedWildMon_branch_23bce
Music_DefeatedWildMon_Ch3::
execute_music
note_type 12, 2, 0
octave 5
E_ 1
note E_, 1
rest 1
octave 6
C# 1
note C#, 1
rest 1
octave 5
B_ 1
note B_, 1
rest 1
octave 6
D# 1
note D#, 1
rest 1
E_ 1
note E_, 1
rest 3
E_ 1
note E_, 1
rest 3
Music_DefeatedWildMon_branch_23c21::
octave 4
E_ 1
note E_, 1
rest 1
octave 5
E_ 1
note E_, 1
rest 1
octave 4
E_ 1
note E_, 1
rest 1
octave 5
E_ 1
note E_, 1
rest 1
octave 4
E_ 1
note E_, 1
rest 3
octave 5
E_ 1
note E_, 1
rest 3
octave 4
F# 1
note F#, 1
rest 1
octave 5
F# 1
note F#, 1
rest 1
octave 4
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 1
octave 5
D# 1
note D#, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
E_ 1
note E_, 1
rest 1
E_ 1
note E_, 1
rest 1
octave 5
E_ 1
note E_, 1
rest 1
octave 4
E_ 1
note E_, 1
rest 1
octave 5
E_ 1
note E_, 1
rest 1
octave 4
E_ 1
note E_, 1
rest 3
octave 5
E_ 1
note E_, 1
rest 3
octave 4
F# 1
note F#, 1
rest 1
octave 5
F# 1
note F#, 1
rest 1
octave 4
F# 1
note F#, 1
rest 3
octave 5
E_ 1
note E_, 1
rest 3
octave 4
D# 4
note D#, 4
octave 4
F_ 1
note F_, 1
rest 1
octave 5
F_ 1
note F_, 1
rest 1
octave 4
F_ 1
note F_, 1
rest 1
octave 5
F_ 1
note F_, 1
rest 1
octave 4
F_ 1
note F_, 1
rest 3
octave 5
F_ 1
note F_, 1
rest 3
octave 4
G_ 1
note G_, 1
rest 1
octave 5
G_ 1
note G_, 1
rest 1
octave 4
G_ 1
note G_, 1
rest 3
F_ 1
note F_, 1
rest 1
octave 5
F_ 1
note F_, 1
rest 1
octave 4
F_ 1
note F_, 1
rest 1
F_ 1
note F_, 1
rest 1
F_ 1
note F_, 1
rest 1
octave 5
F_ 1
note F_, 1
rest 1
octave 4
F_ 1
note F_, 1
rest 1
octave 5
F_ 1
note F_, 1
rest 1
octave 4
F_ 1
note F_, 1
rest 3
octave 5
F_ 1
note F_, 1
rest 3
octave 4
G_ 1
note G_, 1
rest 1
octave 5
G_ 1
note G_, 1
rest 1
octave 4
G_ 1
note G_, 1
rest 3
octave 5
F_ 1
note F_, 1
rest 3
octave 4
D# 4
loopchannel 0, Music_DefeatedWildMon_branch_23c21
note D#, 4
sound_loop 0, Music_DefeatedWildMon_branch_23c21

File diff suppressed because it is too large Load diff

View file

@ -1,64 +1,64 @@
Music_Dungeon2_Ch0::
Music_Dungeon2_Ch1::
tempo 144
volume 7, 7
duty 3
toggleperfectpitch
duty_cycle 3
toggle_perfect_pitch
vibrato 10, 1, 4
Music_Dungeon2_branch_7e892::
notetype 12, 11, 2
note_type 12, 11, 2
octave 4
E_ 4
E_ 4
E_ 4
E_ 4
A# 4
A# 4
A# 4
A# 4
E_ 4
E_ 4
E_ 4
E_ 4
note E_, 4
note E_, 4
note E_, 4
note E_, 4
note A#, 4
note A#, 4
note A#, 4
note A#, 4
note E_, 4
note E_, 4
note E_, 4
note E_, 4
octave 5
C# 4
C# 4
C# 4
C# 4
note C#, 4
note C#, 4
note C#, 4
note C#, 4
octave 3
E_ 4
E_ 4
E_ 4
E_ 4
A# 4
A# 4
A# 4
A# 4
note E_, 4
note E_, 4
note E_, 4
note E_, 4
note A#, 4
note A#, 4
note A#, 4
note A#, 4
octave 2
G_ 2
A# 4
G_ 2
note G_, 2
note A#, 4
note G_, 2
octave 3
C# 4
note C#, 4
octave 2
G_ 2
A# 2
B_ 2
G_ 2
note G_, 2
note A#, 2
note B_, 2
note G_, 2
octave 3
C# 4
note C#, 4
octave 2
G_ 2
A_ 4
F# 2
loopchannel 2, Music_Dungeon2_branch_7e892
notetype 12, 1, 15
note G_, 2
note A_, 4
note F#, 2
sound_loop 2, Music_Dungeon2_branch_7e892
note_type 12, 1, 15
octave 3
E_ 16
C_ 16
D_ 16
note E_, 16
note C_, 16
note D_, 16
octave 2
A# 16
note A#, 16
rest 16
rest 16
rest 16
@ -67,242 +67,242 @@ Music_Dungeon2_branch_7e892::
rest 16
rest 16
rest 16
loopchannel 0, Music_Dungeon2_branch_7e892
Music_Dungeon2_Ch1::
vibrato 11, 1, 5
Music_Dungeon2_branch_7e8db::
duty 3
notetype 12, 12, 2
octave 3
E_ 4
E_ 4
E_ 4
E_ 4
C_ 4
C_ 4
C_ 4
C_ 4
E_ 4
E_ 4
E_ 4
E_ 4
C_ 4
C_ 4
C_ 4
C_ 4
B_ 4
B_ 4
B_ 4
B_ 4
octave 4
F# 4
F# 4
F# 4
F# 4
D_ 4
D_ 4
D_ 4
D_ 4
G_ 4
G_ 4
G_ 4
F# 4
loopchannel 2, Music_Dungeon2_branch_7e8db
octave 3
E_ 2
G_ 2
E_ 2
D# 2
E_ 2
E_ 2
octave 5
E_ 2
rest 2
D# 2
rest 2
D_ 2
rest 2
C# 2
C_ 2
octave 4
E_ 2
G_ 2
octave 3
A# 2
C# 2
A# 2
A_ 2
A# 2
G_ 2
octave 5
G_ 2
rest 2
F# 2
rest 2
F_ 2
rest 2
E_ 2
D# 2
D_ 2
C# 2
rest 16
rest 16
rest 16
rest 16
notetype 12, 12, 7
duty 1
octave 4
E_ 16
D_ 16
C_ 16
D_ 16
loopchannel 0, Music_Dungeon2_branch_7e8db
sound_loop 0, Music_Dungeon2_branch_7e892
Music_Dungeon2_Ch2::
notetype 12, 1, 3
vibrato 8, 2, 6
vibrato 11, 1, 5
Music_Dungeon2_branch_7e940::
callchannel Music_Dungeon2_branch_7e9d1
loopchannel 16, Music_Dungeon2_branch_7e940
E_ 4
rest 4
rest 4
E_ 4
C_ 4
rest 4
rest 4
C_ 4
D_ 4
rest 4
rest 4
D_ 4
Music_Dungeon2_branch_7e8db::
duty_cycle 3
note_type 12, 12, 2
octave 3
A# 4
rest 4
rest 4
A# 4
Music_Dungeon2_branch_7e958::
note E_, 4
note E_, 4
note E_, 4
note E_, 4
note C_, 4
note C_, 4
note C_, 4
note C_, 4
note E_, 4
note E_, 4
note E_, 4
note E_, 4
note C_, 4
note C_, 4
note C_, 4
note C_, 4
note B_, 4
note B_, 4
note B_, 4
note B_, 4
octave 4
note F#, 4
note F#, 4
note F#, 4
note F#, 4
note D_, 4
note D_, 4
note D_, 4
note D_, 4
note G_, 4
note G_, 4
note G_, 4
note F#, 4
sound_loop 2, Music_Dungeon2_branch_7e8db
octave 3
note E_, 2
note G_, 2
note E_, 2
note D#, 2
note E_, 2
note E_, 2
octave 5
E_ 2
note E_, 2
rest 2
B_ 2
note D#, 2
rest 2
A# 2
rest 2
octave 6
D_ 2
rest 2
C# 2
note D_, 2
rest 2
note C#, 2
note C_, 2
octave 4
note E_, 2
note G_, 2
octave 3
note A#, 2
note C#, 2
note A#, 2
note A_, 2
note A#, 2
note G_, 2
octave 5
G# 2
note G_, 2
rest 2
G_ 2
note F#, 2
rest 2
B_ 2
note F_, 2
rest 2
A# 2
rest 2
E_ 2
rest 2
D# 2
rest 2
A_ 2
rest 2
G# 2
rest 2
E_ 2
rest 2
F# 2
rest 2
D# 2
rest 2
loopchannel 3, Music_Dungeon2_branch_7e958
octave 4
E_ 4
B_ 4
A# 4
octave 5
D_ 4
C# 4
octave 4
G# 4
G_ 4
B_ 4
A# 4
E_ 4
D# 4
A_ 4
G# 4
E_ 4
F# 4
D# 4
octave 3
E_ 16
C_ 16
D_ 16
octave 2
A# 16
octave 3
E_ 16
F_ 16
G_ 16
octave 3
B_ 16
note E_, 2
note D#, 2
note D_, 2
note C#, 2
rest 16
rest 16
rest 16
rest 16
callchannel Music_Dungeon2_branch_7e9d1
callchannel Music_Dungeon2_branch_7e9d1
callchannel Music_Dungeon2_branch_7e9d1
callchannel Music_Dungeon2_branch_7e9d1
callchannel Music_Dungeon2_branch_7e9d1
callchannel Music_Dungeon2_branch_7e9d1
callchannel Music_Dungeon2_branch_7e9d1
callchannel Music_Dungeon2_branch_7e9d1
loopchannel 0, Music_Dungeon2_branch_7e940
octave 2
G_ 2
A# 4
G_ 2
octave 3
C# 4
octave 2
G_ 2
A_ 2
A# 2
G_ 2
octave 3
C# 4
octave 2
G_ 2
A# 2
G_ 2
rest 2
endchannel
Music_Dungeon2_branch_7e9d1::
note_type 12, 12, 7
duty_cycle 1
octave 4
E_ 2
rest 4
octave 3
E_ 1
rest 3
E_ 1
rest 1
octave 4
F# 4
endchannel
note E_, 16
note D_, 16
note C_, 16
note D_, 16
sound_loop 0, Music_Dungeon2_branch_7e8db
Music_Dungeon2_Ch3::
note_type 12, 1, 3
vibrato 8, 2, 6
Music_Dungeon2_branch_7e940::
sound_call Music_Dungeon2_branch_7e9d1
sound_loop 16, Music_Dungeon2_branch_7e940
note E_, 4
rest 4
rest 4
note E_, 4
note C_, 4
rest 4
rest 4
note C_, 4
note D_, 4
rest 4
rest 4
note D_, 4
octave 3
note A#, 4
rest 4
rest 4
note A#, 4
Music_Dungeon2_branch_7e958::
octave 5
note E_, 2
rest 2
note B_, 2
rest 2
note A#, 2
rest 2
octave 6
note D_, 2
rest 2
note C#, 2
rest 2
octave 5
note G#, 2
rest 2
note G_, 2
rest 2
note B_, 2
rest 2
note A#, 2
rest 2
note E_, 2
rest 2
note D#, 2
rest 2
note A_, 2
rest 2
note G#, 2
rest 2
note E_, 2
rest 2
note F#, 2
rest 2
note D#, 2
rest 2
sound_loop 3, Music_Dungeon2_branch_7e958
octave 4
note E_, 4
note B_, 4
note A#, 4
octave 5
note D_, 4
note C#, 4
octave 4
note G#, 4
note G_, 4
note B_, 4
note A#, 4
note E_, 4
note D#, 4
note A_, 4
note G#, 4
note E_, 4
note F#, 4
note D#, 4
octave 3
note E_, 16
note C_, 16
note D_, 16
octave 2
note A#, 16
octave 3
note E_, 16
note F_, 16
note G_, 16
octave 3
note B_, 16
rest 16
rest 16
rest 16
rest 16
sound_call Music_Dungeon2_branch_7e9d1
sound_call Music_Dungeon2_branch_7e9d1
sound_call Music_Dungeon2_branch_7e9d1
sound_call Music_Dungeon2_branch_7e9d1
sound_call Music_Dungeon2_branch_7e9d1
sound_call Music_Dungeon2_branch_7e9d1
sound_call Music_Dungeon2_branch_7e9d1
sound_call Music_Dungeon2_branch_7e9d1
sound_loop 0, Music_Dungeon2_branch_7e940
octave 2
note G_, 2
note A#, 4
note G_, 2
octave 3
note C#, 4
octave 2
note G_, 2
note A_, 2
note A#, 2
note G_, 2
octave 3
note C#, 4
octave 2
note G_, 2
note A#, 2
note G_, 2
rest 2
sound_ret
Music_Dungeon2_branch_7e9d1::
octave 4
note E_, 2
rest 4
octave 3
note E_, 1
rest 3
note E_, 1
rest 1
octave 4
note F#, 4
sound_ret
Music_Dungeon2_Ch4::
dspeed 12
Music_Dungeon2_branch_7e9dd::
@ -314,4 +314,4 @@ Music_Dungeon2_branch_7e9dd::
cymbal2 4
snare9 4
snare7 4
loopchannel 0, Music_Dungeon2_branch_7e9dd
sound_loop 0, Music_Dungeon2_branch_7e9dd

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,357 +1,357 @@
Music_Gym_Ch0::
Music_Gym_Ch1::
tempo 138
volume 7, 7
duty 3
duty_cycle 3
vibrato 8, 2, 2
toggleperfectpitch
notetype 12, 11, 5
toggle_perfect_pitch
note_type 12, 11, 5
octave 3
G_ 6
C_ 1
G_ 1
F_ 6
note G_, 6
note C_, 1
note G_, 1
note F_, 6
octave 2
A# 1
note A#, 1
octave 3
F_ 1
E_ 6
note F_, 1
note E_, 6
octave 2
A_ 1
note A_, 1
octave 3
E_ 1
F_ 4
G_ 4
note E_, 1
note F_, 4
note G_, 4
Music_Gym_branch_bcd8::
E_ 4
F_ 2
G_ 2
F_ 2
E_ 2
D_ 2
C_ 2
notetype 12, 11, 1
D_ 3
notetype 12, 11, 5
E_ 1
F_ 4
E_ 2
D_ 2
E_ 2
F_ 2
E_ 4
F_ 2
G_ 2
F_ 2
E_ 2
D_ 2
C_ 2
D_ 2
D_ 1
E_ 1
F_ 4
E_ 2
D_ 2
E_ 2
F_ 2
note E_, 4
note F_, 2
note G_, 2
note F_, 2
note E_, 2
note D_, 2
note C_, 2
note_type 12, 11, 1
note D_, 3
note_type 12, 11, 5
note E_, 1
note F_, 4
note E_, 2
note D_, 2
note E_, 2
note F_, 2
note E_, 4
note F_, 2
note G_, 2
note F_, 2
note E_, 2
note D_, 2
note C_, 2
note D_, 2
note D_, 1
note E_, 1
note F_, 4
note E_, 2
note D_, 2
note E_, 2
note F_, 2
octave 4
C_ 4
note C_, 4
octave 3
A# 2
note A#, 2
octave 4
C_ 2
note C_, 2
octave 3
A# 2
A_ 2
G_ 2
F_ 2
notetype 12, 11, 1
A# 3
notetype 12, 11, 5
F_ 1
F_ 4
E_ 2
D_ 2
E_ 2
F_ 2
note A#, 2
note A_, 2
note G_, 2
note F_, 2
note_type 12, 11, 1
note A#, 3
note_type 12, 11, 5
note F_, 1
note F_, 4
note E_, 2
note D_, 2
note E_, 2
note F_, 2
octave 4
C_ 4
note C_, 4
octave 3
A# 2
note A#, 2
octave 4
C_ 2
note C_, 2
octave 3
A# 2
A_ 2
G_ 2
F_ 2
D_ 2
D_ 1
E_ 1
F_ 4
A# 2
F_ 1
A# 1
note A#, 2
note A_, 2
note G_, 2
note F_, 2
note D_, 2
note D_, 1
note E_, 1
note F_, 4
note A#, 2
note F_, 1
note A#, 1
octave 4
D_ 4
note D_, 4
octave 3
E_ 2
C_ 2
E_ 2
G_ 2
F_ 2
E_ 2
D_ 2
E_ 2
F_ 2
D_ 2
E_ 2
C_ 2
D_ 2
E_ 2
C_ 2
D_ 2
C_ 2
C_ 1
D_ 1
E_ 4
C_ 2
E_ 2
D_ 2
C_ 2
E_ 2
C_ 1
E_ 1
F_ 4
E_ 2
D_ 2
E_ 2
F_ 2
E_ 2
C_ 2
E_ 2
G_ 2
F_ 2
E_ 2
D_ 2
E_ 2
D_ 2
F_ 2
D_ 2
E_ 2
C_ 2
D_ 2
C_ 2
D_ 2
C_ 2
C_ 1
D_ 1
E_ 4
D_ 2
E_ 2
F_ 2
F_ 2
G_ 2
E_ 1
G_ 1
A# 2
note E_, 2
note C_, 2
note E_, 2
note G_, 2
note F_, 2
note E_, 2
note D_, 2
note E_, 2
note F_, 2
note D_, 2
note E_, 2
note C_, 2
note D_, 2
note E_, 2
note C_, 2
note D_, 2
note C_, 2
note C_, 1
note D_, 1
note E_, 4
note C_, 2
note E_, 2
note D_, 2
note C_, 2
note E_, 2
note C_, 1
note E_, 1
note F_, 4
note E_, 2
note D_, 2
note E_, 2
note F_, 2
note E_, 2
note C_, 2
note E_, 2
note G_, 2
note F_, 2
note E_, 2
note D_, 2
note E_, 2
note D_, 2
note F_, 2
note D_, 2
note E_, 2
note C_, 2
note D_, 2
note C_, 2
note D_, 2
note C_, 2
note C_, 1
note D_, 1
note E_, 4
note D_, 2
note E_, 2
note F_, 2
note F_, 2
note G_, 2
note E_, 1
note G_, 1
note A#, 2
octave 4
C_ 2
note C_, 2
octave 3
A# 2
A_ 2
G_ 2
A_ 2
loopchannel 0, Music_Gym_branch_bcd8
Music_Gym_Ch1::
duty 3
vibrato 10, 2, 5
notetype 12, 12, 7
octave 4
C_ 6
octave 3
G_ 1
octave 4
C_ 1
octave 3
A# 6
F_ 1
A# 1
notetype 12, 10, 0
A_ 12
notetype 12, 12, 7
B_ 4
Music_Gym_branch_bd82::
octave 4
C_ 12
octave 3
G_ 2
octave 4
C_ 2
notetype 12, 12, 2
D_ 3
octave 3
A# 1
notetype 12, 12, 7
A# 12
octave 4
C_ 12
octave 3
G_ 2
octave 4
C_ 2
notetype 12, 12, 4
octave 3
A# 2
notetype 12, 12, 7
A# 1
octave 4
C_ 1
D_ 12
E_ 12
D_ 2
E_ 2
notetype 12, 12, 2
F_ 3
D_ 1
notetype 12, 12, 7
D_ 4
notetype 12, 12, 2
A# 3
F_ 1
notetype 12, 12, 7
F_ 4
E_ 12
D_ 2
E_ 2
F_ 2
D_ 1
F_ 1
A# 12
octave 3
G_ 6
octave 4
C_ 6
octave 3
G_ 4
A# 4
A_ 4
G_ 4
F_ 4
notetype 12, 12, 3
E_ 2
notetype 12, 12, 7
E_ 1
F_ 1
G_ 6
G_ 2
octave 4
C_ 2
octave 3
G_ 2
A# 4
A_ 4
G_ 4
C_ 2
D_ 2
G_ 6
octave 4
C_ 6
octave 3
G_ 4
A# 4
A_ 4
G_ 4
F_ 4
notetype 12, 12, 3
E_ 2
notetype 12, 12, 7
E_ 1
F_ 1
G_ 4
notetype 12, 12, 3
G_ 2
notetype 12, 12, 7
G_ 1
A_ 1
A# 4
notetype 12, 12, 4
octave 4
C_ 2
notetype 12, 12, 7
C_ 1
D_ 1
E_ 12
loopchannel 0, Music_Gym_branch_bd82
note A#, 2
note A_, 2
note G_, 2
note A_, 2
sound_loop 0, Music_Gym_branch_bcd8
Music_Gym_Ch2::
notetype 12, 1, 1
duty_cycle 3
vibrato 10, 2, 5
note_type 12, 12, 7
octave 4
note C_, 6
octave 3
note G_, 1
octave 4
note C_, 1
octave 3
note A#, 6
note F_, 1
note A#, 1
note_type 12, 10, 0
note A_, 12
note_type 12, 12, 7
note B_, 4
Music_Gym_branch_bd82::
octave 4
note C_, 12
octave 3
note G_, 2
octave 4
note C_, 2
note_type 12, 12, 2
note D_, 3
octave 3
note A#, 1
note_type 12, 12, 7
note A#, 12
octave 4
note C_, 12
octave 3
note G_, 2
octave 4
note C_, 2
note_type 12, 12, 4
octave 3
note A#, 2
note_type 12, 12, 7
note A#, 1
octave 4
note C_, 1
note D_, 12
note E_, 12
note D_, 2
note E_, 2
note_type 12, 12, 2
note F_, 3
note D_, 1
note_type 12, 12, 7
note D_, 4
note_type 12, 12, 2
note A#, 3
note F_, 1
note_type 12, 12, 7
note F_, 4
note E_, 12
note D_, 2
note E_, 2
note F_, 2
note D_, 1
note F_, 1
note A#, 12
octave 3
note G_, 6
octave 4
note C_, 6
octave 3
note G_, 4
note A#, 4
note A_, 4
note G_, 4
note F_, 4
note_type 12, 12, 3
note E_, 2
note_type 12, 12, 7
note E_, 1
note F_, 1
note G_, 6
note G_, 2
octave 4
note C_, 2
octave 3
note G_, 2
note A#, 4
note A_, 4
note G_, 4
note C_, 2
note D_, 2
note G_, 6
octave 4
note C_, 6
octave 3
note G_, 4
note A#, 4
note A_, 4
note G_, 4
note F_, 4
note_type 12, 12, 3
note E_, 2
note_type 12, 12, 7
note E_, 1
note F_, 1
note G_, 4
note_type 12, 12, 3
note G_, 2
note_type 12, 12, 7
note G_, 1
note A_, 1
note A#, 4
note_type 12, 12, 4
octave 4
note C_, 2
note_type 12, 12, 7
note C_, 1
note D_, 1
note E_, 12
sound_loop 0, Music_Gym_branch_bd82
Music_Gym_Ch3::
note_type 12, 1, 1
rest 16
rest 10
octave 4
G_ 2
F_ 2
D_ 2
note G_, 2
note F_, 2
note D_, 2
Music_Gym_branch_be02::
callchannel Music_Gym_branch_be3b
callchannel Music_Gym_branch_be44
callchannel Music_Gym_branch_be3b
callchannel Music_Gym_branch_be44
callchannel Music_Gym_branch_be3b
callchannel Music_Gym_branch_be44
callchannel Music_Gym_branch_be3b
callchannel Music_Gym_branch_be44
callchannel Music_Gym_branch_be3b
callchannel Music_Gym_branch_be4d
callchannel Music_Gym_branch_be3b
callchannel Music_Gym_branch_be4d
callchannel Music_Gym_branch_be3b
callchannel Music_Gym_branch_be4d
callchannel Music_Gym_branch_be3b
F_ 2
A# 2
F_ 2
A# 2
F_ 2
A# 2
A_ 2
F_ 2
loopchannel 0, Music_Gym_branch_be02
sound_call Music_Gym_branch_be3b
sound_call Music_Gym_branch_be44
sound_call Music_Gym_branch_be3b
sound_call Music_Gym_branch_be44
sound_call Music_Gym_branch_be3b
sound_call Music_Gym_branch_be44
sound_call Music_Gym_branch_be3b
sound_call Music_Gym_branch_be44
sound_call Music_Gym_branch_be3b
sound_call Music_Gym_branch_be4d
sound_call Music_Gym_branch_be3b
sound_call Music_Gym_branch_be4d
sound_call Music_Gym_branch_be3b
sound_call Music_Gym_branch_be4d
sound_call Music_Gym_branch_be3b
note F_, 2
note A#, 2
note F_, 2
note A#, 2
note F_, 2
note A#, 2
note A_, 2
note F_, 2
sound_loop 0, Music_Gym_branch_be02
Music_Gym_branch_be3b::
E_ 2
G_ 2
E_ 2
G_ 2
E_ 2
G_ 2
E_ 2
G_ 2
endchannel
note E_, 2
note G_, 2
note E_, 2
note G_, 2
note E_, 2
note G_, 2
note E_, 2
note G_, 2
sound_ret
Music_Gym_branch_be44::
D_ 2
F_ 2
D_ 2
F_ 2
D_ 2
F_ 2
D_ 2
F_ 2
endchannel
note D_, 2
note F_, 2
note D_, 2
note F_, 2
note D_, 2
note F_, 2
note D_, 2
note F_, 2
sound_ret
Music_Gym_branch_be4d::
F_ 2
A# 2
F_ 2
A# 2
F_ 2
A# 2
F_ 2
A# 2
endchannel
note F_, 2
note A#, 2
note F_, 2
note A#, 2
note F_, 2
note A#, 2
note F_, 2
note A#, 2
sound_ret

File diff suppressed because it is too large Load diff

View file

@ -1,96 +1,96 @@
Music_HallOfFame_Ch0::
Music_HallOfFame_Ch1::
tempo 112
volume 7, 7
duty 3
duty_cycle 3
vibrato 12, 2, 2
toggleperfectpitch
notetype 12, 11, 3
toggle_perfect_pitch
note_type 12, 11, 3
rest 16
rest 16
rest 16
rest 12
octave 3
D_ 1
E_ 1
F_ 1
F# 1
note D_, 1
note E_, 1
note F_, 1
note F#, 1
Music_HallOfFame_branch_7fbc5::
notetype 12, 8, 0
note_type 12, 8, 0
octave 4
C_ 16
E_ 16
F# 16
notetype 12, 6, 0
F_ 16
loopchannel 3, Music_HallOfFame_branch_7fbc5
note C_, 16
note E_, 16
note F#, 16
note_type 12, 6, 0
note F_, 16
sound_loop 3, Music_HallOfFame_branch_7fbc5
rest 16
rest 16
rest 16
rest 16
loopchannel 0, Music_HallOfFame_branch_7fbc5
Music_HallOfFame_Ch1::
vibrato 8, 2, 5
duty 3
Music_HallOfFame_branch_7fbdf::
notetype 12, 12, 4
octave 3
G_ 2
D_ 2
G_ 2
A_ 10
G_ 2
D_ 2
G_ 2
octave 4
C_ 4
octave 3
B_ 4
A_ 2
G_ 2
D_ 2
G_ 2
A_ 10
F_ 2
C_ 2
F_ 2
A# 4
A_ 4
F_ 2
loopchannel 0, Music_HallOfFame_branch_7fbdf
sound_loop 0, Music_HallOfFame_branch_7fbc5
Music_HallOfFame_Ch2::
notetype 12, 1, 2
vibrato 8, 2, 5
duty_cycle 3
Music_HallOfFame_branch_7fbdf::
note_type 12, 12, 4
octave 3
note G_, 2
note D_, 2
note G_, 2
note A_, 10
note G_, 2
note D_, 2
note G_, 2
octave 4
note C_, 4
octave 3
note B_, 4
note A_, 2
note G_, 2
note D_, 2
note G_, 2
note A_, 10
note F_, 2
note C_, 2
note F_, 2
note A#, 4
note A_, 4
note F_, 2
sound_loop 0, Music_HallOfFame_branch_7fbdf
Music_HallOfFame_Ch3::
note_type 12, 1, 2
Music_HallOfFame_branch_7fbfe::
octave 4
D_ 2
G_ 2
D_ 2
G_ 2
D_ 2
G_ 2
D_ 2
G_ 2
loopchannel 12, Music_HallOfFame_branch_7fbfe
D_ 4
G_ 4
D_ 4
G_ 4
E_ 4
G_ 4
E_ 4
G_ 4
F# 4
A_ 4
F# 4
A_ 4
E_ 4
G_ 4
E_ 4
G_ 4
loopchannel 0, Music_HallOfFame_Ch2
note D_, 2
note G_, 2
note D_, 2
note G_, 2
note D_, 2
note G_, 2
note D_, 2
note G_, 2
sound_loop 12, Music_HallOfFame_branch_7fbfe
note D_, 4
note G_, 4
note D_, 4
note G_, 4
note E_, 4
note G_, 4
note E_, 4
note G_, 4
note F#, 4
note A_, 4
note F#, 4
note A_, 4
note E_, 4
note G_, 4
note E_, 4
note G_, 4
sound_loop 0, Music_HallOfFame_Ch3

View file

@ -1,231 +1,231 @@
Music_IndigoPlateau_Ch0::
Music_IndigoPlateau_Ch1::
tempo 132
volume 7, 7
duty 3
duty_cycle 3
vibrato 6, 3, 4
toggleperfectpitch
notetype 12, 11, 2
toggle_perfect_pitch
note_type 12, 11, 2
octave 2
A_ 8
A_ 8
A_ 8
A_ 4
notetype 12, 10, 4
A# 4
note A_, 8
note A_, 8
note A_, 8
note A_, 4
note_type 12, 10, 4
note A#, 4
Music_IndigoPlateau_branch_a605::
callchannel Music_IndigoPlateau_branch_a659
notetype 12, 11, 4
sound_call Music_IndigoPlateau_branch_a659
note_type 12, 11, 4
octave 3
D_ 4
callchannel Music_IndigoPlateau_branch_a659
notetype 12, 11, 4
note D_, 4
sound_call Music_IndigoPlateau_branch_a659
note_type 12, 11, 4
octave 3
D# 4
callchannel Music_IndigoPlateau_branch_a659
notetype 12, 11, 4
note D#, 4
sound_call Music_IndigoPlateau_branch_a659
note_type 12, 11, 4
octave 3
D_ 4
callchannel Music_IndigoPlateau_branch_a659
notetype 12, 10, 0
note D_, 4
sound_call Music_IndigoPlateau_branch_a659
note_type 12, 10, 0
octave 2
A# 4
callchannel Music_IndigoPlateau_branch_a659
notetype 12, 11, 4
note A#, 4
sound_call Music_IndigoPlateau_branch_a659
note_type 12, 11, 4
octave 3
D_ 4
notetype 12, 13, 4
note D_, 4
note_type 12, 13, 4
octave 3
A_ 4
A_ 4
A_ 4
A_ 4
A_ 4
A_ 4
A_ 4
notetype 12, 11, 4
note A_, 4
note A_, 4
note A_, 4
note A_, 4
note A_, 4
note A_, 4
note A_, 4
note_type 12, 11, 4
octave 3
D# 4
notetype 12, 13, 4
note D#, 4
note_type 12, 13, 4
octave 3
A# 4
A# 4
A# 4
A# 4
A# 4
A# 4
A# 4
notetype 12, 11, 4
note A#, 4
note A#, 4
note A#, 4
note A#, 4
note A#, 4
note A#, 4
note A#, 4
note_type 12, 11, 4
octave 3
F_ 2
notetype 12, 11, 4
note F_, 2
note_type 12, 11, 4
octave 3
G_ 2
notetype 12, 11, 0
A_ 8
note G_, 2
note_type 12, 11, 0
note A_, 8
octave 2
A_ 8
notetype 12, 11, 7
note A_, 8
note_type 12, 11, 7
octave 3
F_ 8
notetype 12, 4, 14
note F_, 8
note_type 12, 4, 14
octave 2
A# 8
loopchannel 0, Music_IndigoPlateau_branch_a605
note A#, 8
sound_loop 0, Music_IndigoPlateau_branch_a605
Music_IndigoPlateau_branch_a659::
notetype 12, 11, 2
note_type 12, 11, 2
octave 2
A_ 4
A_ 4
A_ 4
A_ 4
A_ 4
A_ 4
A_ 4
endchannel
Music_IndigoPlateau_Ch1::
duty 3
vibrato 8, 2, 5
notetype 12, 12, 2
octave 3
D_ 8
D_ 8
D_ 8
D_ 4
notetype 12, 5, 10
D# 4
Music_IndigoPlateau_branch_a673::
callchannel Music_IndigoPlateau_branch_a6af
notetype 12, 12, 5
A_ 4
callchannel Music_IndigoPlateau_branch_a6af
notetype 12, 12, 5
A# 4
callchannel Music_IndigoPlateau_branch_a6af
notetype 12, 12, 5
A_ 4
callchannel Music_IndigoPlateau_branch_a6af
notetype 12, 12, 7
C# 4
callchannel Music_IndigoPlateau_branch_a6af
notetype 12, 12, 5
A_ 4
callchannel Music_IndigoPlateau_branch_a6af
notetype 12, 12, 5
A# 4
callchannel Music_IndigoPlateau_branch_a6af
notetype 12, 12, 5
octave 4
C_ 2
notetype 12, 12, 7
octave 4
C# 2
D_ 8
octave 3
D_ 8
octave 4
C_ 8
notetype 12, 4, 13
octave 4
D# 8
loopchannel 0, Music_IndigoPlateau_branch_a673
Music_IndigoPlateau_branch_a6af::
notetype 12, 12, 2
octave 3
D_ 4
D_ 4
D_ 4
D_ 4
D_ 4
D_ 4
D_ 4
endchannel
note A_, 4
note A_, 4
note A_, 4
note A_, 4
note A_, 4
note A_, 4
note A_, 4
sound_ret
Music_IndigoPlateau_Ch2::
notetype 12, 1, 0
octave 4
D_ 2
rest 6
D_ 2
rest 6
D_ 2
rest 6
D_ 2
rest 2
D# 4
duty_cycle 3
vibrato 8, 2, 5
note_type 12, 12, 2
octave 3
note D_, 8
note D_, 8
note D_, 8
note D_, 4
note_type 12, 5, 10
note D#, 4
Music_IndigoPlateau_branch_a6c6::
callchannel Music_IndigoPlateau_branch_a6fe
callchannel Music_IndigoPlateau_branch_a6fe
callchannel Music_IndigoPlateau_branch_a6fe
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
F# 4
callchannel Music_IndigoPlateau_branch_a6fe
callchannel Music_IndigoPlateau_branch_a6fe
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
A# 1
rest 1
A# 1
rest 1
A_ 8
D_ 8
A# 8
D# 8
loopchannel 0, Music_IndigoPlateau_branch_a6c6
Music_IndigoPlateau_branch_a6fe::
Music_IndigoPlateau_branch_a673::
sound_call Music_IndigoPlateau_branch_a6af
note_type 12, 12, 5
note A_, 4
sound_call Music_IndigoPlateau_branch_a6af
note_type 12, 12, 5
note A#, 4
sound_call Music_IndigoPlateau_branch_a6af
note_type 12, 12, 5
note A_, 4
sound_call Music_IndigoPlateau_branch_a6af
note_type 12, 12, 7
note C#, 4
sound_call Music_IndigoPlateau_branch_a6af
note_type 12, 12, 5
note A_, 4
sound_call Music_IndigoPlateau_branch_a6af
note_type 12, 12, 5
note A#, 4
sound_call Music_IndigoPlateau_branch_a6af
note_type 12, 12, 5
octave 4
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
D_ 2
rest 2
A_ 4
endchannel
note C_, 2
note_type 12, 12, 7
octave 4
note C#, 2
note D_, 8
octave 3
note D_, 8
octave 4
note C_, 8
note_type 12, 4, 13
octave 4
note D#, 8
sound_loop 0, Music_IndigoPlateau_branch_a673
Music_IndigoPlateau_branch_a6af::
note_type 12, 12, 2
octave 3
note D_, 4
note D_, 4
note D_, 4
note D_, 4
note D_, 4
note D_, 4
note D_, 4
sound_ret
Music_IndigoPlateau_Ch3::
note_type 12, 1, 0
octave 4
note D_, 2
rest 6
note D_, 2
rest 6
note D_, 2
rest 6
note D_, 2
rest 2
note D#, 4
Music_IndigoPlateau_branch_a6c6::
sound_call Music_IndigoPlateau_branch_a6fe
sound_call Music_IndigoPlateau_branch_a6fe
sound_call Music_IndigoPlateau_branch_a6fe
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note F#, 4
sound_call Music_IndigoPlateau_branch_a6fe
sound_call Music_IndigoPlateau_branch_a6fe
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note A#, 1
rest 1
note A#, 1
rest 1
note A_, 8
note D_, 8
note A#, 8
note D#, 8
sound_loop 0, Music_IndigoPlateau_branch_a6c6
Music_IndigoPlateau_branch_a6fe::
octave 4
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note D_, 2
rest 2
note A_, 4
sound_ret
Music_IndigoPlateau_Ch4::
dspeed 6
mutedsnare2 16
mutedsnare2 16
@ -241,20 +241,20 @@ Music_IndigoPlateau_Ch3::
mutedsnare3 1
Music_IndigoPlateau_branch_a728::
callchannel Music_IndigoPlateau_branch_a791
callchannel Music_IndigoPlateau_branch_a77e
callchannel Music_IndigoPlateau_branch_a791
callchannel Music_IndigoPlateau_branch_a7a8
callchannel Music_IndigoPlateau_branch_a791
callchannel Music_IndigoPlateau_branch_a77e
callchannel Music_IndigoPlateau_branch_a791
callchannel Music_IndigoPlateau_branch_a7a8
callchannel Music_IndigoPlateau_branch_a791
callchannel Music_IndigoPlateau_branch_a77e
callchannel Music_IndigoPlateau_branch_a791
callchannel Music_IndigoPlateau_branch_a7a8
callchannel Music_IndigoPlateau_branch_a77e
callchannel Music_IndigoPlateau_branch_a7a8
sound_call Music_IndigoPlateau_branch_a791
sound_call Music_IndigoPlateau_branch_a77e
sound_call Music_IndigoPlateau_branch_a791
sound_call Music_IndigoPlateau_branch_a7a8
sound_call Music_IndigoPlateau_branch_a791
sound_call Music_IndigoPlateau_branch_a77e
sound_call Music_IndigoPlateau_branch_a791
sound_call Music_IndigoPlateau_branch_a7a8
sound_call Music_IndigoPlateau_branch_a791
sound_call Music_IndigoPlateau_branch_a77e
sound_call Music_IndigoPlateau_branch_a791
sound_call Music_IndigoPlateau_branch_a7a8
sound_call Music_IndigoPlateau_branch_a77e
sound_call Music_IndigoPlateau_branch_a7a8
mutedsnare2 16
mutedsnare2 8
mutedsnare3 8
@ -275,7 +275,7 @@ Music_IndigoPlateau_branch_a728::
mutedsnare2 1
mutedsnare2 1
mutedsnare2 1
loopchannel 0, Music_IndigoPlateau_branch_a728
sound_loop 0, Music_IndigoPlateau_branch_a728
Music_IndigoPlateau_branch_a77e::
mutedsnare2 4
@ -287,7 +287,7 @@ Music_IndigoPlateau_branch_a77e::
mutedsnare4 4
mutedsnare4 2
mutedsnare3 2
endchannel
sound_ret
Music_IndigoPlateau_branch_a791::
mutedsnare2 4
@ -301,7 +301,7 @@ Music_IndigoPlateau_branch_a791::
mutedsnare4 1
mutedsnare3 1
mutedsnare3 1
endchannel
sound_ret
Music_IndigoPlateau_branch_a7a8::
mutedsnare2 4
@ -318,4 +318,4 @@ Music_IndigoPlateau_branch_a7a8::
mutedsnare3 1
mutedsnare3 1
mutedsnare3 1
endchannel
sound_ret

View file

@ -1,235 +1,235 @@
Music_IntroBattle_Ch0::
Music_IntroBattle_Ch1::
tempo 98
volume 7, 7
duty 3
duty_cycle 3
vibrato 6, 3, 4
toggleperfectpitch
notetype 12, 11, 1
toggle_perfect_pitch
note_type 12, 11, 1
rest 8
octave 2
A_ 2
A_ 2
notetype 12, 11, 4
note A_, 2
note A_, 2
note_type 12, 11, 4
octave 3
D_ 4
notetype 12, 11, 1
note D_, 4
note_type 12, 11, 1
octave 2
A_ 2
A_ 2
notetype 12, 11, 4
note A_, 2
note A_, 2
note_type 12, 11, 4
octave 3
D# 4
notetype 12, 11, 1
note D#, 4
note_type 12, 11, 1
octave 2
A_ 2
A_ 2
notetype 12, 11, 4
note A_, 2
note A_, 2
note_type 12, 11, 4
octave 3
D_ 4
notetype 12, 11, 1
note D_, 4
note_type 12, 11, 1
octave 2
A_ 2
A_ 2
notetype 12, 10, 0
A# 4
notetype 12, 11, 1
A_ 2
A_ 2
notetype 12, 11, 4
note A_, 2
note A_, 2
note_type 12, 10, 0
note A#, 4
note_type 12, 11, 1
note A_, 2
note A_, 2
note_type 12, 11, 4
octave 3
D_ 4
notetype 12, 11, 1
note D_, 4
note_type 12, 11, 1
octave 2
A_ 2
A_ 2
notetype 12, 2, 9
note A_, 2
note A_, 2
note_type 12, 2, 9
octave 3
G_ 4
notetype 12, 11, 0
A_ 8
note G_, 4
note_type 12, 11, 0
note A_, 8
octave 2
A_ 8
notetype 12, 11, 7
note A_, 8
note_type 12, 11, 7
octave 3
F_ 8
notetype 12, 4, 15
note F_, 8
note_type 12, 4, 15
octave 2
F_ 8
notetype 12, 11, 1
A_ 2
A_ 2
notetype 12, 11, 4
note F_, 8
note_type 12, 11, 1
note A_, 2
note A_, 2
note_type 12, 11, 4
octave 3
D_ 4
notetype 12, 11, 1
note D_, 4
note_type 12, 11, 1
octave 2
A_ 2
A_ 2
notetype 12, 11, 4
note A_, 2
note A_, 2
note_type 12, 11, 4
octave 3
D# 4
notetype 12, 11, 1
note D#, 4
note_type 12, 11, 1
octave 2
A_ 2
A_ 2
notetype 12, 11, 4
note A_, 2
note A_, 2
note_type 12, 11, 4
octave 3
F_ 4
notetype 12, 11, 1
note F_, 4
note_type 12, 11, 1
octave 2
A_ 2
A_ 2
notetype 12, 11, 4
note A_, 2
note A_, 2
note_type 12, 11, 4
octave 3
G_ 4
notetype 12, 11, 0
F# 16
notetype 12, 11, 1
note G_, 4
note_type 12, 11, 0
note F#, 16
note_type 12, 11, 1
octave 4
D_ 16
endchannel
Music_IntroBattle_Ch1::
duty 3
vibrato 8, 2, 5
notetype 12, 12, 2
rest 8
octave 3
D_ 2
D_ 2
notetype 12, 12, 5
A_ 4
notetype 12, 12, 2
D_ 2
D_ 2
notetype 12, 12, 5
A# 4
notetype 12, 12, 2
D_ 2
D_ 2
notetype 12, 12, 5
A_ 4
notetype 12, 12, 2
D_ 2
D_ 2
notetype 12, 11, 7
C# 4
notetype 12, 12, 2
D_ 2
D_ 2
notetype 12, 12, 5
A_ 4
notetype 12, 12, 2
octave 3
D_ 2
D_ 2
notetype 12, 12, 7
octave 4
C# 4
D_ 8
octave 3
D_ 8
octave 4
C_ 8
octave 3
C_ 8
notetype 12, 12, 2
D_ 2
D_ 2
notetype 12, 12, 5
A_ 4
notetype 12, 12, 2
D_ 2
D_ 2
notetype 12, 12, 5
A# 4
notetype 12, 12, 2
D_ 2
D_ 2
notetype 12, 12, 5
octave 4
C_ 4
notetype 12, 12, 2
octave 3
D_ 2
D_ 2
notetype 12, 12, 5
octave 4
C# 4
notetype 12, 2, 15
D_ 16
notetype 12, 12, 1
octave 5
D_ 16
endchannel
note D_, 16
sound_ret
Music_IntroBattle_Ch2::
notetype 12, 1, 0
duty_cycle 3
vibrato 8, 2, 5
note_type 12, 12, 2
rest 8
octave 3
note D_, 2
note D_, 2
note_type 12, 12, 5
note A_, 4
note_type 12, 12, 2
note D_, 2
note D_, 2
note_type 12, 12, 5
note A#, 4
note_type 12, 12, 2
note D_, 2
note D_, 2
note_type 12, 12, 5
note A_, 4
note_type 12, 12, 2
note D_, 2
note D_, 2
note_type 12, 11, 7
note C#, 4
note_type 12, 12, 2
note D_, 2
note D_, 2
note_type 12, 12, 5
note A_, 4
note_type 12, 12, 2
octave 3
note D_, 2
note D_, 2
note_type 12, 12, 7
octave 4
D_ 1
rest 1
D_ 1
rest 1
A_ 4
D_ 1
rest 1
D_ 1
rest 1
A_ 4
D_ 1
rest 1
D_ 1
rest 1
A_ 4
D_ 1
rest 1
D_ 1
rest 1
F# 4
D_ 1
rest 1
D_ 1
rest 1
A_ 4
D_ 1
rest 1
D_ 1
rest 1
A# 4
A_ 8
D_ 8
A# 8
D_ 8
D_ 1
rest 1
D_ 1
rest 1
A_ 4
D_ 1
rest 1
D_ 1
rest 1
A_ 4
D_ 1
rest 1
D_ 1
rest 1
A# 4
D_ 1
rest 1
D_ 1
rest 1
A# 4
A_ 16
D_ 1
rest 15
endchannel
note C#, 4
note D_, 8
octave 3
note D_, 8
octave 4
note C_, 8
octave 3
note C_, 8
note_type 12, 12, 2
note D_, 2
note D_, 2
note_type 12, 12, 5
note A_, 4
note_type 12, 12, 2
note D_, 2
note D_, 2
note_type 12, 12, 5
note A#, 4
note_type 12, 12, 2
note D_, 2
note D_, 2
note_type 12, 12, 5
octave 4
note C_, 4
note_type 12, 12, 2
octave 3
note D_, 2
note D_, 2
note_type 12, 12, 5
octave 4
note C#, 4
note_type 12, 2, 15
note D_, 16
note_type 12, 12, 1
octave 5
note D_, 16
sound_ret
Music_IntroBattle_Ch3::
note_type 12, 1, 0
rest 8
octave 4
note D_, 1
rest 1
note D_, 1
rest 1
note A_, 4
note D_, 1
rest 1
note D_, 1
rest 1
note A_, 4
note D_, 1
rest 1
note D_, 1
rest 1
note A_, 4
note D_, 1
rest 1
note D_, 1
rest 1
note F#, 4
note D_, 1
rest 1
note D_, 1
rest 1
note A_, 4
note D_, 1
rest 1
note D_, 1
rest 1
note A#, 4
note A_, 8
note D_, 8
note A#, 8
note D_, 8
note D_, 1
rest 1
note D_, 1
rest 1
note A_, 4
note D_, 1
rest 1
note D_, 1
rest 1
note A_, 4
note D_, 1
rest 1
note D_, 1
rest 1
note A#, 4
note D_, 1
rest 1
note D_, 1
rest 1
note A#, 4
note A_, 16
note D_, 1
rest 15
sound_ret
Music_IntroBattle_Ch4::
dspeed 6
mutedsnare4 1
mutedsnare4 1
@ -326,4 +326,4 @@ Music_IntroBattle_Ch3::
mutedsnare2 2
rest 16
rest 14
endchannel
sound_ret

View file

@ -1,40 +1,40 @@
Music_JigglypuffSong_Ch0::
Music_JigglypuffSong_Ch1::
tempo 144
volume 7, 7
vibrato 8, 2, 4
duty 2
dutycycle 165
toggleperfectpitch
notetype 13, 6, 7
duty_cycle 2
duty_cycle_pattern 165
toggle_perfect_pitch
note_type 13, 6, 7
octave 4
E_ 8
notetype 12, 6, 7
B_ 2
G# 6
F# 8
G# 2
A_ 6
G# 8
F# 4
G# 4
E_ 10
endchannel
note E_, 8
note_type 12, 6, 7
note B_, 2
note G#, 6
note F#, 8
note G#, 2
note A_, 6
note G#, 8
note F#, 4
note G#, 4
note E_, 10
sound_ret
Music_JigglypuffSong_Ch1::
Music_JigglypuffSong_Ch2::
vibrato 5, 1, 5
duty 2
dutycycle 10
notetype 12, 10, 7
duty_cycle 2
duty_cycle_pattern 10
note_type 12, 10, 7
octave 4
E_ 8
B_ 2
G# 6
F# 8
G# 2
A_ 6
G# 8
F# 4
G# 4
E_ 10
endchannel
note E_, 8
note B_, 2
note G#, 6
note F#, 8
note G#, 2
note A_, 6
note G#, 8
note F#, 4
note G#, 4
note E_, 10
sound_ret

View file

@ -1,192 +1,192 @@
Music_Lavender_Ch0::
Music_Lavender_Ch1::
tempo 152
volume 7, 7
duty 1
toggleperfectpitch
duty_cycle 1
toggle_perfect_pitch
vibrato 0, 8, 8
notetype 12, 8, 7
note_type 12, 8, 7
rest 16
rest 16
rest 16
rest 16
notetype 12, 10, 7
note_type 12, 10, 7
Music_Lavender_branch_bb6b::
octave 3
G_ 8
G_ 8
E_ 8
E_ 8
G_ 4
F# 4
E_ 4
B_ 4
C# 8
C# 8
G_ 8
G_ 8
F# 8
F# 8
B_ 4
G_ 4
F# 4
B_ 4
note G_, 8
note G_, 8
note E_, 8
note E_, 8
note G_, 4
note F#, 4
note E_, 4
note B_, 4
note C#, 8
note C#, 8
note G_, 8
note G_, 8
note F#, 8
note F#, 8
note B_, 4
note G_, 4
note F#, 4
note B_, 4
octave 4
C_ 8
C_ 8
note C_, 8
note C_, 8
octave 3
G_ 8
G_ 8
E_ 8
E_ 8
G_ 4
F# 4
E_ 4
B_ 4
C# 8
C# 8
G_ 8
G_ 8
F# 8
F# 8
B_ 4
G_ 4
F# 4
B_ 4
C_ 8
C_ 8
note G_, 8
note G_, 8
note E_, 8
note E_, 8
note G_, 4
note F#, 4
note E_, 4
note B_, 4
note C#, 8
note C#, 8
note G_, 8
note G_, 8
note F#, 8
note F#, 8
note B_, 4
note G_, 4
note F#, 4
note B_, 4
note C_, 8
note C_, 8
rest 16
rest 16
rest 16
rest 16
loopchannel 0, Music_Lavender_branch_bb6b
Music_Lavender_Ch1::
vibrato 0, 3, 4
duty 3
notetype 12, 9, 1
Music_Lavender_branch_bba5::
octave 5
C_ 4
G_ 4
B_ 4
F# 4
loopchannel 0, Music_Lavender_branch_bba5
sound_loop 0, Music_Lavender_branch_bb6b
Music_Lavender_Ch2::
vibrato 4, 1, 1
notetype 12, 3, 5
rest 16
rest 16
rest 16
rest 16
notetype 12, 2, 5
vibrato 0, 3, 4
duty_cycle 3
note_type 12, 9, 1
Music_Lavender_branch_bbb9::
octave 4
E_ 16
D_ 16
C_ 16
E_ 4
C_ 4
octave 3
B_ 4
octave 4
E_ 4
E_ 16
D_ 16
C_ 16
E_ 4
C_ 4
octave 3
B_ 4
octave 4
E_ 4
E_ 16
D_ 16
C_ 16
E_ 4
C_ 4
octave 3
B_ 4
octave 4
E_ 4
notetype 12, 3, 5
octave 6
B_ 4
G_ 4
F# 4
B_ 4
notetype 12, 2, 5
B_ 4
G_ 4
F# 4
B_ 4
octave 7
B_ 4
G_ 4
F# 4
B_ 4
octave 4
E_ 4
G_ 4
F# 4
B_ 4
E_ 16
D_ 16
C_ 16
E_ 4
C_ 4
octave 3
B_ 4
octave 4
E_ 4
E_ 16
D_ 16
C_ 16
E_ 4
C_ 4
octave 3
B_ 4
octave 4
E_ 4
E_ 16
D_ 16
C_ 16
E_ 4
C_ 4
octave 3
B_ 4
octave 4
E_ 4
notetype 12, 2, 5
octave 6
B_ 4
G_ 4
F# 4
B_ 4
octave 7
B_ 4
G_ 4
F# 4
B_ 4
octave 8
B_ 4
G_ 4
F# 4
B_ 4
octave 4
E_ 4
G_ 4
F# 4
B_ 4
loopchannel 0, Music_Lavender_branch_bbb9
Music_Lavender_branch_bba5::
octave 5
note C_, 4
note G_, 4
note B_, 4
note F#, 4
sound_loop 0, Music_Lavender_branch_bba5
Music_Lavender_Ch3::
vibrato 4, 1, 1
note_type 12, 3, 5
rest 16
rest 16
rest 16
rest 16
note_type 12, 2, 5
Music_Lavender_branch_bbb9::
octave 4
note E_, 16
note D_, 16
note C_, 16
note E_, 4
note C_, 4
octave 3
note B_, 4
octave 4
note E_, 4
note E_, 16
note D_, 16
note C_, 16
note E_, 4
note C_, 4
octave 3
note B_, 4
octave 4
note E_, 4
note E_, 16
note D_, 16
note C_, 16
note E_, 4
note C_, 4
octave 3
note B_, 4
octave 4
note E_, 4
note_type 12, 3, 5
octave 6
note B_, 4
note G_, 4
note F#, 4
note B_, 4
note_type 12, 2, 5
note B_, 4
note G_, 4
note F#, 4
note B_, 4
octave 7
note B_, 4
note G_, 4
note F#, 4
note B_, 4
octave 4
note E_, 4
note G_, 4
note F#, 4
note B_, 4
note E_, 16
note D_, 16
note C_, 16
note E_, 4
note C_, 4
octave 3
note B_, 4
octave 4
note E_, 4
note E_, 16
note D_, 16
note C_, 16
note E_, 4
note C_, 4
octave 3
note B_, 4
octave 4
note E_, 4
note E_, 16
note D_, 16
note C_, 16
note E_, 4
note C_, 4
octave 3
note B_, 4
octave 4
note E_, 4
note_type 12, 2, 5
octave 6
note B_, 4
note G_, 4
note F#, 4
note B_, 4
octave 7
note B_, 4
note G_, 4
note F#, 4
note B_, 4
octave 8
note B_, 4
note G_, 4
note F#, 4
note B_, 4
octave 4
note E_, 4
note G_, 4
note F#, 4
note B_, 4
sound_loop 0, Music_Lavender_branch_bbb9
Music_Lavender_Ch4::
dspeed 12
rest 16
rest 16
@ -196,4 +196,4 @@ Music_Lavender_Ch3::
Music_Lavender_branch_bc26::
triangle2 8
triangle2 8
loopchannel 0, Music_Lavender_branch_bc26
sound_loop 0, Music_Lavender_branch_bc26

View file

@ -1,80 +1,80 @@
Music_MeetEvilTrainer_Ch0::
Music_MeetEvilTrainer_Ch1::
tempo 124
volume 7, 7
duty 2
toggleperfectpitch
notetype 12, 11, 1
duty_cycle 2
toggle_perfect_pitch
note_type 12, 11, 1
rest 4
octave 3
D_ 2
C# 2
notetype 12, 4, 15
D_ 4
note D_, 2
note C#, 2
note_type 12, 4, 15
note D_, 4
Music_MeetEvilTrainer_branch_7f6ae::
notetype 12, 10, 1
D_ 4
D_ 4
D_ 4
notetype 12, 7, 0
D_ 4
loopchannel 0, Music_MeetEvilTrainer_branch_7f6ae
Music_MeetEvilTrainer_Ch1::
duty 1
notetype 12, 11, 6
octave 3
B_ 2
A# 2
B_ 8
Music_MeetEvilTrainer_branch_7f6c2::
notetype 12, 12, 2
octave 4
D# 2
D_ 2
C# 2
C_ 2
octave 3
B_ 4
B_ 4
B_ 4
B_ 4
B_ 4
notetype 12, 4, 15
A# 4
notetype 12, 12, 2
G_ 2
G# 2
A_ 2
A# 2
B_ 4
B_ 4
B_ 4
B_ 4
B_ 4
notetype 12, 3, 15
A# 4
notetype 12, 12, 2
loopchannel 0, Music_MeetEvilTrainer_branch_7f6c2
note_type 12, 10, 1
note D_, 4
note D_, 4
note D_, 4
note_type 12, 7, 0
note D_, 4
sound_loop 0, Music_MeetEvilTrainer_branch_7f6ae
Music_MeetEvilTrainer_Ch2::
notetype 12, 1, 0
duty_cycle 1
note_type 12, 11, 6
octave 3
note B_, 2
note A#, 2
note B_, 8
Music_MeetEvilTrainer_branch_7f6c2::
note_type 12, 12, 2
octave 4
note D#, 2
note D_, 2
note C#, 2
note C_, 2
octave 3
note B_, 4
note B_, 4
note B_, 4
note B_, 4
note B_, 4
note_type 12, 4, 15
note A#, 4
note_type 12, 12, 2
note G_, 2
note G#, 2
note A_, 2
note A#, 2
note B_, 4
note B_, 4
note B_, 4
note B_, 4
note B_, 4
note_type 12, 3, 15
note A#, 4
note_type 12, 12, 2
sound_loop 0, Music_MeetEvilTrainer_branch_7f6c2
Music_MeetEvilTrainer_Ch3::
note_type 12, 1, 0
rest 8
octave 4
F# 1
note F#, 1
rest 1
F_ 1
note F_, 1
rest 1
Music_MeetEvilTrainer_branch_7f6ee::
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 3
A# 4
loopchannel 0, Music_MeetEvilTrainer_branch_7f6ee
note A#, 4
sound_loop 0, Music_MeetEvilTrainer_branch_7f6ee

View file

@ -1,118 +1,118 @@
Music_MeetFemaleTrainer_Ch0::
Music_MeetFemaleTrainer_Ch1::
tempo 124
volume 7, 7
duty 1
toggleperfectpitch
notetype 12, 11, 2
duty_cycle 1
toggle_perfect_pitch
note_type 12, 11, 2
octave 3
G# 6
note G#, 6
octave 4
E_ 2
D# 2
C# 2
C_ 2
notetype 12, 8, 1
note E_, 2
note D#, 2
note C#, 2
note C_, 2
note_type 12, 8, 1
Music_MeetFemaleTrainer_branch_7f70c::
octave 3
E_ 4
loopchannel 12, Music_MeetFemaleTrainer_branch_7f70c
E_ 4
note E_, 4
sound_loop 12, Music_MeetFemaleTrainer_branch_7f70c
note E_, 4
octave 2
B_ 4
B_ 4
note B_, 4
note B_, 4
octave 3
E_ 4
loopchannel 0, Music_MeetFemaleTrainer_branch_7f70c
Music_MeetFemaleTrainer_Ch1::
duty 2
notetype 12, 12, 2
octave 3
B_ 2
notetype 12, 12, 7
octave 4
B_ 12
Music_MeetFemaleTrainer_branch_7f726::
notetype 12, 12, 2
octave 3
B_ 4
octave 4
D# 4
E_ 4
D# 4
C# 2
C_ 2
octave 3
B_ 2
A_ 2
G# 2
A_ 2
A# 2
octave 4
C# 2
octave 3
B_ 4
octave 4
C# 4
octave 3
B_ 4
A_ 4
G# 2
F# 2
E_ 2
D# 2
E_ 2
F# 2
G# 2
A_ 2
loopchannel 0, Music_MeetFemaleTrainer_branch_7f726
note E_, 4
sound_loop 0, Music_MeetFemaleTrainer_branch_7f70c
Music_MeetFemaleTrainer_Ch2::
notetype 12, 1, 0
duty_cycle 2
note_type 12, 12, 2
octave 3
note B_, 2
note_type 12, 12, 7
octave 4
note B_, 12
Music_MeetFemaleTrainer_branch_7f726::
note_type 12, 12, 2
octave 3
note B_, 4
octave 4
note D#, 4
note E_, 4
note D#, 4
note C#, 2
note C_, 2
octave 3
note B_, 2
note A_, 2
note G#, 2
note A_, 2
note A#, 2
octave 4
note C#, 2
octave 3
note B_, 4
octave 4
note C#, 4
octave 3
note B_, 4
note A_, 4
note G#, 2
note F#, 2
note E_, 2
note D#, 2
note E_, 2
note F#, 2
note G#, 2
note A_, 2
sound_loop 0, Music_MeetFemaleTrainer_branch_7f726
Music_MeetFemaleTrainer_Ch3::
note_type 12, 1, 0
rest 8
octave 5
C# 1
note C#, 1
rest 1
octave 4
B_ 1
note B_, 1
rest 1
A_ 1
note A_, 1
rest 1
Music_MeetFemaleTrainer_branch_7f756::
callchannel Music_MeetFemaleTrainer_branch_7f770
G# 1
sound_call Music_MeetFemaleTrainer_branch_7f770
note G#, 1
rest 3
E_ 1
note E_, 1
rest 3
G# 1
note G#, 1
rest 3
E_ 1
note E_, 1
rest 3
callchannel Music_MeetFemaleTrainer_branch_7f770
G# 1
sound_call Music_MeetFemaleTrainer_branch_7f770
note G#, 1
rest 3
E_ 1
note E_, 1
rest 3
G# 1
note G#, 1
rest 3
B_ 1
note B_, 1
rest 3
loopchannel 0, Music_MeetFemaleTrainer_branch_7f756
sound_loop 0, Music_MeetFemaleTrainer_branch_7f756
Music_MeetFemaleTrainer_branch_7f770::
G# 1
note G#, 1
rest 3
E_ 1
note E_, 1
rest 3
G# 1
note G#, 1
rest 3
E_ 1
note E_, 1
rest 1
F# 1
note F#, 1
rest 1
endchannel
sound_ret

View file

@ -1,190 +1,190 @@
Music_MeetMaleTrainer_Ch0::
Music_MeetMaleTrainer_Ch1::
tempo 112
volume 7, 7
duty 3
duty_cycle 3
vibrato 20, 3, 3
toggleperfectpitch
notetype 12, 11, 4
toggle_perfect_pitch
note_type 12, 11, 4
octave 3
C# 1
D_ 1
D# 1
E_ 1
F_ 12
note C#, 1
note D_, 1
note D#, 1
note E_, 1
note F_, 12
rest 16
Music_MeetMaleTrainer_branch_7f78f::
octave 3
B_ 4
A_ 4
G# 2
F# 2
E_ 2
D# 2
F# 4
E_ 6
F_ 2
F# 4
G_ 8
note B_, 4
note A_, 4
note G#, 2
note F#, 2
note E_, 2
note D#, 2
note F#, 4
note E_, 6
note F_, 2
note F#, 4
note G_, 8
octave 4
D_ 8
E_ 16
loopchannel 0, Music_MeetMaleTrainer_branch_7f78f
Music_MeetMaleTrainer_Ch1::
duty 3
vibrato 24, 2, 2
notetype 12, 12, 4
octave 4
E_ 1
D# 1
D_ 1
C# 1
octave 3
B_ 12
rest 2
E_ 1
rest 3
E_ 1
rest 9
Music_MeetMaleTrainer_branch_7f7b5::
notetype 12, 12, 4
octave 4
E_ 6
D# 6
C# 4
octave 3
B_ 2
A_ 2
G# 2
F# 2
G# 2
A_ 2
B_ 2
octave 4
C# 2
notetype 12, 12, 7
F_ 16
notetype 12, 12, 5
octave 3
F# 8
octave 4
C# 8
loopchannel 0, Music_MeetMaleTrainer_branch_7f7b5
note D_, 8
note E_, 16
sound_loop 0, Music_MeetMaleTrainer_branch_7f78f
Music_MeetMaleTrainer_Ch2::
notetype 12, 1, 0
duty_cycle 3
vibrato 24, 2, 2
note_type 12, 12, 4
octave 4
note E_, 1
note D#, 1
note D_, 1
note C#, 1
octave 3
note B_, 12
rest 2
note E_, 1
rest 3
note E_, 1
rest 9
Music_MeetMaleTrainer_branch_7f7b5::
note_type 12, 12, 4
octave 4
note E_, 6
note D#, 6
note C#, 4
octave 3
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note G#, 2
note A_, 2
note B_, 2
octave 4
note C#, 2
note_type 12, 12, 7
note F_, 16
note_type 12, 12, 5
octave 3
note F#, 8
octave 4
note C#, 8
sound_loop 0, Music_MeetMaleTrainer_branch_7f7b5
Music_MeetMaleTrainer_Ch3::
note_type 12, 1, 0
rest 6
octave 4
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 3
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 3
B_ 1
note B_, 1
rest 3
E_ 1
note E_, 1
rest 1
F_ 1
note F_, 1
rest 1
F# 1
note F#, 1
rest 1
Music_MeetMaleTrainer_branch_7f7ea::
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
G_ 1
note G_, 1
rest 1
octave 5
D_ 1
note D_, 1
rest 1
octave 4
G_ 1
note G_, 1
rest 1
octave 5
D_ 1
note D_, 1
rest 1
octave 4
G_ 1
note G_, 1
rest 1
octave 5
D_ 1
note D_, 1
rest 1
octave 4
G_ 1
note G_, 1
rest 1
octave 5
D_ 1
note D_, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
D# 1
note D#, 1
rest 1
loopchannel 0, Music_MeetMaleTrainer_branch_7f7ea
sound_loop 0, Music_MeetMaleTrainer_branch_7f7ea

View file

@ -1,423 +1,423 @@
Music_MeetProfOak_Ch0::
Music_MeetProfOak_Ch1::
tempo 112
volume 7, 7
duty 3
toggleperfectpitch
notetype 12, 11, 4
duty_cycle 3
toggle_perfect_pitch
note_type 12, 11, 4
octave 3
F# 1
B_ 1
note F#, 1
note B_, 1
octave 4
D# 1
E_ 1
F# 12
notetype 12, 10, 2
note D#, 1
note E_, 1
note F#, 12
note_type 12, 10, 2
octave 3
E_ 6
B_ 10
E_ 6
B_ 10
E_ 6
D# 4
F# 2
F# 4
E_ 6
D# 4
F# 2
F# 4
E_ 6
B_ 10
E_ 6
B_ 10
E_ 6
D# 4
F# 2
F# 4
E_ 6
D# 4
F# 2
F# 4
note E_, 6
note B_, 10
note E_, 6
note B_, 10
note E_, 6
note D#, 4
note F#, 2
note F#, 4
note E_, 6
note D#, 4
note F#, 2
note F#, 4
note E_, 6
note B_, 10
note E_, 6
note B_, 10
note E_, 6
note D#, 4
note F#, 2
note F#, 4
note E_, 6
note D#, 4
note F#, 2
note F#, 4
Music_MeetProfOak_branch_af85::
F# 6
E_ 4
A_ 2
A_ 4
F# 6
E_ 4
A_ 2
A_ 4
F# 6
E_ 4
G# 2
G# 4
F# 6
E_ 4
G# 2
G# 4
E_ 6
D# 4
F# 2
F# 4
E_ 6
D# 4
F# 2
F# 4
F# 6
E_ 4
G# 2
G# 4
F# 6
E_ 4
G# 2
G# 4
loopchannel 0, Music_MeetProfOak_branch_af85
Music_MeetProfOak_Ch1::
vibrato 8, 1, 1
duty 2
notetype 12, 12, 4
octave 3
B_ 1
octave 4
D# 1
F# 1
A# 1
B_ 12
notetype 12, 11, 2
octave 3
B_ 2
octave 4
C# 2
D# 2
E_ 4
D# 2
C# 4
notetype 12, 6, 4
octave 4
B_ 2
octave 5
C# 2
D# 2
E_ 4
D# 2
C# 4
notetype 12, 11, 2
octave 3
B_ 2
A_ 2
G# 2
A_ 4
B_ 2
B_ 4
notetype 12, 8, 1
octave 4
B_ 2
A_ 2
G# 2
A_ 4
B_ 2
B_ 4
notetype 12, 11, 2
octave 3
B_ 2
octave 4
C# 2
D# 2
E_ 4
D# 2
C# 4
notetype 12, 6, 4
octave 4
B_ 2
octave 5
C# 2
D# 2
E_ 4
D# 2
C# 4
notetype 12, 11, 2
octave 3
B_ 2
A_ 2
G# 2
A_ 4
B_ 2
B_ 4
notetype 12, 8, 1
octave 4
B_ 2
A_ 2
G# 2
A_ 4
B_ 2
B_ 4
notetype 12, 11, 5
Music_MeetProfOak_branch_b005::
octave 4
C# 6
octave 3
A_ 1
octave 4
C# 1
E_ 6
C# 1
E_ 1
F# 4
E_ 4
D# 4
C# 4
octave 3
B_ 6
G# 1
B_ 1
octave 4
E_ 8
notetype 12, 6, 5
octave 4
B_ 6
G# 1
B_ 1
octave 5
E_ 8
notetype 12, 11, 5
octave 3
A_ 6
F# 1
A_ 1
octave 4
D# 8
E_ 4
D# 4
C# 4
C_ 4
octave 3
B_ 6
G# 1
B_ 1
octave 4
E_ 6
octave 3
B_ 1
octave 4
E_ 1
notetype 12, 11, 7
G# 16
loopchannel 0, Music_MeetProfOak_branch_b005
note F#, 6
note E_, 4
note A_, 2
note A_, 4
note F#, 6
note E_, 4
note A_, 2
note A_, 4
note F#, 6
note E_, 4
note G#, 2
note G#, 4
note F#, 6
note E_, 4
note G#, 2
note G#, 4
note E_, 6
note D#, 4
note F#, 2
note F#, 4
note E_, 6
note D#, 4
note F#, 2
note F#, 4
note F#, 6
note E_, 4
note G#, 2
note G#, 4
note F#, 6
note E_, 4
note G#, 2
note G#, 4
sound_loop 0, Music_MeetProfOak_branch_af85
Music_MeetProfOak_Ch2::
notetype 12, 1, 2
vibrato 8, 1, 1
duty_cycle 2
note_type 12, 12, 4
octave 3
note B_, 1
octave 4
note D#, 1
note F#, 1
note A#, 1
note B_, 12
note_type 12, 11, 2
octave 3
note B_, 2
octave 4
note C#, 2
note D#, 2
note E_, 4
note D#, 2
note C#, 4
note_type 12, 6, 4
octave 4
note B_, 2
octave 5
note C#, 2
note D#, 2
note E_, 4
note D#, 2
note C#, 4
note_type 12, 11, 2
octave 3
note B_, 2
note A_, 2
note G#, 2
note A_, 4
note B_, 2
note B_, 4
note_type 12, 8, 1
octave 4
note B_, 2
note A_, 2
note G#, 2
note A_, 4
note B_, 2
note B_, 4
note_type 12, 11, 2
octave 3
note B_, 2
octave 4
note C#, 2
note D#, 2
note E_, 4
note D#, 2
note C#, 4
note_type 12, 6, 4
octave 4
note B_, 2
octave 5
note C#, 2
note D#, 2
note E_, 4
note D#, 2
note C#, 4
note_type 12, 11, 2
octave 3
note B_, 2
note A_, 2
note G#, 2
note A_, 4
note B_, 2
note B_, 4
note_type 12, 8, 1
octave 4
note B_, 2
note A_, 2
note G#, 2
note A_, 4
note B_, 2
note B_, 4
note_type 12, 11, 5
Music_MeetProfOak_branch_b005::
octave 4
note C#, 6
octave 3
note A_, 1
octave 4
note C#, 1
note E_, 6
note C#, 1
note E_, 1
note F#, 4
note E_, 4
note D#, 4
note C#, 4
octave 3
note B_, 6
note G#, 1
note B_, 1
octave 4
note E_, 8
note_type 12, 6, 5
octave 4
note B_, 6
note G#, 1
note B_, 1
octave 5
note E_, 8
note_type 12, 11, 5
octave 3
note A_, 6
note F#, 1
note A_, 1
octave 4
note D#, 8
note E_, 4
note D#, 4
note C#, 4
note C_, 4
octave 3
note B_, 6
note G#, 1
note B_, 1
octave 4
note E_, 6
octave 3
note B_, 1
octave 4
note E_, 1
note_type 12, 11, 7
note G#, 16
sound_loop 0, Music_MeetProfOak_branch_b005
Music_MeetProfOak_Ch3::
note_type 12, 1, 2
rest 10
octave 4
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
B_ 1
note B_, 1
rest 5
octave 5
E_ 4
note E_, 4
rest 6
octave 4
B_ 1
note B_, 1
rest 5
octave 5
E_ 4
note E_, 4
octave 4
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
B_ 1
note B_, 1
rest 1
E_ 1
note E_, 1
rest 1
A_ 1
note A_, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 1
note F#, 1
rest 1
G_ 1
note G_, 1
rest 1
G# 1
note G#, 1
rest 1
Music_MeetProfOak_branch_b0bc::
octave 4
A_ 1
note A_, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
A_ 1
note A_, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
A_ 1
note A_, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
octave 4
A_ 1
note A_, 1
rest 1
octave 5
C# 1
note C#, 1
rest 1
loopchannel 2, Music_MeetProfOak_branch_b0bc
sound_loop 2, Music_MeetProfOak_branch_b0bc
Music_MeetProfOak_branch_b0d8::
octave 4
G# 1
note G#, 1
rest 1
B_ 1
note B_, 1
rest 1
G# 1
note G#, 1
rest 1
B_ 1
note B_, 1
rest 1
G# 1
note G#, 1
rest 1
B_ 1
note B_, 1
rest 1
G# 1
note G#, 1
rest 1
B_ 1
note B_, 1
rest 1
loopchannel 2, Music_MeetProfOak_branch_b0d8
sound_loop 2, Music_MeetProfOak_branch_b0d8
Music_MeetProfOak_branch_b0ed::
F# 1
note F#, 1
rest 1
A_ 1
note A_, 1
rest 1
F# 1
note F#, 1
rest 1
A_ 1
note A_, 1
rest 1
F# 1
note F#, 1
rest 1
A_ 1
note A_, 1
rest 1
F# 1
note F#, 1
rest 1
A_ 1
note A_, 1
rest 1
loopchannel 2, Music_MeetProfOak_branch_b0ed
sound_loop 2, Music_MeetProfOak_branch_b0ed
Music_MeetProfOak_branch_b101::
G# 1
note G#, 1
rest 1
B_ 1
note B_, 1
rest 1
G# 1
note G#, 1
rest 1
B_ 1
note B_, 1
rest 1
G# 1
note G#, 1
rest 1
B_ 1
note B_, 1
rest 1
G# 1
note G#, 1
rest 1
B_ 1
note B_, 1
rest 1
loopchannel 2, Music_MeetProfOak_branch_b101
loopchannel 0, Music_MeetProfOak_branch_b0bc
sound_loop 2, Music_MeetProfOak_branch_b101
sound_loop 0, Music_MeetProfOak_branch_b0bc

View file

@ -1,396 +1,396 @@
Music_MeetRival_branch_b119::
tempo 100
loopchannel 0, Music_MeetRival_branch_b123
sound_loop 0, Music_MeetRival_branch_b123
Music_MeetRival_Ch0::
Music_MeetRival_Ch1::
tempo 112
Music_MeetRival_branch_b123::
volume 7, 7
duty 3
duty_cycle 3
vibrato 6, 3, 4
toggleperfectpitch
notetype 12, 11, 3
toggle_perfect_pitch
note_type 12, 11, 3
octave 4
D_ 1
C# 1
C_ 1
note D_, 1
note C#, 1
note C_, 1
octave 3
B_ 1
A# 2
A_ 1
G# 1
G_ 1
F# 1
F_ 6
D_ 1
note B_, 1
note A#, 2
note A_, 1
note G#, 1
note G_, 1
note F#, 1
note F_, 6
note D_, 1
rest 3
D_ 1
note D_, 1
rest 5
A_ 2
G_ 2
A_ 2
note A_, 2
note G_, 2
note A_, 2
Music_MeetRival_branch_b140::
B_ 4
A# 2
A_ 4
G_ 2
note B_, 4
note A#, 2
note A_, 4
note G_, 2
octave 4
C_ 4
D_ 2
note C_, 4
note D_, 2
rest 4
D_ 4
C# 2
C_ 2
note D_, 4
note C#, 2
note C_, 2
octave 3
B_ 2
note B_, 2
octave 4
C_ 4
E_ 2
D_ 4
C_ 2
note C_, 4
note E_, 2
note D_, 4
note C_, 2
octave 3
B_ 4
note B_, 4
octave 4
C_ 2
note C_, 2
rest 4
G_ 4
G_ 2
F# 2
E_ 2
D_ 2
F# 2
note G_, 4
note G_, 2
note F#, 2
note E_, 2
note D_, 2
note F#, 2
octave 3
A_ 2
note A_, 2
octave 4
D_ 2
F# 2
note D_, 2
note F#, 2
octave 3
A_ 2
note A_, 2
octave 4
D_ 2
note D_, 2
octave 3
D_ 2
note D_, 2
octave 4
D_ 2
note D_, 2
rest 2
octave 3
D_ 2
note D_, 2
octave 4
C_ 4
note C_, 4
octave 3
B_ 2
A# 2
B_ 2
note B_, 2
note A#, 2
note B_, 2
octave 4
C_ 2
F_ 2
note C_, 2
note F_, 2
octave 3
G_ 2
note G_, 2
octave 4
C_ 2
F_ 2
D# 2
C_ 2
note C_, 2
note F_, 2
note D#, 2
note C_, 2
octave 3
A# 2
G_ 2
note A#, 2
note G_, 2
rest 4
A# 4
note A#, 4
octave 4
C_ 2
note C_, 2
octave 3
A# 2
note A#, 2
octave 4
C_ 2
notetype 12, 11, 7
note C_, 2
note_type 12, 11, 7
octave 3
G_ 4
D_ 2
F_ 6
F# 4
D_ 2
note G_, 4
note D_, 2
note F_, 6
note F#, 4
note D_, 2
rest 4
D_ 4
notetype 12, 11, 3
A_ 2
G_ 2
A_ 2
loopchannel 0, Music_MeetRival_branch_b140
note D_, 4
note_type 12, 11, 3
note A_, 2
note G_, 2
note A_, 2
sound_loop 0, Music_MeetRival_branch_b140
Music_MeetRival_branch_b19b::
tempo 100
loopchannel 0, Music_MeetRival_branch_b1a5
sound_loop 0, Music_MeetRival_branch_b1a5
Music_MeetRival_branch_b1a2::
tempo 112
Music_MeetRival_branch_b1a5::
volume 7, 7
duty 3
duty_cycle 3
vibrato 6, 3, 4
toggleperfectpitch
notetype 12, 11, 3
toggle_perfect_pitch
note_type 12, 11, 3
octave 3
D_ 1
note D_, 1
rest 3
D_ 1
note D_, 1
rest 5
A_ 2
G_ 2
A_ 2
loopchannel 0, Music_MeetRival_branch_b140
Music_MeetRival_Ch1::
duty 3
vibrato 10, 2, 6
notetype 12, 12, 7
octave 4
B_ 1
A# 1
A_ 1
G# 1
G_ 2
F# 1
F_ 1
E_ 1
D# 1
D_ 6
octave 3
G_ 1
rest 3
G_ 1
rest 3
D_ 1
rest 1
octave 4
D_ 2
F_ 2
F# 2
Music_MeetRival_branch_b1d8::
notetype 12, 12, 7
G_ 4
D_ 2
F_ 6
F# 4
G_ 2
rest 4
G_ 4
G_ 2
A# 2
B_ 2
octave 5
C_ 4
octave 4
G_ 2
A# 6
B_ 4
octave 5
C_ 2
rest 4
C_ 4
C_ 2
octave 4
B_ 2
octave 5
C_ 2
notetype 12, 11, 0
D_ 16
notetype 12, 11, 5
D_ 6
notetype 12, 12, 7
F_ 4
D_ 2
C_ 2
D_ 2
notetype 12, 11, 0
C_ 8
notetype 12, 12, 7
C_ 8
octave 4
C_ 2
rest 4
A# 4
G_ 2
F_ 2
notetype 12, 11, 0
G_ 16
notetype 12, 11, 3
G_ 2
octave 3
G_ 2
rest 4
G_ 4
octave 4
D_ 2
F_ 2
F# 2
loopchannel 0, Music_MeetRival_branch_b1d8
Music_MeetRival_branch_b21d::
duty 3
vibrato 10, 2, 6
notetype 12, 12, 7
octave 3
G_ 1
rest 3
G_ 1
rest 3
D_ 1
rest 1
octave 4
D_ 2
F_ 2
F# 2
loopchannel 0, Music_MeetRival_branch_b1d8
note A_, 2
note G_, 2
note A_, 2
sound_loop 0, Music_MeetRival_branch_b140
Music_MeetRival_Ch2::
notetype 12, 1, 4
duty_cycle 3
vibrato 10, 2, 6
note_type 12, 12, 7
octave 4
note B_, 1
note A#, 1
note A_, 1
note G#, 1
note G_, 2
note F#, 1
note F_, 1
note E_, 1
note D#, 1
note D_, 6
octave 3
note G_, 1
rest 3
note G_, 1
rest 3
note D_, 1
rest 1
octave 4
note D_, 2
note F_, 2
note F#, 2
Music_MeetRival_branch_b1d8::
note_type 12, 12, 7
note G_, 4
note D_, 2
note F_, 6
note F#, 4
note G_, 2
rest 4
note G_, 4
note G_, 2
note A#, 2
note B_, 2
octave 5
D_ 2
note C_, 4
octave 4
note G_, 2
note A#, 6
note B_, 4
octave 5
note C_, 2
rest 4
note C_, 4
note C_, 2
octave 4
note B_, 2
octave 5
note C_, 2
note_type 12, 11, 0
note D_, 16
note_type 12, 11, 5
note D_, 6
note_type 12, 12, 7
note F_, 4
note D_, 2
note C_, 2
note D_, 2
note_type 12, 11, 0
note C_, 8
note_type 12, 12, 7
note C_, 8
octave 4
note C_, 2
rest 4
note A#, 4
note G_, 2
note F_, 2
note_type 12, 11, 0
note G_, 16
note_type 12, 11, 3
note G_, 2
octave 3
note G_, 2
rest 4
note G_, 4
octave 4
note D_, 2
note F_, 2
note F#, 2
sound_loop 0, Music_MeetRival_branch_b1d8
Music_MeetRival_branch_b21d::
duty_cycle 3
vibrato 10, 2, 6
note_type 12, 12, 7
octave 3
note G_, 1
rest 3
note G_, 1
rest 3
note D_, 1
rest 1
octave 4
note D_, 2
note F_, 2
note F#, 2
sound_loop 0, Music_MeetRival_branch_b1d8
Music_MeetRival_Ch3::
note_type 12, 1, 4
octave 5
note D_, 2
rest 2
C# 2
note C#, 2
rest 2
C_ 2
note C_, 2
rest 2
octave 4
B_ 2
note B_, 2
rest 2
G_ 1
note G_, 1
rest 3
G_ 1
note G_, 1
rest 3
G_ 1
note G_, 1
rest 1
G_ 1
note G_, 1
rest 1
G_ 1
note G_, 1
rest 1
G_ 1
note G_, 1
rest 1
Music_MeetRival_branch_b24b::
G_ 2
note G_, 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
note G_, 2
rest 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
note G_, 2
rest 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
note G_, 2
rest 4
octave 5
D_ 4
note D_, 4
octave 4
G_ 2
A# 2
B_ 2
G_ 2
note G_, 2
note A#, 2
note B_, 2
note G_, 2
octave 5
C_ 2
note C_, 2
octave 4
G_ 2
note G_, 2
rest 2
octave 5
C_ 2
note C_, 2
octave 4
G_ 2
note G_, 2
rest 2
B_ 2
note B_, 2
octave 5
C_ 2
note C_, 2
rest 4
C_ 4
C_ 2
note C_, 4
note C_, 2
octave 4
B_ 2
A_ 2
F# 2
A_ 2
note B_, 2
note A_, 2
note F#, 2
note A_, 2
rest 2
F# 2
A_ 2
F# 2
note F#, 2
note A_, 2
note F#, 2
rest 2
A_ 2
F# 2
A_ 2
note A_, 2
note F#, 2
note A_, 2
rest 2
F# 2
A_ 2
F# 2
note F#, 2
note A_, 2
note F#, 2
octave 5
D_ 2
note D_, 2
octave 4
A_ 2
E_ 2
note A_, 2
note E_, 2
octave 5
C_ 2
note C_, 2
rest 2
octave 4
E_ 2
note E_, 2
octave 5
C_ 2
note C_, 2
octave 4
E_ 2
F_ 2
G_ 2
E_ 2
note E_, 2
note F_, 2
note G_, 2
note E_, 2
rest 4
E_ 2
note E_, 2
octave 5
C_ 2
note C_, 2
octave 4
B_ 2
A# 2
A_ 2
G_ 2
A# 2
note B_, 2
note A#, 2
note A_, 2
note G_, 2
note A#, 2
rest 2
G_ 2
A# 2
G_ 2
note G_, 2
note A#, 2
note G_, 2
rest 2
A# 2
G_ 2
note A#, 2
note G_, 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
note G_, 2
rest 2
octave 5
D_ 2
note D_, 2
octave 4
G_ 2
note G_, 2
rest 2
octave 5
D_ 2
loopchannel 0, Music_MeetRival_branch_b24b
note D_, 2
sound_loop 0, Music_MeetRival_branch_b24b
Music_MeetRival_branch_b2b5::
notetype 12, 1, 4
note_type 12, 1, 4
octave 4
G_ 1
note G_, 1
rest 3
G_ 1
note G_, 1
rest 3
G_ 1
note G_, 1
rest 1
G_ 1
note G_, 1
rest 1
G_ 1
note G_, 1
rest 1
G_ 1
note G_, 1
rest 1
loopchannel 0, Music_MeetRival_branch_b24b
sound_loop 0, Music_MeetRival_branch_b24b

View file

@ -1,267 +1,267 @@
Music_MuseumGuy_Ch0::
Music_MuseumGuy_Ch1::
tempo 128
volume 7, 7
duty 2
toggleperfectpitch
notetype 12, 11, 1
duty_cycle 2
toggle_perfect_pitch
note_type 12, 11, 1
octave 3
B_ 2
A_ 2
G# 2
A_ 2
G# 2
F# 2
E_ 2
D# 2
note B_, 2
note A_, 2
note G#, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note D#, 2
octave 2
B_ 4
B_ 1
note B_, 4
note B_, 1
octave 3
D# 1
E_ 1
G# 1
B_ 10
callchannel Music_MuseumGuy_branch_ade7
callchannel Music_MuseumGuy_branch_adec
callchannel Music_MuseumGuy_branch_ade7
E_ 4
E_ 4
E_ 2
E_ 6
note D#, 1
note E_, 1
note G#, 1
note B_, 10
sound_call Music_MuseumGuy_branch_ade7
sound_call Music_MuseumGuy_branch_adec
sound_call Music_MuseumGuy_branch_ade7
note E_, 4
note E_, 4
note E_, 2
note E_, 6
Music_MuseumGuy_branch_add6::
callchannel Music_MuseumGuy_branch_ade7
callchannel Music_MuseumGuy_branch_adec
callchannel Music_MuseumGuy_branch_ade7
E_ 4
E_ 4
E_ 2
E_ 6
loopchannel 0, Music_MuseumGuy_branch_add6
sound_call Music_MuseumGuy_branch_ade7
sound_call Music_MuseumGuy_branch_adec
sound_call Music_MuseumGuy_branch_ade7
note E_, 4
note E_, 4
note E_, 2
note E_, 6
sound_loop 0, Music_MuseumGuy_branch_add6
Music_MuseumGuy_branch_ade7::
E_ 2
E_ 6
F# 2
F# 6
endchannel
note E_, 2
note E_, 6
note F#, 2
note F#, 6
sound_ret
Music_MuseumGuy_branch_adec::
E_ 2
E_ 6
D_ 2
D_ 6
endchannel
Music_MuseumGuy_Ch1::
duty 2
notetype 12, 12, 1
octave 4
E_ 2
D_ 2
C# 2
D_ 2
C# 2
octave 3
B_ 2
A_ 2
G# 2
E_ 4
E_ 1
G# 1
B_ 1
octave 4
D# 1
E_ 8
octave 3
A_ 2
octave 4
C# 2
E_ 4
D_ 2
F# 2
A_ 4
octave 3
A_ 2
octave 4
C# 2
E_ 4
D_ 2
C# 2
octave 3
B_ 4
A_ 2
octave 4
C# 2
E_ 4
D_ 2
F# 2
A_ 2
A_ 2
G# 2
E_ 2
F# 2
G# 2
A_ 2
A_ 2
A_ 4
Music_MuseumGuy_branch_ae26::
octave 3
A_ 2
octave 4
C# 2
E_ 3
notetype 12, 8, 1
E_ 1
notetype 12, 12, 1
D_ 2
F# 2
A_ 3
notetype 12, 9, 1
A_ 1
notetype 12, 12, 1
octave 3
A_ 2
octave 4
C# 2
E_ 4
D_ 1
C# 1
C_ 1
octave 3
B_ 1
B_ 3
notetype 12, 10, 1
G# 1
notetype 12, 12, 1
A_ 2
octave 4
C# 2
E_ 3
notetype 12, 9, 1
E_ 1
notetype 12, 12, 1
D_ 2
F# 2
A_ 3
notetype 12, 8, 1
A_ 1
notetype 12, 12, 1
G# 2
E_ 1
notetype 12, 8, 1
E_ 1
notetype 12, 12, 1
F# 2
notetype 12, 8, 1
F# 1
notetype 12, 12, 1
G# 1
A_ 2
A_ 2
A_ 4
loopchannel 0, Music_MuseumGuy_branch_ae26
note E_, 2
note E_, 6
note D_, 2
note D_, 6
sound_ret
Music_MuseumGuy_Ch2::
notetype 12, 1, 0
rest 16
duty_cycle 2
note_type 12, 12, 1
octave 4
E_ 1
rest 3
E_ 1
rest 3
E_ 1
rest 9
callchannel Music_MuseumGuy_branch_aeb8
A_ 1
rest 1
A_ 1
rest 5
G# 1
rest 1
G# 1
rest 5
callchannel Music_MuseumGuy_branch_aeb8
B_ 1
rest 3
G# 1
rest 3
A_ 1
rest 1
A_ 1
rest 3
note E_, 2
note D_, 2
note C#, 2
note D_, 2
note C#, 2
octave 3
note B_, 2
note A_, 2
note G#, 2
note E_, 4
note E_, 1
note G#, 1
note B_, 1
octave 4
note D#, 1
note E_, 8
octave 3
note A_, 2
octave 4
note C#, 2
note E_, 4
note D_, 2
note F#, 2
note A_, 4
octave 3
note A_, 2
octave 4
note C#, 2
note E_, 4
note D_, 2
note C#, 2
octave 3
note B_, 4
note A_, 2
octave 4
note C#, 2
note E_, 4
note D_, 2
note F#, 2
note A_, 2
note A_, 2
note G#, 2
note E_, 2
note F#, 2
note G#, 2
note A_, 2
note A_, 2
note A_, 4
Music_MuseumGuy_branch_ae8e::
callchannel Music_MuseumGuy_branch_aec1
rest 3
octave 6
E_ 1
rest 1
octave 5
A_ 1
rest 1
A_ 1
rest 3
B_ 1
rest 1
G# 1
rest 1
G# 1
rest 3
callchannel Music_MuseumGuy_branch_aec1
rest 1
octave 6
E_ 1
rest 1
D_ 1
rest 1
octave 5
B_ 1
rest 1
A_ 1
rest 1
G# 1
rest 3
A_ 1
rest 1
A_ 1
rest 3
loopchannel 0, Music_MuseumGuy_branch_ae8e
Music_MuseumGuy_branch_aeb8::
A_ 1
rest 1
A_ 1
rest 5
A_ 1
rest 1
A_ 1
rest 5
endchannel
Music_MuseumGuy_branch_aec1::
octave 6
C# 1
rest 1
octave 5
A_ 1
rest 1
A_ 1
rest 3
octave 6
F# 1
rest 1
octave 5
A_ 1
rest 1
A_ 1
endchannel
Music_MuseumGuy_branch_ae26::
octave 3
note A_, 2
octave 4
note C#, 2
note E_, 3
note_type 12, 8, 1
note E_, 1
note_type 12, 12, 1
note D_, 2
note F#, 2
note A_, 3
note_type 12, 9, 1
note A_, 1
note_type 12, 12, 1
octave 3
note A_, 2
octave 4
note C#, 2
note E_, 4
note D_, 1
note C#, 1
note C_, 1
octave 3
note B_, 1
note B_, 3
note_type 12, 10, 1
note G#, 1
note_type 12, 12, 1
note A_, 2
octave 4
note C#, 2
note E_, 3
note_type 12, 9, 1
note E_, 1
note_type 12, 12, 1
note D_, 2
note F#, 2
note A_, 3
note_type 12, 8, 1
note A_, 1
note_type 12, 12, 1
note G#, 2
note E_, 1
note_type 12, 8, 1
note E_, 1
note_type 12, 12, 1
note F#, 2
note_type 12, 8, 1
note F#, 1
note_type 12, 12, 1
note G#, 1
note A_, 2
note A_, 2
note A_, 4
sound_loop 0, Music_MuseumGuy_branch_ae26
Music_MuseumGuy_Ch3::
note_type 12, 1, 0
rest 16
octave 4
note E_, 1
rest 3
note E_, 1
rest 3
note E_, 1
rest 9
sound_call Music_MuseumGuy_branch_aeb8
note A_, 1
rest 1
note A_, 1
rest 5
note G#, 1
rest 1
note G#, 1
rest 5
sound_call Music_MuseumGuy_branch_aeb8
note B_, 1
rest 3
note G#, 1
rest 3
note A_, 1
rest 1
note A_, 1
rest 3
Music_MuseumGuy_branch_ae8e::
sound_call Music_MuseumGuy_branch_aec1
rest 3
octave 6
note E_, 1
rest 1
octave 5
note A_, 1
rest 1
note A_, 1
rest 3
note B_, 1
rest 1
note G#, 1
rest 1
note G#, 1
rest 3
sound_call Music_MuseumGuy_branch_aec1
rest 1
octave 6
note E_, 1
rest 1
note D_, 1
rest 1
octave 5
note B_, 1
rest 1
note A_, 1
rest 1
note G#, 1
rest 3
note A_, 1
rest 1
note A_, 1
rest 3
sound_loop 0, Music_MuseumGuy_branch_ae8e
Music_MuseumGuy_branch_aeb8::
note A_, 1
rest 1
note A_, 1
rest 5
note A_, 1
rest 1
note A_, 1
rest 5
sound_ret
Music_MuseumGuy_branch_aec1::
octave 6
note C#, 1
rest 1
octave 5
note A_, 1
rest 1
note A_, 1
rest 3
octave 6
note F#, 1
rest 1
octave 5
note A_, 1
rest 1
note A_, 1
sound_ret
Music_MuseumGuy_Ch4::
dspeed 12
rest 16
rest 16
@ -334,4 +334,4 @@ Music_MuseumGuy_branch_aee1::
mutedsnare4 1
mutedsnare3 1
mutedsnare3 1
loopchannel 0, Music_MuseumGuy_branch_aee1
sound_loop 0, Music_MuseumGuy_branch_aee1

View file

@ -1,393 +1,393 @@
Music_OaksLab_Ch0::
Music_OaksLab_Ch1::
tempo 140
volume 7, 7
duty 3
duty_cycle 3
vibrato 16, 1, 2
toggleperfectpitch
notetype 12, 11, 3
toggle_perfect_pitch
note_type 12, 11, 3
octave 2
B_ 1
note B_, 1
octave 3
C# 1
D_ 1
E_ 1
F# 1
G# 1
A_ 1
B_ 1
note C#, 1
note D_, 1
note E_, 1
note F#, 1
note G#, 1
note A_, 1
note B_, 1
Music_OaksLab_branch_7eed0::
octave 4
C# 4
note C#, 4
octave 3
B_ 2
note B_, 2
octave 4
C# 2
note C#, 2
octave 3
A_ 4
G# 2
A_ 2
B_ 1
note A_, 4
note G#, 2
note A_, 2
note B_, 1
rest 3
A_ 6
G# 1
B_ 1
note A_, 6
note G#, 1
note B_, 1
octave 4
C# 4
note C#, 4
octave 3
A_ 4
G# 2
A_ 2
F# 4
E_ 2
F# 2
G# 1
note A_, 4
note G#, 2
note A_, 2
note F#, 4
note E_, 2
note F#, 2
note G#, 1
rest 3
F# 8
E_ 4
A_ 6
E_ 1
A_ 1
note F#, 8
note E_, 4
note A_, 6
note E_, 1
note A_, 1
octave 4
D_ 8
C# 6
note D_, 8
note C#, 6
octave 3
A_ 1
note A_, 1
octave 4
C# 1
E_ 8
D_ 4
C# 4
note C#, 1
note E_, 8
note D_, 4
note C#, 4
octave 3
B_ 4
A_ 4
G# 1
note B_, 4
note A_, 4
note G#, 1
rest 3
E_ 4
F# 4
G# 4
loopchannel 0, Music_OaksLab_branch_7eed0
Music_OaksLab_Ch1::
duty 3
vibrato 10, 2, 5
notetype 12, 12, 4
octave 3
G# 1
A_ 1
B_ 1
octave 4
C# 1
D_ 1
E_ 1
F# 1
G# 1
Music_OaksLab_branch_7ef16::
A_ 6
G# 1
F# 1
E_ 6
D# 1
E_ 1
F# 1
rest 3
E_ 8
E_ 4
F# 6
E_ 1
D_ 1
C# 6
octave 3
B_ 1
octave 4
C# 1
D_ 1
rest 3
C# 8
C# 4
D_ 6
octave 3
A_ 1
octave 4
D_ 1
F# 8
E_ 6
C# 1
E_ 1
A_ 8
G# 4
A_ 2
G# 2
F# 4
G# 2
F# 2
E_ 1
rest 1
octave 3
G# 1
rest 1
A_ 1
rest 1
B_ 1
rest 1
octave 4
C# 1
rest 1
D_ 1
rest 1
E_ 1
rest 1
F# 1
rest 1
loopchannel 0, Music_OaksLab_branch_7ef16
note E_, 4
note F#, 4
note G#, 4
sound_loop 0, Music_OaksLab_branch_7eed0
Music_OaksLab_Ch2::
notetype 12, 1, 1
duty_cycle 3
vibrato 10, 2, 5
note_type 12, 12, 4
octave 3
note G#, 1
note A_, 1
note B_, 1
octave 4
note C#, 1
note D_, 1
note E_, 1
note F#, 1
note G#, 1
Music_OaksLab_branch_7ef16::
note A_, 6
note G#, 1
note F#, 1
note E_, 6
note D#, 1
note E_, 1
note F#, 1
rest 3
note E_, 8
note E_, 4
note F#, 6
note E_, 1
note D_, 1
note C#, 6
octave 3
note B_, 1
octave 4
note C#, 1
note D_, 1
rest 3
note C#, 8
note C#, 4
note D_, 6
octave 3
note A_, 1
octave 4
note D_, 1
note F#, 8
note E_, 6
note C#, 1
note E_, 1
note A_, 8
note G#, 4
note A_, 2
note G#, 2
note F#, 4
note G#, 2
note F#, 2
note E_, 1
rest 1
octave 3
note G#, 1
rest 1
note A_, 1
rest 1
note B_, 1
rest 1
octave 4
note C#, 1
rest 1
note D_, 1
rest 1
note E_, 1
rest 1
note F#, 1
rest 1
sound_loop 0, Music_OaksLab_branch_7ef16
Music_OaksLab_Ch3::
note_type 12, 1, 1
rest 2
octave 4
G# 1
note G#, 1
rest 1
F# 1
note F#, 1
rest 1
E_ 1
note E_, 1
rest 1
Music_OaksLab_branch_7ef5c::
C# 1
note C#, 1
rest 1
A_ 1
note A_, 1
rest 3
A_ 1
note A_, 1
rest 3
A_ 1
note A_, 1
rest 1
E_ 1
note E_, 1
rest 1
A_ 1
note A_, 1
rest 1
C# 1
note C#, 1
rest 1
A_ 1
note A_, 1
rest 3
A_ 1
note A_, 1
rest 3
A_ 1
note A_, 1
rest 1
E_ 1
note E_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 3
A_ 1
note A_, 1
rest 1
octave 4
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 1
C# 1
note C#, 1
rest 1
F# 1
note F#, 1
rest 1
octave 3
A_ 1
note A_, 1
rest 1
octave 4
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 1
C# 1
note C#, 1
rest 1
F# 1
note F#, 1
rest 1
D_ 1
note D_, 1
rest 1
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 1
D_ 1
note D_, 1
rest 1
F# 1
note F#, 1
rest 1
E_ 1
note E_, 1
rest 1
A_ 1
note A_, 1
rest 3
A_ 1
note A_, 1
rest 3
A_ 1
note A_, 1
rest 1
E_ 1
note E_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 3
B_ 1
note B_, 1
rest 1
octave 4
G# 1
note G#, 1
rest 3
G# 1
note G#, 1
rest 1
D_ 1
note D_, 1
rest 1
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 1
E_ 1
note E_, 1
rest 5
G# 1
note G#, 1
rest 3
F# 1
note F#, 1
rest 3
E_ 1
note E_, 1
rest 1
C# 1
note C#, 1
rest 1
A_ 1
note A_, 1
rest 1
C# 1
note C#, 1
rest 1
A_ 1
note A_, 1
rest 1
C# 1
note C#, 1
rest 1
A_ 1
note A_, 1
rest 1
E_ 1
note E_, 1
rest 1
A_ 1
note A_, 1
rest 1
C# 1
note C#, 1
rest 1
A_ 1
note A_, 1
rest 1
C# 1
note C#, 1
rest 1
A_ 1
note A_, 1
rest 1
C# 1
note C#, 1
rest 1
A_ 1
note A_, 1
rest 1
C# 1
note C#, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 3
A_ 1
note A_, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
octave 3
A_ 1
note A_, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
octave 3
A_ 1
note A_, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
C# 1
note C#, 1
rest 1
F# 1
note F#, 1
rest 1
octave 3
A_ 1
note A_, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
octave 3
A_ 1
note A_, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
octave 3
A_ 1
note A_, 1
rest 1
octave 4
F# 1
note F#, 1
rest 1
C# 1
note C#, 1
rest 1
F# 1
note F#, 1
rest 1
D_ 1
note D_, 1
rest 1
F# 1
note F#, 1
rest 1
D_ 1
note D_, 1
rest 1
F# 1
note F#, 1
rest 1
D_ 1
note D_, 1
rest 1
F# 1
note F#, 1
rest 1
D_ 1
note D_, 1
rest 1
F# 1
note F#, 1
rest 1
E_ 1
note E_, 1
rest 1
A_ 1
note A_, 1
rest 1
E_ 1
note E_, 1
rest 1
A_ 1
note A_, 1
rest 1
E_ 1
note E_, 1
rest 1
A_ 1
note A_, 1
rest 1
E_ 1
note E_, 1
rest 1
A_ 1
note A_, 1
rest 1
octave 3
B_ 1
note B_, 1
rest 1
octave 4
G# 1
note G#, 1
rest 1
octave 3
B_ 1
note B_, 1
rest 1
octave 4
G# 1
note G#, 1
rest 1
D_ 1
note D_, 1
rest 1
F# 1
note F#, 1
rest 1
D_ 1
note D_, 1
rest 1
F# 1
note F#, 1
rest 1
E_ 1
note E_, 1
rest 3
G# 1
note G#, 1
rest 3
F# 1
note F#, 1
rest 3
E_ 1
note E_, 1
rest 3
loopchannel 0, Music_OaksLab_branch_7ef5c
sound_loop 0, Music_OaksLab_branch_7ef5c

View file

@ -1,314 +1,314 @@
Music_PalletTown_Ch0::
Music_PalletTown_Ch1::
tempo 160
volume 7, 7
duty 2
notetype 12, 12, 3
duty_cycle 2
note_type 12, 12, 3
Music_PalletTown_branch_a7ce::
octave 3
B_ 4
note B_, 4
octave 4
C_ 2
D_ 4
G_ 2
D_ 2
C_ 2
note C_, 2
note D_, 4
note G_, 2
note D_, 2
note C_, 2
octave 3
B_ 4
G_ 2
note B_, 4
note G_, 2
octave 4
D_ 4
D_ 2
C_ 2
note D_, 4
note D_, 2
note C_, 2
octave 3
B_ 2
note B_, 2
rest 2
B_ 2
note B_, 2
octave 4
C_ 2
note C_, 2
octave 3
B_ 2
note B_, 2
octave 4
C_ 8
note C_, 8
rest 2
octave 3
B_ 2
note B_, 2
octave 4
C_ 2
note C_, 2
octave 3
A_ 2
B_ 2
G_ 2
A_ 2
F# 2
B_ 4
note A_, 2
note B_, 2
note G_, 2
note A_, 2
note F#, 2
note B_, 4
octave 4
C_ 2
D_ 4
G_ 2
D_ 2
C_ 2
note C_, 2
note D_, 4
note G_, 2
note D_, 2
note C_, 2
octave 3
B_ 4
G_ 2
note B_, 4
note G_, 2
octave 4
D_ 4
D_ 2
G_ 2
F# 2
E_ 4
D_ 2
C_ 4
note D_, 4
note D_, 2
note G_, 2
note F#, 2
note E_, 4
note D_, 2
note C_, 4
octave 3
A_ 2
B_ 2
note A_, 2
note B_, 2
octave 4
C_ 2
D_ 2
C_ 2
note C_, 2
note D_, 2
note C_, 2
octave 3
B_ 2
A_ 2
G_ 4
F# 4
note B_, 2
note A_, 2
note G_, 4
note F#, 4
octave 4
C_ 2
note C_, 2
octave 3
G_ 2
E_ 2
G_ 2
note G_, 2
note E_, 2
note G_, 2
octave 4
D_ 2
note D_, 2
octave 3
A_ 2
F# 2
A_ 2
notetype 12, 11, 3
B_ 2
G_ 2
D_ 2
G_ 2
B_ 2
G_ 2
D_ 2
G_ 2
note A_, 2
note F#, 2
note A_, 2
note_type 12, 11, 3
note B_, 2
note G_, 2
note D_, 2
note G_, 2
note B_, 2
note G_, 2
note D_, 2
note G_, 2
octave 4
C_ 2
note C_, 2
octave 3
G_ 2
E_ 2
G_ 2
note G_, 2
note E_, 2
note G_, 2
octave 4
D_ 2
note D_, 2
octave 3
A_ 2
F# 2
A_ 2
B_ 2
G_ 2
D_ 2
G_ 2
B_ 2
G_ 2
D_ 2
G_ 2
A_ 2
E_ 2
C_ 2
E_ 2
A_ 2
E_ 2
C_ 2
E_ 2
A_ 2
E_ 2
C_ 2
E_ 2
A_ 2
E_ 2
C_ 2
E_ 2
F# 2
D_ 2
C_ 2
D_ 2
G_ 2
E_ 2
C_ 2
E_ 2
G_ 2
E_ 2
C_ 2
E_ 2
F# 2
D_ 2
C_ 2
D_ 2
loopchannel 0, Music_PalletTown_branch_a7ce
endchannel
Music_PalletTown_Ch1::
duty 2
Music_PalletTown_branch_a861::
notetype 12, 13, 3
octave 5
D_ 2
notetype 12, 10, 3
C_ 2
notetype 12, 13, 3
octave 4
B_ 2
notetype 12, 11, 3
A_ 2
notetype 12, 13, 3
octave 5
G_ 2
notetype 12, 11, 3
E_ 2
notetype 12, 13, 3
F# 2
E_ 2
D_ 6
octave 4
B_ 2
G_ 2
G_ 2
A_ 2
B_ 2
octave 5
C_ 10
octave 4
F# 2
G_ 2
A_ 2
B_ 6
octave 5
C_ 1
octave 4
B_ 1
A_ 8
octave 5
D_ 2
notetype 12, 10, 3
C_ 2
notetype 12, 13, 3
octave 4
B_ 2
notetype 12, 11, 3
octave 5
D_ 2
notetype 12, 13, 3
G_ 2
notetype 12, 10, 3
F# 2
notetype 12, 11, 3
F# 2
notetype 12, 13, 3
G_ 2
E_ 6
D_ 2
D_ 8
C_ 2
octave 4
B_ 2
A_ 2
G_ 2
octave 5
D_ 2
C_ 2
octave 4
B_ 2
A_ 2
G_ 10
G_ 2
A_ 2
B_ 2
octave 5
C_ 8
D_ 6
C_ 2
octave 4
B_ 8
rest 2
G_ 2
A_ 2
B_ 2
octave 5
C_ 4
C_ 4
D_ 6
C_ 1
D_ 1
octave 4
B_ 8
rest 2
B_ 2
A_ 2
G_ 2
A_ 8
E_ 4
B_ 4
A_ 8
G_ 4
E_ 4
F# 8
G_ 4
B_ 4
B_ 8
A_ 8
loopchannel 0, Music_PalletTown_branch_a861
endchannel
note A_, 2
note F#, 2
note A_, 2
note B_, 2
note G_, 2
note D_, 2
note G_, 2
note B_, 2
note G_, 2
note D_, 2
note G_, 2
note A_, 2
note E_, 2
note C_, 2
note E_, 2
note A_, 2
note E_, 2
note C_, 2
note E_, 2
note A_, 2
note E_, 2
note C_, 2
note E_, 2
note A_, 2
note E_, 2
note C_, 2
note E_, 2
note F#, 2
note D_, 2
note C_, 2
note D_, 2
note G_, 2
note E_, 2
note C_, 2
note E_, 2
note G_, 2
note E_, 2
note C_, 2
note E_, 2
note F#, 2
note D_, 2
note C_, 2
note D_, 2
sound_loop 0, Music_PalletTown_branch_a7ce
sound_ret
Music_PalletTown_Ch2::
duty_cycle 2
Music_PalletTown_branch_a861::
note_type 12, 13, 3
octave 5
note D_, 2
note_type 12, 10, 3
note C_, 2
note_type 12, 13, 3
octave 4
note B_, 2
note_type 12, 11, 3
note A_, 2
note_type 12, 13, 3
octave 5
note G_, 2
note_type 12, 11, 3
note E_, 2
note_type 12, 13, 3
note F#, 2
note E_, 2
note D_, 6
octave 4
note B_, 2
note G_, 2
note G_, 2
note A_, 2
note B_, 2
octave 5
note C_, 10
octave 4
note F#, 2
note G_, 2
note A_, 2
note B_, 6
octave 5
note C_, 1
octave 4
note B_, 1
note A_, 8
octave 5
note D_, 2
note_type 12, 10, 3
note C_, 2
note_type 12, 13, 3
octave 4
note B_, 2
note_type 12, 11, 3
octave 5
note D_, 2
note_type 12, 13, 3
note G_, 2
note_type 12, 10, 3
note F#, 2
note_type 12, 11, 3
note F#, 2
note_type 12, 13, 3
note G_, 2
note E_, 6
note D_, 2
note D_, 8
note C_, 2
octave 4
note B_, 2
note A_, 2
note G_, 2
octave 5
note D_, 2
note C_, 2
octave 4
note B_, 2
note A_, 2
note G_, 10
note G_, 2
note A_, 2
note B_, 2
octave 5
note C_, 8
note D_, 6
note C_, 2
octave 4
note B_, 8
rest 2
note G_, 2
note A_, 2
note B_, 2
octave 5
note C_, 4
note C_, 4
note D_, 6
note C_, 1
note D_, 1
octave 4
note B_, 8
rest 2
note B_, 2
note A_, 2
note G_, 2
note A_, 8
note E_, 4
note B_, 4
note A_, 8
note G_, 4
note E_, 4
note F#, 8
note G_, 4
note B_, 4
note B_, 8
note A_, 8
sound_loop 0, Music_PalletTown_branch_a861
sound_ret
Music_PalletTown_Ch3::
vibrato 24, 2, 8
notetype 12, 1, 2
note_type 12, 1, 2
Music_PalletTown_branch_a8e3::
octave 4
G_ 6
E_ 6
F# 4
G_ 6
A_ 6
G_ 4
E_ 6
F# 6
E_ 4
G_ 6
E_ 6
D_ 4
G_ 6
E_ 6
F# 4
G_ 6
A_ 6
G_ 4
E_ 6
F# 6
A_ 4
G_ 6
E_ 6
D_ 4
C_ 8
D_ 8
G_ 8
E_ 4
D_ 4
C_ 8
D_ 8
G_ 8
A_ 4
G_ 4
E_ 8
A_ 8
E_ 8
G_ 8
F# 8
E_ 8
E_ 8
F# 8
loopchannel 0, Music_PalletTown_branch_a8e3
endchannel
note G_, 6
note E_, 6
note F#, 4
note G_, 6
note A_, 6
note G_, 4
note E_, 6
note F#, 6
note E_, 4
note G_, 6
note E_, 6
note D_, 4
note G_, 6
note E_, 6
note F#, 4
note G_, 6
note A_, 6
note G_, 4
note E_, 6
note F#, 6
note A_, 4
note G_, 6
note E_, 6
note D_, 4
note C_, 8
note D_, 8
note G_, 8
note E_, 4
note D_, 4
note C_, 8
note D_, 8
note G_, 8
note A_, 4
note G_, 4
note E_, 8
note A_, 8
note E_, 8
note G_, 8
note F#, 8
note E_, 8
note E_, 8
note F#, 8
sound_loop 0, Music_PalletTown_branch_a8e3
sound_ret

View file

@ -1,47 +1,47 @@
Music_PkmnHealed_Ch0::
Music_PkmnHealed_Ch1::
tempo 144
volume 7, 7
duty 2
toggleperfectpitch
notetype 12, 8, 1
duty_cycle 2
toggle_perfect_pitch
note_type 12, 8, 1
rest 2
pitchbend 0, 75
B_ 2
pitchbend 0, 84
B_ 2
pitchbend 0, 68
E_ 2
pitch_slide 0, 75
note B_, 2
pitch_slide 0, 84
note B_, 2
pitch_slide 0, 68
note E_, 2
rest 4
pitchbend 0, 59
E_ 4
pitchbend 0, 75
B_ 4
endchannel
Music_PkmnHealed_Ch1::
duty 2
notetype 12, 12, 3
octave 4
B_ 4
B_ 4
B_ 2
G# 2
notetype 12, 12, 4
octave 5
E_ 8
endchannel
pitch_slide 0, 59
note E_, 4
pitch_slide 0, 75
note B_, 4
sound_ret
Music_PkmnHealed_Ch2::
notetype 12, 1, 0
duty_cycle 2
note_type 12, 12, 3
octave 4
E_ 2
note B_, 4
note B_, 4
note B_, 2
note G#, 2
note_type 12, 12, 4
octave 5
note E_, 8
sound_ret
Music_PkmnHealed_Ch3::
note_type 12, 1, 0
octave 4
note E_, 2
rest 2
E_ 2
note E_, 2
rest 2
E_ 2
G# 2
E_ 6
note E_, 2
note G#, 2
note E_, 6
rest 2
endchannel
sound_ret

View file

@ -1,375 +1,375 @@
Music_Pokecenter_Ch0::
Music_Pokecenter_Ch1::
tempo 144
volume 7, 7
duty 3
duty_cycle 3
vibrato 10, 2, 2
toggleperfectpitch
toggle_perfect_pitch
Music_Pokecenter_branch_be61::
notetype 12, 10, 3
note_type 12, 10, 3
octave 3
F# 2
F_ 2
F# 2
notetype 12, 11, 5
note F#, 2
note F_, 2
note F#, 2
note_type 12, 11, 5
octave 4
D_ 4
C# 2
note D_, 4
note C#, 2
octave 3
B_ 2
A_ 2
B_ 2
A_ 2
G_ 2
F# 2
E_ 2
F# 2
G_ 2
A_ 2
notetype 12, 10, 3
A_ 2
E_ 2
A_ 2
notetype 12, 11, 5
note B_, 2
note A_, 2
note B_, 2
note A_, 2
note G_, 2
note F#, 2
note E_, 2
note F#, 2
note G_, 2
note A_, 2
note_type 12, 10, 3
note A_, 2
note E_, 2
note A_, 2
note_type 12, 11, 5
octave 4
C# 4
note C#, 4
octave 3
B_ 2
A_ 2
G_ 2
F# 2
A_ 2
B_ 2
note B_, 2
note A_, 2
note G_, 2
note F#, 2
note A_, 2
note B_, 2
octave 4
C# 2
D_ 2
C# 2
note C#, 2
note D_, 2
note C#, 2
octave 3
B_ 2
A_ 2
notetype 12, 10, 3
F# 2
F_ 2
F# 2
notetype 12, 11, 5
note B_, 2
note A_, 2
note_type 12, 10, 3
note F#, 2
note F_, 2
note F#, 2
note_type 12, 11, 5
octave 4
D_ 4
C# 2
note D_, 4
note C#, 2
octave 3
B_ 2
A_ 2
B_ 2
A_ 2
G_ 2
F# 2
E_ 2
F# 2
G_ 2
A_ 2
notetype 12, 10, 3
A_ 2
E_ 2
A_ 2
notetype 12, 11, 5
note B_, 2
note A_, 2
note B_, 2
note A_, 2
note G_, 2
note F#, 2
note E_, 2
note F#, 2
note G_, 2
note A_, 2
note_type 12, 10, 3
note A_, 2
note E_, 2
note A_, 2
note_type 12, 11, 5
octave 4
C# 4
note C#, 4
octave 3
B_ 2
A_ 2
G_ 2
F# 2
E_ 2
D_ 2
E_ 2
F# 2
G_ 2
A_ 2
B_ 2
F# 2
E_ 2
D_ 4
E_ 2
F# 2
G_ 2
A_ 2
B_ 2
A_ 2
G_ 4
E_ 2
F# 2
G_ 2
A_ 2
G_ 2
F# 2
E_ 4
C# 2
D_ 2
E_ 2
G_ 2
F# 2
G_ 2
A_ 2
B_ 2
A_ 8
note B_, 2
note A_, 2
note G_, 2
note F#, 2
note E_, 2
note D_, 2
note E_, 2
note F#, 2
note G_, 2
note A_, 2
note B_, 2
note F#, 2
note E_, 2
note D_, 4
note E_, 2
note F#, 2
note G_, 2
note A_, 2
note B_, 2
note A_, 2
note G_, 4
note E_, 2
note F#, 2
note G_, 2
note A_, 2
note G_, 2
note F#, 2
note E_, 4
note C#, 2
note D_, 2
note E_, 2
note G_, 2
note F#, 2
note G_, 2
note A_, 2
note B_, 2
note A_, 8
octave 4
D_ 2
C# 2
note D_, 2
note C#, 2
octave 3
B_ 4
A_ 2
B_ 2
note B_, 4
note A_, 2
note B_, 2
octave 4
C# 2
D_ 2
E_ 2
D_ 2
C# 4
note C#, 2
note D_, 2
note E_, 2
note D_, 2
note C#, 4
octave 3
B_ 2
note B_, 2
octave 4
C# 2
D_ 2
E_ 2
C# 2
note C#, 2
note D_, 2
note E_, 2
note C#, 2
octave 3
B_ 2
A_ 4
G_ 2
A_ 2
B_ 2
G_ 2
A_ 2
G_ 2
F# 2
E_ 2
D_ 2
E_ 2
F# 2
G_ 2
loopchannel 0, Music_Pokecenter_branch_be61
Music_Pokecenter_Ch1::
vibrato 8, 2, 5
Music_Pokecenter_branch_befc::
callchannel Music_Pokecenter_branch_bf4e
duty 3
notetype 12, 10, 5
octave 3
A_ 4
E_ 4
callchannel Music_Pokecenter_branch_bf60
D_ 2
F# 6
duty 3
notetype 12, 10, 5
octave 3
A_ 4
E_ 4
callchannel Music_Pokecenter_branch_bf4e
duty 3
notetype 12, 10, 5
octave 3
A_ 4
E_ 4
callchannel Music_Pokecenter_branch_bf60
D_ 8
duty 3
notetype 12, 10, 5
octave 3
D_ 4
E_ 4
duty 2
notetype 12, 12, 6
octave 4
F# 8
A_ 8
G_ 2
A_ 2
G_ 2
F# 2
E_ 8
C# 8
E_ 8
F# 2
G_ 2
F# 2
E_ 2
D_ 8
F# 8
A_ 8
G_ 2
F# 2
G_ 2
A_ 2
B_ 8
A_ 4
G_ 2
F# 2
G_ 8
F# 2
G_ 2
F# 2
E_ 2
D_ 8
loopchannel 0, Music_Pokecenter_branch_befc
Music_Pokecenter_branch_bf4e::
duty 2
notetype 12, 12, 2
octave 4
D_ 2
octave 3
A_ 2
octave 4
D_ 2
notetype 12, 12, 3
A_ 4
G_ 4
F# 2
E_ 2
C# 6
endchannel
Music_Pokecenter_branch_bf60::
duty 2
notetype 12, 12, 2
octave 4
C# 2
octave 3
A_ 2
octave 4
C# 2
notetype 12, 12, 3
F# 4
E_ 4
C# 2
endchannel
note B_, 2
note A_, 4
note G_, 2
note A_, 2
note B_, 2
note G_, 2
note A_, 2
note G_, 2
note F#, 2
note E_, 2
note D_, 2
note E_, 2
note F#, 2
note G_, 2
sound_loop 0, Music_Pokecenter_branch_be61
Music_Pokecenter_Ch2::
notetype 12, 1, 0
vibrato 8, 2, 5
Music_Pokecenter_branch_befc::
sound_call Music_Pokecenter_branch_bf4e
duty_cycle 3
note_type 12, 10, 5
octave 3
note A_, 4
note E_, 4
sound_call Music_Pokecenter_branch_bf60
note D_, 2
note F#, 6
duty_cycle 3
note_type 12, 10, 5
octave 3
note A_, 4
note E_, 4
sound_call Music_Pokecenter_branch_bf4e
duty_cycle 3
note_type 12, 10, 5
octave 3
note A_, 4
note E_, 4
sound_call Music_Pokecenter_branch_bf60
note D_, 8
duty_cycle 3
note_type 12, 10, 5
octave 3
note D_, 4
note E_, 4
duty_cycle 2
note_type 12, 12, 6
octave 4
note F#, 8
note A_, 8
note G_, 2
note A_, 2
note G_, 2
note F#, 2
note E_, 8
note C#, 8
note E_, 8
note F#, 2
note G_, 2
note F#, 2
note E_, 2
note D_, 8
note F#, 8
note A_, 8
note G_, 2
note F#, 2
note G_, 2
note A_, 2
note B_, 8
note A_, 4
note G_, 2
note F#, 2
note G_, 8
note F#, 2
note G_, 2
note F#, 2
note E_, 2
note D_, 8
sound_loop 0, Music_Pokecenter_branch_befc
Music_Pokecenter_branch_bf4e::
duty_cycle 2
note_type 12, 12, 2
octave 4
note D_, 2
octave 3
note A_, 2
octave 4
note D_, 2
note_type 12, 12, 3
note A_, 4
note G_, 4
note F#, 2
note E_, 2
note C#, 6
sound_ret
Music_Pokecenter_branch_bf60::
duty_cycle 2
note_type 12, 12, 2
octave 4
note C#, 2
octave 3
note A_, 2
octave 4
note C#, 2
note_type 12, 12, 3
note F#, 4
note E_, 4
note C#, 2
sound_ret
Music_Pokecenter_Ch3::
note_type 12, 1, 0
Music_Pokecenter_branch_bf72::
octave 4
D_ 2
F# 2
D_ 2
F# 2
D_ 2
F# 2
G_ 2
F# 2
callchannel Music_Pokecenter_branch_bfd9
callchannel Music_Pokecenter_branch_bfe2
F# 2
A_ 2
F# 2
A_ 2
F# 2
A_ 2
G_ 2
A_ 2
D_ 2
F# 2
D_ 2
F# 2
D_ 2
F# 2
G_ 2
F# 2
callchannel Music_Pokecenter_branch_bfd9
callchannel Music_Pokecenter_branch_bfe2
D_ 2
F# 2
D_ 2
F# 2
D_ 2
B_ 2
A_ 2
G_ 2
callchannel Music_Pokecenter_branch_bfeb
G_ 2
B_ 2
G_ 2
B_ 2
G_ 2
B_ 2
G_ 2
B_ 2
E_ 2
G_ 2
E_ 2
G_ 2
E_ 2
G_ 2
E_ 2
G_ 2
F# 2
A_ 2
F# 2
A_ 2
F# 2
A_ 2
G# 2
A_ 2
callchannel Music_Pokecenter_branch_bfeb
G_ 2
B_ 2
G_ 2
B_ 2
G_ 2
B_ 2
G_ 2
B_ 2
E_ 2
G_ 2
E_ 2
G_ 2
E_ 2
G_ 2
E_ 2
G_ 2
F# 2
A_ 2
F# 2
A_ 2
F# 2
G_ 2
F# 2
E_ 2
loopchannel 0, Music_Pokecenter_branch_bf72
note D_, 2
note F#, 2
note D_, 2
note F#, 2
note D_, 2
note F#, 2
note G_, 2
note F#, 2
sound_call Music_Pokecenter_branch_bfd9
sound_call Music_Pokecenter_branch_bfe2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note G_, 2
note A_, 2
note D_, 2
note F#, 2
note D_, 2
note F#, 2
note D_, 2
note F#, 2
note G_, 2
note F#, 2
sound_call Music_Pokecenter_branch_bfd9
sound_call Music_Pokecenter_branch_bfe2
note D_, 2
note F#, 2
note D_, 2
note F#, 2
note D_, 2
note B_, 2
note A_, 2
note G_, 2
sound_call Music_Pokecenter_branch_bfeb
note G_, 2
note B_, 2
note G_, 2
note B_, 2
note G_, 2
note B_, 2
note G_, 2
note B_, 2
note E_, 2
note G_, 2
note E_, 2
note G_, 2
note E_, 2
note G_, 2
note E_, 2
note G_, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note G#, 2
note A_, 2
sound_call Music_Pokecenter_branch_bfeb
note G_, 2
note B_, 2
note G_, 2
note B_, 2
note G_, 2
note B_, 2
note G_, 2
note B_, 2
note E_, 2
note G_, 2
note E_, 2
note G_, 2
note E_, 2
note G_, 2
note E_, 2
note G_, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note F#, 2
note G_, 2
note F#, 2
note E_, 2
sound_loop 0, Music_Pokecenter_branch_bf72
Music_Pokecenter_branch_bfd9::
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
endchannel
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
sound_ret
Music_Pokecenter_branch_bfe2::
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
G_ 2
A_ 2
endchannel
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note G_, 2
note A_, 2
sound_ret
Music_Pokecenter_branch_bfeb::
F# 2
A_ 2
F# 2
A_ 2
F# 2
A_ 2
F# 2
A_ 2
endchannel
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
note F#, 2
note A_, 2
sound_ret

View file

@ -1,458 +1,458 @@
Music_PokemonTower_Ch0::
Music_PokemonTower_Ch1::
tempo 152
volume 7, 7
duty 3
toggleperfectpitch
duty_cycle 3
toggle_perfect_pitch
vibrato 12, 2, 3
notetype 12, 8, 0
note_type 12, 8, 0
rest 4
octave 4
B_ 12
note B_, 12
Music_PokemonTower_branch_7f05a::
notetype 12, 11, 4
note_type 12, 11, 4
octave 4
G_ 1
note G_, 1
rest 7
G_ 1
note G_, 1
rest 7
octave 3
B_ 1
note B_, 1
rest 7
B_ 1
note B_, 1
rest 3
B_ 1
note B_, 1
rest 3
B_ 1
note B_, 1
rest 7
B_ 1
note B_, 1
rest 7
B_ 1
note B_, 1
rest 7
octave 4
F# 1
note F#, 1
rest 7
C_ 1
note C_, 1
octave 3
B_ 1
G_ 1
note B_, 1
note G_, 1
rest 5
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 7
F# 1
note F#, 1
rest 7
E_ 1
note E_, 1
rest 7
G_ 1
note G_, 1
rest 7
G_ 1
note G_, 1
rest 7
F# 1
note F#, 1
rest 7
F# 1
note F#, 1
rest 7
G_ 1
note G_, 1
rest 7
E_ 1
note E_, 1
rest 7
D_ 1
note D_, 1
rest 7
E_ 1
note E_, 1
rest 7
G_ 1
note G_, 1
rest 7
G_ 1
note G_, 1
rest 7
F# 1
note F#, 1
rest 7
B_ 1
note B_, 1
rest 7
B_ 1
note B_, 1
rest 7
octave 4
C_ 1
note C_, 1
rest 7
C_ 1
note C_, 1
rest 7
C# 1
note C#, 1
rest 7
C# 1
note C#, 1
rest 7
C_ 1
note C_, 1
rest 7
C_ 1
note C_, 1
rest 3
notetype 12, 8, 4
C_ 1
note_type 12, 8, 4
note C_, 1
rest 3
notetype 12, 11, 4
D_ 1
note_type 12, 11, 4
note D_, 1
rest 7
D_ 1
note D_, 1
rest 7
octave 3
A_ 1
note A_, 1
rest 7
A_ 1
note A_, 1
rest 7
notetype 12, 10, 7
B_ 8
B_ 8
note_type 12, 10, 7
note B_, 8
note B_, 8
octave 4
C_ 8
C_ 8
C# 8
C# 8
notetype 12, 10, 6
D_ 16
note C_, 8
note C_, 8
note C#, 8
note C#, 8
note_type 12, 10, 6
note D_, 16
rest 16
rest 16
rest 16
rest 16
notetype 12, 9, 2
B_ 4
note_type 12, 9, 2
note B_, 4
octave 5
E_ 4
D_ 4
C_ 4
note E_, 4
note D_, 4
note C_, 4
octave 4
B_ 4
note B_, 4
octave 5
E_ 4
D_ 4
C_ 4
note E_, 4
note D_, 4
note C_, 4
octave 4
B_ 4
note B_, 4
octave 5
E_ 4
D_ 4
C_ 4
note E_, 4
note D_, 4
note C_, 4
octave 4
B_ 4
G_ 4
F# 4
E_ 4
note B_, 4
note G_, 4
note F#, 4
note E_, 4
octave 5
C_ 16
C_ 16
loopchannel 0, Music_PokemonTower_branch_7f05a
Music_PokemonTower_Ch1::
vibrato 20, 3, 4
duty 3
notetype 12, 10, 0
octave 5
C_ 12
octave 4
E_ 4
Music_PokemonTower_branch_7f0ee::
notetype 12, 12, 1
octave 5
C_ 8
octave 4
B_ 4
notetype 12, 12, 4
G_ 1
F# 1
E_ 1
D# 1
notetype 12, 11, 0
G_ 8
octave 5
C_ 8
octave 4
B_ 4
G_ 4
E_ 4
G_ 4
octave 5
C_ 8
notetype 12, 11, 7
C_ 8
notetype 12, 12, 2
octave 4
G_ 1
F# 1
E_ 1
rest 1
notetype 12, 9, 6
octave 3
G_ 4
notetype 12, 12, 7
G_ 4
B_ 4
G_ 4
B_ 4
octave 4
C_ 4
octave 3
B_ 4
notetype 12, 11, 0
octave 4
C_ 16
E_ 8
notetype 12, 11, 7
E_ 12
notetype 12, 12, 5
octave 5
C_ 4
octave 4
B_ 4
G_ 4
B_ 4
G_ 4
F# 4
E_ 4
notetype 12, 11, 0
F# 12
G_ 4
notetype 12, 11, 0
F# 8
notetype 12, 11, 7
F# 8
notetype 12, 11, 0
B_ 4
G_ 4
F# 4
E_ 4
B_ 16
notetype 12, 11, 0
octave 5
C_ 4
octave 4
G_ 4
F# 4
E_ 4
notetype 12, 9, 0
octave 5
C_ 16
notetype 12, 11, 0
D_ 4
octave 4
A_ 4
G# 4
F# 4
notetype 12, 2, 15
octave 5
D_ 16
notetype 12, 12, 0
E_ 4
octave 4
B_ 4
A_ 4
G_ 4
octave 5
F_ 4
C_ 4
octave 4
A# 4
G# 4
octave 5
F# 4
D_ 4
C_ 4
octave 4
A# 4
G# 4
F# 4
E_ 4
D_ 4
notetype 12, 11, 0
C_ 8
notetype 12, 9, 0
C_ 8
notetype 12, 8, 0
C_ 8
notetype 12, 7, 0
C_ 8
notetype 12, 6, 0
C_ 8
notetype 12, 6, 7
C_ 8
rest 16
notetype 12, 10, 0
octave 5
G_ 16
octave 6
C_ 16
octave 5
B_ 8
G_ 8
E_ 8
G_ 8
octave 6
C_ 16
vibrato 0, 3, 4
notetype 12, 10, 7
C_ 16
loopchannel 0, Music_PokemonTower_branch_7f0ee
note C_, 16
note C_, 16
sound_loop 0, Music_PokemonTower_branch_7f05a
Music_PokemonTower_Ch2::
vibrato 20, 3, 4
duty_cycle 3
note_type 12, 10, 0
octave 5
note C_, 12
octave 4
note E_, 4
Music_PokemonTower_branch_7f0ee::
note_type 12, 12, 1
octave 5
note C_, 8
octave 4
note B_, 4
note_type 12, 12, 4
note G_, 1
note F#, 1
note E_, 1
note D#, 1
note_type 12, 11, 0
note G_, 8
octave 5
note C_, 8
octave 4
note B_, 4
note G_, 4
note E_, 4
note G_, 4
octave 5
note C_, 8
note_type 12, 11, 7
note C_, 8
note_type 12, 12, 2
octave 4
note G_, 1
note F#, 1
note E_, 1
rest 1
note_type 12, 9, 6
octave 3
note G_, 4
note_type 12, 12, 7
note G_, 4
note B_, 4
note G_, 4
note B_, 4
octave 4
note C_, 4
octave 3
note B_, 4
note_type 12, 11, 0
octave 4
note C_, 16
note E_, 8
note_type 12, 11, 7
note E_, 12
note_type 12, 12, 5
octave 5
note C_, 4
octave 4
note B_, 4
note G_, 4
note B_, 4
note G_, 4
note F#, 4
note E_, 4
note_type 12, 11, 0
note F#, 12
note G_, 4
note_type 12, 11, 0
note F#, 8
note_type 12, 11, 7
note F#, 8
note_type 12, 11, 0
note B_, 4
note G_, 4
note F#, 4
note E_, 4
note B_, 16
note_type 12, 11, 0
octave 5
note C_, 4
octave 4
note G_, 4
note F#, 4
note E_, 4
note_type 12, 9, 0
octave 5
note C_, 16
note_type 12, 11, 0
note D_, 4
octave 4
note A_, 4
note G#, 4
note F#, 4
note_type 12, 2, 15
octave 5
note D_, 16
note_type 12, 12, 0
note E_, 4
octave 4
note B_, 4
note A_, 4
note G_, 4
octave 5
note F_, 4
note C_, 4
octave 4
note A#, 4
note G#, 4
octave 5
note F#, 4
note D_, 4
note C_, 4
octave 4
note A#, 4
note G#, 4
note F#, 4
note E_, 4
note D_, 4
note_type 12, 11, 0
note C_, 8
note_type 12, 9, 0
note C_, 8
note_type 12, 8, 0
note C_, 8
note_type 12, 7, 0
note C_, 8
note_type 12, 6, 0
note C_, 8
note_type 12, 6, 7
note C_, 8
rest 16
note_type 12, 10, 0
octave 5
note G_, 16
octave 6
note C_, 16
octave 5
note B_, 8
note G_, 8
note E_, 8
note G_, 8
octave 6
note C_, 16
vibrato 0, 3, 4
note_type 12, 10, 7
note C_, 16
sound_loop 0, Music_PokemonTower_branch_7f0ee
Music_PokemonTower_Ch3::
vibrato 4, 1, 1
notetype 12, 1, 3
note_type 12, 1, 3
rest 8
octave 5
G_ 8
note G_, 8
Music_PokemonTower_branch_7f1a2::
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 3
E_ 1
D# 1
F# 1
D# 1
E_ 1
note E_, 1
note D#, 1
note F#, 1
note D#, 1
note E_, 1
rest 7
G_ 1
note G_, 1
rest 7
E_ 1
note E_, 1
rest 7
B_ 1
note B_, 1
rest 7
E_ 1
D# 1
note E_, 1
note D#, 1
octave 4
B_ 1
note B_, 1
rest 5
B_ 1
note B_, 1
rest 7
B_ 1
note B_, 1
rest 7
B_ 1
note B_, 1
rest 7
octave 5
C_ 1
note C_, 1
rest 7
C_ 1
note C_, 1
rest 7
C_ 1
note C_, 1
rest 7
C_ 1
note C_, 1
rest 7
octave 4
B_ 1
note B_, 1
rest 7
B_ 1
note B_, 1
rest 7
B_ 1
note B_, 1
rest 7
B_ 1
note B_, 1
rest 7
octave 5
C_ 1
note C_, 1
rest 7
C_ 1
note C_, 1
rest 7
C_ 1
note C_, 1
rest 7
C_ 1
note C_, 1
rest 7
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 3
G_ 1
note G_, 1
rest 3
F# 1
note F#, 1
rest 7
F# 1
note F#, 1
rest 7
D_ 1
note D_, 1
rest 7
D_ 1
note D_, 1
rest 3
D_ 1
note D_, 1
rest 1
D# 1
note D#, 1
rest 1
E_ 1
note E_, 1
rest 7
E_ 1
note E_, 1
rest 7
F_ 1
note F_, 1
rest 7
F_ 1
note F_, 1
rest 7
F# 1
note F#, 1
rest 7
F# 1
note F#, 1
rest 7
G_ 1
note G_, 1
rest 15
notetype 12, 1, 5
note_type 12, 1, 5
octave 4
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 3
G_ 1
note G_, 1
rest 3
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 15
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 3
G_ 1
note G_, 1
rest 3
F# 1
note F#, 1
rest 3
F# 1
note F#, 1
rest 7
notetype 12, 1, 3
note_type 12, 1, 3
octave 6
E_ 1
note E_, 1
rest 1
D# 1
note D#, 1
rest 1
F# 1
note F#, 1
rest 1
D# 1
note D#, 1
rest 1
E_ 1
note E_, 1
rest 15
E_ 1
note E_, 1
rest 15
E_ 1
note E_, 1
rest 15
E_ 1
note E_, 1
rest 15
E_ 1
note E_, 1
rest 15
E_ 1
note E_, 1
rest 7
octave 5
E_ 1
note E_, 1
rest 1
D# 1
note D#, 1
rest 1
F# 1
note F#, 1
rest 1
D# 1
note D#, 1
rest 1
loopchannel 0, Music_PokemonTower_branch_7f1a2
sound_loop 0, Music_PokemonTower_branch_7f1a2

View file

@ -1,315 +1,315 @@
Music_Routes1_Ch0::
Music_Routes1_Ch1::
tempo 152
volume 7, 7
vibrato 4, 2, 3
duty 2
toggleperfectpitch
duty_cycle 2
toggle_perfect_pitch
Music_Routes1_branch_9be9::
notetype 12, 10, 1
note_type 12, 10, 1
rest 4
octave 4
D_ 2
D_ 6
D_ 2
D_ 6
D_ 2
D_ 1
C# 1
note D_, 2
note D_, 6
note D_, 2
note D_, 6
note D_, 2
note D_, 1
note C#, 1
octave 3
B_ 1
note B_, 1
octave 4
C# 1
note C#, 1
octave 3
A_ 2
A_ 2
A_ 6
note A_, 2
note A_, 2
note A_, 6
octave 4
C# 2
C# 6
C# 2
C# 4
note C#, 2
note C#, 6
note C#, 2
note C#, 4
octave 3
A_ 2
note A_, 2
octave 4
C# 2
note C#, 2
octave 3
B_ 2
note B_, 2
octave 4
C# 4
note C#, 4
octave 3
A_ 2
A_ 6
note A_, 2
note A_, 6
octave 4
D_ 2
D_ 6
D_ 2
D_ 6
D_ 2
D_ 1
E_ 1
D_ 1
C# 1
note D_, 2
note D_, 6
note D_, 2
note D_, 6
note D_, 2
note D_, 1
note E_, 1
note D_, 1
note C#, 1
octave 3
B_ 2
A_ 2
A_ 6
note B_, 2
note A_, 2
note A_, 6
octave 4
C# 2
C# 6
note C#, 2
note C#, 6
octave 3
A_ 2
note A_, 2
octave 4
E_ 2
note E_, 2
octave 3
A_ 2
notetype 12, 10, 2
note A_, 2
note_type 12, 10, 2
octave 4
G_ 4
E_ 4
F# 2
notetype 12, 10, 1
note G_, 4
note E_, 4
note F#, 2
note_type 12, 10, 1
octave 3
A_ 2
A_ 6
A_ 2
F# 2
A_ 4
B_ 2
note A_, 2
note A_, 6
note A_, 2
note F#, 2
note A_, 4
note B_, 2
octave 4
C# 2
note C#, 2
octave 3
B_ 4
A_ 2
F# 2
A_ 4
G_ 2
E_ 2
C# 4
A_ 2
note B_, 4
note A_, 2
note F#, 2
note A_, 4
note G_, 2
note E_, 2
note C#, 4
note A_, 2
octave 4
D_ 2
note D_, 2
octave 3
A_ 4
B_ 2
G_ 2
B_ 4
note A_, 4
note B_, 2
note G_, 2
note B_, 4
octave 4
D_ 2
E_ 2
C# 2
D_ 2
note D_, 2
note E_, 2
note C#, 2
note D_, 2
octave 3
A_ 2
A_ 2
loopchannel 0, Music_Routes1_branch_9be9
endchannel
Music_Routes1_Ch1::
duty 2
Music_Routes1_branch_9c53::
notetype 12, 13, 1
callchannel Music_Routes1_branch_9c65
callchannel Music_Routes1_branch_9c78
callchannel Music_Routes1_branch_9c65
callchannel Music_Routes1_branch_9c8d
loopchannel 0, Music_Routes1_branch_9c53
Music_Routes1_branch_9c65::
octave 4
D_ 1
E_ 1
F# 2
F# 2
F# 2
D_ 1
E_ 1
F# 2
F# 2
F# 2
D_ 1
E_ 1
F# 2
F# 2
G_ 3
F# 1
E_ 6
endchannel
Music_Routes1_branch_9c78::
C# 1
D_ 1
E_ 2
E_ 2
E_ 2
C# 1
D_ 1
E_ 2
E_ 2
E_ 2
C# 1
D_ 1
E_ 2
E_ 2
F# 1
E_ 1
E_ 1
F# 1
D_ 4
F# 2
endchannel
Music_Routes1_branch_9c8d::
C# 1
D_ 1
E_ 2
G_ 2
F# 2
E_ 2
D_ 2
C# 2
octave 3
B_ 2
octave 4
C# 2
notetype 12, 13, 2
B_ 4
notetype 6, 13, 1
octave 3
B_ 1
octave 4
C# 1
notetype 12, 13, 1
octave 3
B_ 1
A_ 1
octave 4
C# 1
D_ 6
notetype 12, 13, 2
F# 1
G_ 1
A_ 2
A_ 2
F# 2
D_ 2
octave 5
D_ 2
C# 2
octave 4
B_ 2
octave 5
C# 2
octave 4
A_ 2
F# 2
D_ 3
F# 1
E_ 6
F# 1
G_ 1
A_ 2
A_ 2
F# 2
A_ 2
octave 5
D_ 2
C# 2
octave 4
B_ 3
G_ 1
A_ 2
octave 5
D_ 2
C# 2
E_ 2
D_ 2
notetype 12, 13, 1
octave 4
D_ 2
D_ 2
endchannel
endchannel
note A_, 2
note A_, 2
sound_loop 0, Music_Routes1_branch_9be9
sound_ret
Music_Routes1_Ch2::
duty_cycle 2
Music_Routes1_branch_9c53::
note_type 12, 13, 1
sound_call Music_Routes1_branch_9c65
sound_call Music_Routes1_branch_9c78
sound_call Music_Routes1_branch_9c65
sound_call Music_Routes1_branch_9c8d
sound_loop 0, Music_Routes1_branch_9c53
Music_Routes1_branch_9c65::
octave 4
note D_, 1
note E_, 1
note F#, 2
note F#, 2
note F#, 2
note D_, 1
note E_, 1
note F#, 2
note F#, 2
note F#, 2
note D_, 1
note E_, 1
note F#, 2
note F#, 2
note G_, 3
note F#, 1
note E_, 6
sound_ret
Music_Routes1_branch_9c78::
note C#, 1
note D_, 1
note E_, 2
note E_, 2
note E_, 2
note C#, 1
note D_, 1
note E_, 2
note E_, 2
note E_, 2
note C#, 1
note D_, 1
note E_, 2
note E_, 2
note F#, 1
note E_, 1
note E_, 1
note F#, 1
note D_, 4
note F#, 2
sound_ret
Music_Routes1_branch_9c8d::
note C#, 1
note D_, 1
note E_, 2
note G_, 2
note F#, 2
note E_, 2
note D_, 2
note C#, 2
octave 3
note B_, 2
octave 4
note C#, 2
note_type 12, 13, 2
note B_, 4
note_type 6, 13, 1
octave 3
note B_, 1
octave 4
note C#, 1
note_type 12, 13, 1
octave 3
note B_, 1
note A_, 1
octave 4
note C#, 1
note D_, 6
note_type 12, 13, 2
note F#, 1
note G_, 1
note A_, 2
note A_, 2
note F#, 2
note D_, 2
octave 5
note D_, 2
note C#, 2
octave 4
note B_, 2
octave 5
note C#, 2
octave 4
note A_, 2
note F#, 2
note D_, 3
note F#, 1
note E_, 6
note F#, 1
note G_, 1
note A_, 2
note A_, 2
note F#, 2
note A_, 2
octave 5
note D_, 2
note C#, 2
octave 4
note B_, 3
note G_, 1
note A_, 2
octave 5
note D_, 2
note C#, 2
note E_, 2
note D_, 2
note_type 12, 13, 1
octave 4
note D_, 2
note D_, 2
sound_ret
sound_ret
Music_Routes1_Ch3::
vibrato 8, 2, 5
notetype 12, 1, 3
note_type 12, 1, 3
Music_Routes1_branch_9cdd::
rest 2
octave 4
D_ 4
C# 4
note D_, 4
note C#, 4
octave 3
B_ 4
A_ 4
note B_, 4
note A_, 4
octave 4
D_ 4
note D_, 4
octave 3
A_ 4
B_ 4
A_ 4
note A_, 4
note B_, 4
note A_, 4
octave 4
C# 4
note C#, 4
octave 3
A_ 4
B_ 4
note A_, 4
note B_, 4
octave 4
C_ 4
C# 4
note C_, 4
note C#, 4
octave 3
A_ 4
note A_, 4
octave 4
D_ 4
note D_, 4
octave 3
A_ 4
note A_, 4
octave 4
D_ 4
C# 4
note D_, 4
note C#, 4
octave 3
B_ 4
A_ 4
note B_, 4
note A_, 4
octave 4
D_ 4
note D_, 4
octave 3
A_ 4
B_ 4
A_ 4
note A_, 4
note B_, 4
note A_, 4
octave 4
C# 4
note C#, 4
octave 3
B_ 4
A_ 4
B_ 4
note B_, 4
note A_, 4
note B_, 4
octave 4
C# 4
note C#, 4
octave 3
A_ 4
note A_, 4
octave 4
D_ 4
note D_, 4
octave 3
A_ 4
note A_, 4
octave 4
D_ 8
note D_, 8
octave 3
G_ 8
A_ 8
note G_, 8
note A_, 8
octave 4
C# 8
D_ 8
note C#, 8
note D_, 8
octave 3
G_ 8
A_ 8
note G_, 8
note A_, 8
octave 4
D_ 6
loopchannel 0, Music_Routes1_branch_9cdd
endchannel
note D_, 6
sound_loop 0, Music_Routes1_branch_9cdd
sound_ret
Music_Routes1_Ch3::
Music_Routes1_Ch4::
dspeed 12
rest 4
mutedsnare1 2
@ -400,5 +400,5 @@ Music_Routes1_Ch3::
rest 2
mutedsnare1 2
mutedsnare1 2
loopchannel 0, Music_Routes1_Ch3
endchannel
sound_loop 0, Music_Routes1_Ch4
sound_ret

View file

@ -1,330 +1,330 @@
Music_Routes2_Ch0::
Music_Routes2_Ch1::
tempo 152
volume 7, 7
vibrato 9, 2, 5
duty 1
duty_cycle 1
Music_Routes2_branch_9dc3::
notetype 12, 11, 2
note_type 12, 11, 2
octave 2
B_ 4
note B_, 4
octave 3
G# 6
F# 2
E_ 2
D# 1
F# 1
E_ 2
note G#, 6
note F#, 2
note E_, 2
note D#, 1
note F#, 1
note E_, 2
octave 2
B_ 2
note B_, 2
octave 3
E_ 2
A_ 2
G# 4
F# 4
note E_, 2
note A_, 2
note G#, 4
note F#, 4
octave 2
B_ 4
note B_, 4
octave 3
G# 6
F# 2
E_ 2
D# 1
F# 1
B_ 2
note G#, 6
note F#, 2
note E_, 2
note D#, 1
note F#, 1
note B_, 2
octave 2
B_ 2
note B_, 2
octave 3
E_ 2
A_ 2
G# 4
B_ 4
notetype 8, 11, 2
note E_, 2
note A_, 2
note G#, 4
note B_, 4
note_type 8, 11, 2
octave 4
E_ 2
note E_, 2
octave 3
A_ 2
note A_, 2
octave 4
E_ 2
E_ 2
note E_, 2
note E_, 2
octave 3
A_ 2
note A_, 2
octave 4
E_ 2
D# 2
note E_, 2
note D#, 2
octave 3
G# 2
note G#, 2
octave 4
D# 2
D# 2
note D#, 2
note D#, 2
octave 3
G# 2
note G#, 2
octave 4
D# 2
C# 2
note D#, 2
note C#, 2
octave 3
F# 2
note F#, 2
octave 4
C# 2
C# 2
note C#, 2
note C#, 2
octave 3
F# 2
note F#, 2
octave 4
C# 2
note C#, 2
octave 3
B_ 2
E_ 2
B_ 2
B_ 2
E_ 2
G# 2
F# 2
G# 2
A_ 2
A_ 2
F# 2
A_ 2
F# 2
G# 2
A_ 2
A_ 2
F# 2
A_ 2
G# 2
E_ 2
B_ 2
B_ 2
E_ 2
B_ 2
B_ 2
E_ 2
B_ 2
B_ 2
E_ 2
B_ 2
A_ 2
B_ 2
A_ 2
note B_, 2
note E_, 2
note B_, 2
note B_, 2
note E_, 2
note G#, 2
note F#, 2
note G#, 2
note A_, 2
note A_, 2
note F#, 2
note A_, 2
note F#, 2
note G#, 2
note A_, 2
note A_, 2
note F#, 2
note A_, 2
note G#, 2
note E_, 2
note B_, 2
note B_, 2
note E_, 2
note B_, 2
note B_, 2
note E_, 2
note B_, 2
note B_, 2
note E_, 2
note B_, 2
note A_, 2
note B_, 2
note A_, 2
octave 4
C# 2
note C#, 2
octave 3
B_ 2
note B_, 2
octave 4
C# 2
D_ 2
note C#, 2
note D_, 2
octave 3
B_ 2
note B_, 2
octave 4
D_ 2
F# 2
E_ 2
D# 2
E_ 2
note D_, 2
note F#, 2
note E_, 2
note D#, 2
note E_, 2
octave 3
B_ 2
note B_, 2
octave 4
E_ 2
E_ 2
note E_, 2
note E_, 2
octave 3
B_ 2
note B_, 2
octave 4
E_ 2
E_ 2
note E_, 2
note E_, 2
octave 3
B_ 2
note B_, 2
octave 4
E_ 2
E_ 2
note E_, 2
note E_, 2
octave 3
B_ 2
note B_, 2
octave 4
E_ 2
loopchannel 0, Music_Routes2_branch_9dc3
endchannel
Music_Routes2_Ch1::
vibrato 8, 2, 6
duty 3
Music_Routes2_branch_9e54::
notetype 12, 13, 4
octave 4
E_ 6
octave 3
B_ 1
octave 4
E_ 1
F# 6
A_ 2
G# 3
E_ 1
F# 8
octave 3
D# 4
octave 4
E_ 6
octave 3
B_ 1
octave 4
E_ 1
F# 6
A_ 2
G# 3
E_ 1
B_ 8
octave 3
G# 4
octave 5
C# 6
octave 4
B_ 1
A_ 1
B_ 6
A_ 1
G# 1
A_ 6
G# 1
F# 1
G# 4
F# 2
E_ 2
D_ 2
D_ 1
E_ 1
F# 8
A_ 4
G# 3
F# 1
E_ 8
F# 2
E_ 2
D_ 2
D_ 1
E_ 1
F# 2
F# 1
G# 1
A_ 4
octave 5
C# 4
octave 4
B_ 3
A_ 1
G# 8
rest 4
loopchannel 0, Music_Routes2_branch_9e54
endchannel
note E_, 2
sound_loop 0, Music_Routes2_branch_9dc3
sound_ret
Music_Routes2_Ch2::
vibrato 9, 2, 8
vibrato 8, 2, 6
duty_cycle 3
Music_Routes2_branch_9e9e::
notetype 12, 1, 1
Music_Routes2_branch_9e54::
note_type 12, 13, 4
octave 4
note E_, 6
octave 3
E_ 2
rest 2
octave 2
B_ 6
note B_, 1
octave 4
note E_, 1
note F#, 6
note A_, 2
note G#, 3
note E_, 1
note F#, 8
octave 3
D_ 1
C# 1
D_ 2
D# 2
E_ 2
rest 2
octave 2
B_ 6
note D#, 4
octave 4
note E_, 6
octave 3
D_ 1
C# 1
octave 2
A_ 2
note B_, 1
octave 4
note E_, 1
note F#, 6
note A_, 2
note G#, 3
note E_, 1
note B_, 8
octave 3
C# 2
E_ 2
rest 2
octave 2
B_ 6
octave 3
D_ 1
C# 1
D_ 2
D# 2
E_ 2
rest 2
octave 2
B_ 4
octave 3
C# 2
octave 2
B_ 2
octave 3
D_ 2
F# 2
E_ 2
rest 2
octave 2
A_ 2
rest 2
octave 3
D# 2
rest 2
octave 2
G# 2
rest 2
octave 3
C# 2
rest 2
octave 2
F# 2
rest 2
B_ 2
rest 2
E_ 2
G# 2
F# 2
rest 2
A_ 2
rest 2
F# 2
rest 2
A_ 2
rest 2
G# 2
rest 2
B_ 2
rest 2
G# 2
rest 2
B_ 2
rest 2
F# 2
rest 2
A_ 2
rest 2
octave 3
C# 2
rest 2
octave 2
A_ 2
octave 3
C# 2
octave 2
B_ 2
rest 2
octave 3
E_ 2
rest 2
G# 2
rest 2
E_ 2
rest 2
loopchannel 0, Music_Routes2_branch_9e9e
endchannel
note G#, 4
octave 5
note C#, 6
octave 4
note B_, 1
note A_, 1
note B_, 6
note A_, 1
note G#, 1
note A_, 6
note G#, 1
note F#, 1
note G#, 4
note F#, 2
note E_, 2
note D_, 2
note D_, 1
note E_, 1
note F#, 8
note A_, 4
note G#, 3
note F#, 1
note E_, 8
note F#, 2
note E_, 2
note D_, 2
note D_, 1
note E_, 1
note F#, 2
note F#, 1
note G#, 1
note A_, 4
octave 5
note C#, 4
octave 4
note B_, 3
note A_, 1
note G#, 8
rest 4
sound_loop 0, Music_Routes2_branch_9e54
sound_ret
Music_Routes2_Ch3::
vibrato 9, 2, 8
Music_Routes2_branch_9e9e::
note_type 12, 1, 1
octave 3
note E_, 2
rest 2
octave 2
note B_, 6
octave 3
note D_, 1
note C#, 1
note D_, 2
note D#, 2
note E_, 2
rest 2
octave 2
note B_, 6
octave 3
note D_, 1
note C#, 1
octave 2
note A_, 2
octave 3
note C#, 2
note E_, 2
rest 2
octave 2
note B_, 6
octave 3
note D_, 1
note C#, 1
note D_, 2
note D#, 2
note E_, 2
rest 2
octave 2
note B_, 4
octave 3
note C#, 2
octave 2
note B_, 2
octave 3
note D_, 2
note F#, 2
note E_, 2
rest 2
octave 2
note A_, 2
rest 2
octave 3
note D#, 2
rest 2
octave 2
note G#, 2
rest 2
octave 3
note C#, 2
rest 2
octave 2
note F#, 2
rest 2
note B_, 2
rest 2
note E_, 2
note G#, 2
note F#, 2
rest 2
note A_, 2
rest 2
note F#, 2
rest 2
note A_, 2
rest 2
note G#, 2
rest 2
note B_, 2
rest 2
note G#, 2
rest 2
note B_, 2
rest 2
note F#, 2
rest 2
note A_, 2
rest 2
octave 3
note C#, 2
rest 2
octave 2
note A_, 2
octave 3
note C#, 2
octave 2
note B_, 2
rest 2
octave 3
note E_, 2
rest 2
note G#, 2
rest 2
note E_, 2
rest 2
sound_loop 0, Music_Routes2_branch_9e9e
sound_ret
Music_Routes2_Ch4::
dspeed 12
snare3 2
rest 2
@ -421,5 +421,5 @@ Music_Routes2_Ch3::
rest 3
snare3 3
rest 3
loopchannel 0, Music_Routes2_Ch3
endchannel
sound_loop 0, Music_Routes2_Ch4
sound_ret

View file

@ -1,360 +1,360 @@
Music_Routes3_Ch0::
Music_Routes3_Ch1::
tempo 148
volume 7, 7
duty 3
duty_cycle 3
vibrato 6, 3, 4
toggleperfectpitch
notetype 12, 11, 5
toggle_perfect_pitch
note_type 12, 11, 5
octave 3
E_ 1
F# 1
G_ 6
F_ 1
G_ 1
E_ 1
note E_, 1
note F#, 1
note G_, 6
note F_, 1
note G_, 1
note E_, 1
rest 16
rest 15
Music_Routes3_branch_9fc3::
notetype 12, 11, 5
E_ 6
D_ 1
E_ 1
C_ 4
E_ 4
C_ 6
D_ 1
E_ 1
F_ 2
G_ 2
G_ 2
A_ 2
notetype 12, 10, 7
A# 8
F_ 8
D_ 8
F_ 8
notetype 12, 11, 5
E_ 6
D_ 1
E_ 1
C_ 4
E_ 4
C_ 6
D_ 1
E_ 1
F_ 2
G_ 2
G_ 2
A_ 2
notetype 12, 10, 7
A# 8
A# 8
D_ 8
F_ 8
notetype 12, 11, 5
E_ 4
E_ 2
F_ 2
G_ 4
F_ 2
E_ 2
B_ 2
note_type 12, 11, 5
note E_, 6
note D_, 1
note E_, 1
note C_, 4
note E_, 4
note C_, 6
note D_, 1
note E_, 1
note F_, 2
note G_, 2
note G_, 2
note A_, 2
note_type 12, 10, 7
note A#, 8
note F_, 8
note D_, 8
note F_, 8
note_type 12, 11, 5
note E_, 6
note D_, 1
note E_, 1
note C_, 4
note E_, 4
note C_, 6
note D_, 1
note E_, 1
note F_, 2
note G_, 2
note G_, 2
note A_, 2
note_type 12, 10, 7
note A#, 8
note A#, 8
note D_, 8
note F_, 8
note_type 12, 11, 5
note E_, 4
note E_, 2
note F_, 2
note G_, 4
note F_, 2
note E_, 2
note B_, 2
octave 2
G_ 4
note G_, 4
octave 3
B_ 8
A_ 2
notetype 8, 12, 3
A_ 4
F_ 4
A_ 4
notetype 8, 4, 15
A_ 12
notetype 8, 9, 0
F_ 12
G_ 12
loopchannel 0, Music_Routes3_branch_9fc3
note B_, 8
note A_, 2
note_type 8, 12, 3
note A_, 4
note F_, 4
note A_, 4
note_type 8, 4, 15
note A_, 12
note_type 8, 9, 0
note F_, 12
note G_, 12
sound_loop 0, Music_Routes3_branch_9fc3
Music_Routes3_Ch1::
Music_Routes3_Ch2::
vibrato 8, 2, 3
duty 2
notetype 12, 12, 7
duty_cycle 2
note_type 12, 12, 7
octave 3
G_ 1
A# 1
B_ 6
A_ 1
B_ 1
note G_, 1
note A#, 1
note B_, 6
note A_, 1
note B_, 1
octave 4
C_ 1
note C_, 1
rest 15
rest 16
Music_Routes3_branch_a01a::
notetype 12, 12, 7
duty 2
note_type 12, 12, 7
duty_cycle 2
octave 4
C_ 6
note C_, 6
octave 3
G_ 1
note G_, 1
octave 4
C_ 1
E_ 10
note C_, 1
note E_, 10
octave 3
G_ 2
note G_, 2
octave 4
C_ 2
G_ 2
F_ 2
E_ 2
D_ 2
C_ 2
D_ 8
F_ 8
notetype 12, 12, 5
duty 3
note C_, 2
note G_, 2
note F_, 2
note E_, 2
note D_, 2
note C_, 2
note D_, 8
note F_, 8
note_type 12, 12, 5
duty_cycle 3
octave 3
A# 8
A_ 8
notetype 12, 12, 7
duty 2
note A#, 8
note A_, 8
note_type 12, 12, 7
duty_cycle 2
octave 4
C_ 6
note C_, 6
octave 3
G_ 1
note G_, 1
octave 4
C_ 1
E_ 10
note C_, 1
note E_, 10
octave 3
G_ 2
note G_, 2
octave 4
C_ 2
G_ 2
F_ 2
E_ 2
D_ 2
C_ 2
D_ 8
F_ 8
notetype 12, 12, 5
duty 3
note C_, 2
note G_, 2
note F_, 2
note E_, 2
note D_, 2
note C_, 2
note D_, 8
note F_, 8
note_type 12, 12, 5
duty_cycle 3
octave 3
A# 8
note A#, 8
octave 4
D_ 6
notetype 12, 12, 7
duty 2
C_ 1
D_ 1
E_ 2
D_ 2
E_ 2
C_ 8
note D_, 6
note_type 12, 12, 7
duty_cycle 2
note C_, 1
note D_, 1
note E_, 2
note D_, 2
note E_, 2
note C_, 8
octave 3
B_ 1
note B_, 1
octave 4
C_ 1
D_ 2
note C_, 1
note D_, 2
octave 3
G_ 4
note G_, 4
octave 4
G_ 8
F_ 1
E_ 1
notetype 8, 13, 3
F_ 4
E_ 4
notetype 8, 12, 4
C_ 4
notetype 8, 12, 5
C_ 12
notetype 12, 10, 0
duty 3
note G_, 8
note F_, 1
note E_, 1
note_type 8, 13, 3
note F_, 4
note E_, 4
note_type 8, 12, 4
note C_, 4
note_type 8, 12, 5
note C_, 12
note_type 12, 10, 0
duty_cycle 3
octave 3
A_ 8
B_ 8
loopchannel 0, Music_Routes3_branch_a01a
Music_Routes3_Ch2::
vibrato 4, 1, 0
notetype 6, 1, 2
octave 4
G_ 2
A# 2
B_ 8
A_ 8
G_ 2
rest 2
G_ 7
rest 1
G_ 1
rest 1
G_ 1
rest 1
G_ 2
rest 2
G_ 2
rest 2
G_ 8
G_ 2
rest 2
G_ 7
rest 1
G_ 1
rest 1
G_ 1
rest 1
G_ 2
rest 2
G_ 2
rest 2
G_ 8
Music_Routes3_branch_a0a3::
notetype 12, 1, 2
E_ 1
rest 1
G_ 4
E_ 1
E_ 1
E_ 1
rest 1
E_ 1
rest 1
G_ 4
E_ 1
rest 1
G_ 4
E_ 1
E_ 1
E_ 1
rest 1
E_ 1
rest 1
G_ 2
A_ 2
F_ 1
rest 1
A# 4
F_ 1
F_ 1
F_ 1
rest 1
F_ 1
rest 1
A# 4
F_ 1
rest 1
A# 4
F_ 1
F_ 1
F_ 1
rest 1
F_ 1
rest 1
A# 2
F_ 2
E_ 1
rest 1
G_ 4
E_ 1
E_ 1
E_ 1
rest 1
E_ 1
rest 1
G_ 4
E_ 1
rest 1
G_ 4
E_ 1
E_ 1
E_ 1
rest 1
E_ 1
rest 1
G_ 2
A_ 2
F_ 1
rest 1
A# 4
F_ 1
F_ 1
F_ 1
rest 1
F_ 1
rest 1
A# 4
F_ 1
rest 1
A# 4
F_ 1
F_ 1
F_ 1
rest 1
F_ 1
rest 1
A# 2
A_ 2
G_ 1
rest 1
octave 5
C_ 4
octave 4
G_ 1
G_ 1
G_ 1
rest 1
G_ 1
rest 1
octave 5
C_ 4
octave 4
G_ 1
rest 1
octave 5
D_ 4
octave 4
G_ 1
G_ 1
G_ 1
rest 1
G_ 1
rest 1
octave 5
D_ 4
octave 4
F_ 1
rest 1
octave 5
C_ 4
octave 4
F_ 1
F_ 1
F_ 1
rest 1
F_ 1
rest 1
octave 5
C_ 4
octave 4
F_ 1
rest 1
A_ 4
F_ 1
F_ 1
F_ 1
rest 1
F_ 1
rest 1
A_ 4
loopchannel 0, Music_Routes3_branch_a0a3
note A_, 8
note B_, 8
sound_loop 0, Music_Routes3_branch_a01a
Music_Routes3_Ch3::
vibrato 4, 1, 0
note_type 6, 1, 2
octave 4
note G_, 2
note A#, 2
note B_, 8
note A_, 8
note G_, 2
rest 2
note G_, 7
rest 1
note G_, 1
rest 1
note G_, 1
rest 1
note G_, 2
rest 2
note G_, 2
rest 2
note G_, 8
note G_, 2
rest 2
note G_, 7
rest 1
note G_, 1
rest 1
note G_, 1
rest 1
note G_, 2
rest 2
note G_, 2
rest 2
note G_, 8
Music_Routes3_branch_a0a3::
note_type 12, 1, 2
note E_, 1
rest 1
note G_, 4
note E_, 1
note E_, 1
note E_, 1
rest 1
note E_, 1
rest 1
note G_, 4
note E_, 1
rest 1
note G_, 4
note E_, 1
note E_, 1
note E_, 1
rest 1
note E_, 1
rest 1
note G_, 2
note A_, 2
note F_, 1
rest 1
note A#, 4
note F_, 1
note F_, 1
note F_, 1
rest 1
note F_, 1
rest 1
note A#, 4
note F_, 1
rest 1
note A#, 4
note F_, 1
note F_, 1
note F_, 1
rest 1
note F_, 1
rest 1
note A#, 2
note F_, 2
note E_, 1
rest 1
note G_, 4
note E_, 1
note E_, 1
note E_, 1
rest 1
note E_, 1
rest 1
note G_, 4
note E_, 1
rest 1
note G_, 4
note E_, 1
note E_, 1
note E_, 1
rest 1
note E_, 1
rest 1
note G_, 2
note A_, 2
note F_, 1
rest 1
note A#, 4
note F_, 1
note F_, 1
note F_, 1
rest 1
note F_, 1
rest 1
note A#, 4
note F_, 1
rest 1
note A#, 4
note F_, 1
note F_, 1
note F_, 1
rest 1
note F_, 1
rest 1
note A#, 2
note A_, 2
note G_, 1
rest 1
octave 5
note C_, 4
octave 4
note G_, 1
note G_, 1
note G_, 1
rest 1
note G_, 1
rest 1
octave 5
note C_, 4
octave 4
note G_, 1
rest 1
octave 5
note D_, 4
octave 4
note G_, 1
note G_, 1
note G_, 1
rest 1
note G_, 1
rest 1
octave 5
note D_, 4
octave 4
note F_, 1
rest 1
octave 5
note C_, 4
octave 4
note F_, 1
note F_, 1
note F_, 1
rest 1
note F_, 1
rest 1
octave 5
note C_, 4
octave 4
note F_, 1
rest 1
note A_, 4
note F_, 1
note F_, 1
note F_, 1
rest 1
note F_, 1
rest 1
note A_, 4
sound_loop 0, Music_Routes3_branch_a0a3
Music_Routes3_Ch4::
dspeed 6
mutedsnare4 1
mutedsnare4 1
@ -512,4 +512,4 @@ Music_Routes3_branch_a17a::
mutedsnare3 1
mutedsnare3 1
mutedsnare3 1
loopchannel 0, Music_Routes3_branch_a17a
sound_loop 0, Music_Routes3_branch_a17a

View file

@ -1,512 +1,512 @@
Music_Routes4_Ch0::
Music_Routes4_Ch1::
tempo 148
volume 7, 7
duty 3
duty_cycle 3
vibrato 10, 3, 4
toggleperfectpitch
notetype 12, 10, 2
toggle_perfect_pitch
note_type 12, 10, 2
octave 2
G# 4
G# 4
G# 4
notetype 12, 7, 15
G# 4
notetype 12, 10, 2
G# 4
G# 4
G# 4
notetype 12, 11, 7
B_ 1
note G#, 4
note G#, 4
note G#, 4
note_type 12, 7, 15
note G#, 4
note_type 12, 10, 2
note G#, 4
note G#, 4
note G#, 4
note_type 12, 11, 7
note B_, 1
octave 3
E_ 1
F# 1
B_ 1
note E_, 1
note F#, 1
note B_, 1
Music_Routes4_branch_a28a::
notetype 12, 11, 7
B_ 6
E_ 2
E_ 4
note_type 12, 11, 7
note B_, 6
note E_, 2
note E_, 4
octave 4
E_ 4
D_ 4
C# 4
note E_, 4
note D_, 4
note C#, 4
octave 3
B_ 4
A_ 4
notetype 12, 11, 1
G# 3
notetype 12, 11, 7
E_ 1
F# 12
E_ 8
D# 4
F# 4
B_ 6
E_ 2
E_ 4
note B_, 4
note A_, 4
note_type 12, 11, 1
note G#, 3
note_type 12, 11, 7
note E_, 1
note F#, 12
note E_, 8
note D#, 4
note F#, 4
note B_, 6
note E_, 2
note E_, 4
octave 4
E_ 4
D_ 4
C# 4
note E_, 4
note D_, 4
note C#, 4
octave 3
B_ 4
note B_, 4
octave 4
C# 4
notetype 12, 11, 1
E_ 3
notetype 12, 11, 7
D# 1
E_ 12
note C#, 4
note_type 12, 11, 1
note E_, 3
note_type 12, 11, 7
note D#, 1
note E_, 12
octave 3
B_ 3
A_ 1
G# 8
note B_, 3
note A_, 1
note G#, 8
octave 4
E_ 4
note E_, 4
octave 3
D_ 2
E_ 2
F# 2
G# 2
A_ 2
B_ 2
note D_, 2
note E_, 2
note F#, 2
note G#, 2
note A_, 2
note B_, 2
octave 4
C# 2
D_ 2
D_ 2
note C#, 2
note D_, 2
note D_, 2
octave 3
A_ 2
F# 2
E_ 2
D_ 2
E_ 2
F# 2
A_ 2
G# 2
F# 2
E_ 2
F# 2
G# 2
A_ 2
B_ 2
note A_, 2
note F#, 2
note E_, 2
note D_, 2
note E_, 2
note F#, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note F#, 2
note G#, 2
note A_, 2
note B_, 2
octave 4
D# 2
E_ 2
note D#, 2
note E_, 2
octave 3
B_ 2
G# 2
F# 2
E_ 2
F# 2
G# 2
B_ 2
notetype 8, 11, 5
A_ 4
G# 4
F# 4
note B_, 2
note G#, 2
note F#, 2
note E_, 2
note F#, 2
note G#, 2
note B_, 2
note_type 8, 11, 5
note A_, 4
note G#, 4
note F#, 4
octave 4
E_ 4
D# 4
C# 4
C# 4
note E_, 4
note D#, 4
note C#, 4
note C#, 4
octave 3
B_ 4
A_ 4
B_ 4
note B_, 4
note A_, 4
note B_, 4
octave 4
C# 4
D# 4
note C#, 4
note D#, 4
octave 3
E_ 3
F# 3
G# 3
A_ 3
B_ 4
note E_, 3
note F#, 3
note G#, 3
note A_, 3
note B_, 4
octave 4
C# 4
D# 4
E_ 3
note C#, 4
note D#, 4
note E_, 3
octave 3
B_ 3
G# 3
F# 3
E_ 3
F# 3
G# 3
A_ 3
loopchannel 0, Music_Routes4_branch_a28a
Music_Routes4_Ch1::
vibrato 12, 2, 4
duty 1
notetype 12, 9, 2
octave 3
E_ 3
F# 1
notetype 12, 9, 0
E_ 12
notetype 12, 9, 2
octave 2
B_ 3
octave 3
C_ 1
notetype 12, 9, 0
octave 2
B_ 8
duty 3
notetype 12, 12, 7
octave 3
E_ 1
F# 1
B_ 1
octave 4
D# 1
Music_Routes4_branch_a325::
notetype 12, 12, 7
E_ 6
octave 3
B_ 2
B_ 4
octave 4
B_ 4
A_ 4
G# 4
F# 4
F# 1
A_ 1
G# 1
F# 1
notetype 12, 12, 2
G# 3
E_ 1
notetype 12, 10, 0
octave 3
B_ 12
duty 0
notetype 12, 12, 2
octave 2
B_ 3
notetype 12, 12, 7
octave 3
C_ 1
octave 2
B_ 8
octave 3
D# 4
duty 3
octave 4
E_ 6
octave 3
B_ 2
B_ 4
octave 4
B_ 4
A_ 4
G# 4
F# 4
A_ 1
octave 5
C# 1
octave 4
B_ 1
A_ 1
notetype 12, 12, 2
B_ 3
notetype 12, 12, 7
A_ 1
notetype 12, 11, 0
G# 6
notetype 12, 9, 0
G# 6
notetype 12, 7, 0
G# 6
notetype 12, 6, 15
G# 6
notetype 12, 12, 7
G# 4
notetype 8, 12, 3
A_ 4
G# 4
F# 4
notetype 8, 9, 0
F# 6
notetype 8, 7, 15
F# 6
duty 0
notetype 8, 9, 0
octave 3
F# 4
E_ 4
F# 4
A_ 6
duty 3
notetype 8, 12, 7
octave 4
F# 6
G# 4
F# 4
notetype 8, 12, 4
E_ 4
notetype 8, 10, 0
E_ 12
duty 0
notetype 8, 9, 0
octave 3
E_ 4
D# 4
E_ 4
G# 6
duty 3
notetype 8, 12, 7
octave 4
E_ 6
F# 4
D# 4
octave 3
B_ 4
notetype 8, 10, 0
octave 4
B_ 16
notetype 8, 10, 7
B_ 8
notetype 8, 11, 0
A_ 6
notetype 8, 11, 7
A_ 6
notetype 12, 10, 7
G# 1
F# 1
notetype 12, 11, 0
E_ 12
notetype 12, 10, 0
E_ 8
notetype 12, 10, 7
E_ 10
loopchannel 0, Music_Routes4_branch_a325
note B_, 3
note G#, 3
note F#, 3
note E_, 3
note F#, 3
note G#, 3
note A_, 3
sound_loop 0, Music_Routes4_branch_a28a
Music_Routes4_Ch2::
notetype 12, 1, 0
vibrato 12, 2, 4
duty_cycle 1
note_type 12, 9, 2
octave 3
note E_, 3
note F#, 1
note_type 12, 9, 0
note E_, 12
note_type 12, 9, 2
octave 2
note B_, 3
octave 3
note C_, 1
note_type 12, 9, 0
octave 2
note B_, 8
duty_cycle 3
note_type 12, 12, 7
octave 3
note E_, 1
note F#, 1
note B_, 1
octave 4
E_ 1
rest 3
E_ 1
rest 3
E_ 1
rest 3
E_ 1
rest 3
E_ 1
rest 3
E_ 1
rest 3
E_ 1
rest 3
D# 1
rest 3
note D#, 1
Music_Routes4_branch_a3d7::
E_ 1
rest 3
E_ 1
E_ 1
E_ 1
E_ 1
E_ 1
rest 1
E_ 1
rest 3
E_ 1
rest 1
F# 1
rest 3
F# 1
F# 1
F# 1
F# 1
F# 1
rest 1
F# 1
rest 3
A_ 1
rest 1
G# 1
rest 3
G# 1
G# 1
G# 1
G# 1
G# 1
rest 1
G# 1
rest 3
G# 1
rest 1
G# 1
rest 3
G# 1
G# 1
G# 1
G# 1
G# 1
rest 1
G# 1
rest 3
G# 1
rest 1
E_ 1
rest 3
E_ 1
E_ 1
E_ 1
E_ 1
E_ 1
rest 1
E_ 1
rest 3
E_ 1
rest 1
F# 1
rest 3
F# 1
F# 1
F# 1
F# 1
F# 1
rest 1
F# 1
rest 3
A_ 1
rest 1
B_ 1
rest 3
B_ 1
B_ 1
B_ 1
B_ 1
B_ 1
rest 1
B_ 1
rest 3
B_ 1
rest 1
E_ 1
rest 3
E_ 1
E_ 1
E_ 1
E_ 1
E_ 1
rest 1
E_ 1
rest 1
E_ 1
rest 1
A_ 1
rest 1
F# 1
rest 3
F# 1
F# 1
F# 1
F# 1
F# 1
rest 1
F# 1
rest 3
F# 1
rest 1
D_ 1
rest 3
D_ 1
D_ 1
D_ 1
D_ 1
D_ 1
rest 1
D_ 1
rest 3
D_ 1
rest 1
E_ 1
rest 3
E_ 1
E_ 1
E_ 1
E_ 1
E_ 1
rest 1
E_ 1
rest 3
E_ 1
rest 1
G# 1
rest 3
G# 1
G# 1
G# 1
G# 1
G# 1
rest 1
G# 1
rest 3
G# 1
rest 1
F# 1
rest 3
F# 1
F# 1
F# 1
F# 1
F# 1
rest 1
F# 1
rest 3
F# 1
rest 1
B_ 1
rest 3
B_ 1
B_ 1
B_ 1
B_ 1
B_ 1
rest 1
B_ 1
rest 3
B_ 1
rest 1
G# 1
rest 3
G# 1
G# 1
G# 1
G# 1
G# 1
rest 1
G# 1
rest 3
G# 1
rest 1
E_ 1
rest 3
E_ 1
E_ 1
E_ 1
E_ 1
E_ 1
rest 1
E_ 1
rest 3
D# 1
rest 1
loopchannel 0, Music_Routes4_branch_a3d7
Music_Routes4_branch_a325::
note_type 12, 12, 7
note E_, 6
octave 3
note B_, 2
note B_, 4
octave 4
note B_, 4
note A_, 4
note G#, 4
note F#, 4
note F#, 1
note A_, 1
note G#, 1
note F#, 1
note_type 12, 12, 2
note G#, 3
note E_, 1
note_type 12, 10, 0
octave 3
note B_, 12
duty_cycle 0
note_type 12, 12, 2
octave 2
note B_, 3
note_type 12, 12, 7
octave 3
note C_, 1
octave 2
note B_, 8
octave 3
note D#, 4
duty_cycle 3
octave 4
note E_, 6
octave 3
note B_, 2
note B_, 4
octave 4
note B_, 4
note A_, 4
note G#, 4
note F#, 4
note A_, 1
octave 5
note C#, 1
octave 4
note B_, 1
note A_, 1
note_type 12, 12, 2
note B_, 3
note_type 12, 12, 7
note A_, 1
note_type 12, 11, 0
note G#, 6
note_type 12, 9, 0
note G#, 6
note_type 12, 7, 0
note G#, 6
note_type 12, 6, 15
note G#, 6
note_type 12, 12, 7
note G#, 4
note_type 8, 12, 3
note A_, 4
note G#, 4
note F#, 4
note_type 8, 9, 0
note F#, 6
note_type 8, 7, 15
note F#, 6
duty_cycle 0
note_type 8, 9, 0
octave 3
note F#, 4
note E_, 4
note F#, 4
note A_, 6
duty_cycle 3
note_type 8, 12, 7
octave 4
note F#, 6
note G#, 4
note F#, 4
note_type 8, 12, 4
note E_, 4
note_type 8, 10, 0
note E_, 12
duty_cycle 0
note_type 8, 9, 0
octave 3
note E_, 4
note D#, 4
note E_, 4
note G#, 6
duty_cycle 3
note_type 8, 12, 7
octave 4
note E_, 6
note F#, 4
note D#, 4
octave 3
note B_, 4
note_type 8, 10, 0
octave 4
note B_, 16
note_type 8, 10, 7
note B_, 8
note_type 8, 11, 0
note A_, 6
note_type 8, 11, 7
note A_, 6
note_type 12, 10, 7
note G#, 1
note F#, 1
note_type 12, 11, 0
note E_, 12
note_type 12, 10, 0
note E_, 8
note_type 12, 10, 7
note E_, 10
sound_loop 0, Music_Routes4_branch_a325
Music_Routes4_Ch3::
note_type 12, 1, 0
octave 4
note E_, 1
rest 3
note E_, 1
rest 3
note E_, 1
rest 3
note E_, 1
rest 3
note E_, 1
rest 3
note E_, 1
rest 3
note E_, 1
rest 3
note D#, 1
rest 3
Music_Routes4_branch_a3d7::
note E_, 1
rest 3
note E_, 1
note E_, 1
note E_, 1
note E_, 1
note E_, 1
rest 1
note E_, 1
rest 3
note E_, 1
rest 1
note F#, 1
rest 3
note F#, 1
note F#, 1
note F#, 1
note F#, 1
note F#, 1
rest 1
note F#, 1
rest 3
note A_, 1
rest 1
note G#, 1
rest 3
note G#, 1
note G#, 1
note G#, 1
note G#, 1
note G#, 1
rest 1
note G#, 1
rest 3
note G#, 1
rest 1
note G#, 1
rest 3
note G#, 1
note G#, 1
note G#, 1
note G#, 1
note G#, 1
rest 1
note G#, 1
rest 3
note G#, 1
rest 1
note E_, 1
rest 3
note E_, 1
note E_, 1
note E_, 1
note E_, 1
note E_, 1
rest 1
note E_, 1
rest 3
note E_, 1
rest 1
note F#, 1
rest 3
note F#, 1
note F#, 1
note F#, 1
note F#, 1
note F#, 1
rest 1
note F#, 1
rest 3
note A_, 1
rest 1
note B_, 1
rest 3
note B_, 1
note B_, 1
note B_, 1
note B_, 1
note B_, 1
rest 1
note B_, 1
rest 3
note B_, 1
rest 1
note E_, 1
rest 3
note E_, 1
note E_, 1
note E_, 1
note E_, 1
note E_, 1
rest 1
note E_, 1
rest 1
note E_, 1
rest 1
note A_, 1
rest 1
note F#, 1
rest 3
note F#, 1
note F#, 1
note F#, 1
note F#, 1
note F#, 1
rest 1
note F#, 1
rest 3
note F#, 1
rest 1
note D_, 1
rest 3
note D_, 1
note D_, 1
note D_, 1
note D_, 1
note D_, 1
rest 1
note D_, 1
rest 3
note D_, 1
rest 1
note E_, 1
rest 3
note E_, 1
note E_, 1
note E_, 1
note E_, 1
note E_, 1
rest 1
note E_, 1
rest 3
note E_, 1
rest 1
note G#, 1
rest 3
note G#, 1
note G#, 1
note G#, 1
note G#, 1
note G#, 1
rest 1
note G#, 1
rest 3
note G#, 1
rest 1
note F#, 1
rest 3
note F#, 1
note F#, 1
note F#, 1
note F#, 1
note F#, 1
rest 1
note F#, 1
rest 3
note F#, 1
rest 1
note B_, 1
rest 3
note B_, 1
note B_, 1
note B_, 1
note B_, 1
note B_, 1
rest 1
note B_, 1
rest 3
note B_, 1
rest 1
note G#, 1
rest 3
note G#, 1
note G#, 1
note G#, 1
note G#, 1
note G#, 1
rest 1
note G#, 1
rest 3
note G#, 1
rest 1
note E_, 1
rest 3
note E_, 1
note E_, 1
note E_, 1
note E_, 1
note E_, 1
rest 1
note E_, 1
rest 3
note D#, 1
rest 1
sound_loop 0, Music_Routes4_branch_a3d7
Music_Routes4_Ch4::
dspeed 12
rest 16
rest 12
@ -678,4 +678,4 @@ Music_Routes4_branch_a4a8::
mutedsnare2 2
mutedsnare2 2
mutedsnare2 2
loopchannel 0, Music_Routes4_branch_a4a8
sound_loop 0, Music_Routes4_branch_a4a8

View file

@ -1,111 +1,111 @@
Music_SafariZone_Ch0::
Music_SafariZone_Ch1::
tempo 132
volume 7, 7
vibrato 6, 3, 4
toggleperfectpitch
duty 2
notetype 12, 9, 2
toggle_perfect_pitch
duty_cycle 2
note_type 12, 9, 2
octave 3
pitchbend 0, 73
C_ 1
pitchbend 0, 73
G_ 1
pitchbend 0, 73
C_ 1
pitchbend 0, 73
G_ 1
pitch_slide 0, 73
note C_, 1
pitch_slide 0, 73
note G_, 1
pitch_slide 0, 73
note C_, 1
pitch_slide 0, 73
note G_, 1
rest 4
duty 3
duty_cycle 3
Music_SafariZone_branch_bc4f::
callchannel Music_SafariZone_branch_bc5f
notetype 12, 10, 4
F# 4
callchannel Music_SafariZone_branch_bc5f
notetype 12, 10, 4
F# 4
loopchannel 0, Music_SafariZone_branch_bc4f
sound_call Music_SafariZone_branch_bc5f
note_type 12, 10, 4
note F#, 4
sound_call Music_SafariZone_branch_bc5f
note_type 12, 10, 4
note F#, 4
sound_loop 0, Music_SafariZone_branch_bc4f
Music_SafariZone_branch_bc5f::
notetype 12, 10, 2
note_type 12, 10, 2
octave 3
C_ 4
G_ 4
C_ 4
G_ 4
C_ 4
G_ 4
C_ 4
endchannel
Music_SafariZone_Ch1::
duty 2
vibrato 8, 2, 5
notetype 12, 10, 2
octave 4
G_ 1
D_ 1
G_ 1
D_ 1
rest 4
duty 3
Music_SafariZone_branch_bc79::
callchannel Music_SafariZone_branch_bc89
notetype 12, 11, 5
A_ 4
callchannel Music_SafariZone_branch_bc89
notetype 12, 11, 5
B_ 4
loopchannel 0, Music_SafariZone_branch_bc79
Music_SafariZone_branch_bc89::
notetype 12, 11, 2
octave 3
G_ 4
D_ 4
G_ 4
D_ 4
G_ 4
D_ 4
G_ 4
endchannel
note C_, 4
note G_, 4
note C_, 4
note G_, 4
note C_, 4
note G_, 4
note C_, 4
sound_ret
Music_SafariZone_Ch2::
notetype 12, 1, 0
duty_cycle 2
vibrato 8, 2, 5
note_type 12, 10, 2
octave 4
note G_, 1
note D_, 1
note G_, 1
note D_, 1
rest 4
duty_cycle 3
Music_SafariZone_branch_bc79::
sound_call Music_SafariZone_branch_bc89
note_type 12, 11, 5
note A_, 4
sound_call Music_SafariZone_branch_bc89
note_type 12, 11, 5
note B_, 4
sound_loop 0, Music_SafariZone_branch_bc79
Music_SafariZone_branch_bc89::
note_type 12, 11, 2
octave 3
note G_, 4
note D_, 4
note G_, 4
note D_, 4
note G_, 4
note D_, 4
note G_, 4
sound_ret
Music_SafariZone_Ch3::
note_type 12, 1, 0
rest 8
Music_SafariZone_branch_bc97::
callchannel Music_SafariZone_branch_bca5
sound_call Music_SafariZone_branch_bca5
octave 4
A_ 4
callchannel Music_SafariZone_branch_bca5
note A_, 4
sound_call Music_SafariZone_branch_bca5
octave 4
B_ 4
loopchannel 0, Music_SafariZone_branch_bc97
note B_, 4
sound_loop 0, Music_SafariZone_branch_bc97
Music_SafariZone_branch_bca5::
octave 3
A_ 2
note A_, 2
rest 2
octave 4
D_ 2
note D_, 2
rest 2
octave 3
A_ 2
note A_, 2
rest 2
octave 4
D_ 2
note D_, 2
rest 2
octave 3
A_ 2
note A_, 2
rest 2
octave 4
D_ 2
note D_, 2
rest 2
octave 3
A_ 2
note A_, 2
rest 2
endchannel
sound_ret

File diff suppressed because it is too large Load diff

View file

@ -1,338 +1,338 @@
Music_SSAnne_Ch0::
Music_SSAnne_Ch1::
tempo 128
volume 7, 7
duty 1
duty_cycle 1
vibrato 8, 3, 4
toggleperfectpitch
toggle_perfect_pitch
Music_SSAnne_branch_b3b2::
notetype 12, 10, 4
note_type 12, 10, 4
rest 12
octave 3
E_ 2
F# 2
E_ 4
D_ 4
C# 2
D_ 2
E_ 2
note E_, 2
note F#, 2
note E_, 4
note D_, 4
note C#, 2
note D_, 2
note E_, 2
rest 2
E_ 4
F# 2
D_ 2
E_ 4
F# 4
G# 4
note E_, 4
note F#, 2
note D_, 2
note E_, 4
note F#, 4
note G#, 4
rest 4
E_ 4
G# 4
note E_, 4
note G#, 4
rest 4
C# 2
E_ 2
F# 4
D_ 4
E_ 4
D_ 4
C# 2
D_ 2
E_ 2
note C#, 2
note E_, 2
note F#, 4
note D_, 4
note E_, 4
note D_, 4
note C#, 2
note D_, 2
note E_, 2
rest 2
E_ 4
F# 2
D_ 2
E_ 4
F# 4
G# 4
F# 4
E_ 4
F# 4
note E_, 4
note F#, 2
note D_, 2
note E_, 4
note F#, 4
note G#, 4
note F#, 4
note E_, 4
note F#, 4
rest 4
C# 2
E_ 2
F# 4
D_ 4
E_ 4
D_ 4
C# 2
D_ 2
E_ 2
note C#, 2
note E_, 2
note F#, 4
note D_, 4
note E_, 4
note D_, 4
note C#, 2
note D_, 2
note E_, 2
rest 2
E_ 4
F# 2
D_ 2
E_ 4
F# 4
G# 4
F# 8
G# 4
E_ 4
note E_, 4
note F#, 2
note D_, 2
note E_, 4
note F#, 4
note G#, 4
note F#, 8
note G#, 4
note E_, 4
rest 4
E_ 4
F# 2
E_ 2
D_ 4
note E_, 4
note F#, 2
note E_, 2
note D_, 4
rest 4
D_ 4
E_ 4
C# 4
note D_, 4
note E_, 4
note C#, 4
rest 4
C# 4
D_ 2
C# 2
note C#, 4
note D_, 2
note C#, 2
octave 2
B_ 4
E_ 4
B_ 4
note B_, 4
note E_, 4
note B_, 4
octave 3
D_ 2
note D_, 2
octave 2
B_ 2
A_ 4
note B_, 2
note A_, 4
rest 4
A_ 4
B_ 2
A_ 2
G# 4
note A_, 4
note B_, 2
note A_, 2
note G#, 4
rest 4
C# 4
G# 4
A_ 4
note C#, 4
note G#, 4
note A_, 4
rest 4
A_ 4
B_ 4
B_ 4
note A_, 4
note B_, 4
note B_, 4
rest 4
octave 3
D_ 8
loopchannel 0, Music_SSAnne_branch_b3b2
Music_SSAnne_Ch1::
duty 0
vibrato 12, 2, 4
Music_SSAnne_branch_b41e::
notetype 12, 12, 5
octave 3
A_ 2
E_ 2
A_ 4
B_ 4
octave 4
D_ 4
notetype 8, 12, 5
C# 2
D_ 2
C# 2
octave 3
B_ 3
A_ 3
B_ 6
G# 6
A_ 3
B_ 3
octave 4
C# 6
D_ 6
C# 3
octave 3
B_ 3
octave 4
E_ 6
D_ 3
C# 3
octave 3
B_ 6
octave 4
C# 3
octave 3
B_ 3
A_ 3
E_ 3
A_ 6
B_ 6
octave 4
D_ 6
C# 2
D_ 2
C# 2
octave 3
B_ 3
A_ 3
B_ 6
G# 6
A_ 3
B_ 3
octave 4
C# 6
D_ 6
C# 3
octave 3
B_ 3
octave 4
E_ 6
D_ 3
C# 3
octave 3
B_ 12
A_ 3
E_ 3
A_ 6
B_ 6
octave 4
D_ 6
C# 2
D_ 2
C# 2
octave 3
B_ 3
A_ 3
B_ 6
G# 6
A_ 3
B_ 3
octave 4
C# 6
D_ 6
C# 3
octave 3
B_ 3
octave 4
E_ 6
D_ 3
C# 3
octave 3
B_ 12
rest 3
octave 4
C# 3
octave 3
B_ 3
octave 4
C# 3
C# 3
D_ 3
C# 3
D_ 3
E_ 3
octave 3
B_ 3
G# 3
F# 3
E_ 3
F# 3
G# 3
B_ 3
rest 3
A_ 3
G# 3
A_ 3
A_ 3
B_ 3
A_ 3
B_ 3
octave 4
C# 3
octave 3
G# 3
F# 3
E_ 3
E_ 3
F# 3
G# 3
B_ 3
rest 3
F# 3
E_ 3
F# 3
F# 3
G# 3
F# 3
G# 3
A_ 3
E_ 3
C# 3
octave 2
B_ 3
A_ 3
B_ 3
octave 3
C# 3
E_ 3
rest 3
F# 3
E_ 3
F# 3
F# 3
G# 3
A_ 3
B_ 3
octave 4
C# 3
D_ 3
C# 3
octave 3
B_ 3
octave 4
E_ 3
D_ 3
C# 3
octave 3
B_ 3
loopchannel 0, Music_SSAnne_branch_b41e
note D_, 8
sound_loop 0, Music_SSAnne_branch_b3b2
Music_SSAnne_Ch2::
notetype 12, 1, 3
duty_cycle 0
vibrato 12, 2, 4
Music_SSAnne_branch_b41e::
note_type 12, 12, 5
octave 3
note A_, 2
note E_, 2
note A_, 4
note B_, 4
octave 4
note D_, 4
note_type 8, 12, 5
note C#, 2
note D_, 2
note C#, 2
octave 3
note B_, 3
note A_, 3
note B_, 6
note G#, 6
note A_, 3
note B_, 3
octave 4
note C#, 6
note D_, 6
note C#, 3
octave 3
note B_, 3
octave 4
note E_, 6
note D_, 3
note C#, 3
octave 3
note B_, 6
octave 4
note C#, 3
octave 3
note B_, 3
note A_, 3
note E_, 3
note A_, 6
note B_, 6
octave 4
note D_, 6
note C#, 2
note D_, 2
note C#, 2
octave 3
note B_, 3
note A_, 3
note B_, 6
note G#, 6
note A_, 3
note B_, 3
octave 4
note C#, 6
note D_, 6
note C#, 3
octave 3
note B_, 3
octave 4
note E_, 6
note D_, 3
note C#, 3
octave 3
note B_, 12
note A_, 3
note E_, 3
note A_, 6
note B_, 6
octave 4
note D_, 6
note C#, 2
note D_, 2
note C#, 2
octave 3
note B_, 3
note A_, 3
note B_, 6
note G#, 6
note A_, 3
note B_, 3
octave 4
note C#, 6
note D_, 6
note C#, 3
octave 3
note B_, 3
octave 4
note E_, 6
note D_, 3
note C#, 3
octave 3
note B_, 12
rest 3
octave 4
note C#, 3
octave 3
note B_, 3
octave 4
note C#, 3
note C#, 3
note D_, 3
note C#, 3
note D_, 3
note E_, 3
octave 3
note B_, 3
note G#, 3
note F#, 3
note E_, 3
note F#, 3
note G#, 3
note B_, 3
rest 3
note A_, 3
note G#, 3
note A_, 3
note A_, 3
note B_, 3
note A_, 3
note B_, 3
octave 4
note C#, 3
octave 3
note G#, 3
note F#, 3
note E_, 3
note E_, 3
note F#, 3
note G#, 3
note B_, 3
rest 3
note F#, 3
note E_, 3
note F#, 3
note F#, 3
note G#, 3
note F#, 3
note G#, 3
note A_, 3
note E_, 3
note C#, 3
octave 2
note B_, 3
note A_, 3
note B_, 3
octave 3
note C#, 3
note E_, 3
rest 3
note F#, 3
note E_, 3
note F#, 3
note F#, 3
note G#, 3
note A_, 3
note B_, 3
octave 4
note C#, 3
note D_, 3
note C#, 3
octave 3
note B_, 3
octave 4
note E_, 3
note D_, 3
note C#, 3
octave 3
note B_, 3
sound_loop 0, Music_SSAnne_branch_b41e
Music_SSAnne_Ch3::
note_type 12, 1, 3
rest 16
rest 12
octave 4
B_ 2
G# 2
A_ 8
F# 8
G# 4
note B_, 2
note G#, 2
note A_, 8
note F#, 8
note G#, 4
rest 4
B_ 8
A_ 8
B_ 8
A_ 8
G# 8
A_ 8
F# 8
G# 8
B_ 8
A_ 4
E_ 4
B_ 4
E_ 4
A_ 4
E_ 4
G# 4
E_ 4
A_ 4
E_ 4
F# 4
G_ 4
G# 4
A_ 4
note B_, 8
note A_, 8
note B_, 8
note A_, 8
note G#, 8
note A_, 8
note F#, 8
note G#, 8
note B_, 8
note A_, 4
note E_, 4
note B_, 4
note E_, 4
note A_, 4
note E_, 4
note G#, 4
note E_, 4
note A_, 4
note E_, 4
note F#, 4
note G_, 4
note G#, 4
note A_, 4
octave 5
D_ 8
C# 8
C# 8
note D_, 8
note C#, 8
note C#, 8
octave 4
B_ 8
B_ 8
A_ 8
A_ 8
G# 8
G# 8
F# 8
F# 8
E_ 8
E_ 8
F# 8
F# 8
G# 8
B_ 8
loopchannel 0, Music_SSAnne_Ch2
note B_, 8
note B_, 8
note A_, 8
note A_, 8
note G#, 8
note G#, 8
note F#, 8
note F#, 8
note E_, 8
note E_, 8
note F#, 8
note F#, 8
note G#, 8
note B_, 8
sound_loop 0, Music_SSAnne_Ch3

View file

@ -1,335 +1,335 @@
Music_Surfing_Ch0::
Music_Surfing_Ch1::
tempo 160
volume 7, 7
duty 3
duty_cycle 3
vibrato 12, 3, 4
toggleperfectpitch
notetype 12, 11, 5
toggle_perfect_pitch
note_type 12, 11, 5
rest 6
octave 2
A_ 2
G# 3
F# 1
E_ 6
note A_, 2
note G#, 3
note F#, 1
note E_, 6
octave 3
G# 2
F# 2
G# 4
note G#, 2
note F#, 2
note G#, 4
Music_Surfing_branch_7fa30::
notetype 12, 11, 2
E_ 2
E_ 4
E_ 2
E_ 4
D_ 2
D_ 4
D_ 2
D_ 4
D_ 2
D_ 4
notetype 12, 11, 1
F# 3
notetype 12, 11, 2
D_ 3
E_ 2
E_ 4
E_ 2
E_ 4
A_ 2
A_ 4
G# 2
G# 4
F# 2
F# 4
E_ 2
E_ 4
G# 2
G# 4
notetype 12, 11, 1
F# 3
notetype 12, 11, 2
G# 1
notetype 12, 11, 4
A_ 2
B_ 2
note_type 12, 11, 2
note E_, 2
note E_, 4
note E_, 2
note E_, 4
note D_, 2
note D_, 4
note D_, 2
note D_, 4
note D_, 2
note D_, 4
note_type 12, 11, 1
note F#, 3
note_type 12, 11, 2
note D_, 3
note E_, 2
note E_, 4
note E_, 2
note E_, 4
note A_, 2
note A_, 4
note G#, 2
note G#, 4
note F#, 2
note F#, 4
note E_, 2
note E_, 4
note G#, 2
note G#, 4
note_type 12, 11, 1
note F#, 3
note_type 12, 11, 2
note G#, 1
note_type 12, 11, 4
note A_, 2
note B_, 2
octave 4
C_ 2
notetype 12, 11, 7
C# 6
notetype 12, 11, 3
D_ 2
C# 2
note C_, 2
note_type 12, 11, 7
note C#, 6
note_type 12, 11, 3
note D_, 2
note C#, 2
octave 3
B_ 2
A_ 2
G# 2
F# 2
E_ 2
F# 2
G# 2
A_ 2
G# 2
F# 2
G# 2
F# 2
E_ 2
G# 2
F# 2
G# 2
A_ 2
G# 2
F# 2
G# 2
A_ 2
B_ 2
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note F#, 2
note G#, 2
note A_, 2
note G#, 2
note F#, 2
note G#, 2
note F#, 2
note E_, 2
note G#, 2
note F#, 2
note G#, 2
note A_, 2
note G#, 2
note F#, 2
note G#, 2
note A_, 2
note B_, 2
octave 4
D_ 2
C# 2
note D_, 2
note C#, 2
octave 3
B_ 2
A_ 2
G# 2
F# 2
E_ 2
F# 2
G# 2
A_ 2
G# 2
A_ 2
E_ 2
G# 2
B_ 2
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note F#, 2
note G#, 2
note A_, 2
note G#, 2
note A_, 2
note E_, 2
note G#, 2
note B_, 2
octave 4
D_ 2
C# 2
note D_, 2
note C#, 2
octave 3
B_ 2
note B_, 2
octave 4
C# 2
note C#, 2
octave 3
B_ 2
A_ 2
G# 2
F# 2
E_ 4
loopchannel 0, Music_Surfing_branch_7fa30
Music_Surfing_Ch1::
duty 3
vibrato 16, 2, 5
notetype 12, 12, 6
octave 3
A_ 2
G# 3
F# 1
E_ 6
G# 6
octave 4
E_ 2
D_ 2
octave 3
B_ 2
Music_Surfing_branch_7faae::
notetype 12, 12, 6
octave 4
E_ 6
C# 5
E_ 1
D_ 6
octave 3
B_ 6
octave 4
D_ 6
octave 3
B_ 2
notetype 12, 12, 1
octave 4
F# 3
notetype 12, 12, 6
D_ 1
E_ 6
C# 6
E_ 6
C# 5
E_ 1
F# 6
D_ 6
F# 6
E_ 2
notetype 12, 12, 1
F# 3
notetype 12, 12, 6
E_ 1
A_ 6
A_ 6
B_ 2
A_ 3
D_ 1
F# 6
E_ 2
F# 3
E_ 1
C# 6
D_ 2
C# 3
octave 3
B_ 1
octave 4
F# 6
E_ 2
D# 3
E_ 1
A_ 6
B_ 2
A_ 3
D_ 1
F# 6
E_ 2
F# 3
G# 1
A_ 6
G# 2
F# 3
E_ 1
G# 6
A_ 2
G# 3
A_ 1
octave 5
C# 6
loopchannel 0, Music_Surfing_branch_7faae
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 4
sound_loop 0, Music_Surfing_branch_7fa30
Music_Surfing_Ch2::
notetype 12, 1, 0
duty_cycle 3
vibrato 16, 2, 5
note_type 12, 12, 6
octave 3
note A_, 2
note G#, 3
note F#, 1
note E_, 6
note G#, 6
octave 4
note E_, 2
note D_, 2
octave 3
note B_, 2
Music_Surfing_branch_7faae::
note_type 12, 12, 6
octave 4
note E_, 6
note C#, 5
note E_, 1
note D_, 6
octave 3
note B_, 6
octave 4
note D_, 6
octave 3
note B_, 2
note_type 12, 12, 1
octave 4
note F#, 3
note_type 12, 12, 6
note D_, 1
note E_, 6
note C#, 6
note E_, 6
note C#, 5
note E_, 1
note F#, 6
note D_, 6
note F#, 6
note E_, 2
note_type 12, 12, 1
note F#, 3
note_type 12, 12, 6
note E_, 1
note A_, 6
note A_, 6
note B_, 2
note A_, 3
note D_, 1
note F#, 6
note E_, 2
note F#, 3
note E_, 1
note C#, 6
note D_, 2
note C#, 3
octave 3
note B_, 1
octave 4
note F#, 6
note E_, 2
note D#, 3
note E_, 1
note A_, 6
note B_, 2
note A_, 3
note D_, 1
note F#, 6
note E_, 2
note F#, 3
note G#, 1
note A_, 6
note G#, 2
note F#, 3
note E_, 1
note G#, 6
note A_, 2
note G#, 3
note A_, 1
octave 5
note C#, 6
sound_loop 0, Music_Surfing_branch_7faae
Music_Surfing_Ch3::
note_type 12, 1, 0
rest 12
octave 5
E_ 6
note E_, 6
octave 4
E_ 2
F# 2
G# 2
note E_, 2
note F#, 2
note G#, 2
Music_Surfing_branch_7fb03::
octave 3
A_ 2
note A_, 2
octave 4
A_ 2
A_ 2
E_ 2
A_ 2
A_ 2
note A_, 2
note A_, 2
note E_, 2
note A_, 2
note A_, 2
octave 3
B_ 2
note B_, 2
octave 4
G# 2
G# 2
E_ 2
G# 2
G# 2
note G#, 2
note G#, 2
note E_, 2
note G#, 2
note G#, 2
octave 3
B_ 2
note B_, 2
octave 4
G# 2
G# 2
E_ 2
G# 1
note G#, 2
note G#, 2
note E_, 2
note G#, 1
rest 2
E_ 1
C# 2
A_ 2
A_ 2
E_ 2
A_ 2
A_ 2
C# 2
A_ 2
A_ 2
E_ 2
A_ 2
A_ 2
note E_, 1
note C#, 2
note A_, 2
note A_, 2
note E_, 2
note A_, 2
note A_, 2
note C#, 2
note A_, 2
note A_, 2
note E_, 2
note A_, 2
note A_, 2
octave 3
B_ 2
note B_, 2
octave 4
G# 2
G# 2
E_ 2
G# 2
G# 2
note G#, 2
note G#, 2
note E_, 2
note G#, 2
note G#, 2
octave 3
B_ 2
note B_, 2
octave 4
G# 2
G# 2
E_ 2
G# 1
note G#, 2
note G#, 2
note E_, 2
note G#, 1
rest 2
E_ 1
C# 2
A_ 2
A_ 2
E_ 2
A_ 2
A_ 2
D_ 2
F# 2
F# 2
note E_, 1
note C#, 2
note A_, 2
note A_, 2
note E_, 2
note A_, 2
note A_, 2
note D_, 2
note F#, 2
note F#, 2
octave 3
A_ 2
note A_, 2
octave 4
F# 2
F# 2
E_ 2
A_ 2
A_ 2
C# 2
A_ 2
A_ 2
E_ 2
G# 2
G# 2
note F#, 2
note F#, 2
note E_, 2
note A_, 2
note A_, 2
note C#, 2
note A_, 2
note A_, 2
note E_, 2
note G#, 2
note G#, 2
octave 3
B_ 2
note B_, 2
octave 4
G# 2
G# 2
E_ 2
A_ 2
A_ 2
note G#, 2
note G#, 2
note E_, 2
note A_, 2
note A_, 2
octave 3
A_ 2
note A_, 2
octave 4
A_ 2
A_ 2
D_ 2
F# 2
F# 2
note A_, 2
note A_, 2
note D_, 2
note F#, 2
note F#, 2
octave 3
A_ 2
note A_, 2
octave 4
F# 2
F# 2
E_ 2
A_ 2
A_ 2
C# 2
A_ 2
A_ 2
E_ 2
G# 2
G# 2
note F#, 2
note F#, 2
note E_, 2
note A_, 2
note A_, 2
note C#, 2
note A_, 2
note A_, 2
note E_, 2
note G#, 2
note G#, 2
octave 3
B_ 2
note B_, 2
octave 4
G# 2
G# 2
E_ 2
A_ 2
A_ 2
C# 2
D_ 2
E_ 2
loopchannel 0, Music_Surfing_branch_7fb03
note G#, 2
note G#, 2
note E_, 2
note A_, 2
note A_, 2
note C#, 2
note D_, 2
note E_, 2
sound_loop 0, Music_Surfing_branch_7fb03

View file

@ -1,465 +1,465 @@
Music_TitleScreen_Ch0::
Music_TitleScreen_Ch1::
tempo 144
volume 7, 7
vibrato 9, 3, 4
duty 3
notetype 12, 12, 1
duty_cycle 3
note_type 12, 12, 1
octave 2
E_ 1
G_ 1
B_ 1
note E_, 1
note G_, 1
note B_, 1
octave 3
D_ 1
note D_, 1
octave 2
G_ 4
G_ 6
G_ 1
G_ 1
G_ 4
G_ 4
G_ 4
notetype 8, 12, 1
A_ 2
A_ 2
A_ 2
A_ 2
A_ 2
F# 2
note G_, 4
note G_, 6
note G_, 1
note G_, 1
note G_, 4
note G_, 4
note G_, 4
note_type 8, 12, 1
note A_, 2
note A_, 2
note A_, 2
note A_, 2
note A_, 2
note F#, 2
Music_TitleScreen_branch_7e4e2::
callchannel Music_TitleScreen_branch_7e541
callchannel Music_TitleScreen_branch_7e54a
callchannel Music_TitleScreen_branch_7e541
sound_call Music_TitleScreen_branch_7e541
sound_call Music_TitleScreen_branch_7e54a
sound_call Music_TitleScreen_branch_7e541
octave 3
C_ 8
notetype 8, 12, 6
E_ 4
E_ 4
C_ 4
notetype 12, 12, 6
note C_, 8
note_type 8, 12, 6
note E_, 4
note E_, 4
note C_, 4
note_type 12, 12, 6
octave 2
B_ 8
notetype 8, 14, 7
note B_, 8
note_type 8, 14, 7
octave 3
F_ 4
E_ 4
C_ 4
notetype 12, 14, 7
D_ 10
notetype 12, 12, 6
note F_, 4
note E_, 4
note C_, 4
note_type 12, 14, 7
note D_, 10
note_type 12, 12, 6
octave 2
B_ 2
note B_, 2
octave 3
C_ 2
D_ 2
callchannel Music_TitleScreen_branch_7e541
callchannel Music_TitleScreen_branch_7e54a
callchannel Music_TitleScreen_branch_7e541
C_ 6
C_ 6
E_ 4
D_ 6
F_ 2
G_ 2
D_ 4
G_ 2
G_ 6
A_ 4
F_ 2
A_ 2
note C_, 2
note D_, 2
sound_call Music_TitleScreen_branch_7e541
sound_call Music_TitleScreen_branch_7e54a
sound_call Music_TitleScreen_branch_7e541
note C_, 6
note C_, 6
note E_, 4
note D_, 6
note F_, 2
note G_, 2
note D_, 4
note G_, 2
note G_, 6
note A_, 4
note F_, 2
note A_, 2
octave 4
C_ 2
note C_, 2
octave 3
D_ 12
E_ 4
F_ 8
G_ 4
F_ 4
E_ 12
F_ 4
G_ 8
notetype 12, 11, 6
note D_, 12
note E_, 4
note F_, 8
note G_, 4
note F_, 4
note E_, 12
note F_, 4
note G_, 8
note_type 12, 11, 6
octave 4
C_ 4
C# 4
callchannel Music_TitleScreen_branch_7e55c
notetype 8, 11, 4
note C_, 4
note C#, 4
sound_call Music_TitleScreen_branch_7e55c
note_type 8, 11, 4
octave 4
C_ 4
C_ 4
C# 4
callchannel Music_TitleScreen_branch_7e55c
notetype 8, 11, 2
note C_, 4
note C_, 4
note C#, 4
sound_call Music_TitleScreen_branch_7e55c
note_type 8, 11, 2
octave 3
E_ 4
E_ 4
C# 4
loopchannel 0, Music_TitleScreen_branch_7e4e2
note E_, 4
note E_, 4
note C#, 4
sound_loop 0, Music_TitleScreen_branch_7e4e2
Music_TitleScreen_branch_7e541::
notetype 12, 12, 6
note_type 12, 12, 6
octave 3
D_ 6
note D_, 6
octave 2
B_ 2
note B_, 2
octave 3
D_ 8
endchannel
note D_, 8
sound_ret
Music_TitleScreen_branch_7e54a::
C_ 6
F_ 6
C_ 4
D_ 8
notetype 12, 14, 7
F_ 6
E_ 1
D# 1
D_ 8
notetype 8, 12, 6
C_ 4
note C_, 6
note F_, 6
note C_, 4
note D_, 8
note_type 12, 14, 7
note F_, 6
note E_, 1
note D#, 1
note D_, 8
note_type 8, 12, 6
note C_, 4
octave 2
B_ 4
note B_, 4
octave 3
C_ 4
endchannel
note C_, 4
sound_ret
Music_TitleScreen_branch_7e55c::
notetype 12, 12, 1
D_ 1
note_type 12, 12, 1
note D_, 1
rest 1
octave 2
D_ 1
D_ 1
D_ 1
note D_, 1
note D_, 1
note D_, 1
rest 1
D_ 1
D_ 1
D_ 1
note D_, 1
note D_, 1
note D_, 1
rest 1
D_ 1
D_ 1
D_ 1
note D_, 1
note D_, 1
note D_, 1
rest 1
D_ 1
D_ 1
D_ 1
note D_, 1
note D_, 1
note D_, 1
rest 1
D_ 1
D_ 1
D_ 1
note D_, 1
note D_, 1
note D_, 1
rest 1
D_ 1
D_ 1
endchannel
Music_TitleScreen_Ch1::
vibrato 16, 4, 6
duty 1
notetype 12, 14, 1
octave 2
G_ 1
B_ 1
octave 3
D_ 1
F# 1
G_ 4
G_ 6
G_ 1
G_ 1
G_ 4
G_ 4
G_ 4
notetype 8, 14, 1
F_ 2
F_ 2
F_ 2
F_ 2
F_ 2
F# 2
Music_TitleScreen_branch_7e594::
vibrato 16, 4, 6
callchannel Music_TitleScreen_branch_7e622
octave 2
A_ 4
F_ 4
callchannel Music_TitleScreen_branch_7e62c
octave 2
A_ 8
B_ 16
callchannel Music_TitleScreen_branch_7e622
octave 2
A_ 6
F_ 2
notetype 8, 14, 7
octave 4
C_ 4
octave 3
B_ 4
octave 4
C_ 4
notetype 12, 14, 7
D_ 8
notetype 12, 9, 5
octave 2
D_ 6
D_ 1
F# 1
G_ 16
callchannel Music_TitleScreen_branch_7e622
octave 2
A_ 2
F_ 6
callchannel Music_TitleScreen_branch_7e62c
octave 3
C_ 2
octave 2
A_ 6
B_ 6
G_ 2
F_ 8
callchannel Music_TitleScreen_branch_7e622
notetype 8, 9, 5
octave 2
G_ 4
F_ 5
A_ 3
notetype 8, 14, 6
octave 4
F_ 4
E_ 4
F_ 4
notetype 12, 14, 7
G_ 6
A# 2
G_ 8
vibrato 16, 2, 6
duty 3
notetype 12, 0, 11
G_ 8
notetype 12, 14, 7
A_ 8
duty 1
notetype 12, 14, 7
A# 6
F_ 2
F_ 8
octave 3
D_ 8
octave 4
A# 4
B_ 4
octave 5
C_ 6
octave 4
G_ 2
G_ 8
octave 3
E_ 8
notetype 12, 13, 7
octave 5
C_ 4
C# 4
callchannel Music_TitleScreen_branch_7e636
rest 3
D_ 1
rest 3
D_ 1
notetype 8, 14, 5
octave 5
C_ 4
C_ 4
C# 4
callchannel Music_TitleScreen_branch_7e636
D_ 1
rest 2
D_ 1
rest 3
D_ 1
notetype 8, 14, 3
octave 5
C_ 4
C_ 4
octave 4
B_ 4
loopchannel 0, Music_TitleScreen_branch_7e594
Music_TitleScreen_branch_7e622::
notetype 12, 14, 7
octave 3
G_ 6
B_ 2
octave 4
D_ 8
notetype 12, 9, 5
endchannel
Music_TitleScreen_branch_7e62c::
notetype 12, 14, 7
octave 4
F_ 6
E_ 1
D# 1
D_ 8
notetype 12, 9, 5
endchannel
Music_TitleScreen_branch_7e636::
notetype 12, 14, 1
D_ 1
rest 2
octave 4
D_ 1
rest 3
D_ 1
rest 3
D_ 1
rest 3
D_ 1
endchannel
note D_, 1
note D_, 1
sound_ret
Music_TitleScreen_Ch2::
notetype 12, 1, 0
vibrato 16, 4, 6
duty_cycle 1
note_type 12, 14, 1
octave 2
note G_, 1
note B_, 1
octave 3
G_ 1
rest 1
D_ 1
rest 1
G_ 1
rest 3
G_ 1
rest 5
G_ 1
G_ 1
G_ 1
rest 3
G_ 1
rest 3
G_ 1
rest 3
notetype 8, 1, 0
F_ 2
F_ 2
F_ 2
F_ 2
F_ 2
A_ 2
note D_, 1
note F#, 1
note G_, 4
note G_, 6
note G_, 1
note G_, 1
note G_, 4
note G_, 4
note G_, 4
note_type 8, 14, 1
note F_, 2
note F_, 2
note F_, 2
note F_, 2
note F_, 2
note F#, 2
Music_TitleScreen_branch_7e65e::
callchannel Music_TitleScreen_branch_7e6c9
callchannel Music_TitleScreen_branch_7e6d0
Music_TitleScreen_branch_7e664::
callchannel Music_TitleScreen_branch_7e6c9
callchannel Music_TitleScreen_branch_7e6c9
callchannel Music_TitleScreen_branch_7e6c9
callchannel Music_TitleScreen_branch_7e6d0
loopchannel 3, Music_TitleScreen_branch_7e664
callchannel Music_TitleScreen_branch_7e6c9
G_ 6
D_ 3
A_ 6
F_ 3
A_ 3
F_ 3
callchannel Music_TitleScreen_branch_7e6d7
A# 3
F_ 3
callchannel Music_TitleScreen_branch_7e6d7
B_ 3
G_ 3
callchannel Music_TitleScreen_branch_7e6dc
Music_TitleScreen_branch_7e594::
vibrato 16, 4, 6
sound_call Music_TitleScreen_branch_7e622
octave 2
note A_, 4
note F_, 4
sound_call Music_TitleScreen_branch_7e62c
octave 2
note A_, 8
note B_, 16
sound_call Music_TitleScreen_branch_7e622
octave 2
note A_, 6
note F_, 2
note_type 8, 14, 7
octave 4
C_ 3
note C_, 4
octave 3
G_ 3
callchannel Music_TitleScreen_branch_7e6dc
note B_, 4
octave 4
C# 3
note C_, 4
note_type 12, 14, 7
note D_, 8
note_type 12, 9, 5
octave 2
note D_, 6
note D_, 1
note F#, 1
note G_, 16
sound_call Music_TitleScreen_branch_7e622
octave 2
note A_, 2
note F_, 6
sound_call Music_TitleScreen_branch_7e62c
octave 3
A_ 3
callchannel Music_TitleScreen_branch_7e6e5
note C_, 2
octave 2
note A_, 6
note B_, 6
note G_, 2
note F_, 8
sound_call Music_TitleScreen_branch_7e622
note_type 8, 9, 5
octave 2
note G_, 4
note F_, 5
note A_, 3
note_type 8, 14, 6
octave 4
note F_, 4
note E_, 4
note F_, 4
note_type 12, 14, 7
note G_, 6
note A#, 2
note G_, 8
vibrato 16, 2, 6
duty_cycle 3
note_type 12, 0, 11
note G_, 8
note_type 12, 14, 7
note A_, 8
duty_cycle 1
note_type 12, 14, 7
note A#, 6
note F_, 2
note F_, 8
octave 3
note D_, 8
octave 4
note A#, 4
note B_, 4
octave 5
pitchbend 0, 66
D_ 4
rest 4
octave 6
pitchbend 0, 50
D_ 4
note C_, 6
octave 4
note G_, 2
note G_, 8
octave 3
note E_, 8
note_type 12, 13, 7
octave 5
pitchbend 0, 66
D_ 4
note C_, 4
note C#, 4
sound_call Music_TitleScreen_branch_7e636
rest 3
note D_, 1
rest 3
note D_, 1
note_type 8, 14, 5
octave 5
note C_, 4
note C_, 4
note C#, 4
sound_call Music_TitleScreen_branch_7e636
note D_, 1
rest 2
notetype 8, 1, 0
octave 4
C_ 4
C_ 4
C# 4
callchannel Music_TitleScreen_branch_7e6e5
octave 6
pitchbend 0, 50
D_ 4
rest 4
note D_, 1
rest 3
note D_, 1
note_type 8, 14, 3
octave 5
pitchbend 0, 66
D_ 4
rest 6
notetype 8, 1, 0
note C_, 4
note C_, 4
octave 4
C_ 4
C_ 4
note B_, 4
sound_loop 0, Music_TitleScreen_branch_7e594
Music_TitleScreen_branch_7e622::
note_type 12, 14, 7
octave 3
B_ 4
loopchannel 0, Music_TitleScreen_branch_7e65e
Music_TitleScreen_branch_7e6c9::
G_ 6
D_ 3
G_ 6
D_ 3
G_ 3
D_ 3
endchannel
Music_TitleScreen_branch_7e6d0::
F_ 6
C_ 3
F_ 6
C_ 3
F_ 3
C_ 3
endchannel
Music_TitleScreen_branch_7e6d7::
A# 6
F_ 3
A# 6
F_ 3
endchannel
Music_TitleScreen_branch_7e6dc::
note G_, 6
note B_, 2
octave 4
C_ 6
octave 3
G_ 3
octave 4
C_ 6
octave 3
G_ 3
endchannel
note D_, 8
note_type 12, 9, 5
sound_ret
Music_TitleScreen_branch_7e6e5::
notetype 12, 1, 0
Music_TitleScreen_branch_7e62c::
note_type 12, 14, 7
octave 4
D_ 1
rest 5
endchannel
note F_, 6
note E_, 1
note D#, 1
note D_, 8
note_type 12, 9, 5
sound_ret
Music_TitleScreen_branch_7e636::
note_type 12, 14, 1
note D_, 1
rest 2
octave 4
note D_, 1
rest 3
note D_, 1
rest 3
note D_, 1
rest 3
note D_, 1
sound_ret
Music_TitleScreen_Ch3::
note_type 12, 1, 0
octave 3
note G_, 1
rest 1
note D_, 1
rest 1
note G_, 1
rest 3
note G_, 1
rest 5
note G_, 1
note G_, 1
note G_, 1
rest 3
note G_, 1
rest 3
note G_, 1
rest 3
note_type 8, 1, 0
note F_, 2
note F_, 2
note F_, 2
note F_, 2
note F_, 2
note A_, 2
Music_TitleScreen_branch_7e65e::
sound_call Music_TitleScreen_branch_7e6c9
sound_call Music_TitleScreen_branch_7e6d0
Music_TitleScreen_branch_7e664::
sound_call Music_TitleScreen_branch_7e6c9
sound_call Music_TitleScreen_branch_7e6c9
sound_call Music_TitleScreen_branch_7e6c9
sound_call Music_TitleScreen_branch_7e6d0
sound_loop 3, Music_TitleScreen_branch_7e664
sound_call Music_TitleScreen_branch_7e6c9
note G_, 6
note D_, 3
note A_, 6
note F_, 3
note A_, 3
note F_, 3
sound_call Music_TitleScreen_branch_7e6d7
note A#, 3
note F_, 3
sound_call Music_TitleScreen_branch_7e6d7
note B_, 3
note G_, 3
sound_call Music_TitleScreen_branch_7e6dc
octave 4
note C_, 3
octave 3
note G_, 3
sound_call Music_TitleScreen_branch_7e6dc
octave 4
note C#, 3
octave 3
note A_, 3
sound_call Music_TitleScreen_branch_7e6e5
octave 5
pitch_slide 0, 66
note D_, 4
rest 4
octave 6
pitch_slide 0, 50
note D_, 4
octave 5
pitch_slide 0, 66
note D_, 4
rest 2
note_type 8, 1, 0
octave 4
note C_, 4
note C_, 4
note C#, 4
sound_call Music_TitleScreen_branch_7e6e5
octave 6
pitch_slide 0, 50
note D_, 4
rest 4
octave 5
pitch_slide 0, 66
note D_, 4
rest 6
note_type 8, 1, 0
octave 4
note C_, 4
note C_, 4
octave 3
note B_, 4
sound_loop 0, Music_TitleScreen_branch_7e65e
Music_TitleScreen_branch_7e6c9::
note G_, 6
note D_, 3
note G_, 6
note D_, 3
note G_, 3
note D_, 3
sound_ret
Music_TitleScreen_branch_7e6d0::
note F_, 6
note C_, 3
note F_, 6
note C_, 3
note F_, 3
note C_, 3
sound_ret
Music_TitleScreen_branch_7e6d7::
note A#, 6
note F_, 3
note A#, 6
note F_, 3
sound_ret
Music_TitleScreen_branch_7e6dc::
octave 4
note C_, 6
octave 3
note G_, 3
octave 4
note C_, 6
octave 3
note G_, 3
sound_ret
Music_TitleScreen_branch_7e6e5::
note_type 12, 1, 0
octave 4
note D_, 1
rest 5
sound_ret
Music_TitleScreen_Ch4::
dspeed 6
rest 4
snare3 1
@ -497,8 +497,8 @@ Music_TitleScreen_branch_7e716::
snare2 1
snare3 1
rest 3
callchannel Music_TitleScreen_branch_7e834
callchannel Music_TitleScreen_branch_7e834
sound_call Music_TitleScreen_branch_7e834
sound_call Music_TitleScreen_branch_7e834
snare2 1
rest 3
snare2 1
@ -509,7 +509,7 @@ Music_TitleScreen_branch_7e716::
rest 1
snare3 1
snare2 1
callchannel Music_TitleScreen_branch_7e842
sound_call Music_TitleScreen_branch_7e842
snare2 1
rest 3
snare2 1
@ -520,7 +520,7 @@ Music_TitleScreen_branch_7e716::
rest 1
snare2 1
rest 1
callchannel Music_TitleScreen_branch_7e842
sound_call Music_TitleScreen_branch_7e842
snare2 1
rest 3
snare2 1
@ -535,8 +535,8 @@ Music_TitleScreen_branch_7e716::
snare4 1
snare4 1
dspeed 12
callchannel Music_TitleScreen_branch_7e834
callchannel Music_TitleScreen_branch_7e842
sound_call Music_TitleScreen_branch_7e834
sound_call Music_TitleScreen_branch_7e842
snare2 1
rest 3
snare2 1
@ -555,8 +555,8 @@ Music_TitleScreen_branch_7e716::
rest 1
snare3 1
snare2 1
callchannel Music_TitleScreen_branch_7e834
callchannel Music_TitleScreen_branch_7e842
sound_call Music_TitleScreen_branch_7e834
sound_call Music_TitleScreen_branch_7e842
snare2 1
rest 3
snare2 1
@ -652,7 +652,7 @@ Music_TitleScreen_branch_7e716::
snare2 4
snare3 4
snare2 4
loopchannel 0, Music_TitleScreen_branch_7e716
sound_loop 0, Music_TitleScreen_branch_7e716
Music_TitleScreen_branch_7e834::
snare2 1
@ -663,7 +663,7 @@ Music_TitleScreen_branch_7e834::
snare3 1
snare2 1
rest 3
endchannel
sound_ret
Music_TitleScreen_branch_7e842::
snare2 1
@ -674,4 +674,4 @@ Music_TitleScreen_branch_7e842::
snare2 1
snare2 1
rest 3
endchannel
sound_ret

File diff suppressed because it is too large Load diff

View file

@ -1,338 +1,338 @@
Music_UnusedSong_Ch0::
Music_UnusedSong_Ch1::
tempo 144
volume 7, 7
vibrato 5, 1, 6
Music_UnusedSong_branch_a91b::
notetype 12, 1, 0
note_type 12, 1, 0
octave 6
E_ 1
note E_, 1
rest 1
octave 5
B_ 1
note B_, 1
rest 1
octave 6
C# 1
note C#, 1
rest 1
octave 5
B_ 1
note B_, 1
octave 6
E_ 1
note E_, 1
rest 4
E_ 2
note E_, 2
rest 2
D# 1
note D#, 1
rest 1
octave 5
B_ 1
note B_, 1
rest 1
octave 6
C# 1
note C#, 1
rest 1
octave 5
B_ 1
note B_, 1
octave 6
D# 1
note D#, 1
rest 8
C# 1
note C#, 1
rest 1
D# 1
note D#, 1
rest 1
C# 1
note C#, 1
octave 5
B_ 1
note B_, 1
rest 2
octave 6
C# 1
note C#, 1
rest 1
D# 1
note D#, 1
rest 1
C# 1
note C#, 1
octave 5
B_ 1
note B_, 1
rest 2
octave 6
D# 4
C# 4
D# 1
E_ 1
note D#, 4
note C#, 4
note D#, 1
note E_, 1
rest 1
F# 1
note F#, 1
rest 1
octave 5
B_ 2
note B_, 2
rest 1
octave 6
E_ 1
note E_, 1
rest 1
octave 5
B_ 1
note B_, 1
rest 1
octave 6
C# 1
note C#, 1
rest 1
octave 5
B_ 1
note B_, 1
octave 6
E_ 1
note E_, 1
rest 8
D# 1
note D#, 1
rest 1
octave 5
B_ 1
note B_, 1
rest 1
octave 6
C# 1
note C#, 1
rest 1
octave 5
B_ 1
note B_, 1
octave 6
D# 1
note D#, 1
rest 4
octave 5
B_ 2
note B_, 2
rest 2
octave 6
C# 1
note C#, 1
rest 1
D# 1
note D#, 1
rest 1
C# 1
note C#, 1
octave 5
B_ 1
note B_, 1
rest 2
octave 6
C# 1
note C#, 1
rest 1
D# 1
note D#, 1
rest 1
E_ 1
F# 1
note E_, 1
note F#, 1
rest 2
F# 4
E_ 4
F# 1
G# 1
note F#, 4
note E_, 4
note F#, 1
note G#, 1
rest 1
F# 1
note F#, 1
rest 1
D# 2
note D#, 2
rest 3
octave 5
A_ 2
note A_, 2
rest 2
B_ 2
note B_, 2
rest 2
octave 6
C# 2
note C#, 2
rest 2
E_ 2
F# 8
note E_, 2
note F#, 8
rest 2
E_ 2
D# 2
C# 2
note E_, 2
note D#, 2
note C#, 2
rest 2
octave 5
G# 2
note G#, 2
rest 2
A_ 2
note A_, 2
rest 2
B_ 2
note B_, 2
rest 2
octave 6
D# 2
E_ 8
note D#, 2
note E_, 8
rest 2
D# 2
C# 2
D# 2
note D#, 2
note C#, 2
note D#, 2
octave 5
A_ 2
G# 2
A_ 2
A# 1
B_ 1
note A_, 2
note G#, 2
note A_, 2
note A#, 1
note B_, 1
rest 4
F# 2
note F#, 2
rest 2
B_ 2
A# 2
B_ 2
note B_, 2
note A#, 2
note B_, 2
octave 6
C_ 1
C# 1
note C_, 1
note C#, 1
rest 8
octave 5
F# 2
F_ 2
F# 2
G# 2
A_ 2
note F#, 2
note F_, 2
note F#, 2
note G#, 2
note A_, 2
octave 6
E_ 2
D# 2
C# 2
note E_, 2
note D#, 2
note C#, 2
octave 5
B_ 2
note B_, 2
rest 6
B_ 2
note B_, 2
rest 6
loopchannel 0, Music_UnusedSong_branch_a91b
endchannel
sound_loop 0, Music_UnusedSong_branch_a91b
sound_ret
Music_UnusedSong_Ch1::
Music_UnusedSong_Ch2::
tempo 144
volume 7, 7
toggleperfectpitch
toggle_perfect_pitch
vibrato 6, 1, 5
Music_UnusedSong_branch_a9d8::
notetype 12, 1, 0
note_type 12, 1, 0
octave 6
E_ 1
note E_, 1
rest 1
G# 1
note G#, 1
rest 1
F# 1
note F#, 1
rest 1
A_ 1
G# 1
note A_, 1
note G#, 1
rest 8
D# 1
note D#, 1
rest 1
F# 1
note F#, 1
rest 1
E_ 1
note E_, 1
rest 1
G# 1
F# 1
note G#, 1
note F#, 1
rest 4
octave 5
B_ 2
note B_, 2
rest 2
octave 6
C# 1
note C#, 1
rest 1
D# 1
note D#, 1
rest 1
E_ 1
F# 1
note E_, 1
note F#, 1
rest 2
C# 1
note C#, 1
rest 1
D# 1
note D#, 1
rest 1
E_ 1
F# 1
note E_, 1
note F#, 1
rest 2
F# 4
E_ 4
F# 1
G# 1
note F#, 4
note E_, 4
note F#, 1
note G#, 1
rest 1
F# 1
note F#, 1
rest 1
D# 2
note D#, 2
rest 1
E_ 1
note E_, 1
rest 1
G# 1
note G#, 1
rest 1
F# 1
note F#, 1
rest 1
A_ 1
G# 1
note A_, 1
note G#, 1
rest 4
E_ 2
note E_, 2
rest 2
D# 1
note D#, 1
rest 1
F# 1
note F#, 1
rest 1
E_ 1
note E_, 1
rest 1
G# 1
F# 1
note G#, 1
note F#, 1
rest 8
C# 1
note C#, 1
rest 1
D# 1
note D#, 1
rest 1
E_ 1
F# 1
note E_, 1
note F#, 1
rest 2
C# 1
note C#, 1
rest 1
D# 1
note D#, 1
rest 1
E_ 1
F# 1
note E_, 1
note F#, 1
rest 2
F# 4
E_ 4
F# 1
G# 1
note F#, 4
note E_, 4
note F#, 1
note G#, 1
rest 1
B_ 1
note B_, 1
rest 1
F# 2
note F#, 2
rest 1
C# 2
note C#, 2
rest 2
D# 2
note D#, 2
rest 2
E_ 2
note E_, 2
rest 2
G# 2
note G#, 2
rest 2
D# 8
note D#, 8
rest 2
E_ 2
D# 2
C# 2
note E_, 2
note D#, 2
note C#, 2
octave 5
B_ 2
note B_, 2
rest 2
octave 6
C# 2
note C#, 2
rest 2
D# 2
note D#, 2
rest 2
F# 2
note F#, 2
rest 2
C# 8
note C#, 8
rest 2
D# 2
C# 2
note D#, 2
note C#, 2
octave 5
B_ 2
A_ 2
G# 2
A_ 2
G# 1
F# 1
note B_, 2
note A_, 2
note G#, 2
note A_, 2
note G#, 1
note F#, 1
rest 8
B_ 2
A# 2
B_ 2
A_ 1
G# 1
note B_, 2
note A#, 2
note B_, 2
note A_, 1
note G#, 1
rest 4
G# 2
note G#, 2
rest 2
F# 2
F_ 2
F# 2
G# 2
A_ 2
E_ 2
C# 2
E_ 2
F# 2
note F#, 2
note F_, 2
note F#, 2
note G#, 2
note A_, 2
note E_, 2
note C#, 2
note E_, 2
note F#, 2
rest 6
D# 2
note D#, 2
rest 6
loopchannel 0, Music_UnusedSong_branch_a9d8
endchannel
sound_loop 0, Music_UnusedSong_branch_a9d8
sound_ret

View file

@ -1,292 +1,292 @@
Music_Vermilion_Ch0::
Music_Vermilion_Ch1::
tempo 156
volume 7, 7
duty 3
duty_cycle 3
vibrato 12, 3, 4
toggleperfectpitch
toggle_perfect_pitch
Music_Vermilion_branch_b9f6::
notetype 12, 11, 5
note_type 12, 11, 5
octave 3
E_ 4
C# 1
D_ 1
E_ 2
A_ 4
B_ 2
A_ 2
G# 2
F# 2
E_ 2
F# 2
A_ 4
F# 1
G# 1
A_ 2
E_ 4
C# 2
E_ 2
A_ 2
G# 2
B_ 2
A_ 2
G# 2
E_ 2
F# 2
G# 2
C# 2
D_ 2
E_ 2
F# 2
E_ 4
C# 1
D_ 1
E_ 2
A_ 4
B_ 2
A_ 2
G# 2
F# 2
E_ 2
F# 2
A_ 4
F# 1
G# 1
A_ 2
E_ 4
C# 1
D_ 1
E_ 2
A_ 2
G# 2
F# 2
A_ 2
G# 2
E_ 2
F# 2
G# 2
F# 4
E_ 4
F# 2
G# 2
F# 2
A_ 2
G# 2
B_ 2
A_ 2
note E_, 4
note C#, 1
note D_, 1
note E_, 2
note A_, 4
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note F#, 2
note A_, 4
note F#, 1
note G#, 1
note A_, 2
note E_, 4
note C#, 2
note E_, 2
note A_, 2
note G#, 2
note B_, 2
note A_, 2
note G#, 2
note E_, 2
note F#, 2
note G#, 2
note C#, 2
note D_, 2
note E_, 2
note F#, 2
note E_, 4
note C#, 1
note D_, 1
note E_, 2
note A_, 4
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note F#, 2
note A_, 4
note F#, 1
note G#, 1
note A_, 2
note E_, 4
note C#, 1
note D_, 1
note E_, 2
note A_, 2
note G#, 2
note F#, 2
note A_, 2
note G#, 2
note E_, 2
note F#, 2
note G#, 2
note F#, 4
note E_, 4
note F#, 2
note G#, 2
note F#, 2
note A_, 2
note G#, 2
note B_, 2
note A_, 2
octave 4
C# 2
D_ 2
C# 2
note C#, 2
note D_, 2
note C#, 2
octave 3
B_ 2
A_ 2
G# 1
A_ 1
B_ 2
note B_, 2
note A_, 2
note G#, 1
note A_, 1
note B_, 2
octave 4
C# 2
E_ 2
note C#, 2
note E_, 2
octave 3
A_ 2
note A_, 2
octave 4
D_ 2
note D_, 2
octave 3
G# 2
note G#, 2
octave 4
C# 2
note C#, 2
octave 3
F# 2
B_ 2
G# 2
A_ 2
B_ 2
A_ 2
G# 2
F# 2
E_ 2
F# 2
G# 2
B_ 2
loopchannel 0, Music_Vermilion_branch_b9f6
Music_Vermilion_Ch1::
duty 3
vibrato 10, 2, 3
Music_Vermilion_branch_ba66::
notetype 12, 12, 7
octave 3
A_ 8
octave 4
D_ 4
C# 4
octave 3
B_ 6
A_ 1
B_ 1
octave 4
C# 8
octave 3
A_ 8
octave 4
D_ 4
C# 4
octave 3
B_ 6
octave 4
C# 1
octave 3
B_ 1
A_ 8
A_ 8
octave 4
D_ 4
C# 4
octave 3
B_ 6
A_ 1
B_ 1
octave 4
C# 8
octave 3
A_ 8
octave 4
D_ 4
C# 4
octave 3
B_ 6
octave 4
C# 1
octave 3
B_ 1
A_ 8
B_ 4
octave 4
C# 4
D_ 4
E_ 4
F# 8
B_ 8
A_ 4
G# 4
F# 4
E_ 4
F# 8
E_ 8
loopchannel 0, Music_Vermilion_branch_ba66
note F#, 2
note B_, 2
note G#, 2
note A_, 2
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note F#, 2
note G#, 2
note B_, 2
sound_loop 0, Music_Vermilion_branch_b9f6
Music_Vermilion_Ch2::
notetype 12, 1, 0
duty_cycle 3
vibrato 10, 2, 3
Music_Vermilion_branch_baa8::
Music_Vermilion_branch_ba66::
note_type 12, 12, 7
octave 3
note A_, 8
octave 4
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
A_ 2
G# 2
F# 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
A_ 2
G# 2
F# 2
G# 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
A_ 2
E_ 2
A_ 2
E_ 2
B_ 2
E_ 2
A_ 2
E_ 2
G# 2
E_ 2
F# 2
E_ 2
G# 2
E_ 2
G# 2
E_ 2
B_ 2
A_ 2
G# 2
F# 2
F# 2
E_ 2
G# 2
E_ 2
A_ 2
E_ 2
B_ 2
E_ 2
B_ 2
E_ 2
B_ 2
E_ 2
A_ 2
E_ 2
G# 2
E_ 2
loopchannel 0, Music_Vermilion_branch_baa8
note D_, 4
note C#, 4
octave 3
note B_, 6
note A_, 1
note B_, 1
octave 4
note C#, 8
octave 3
note A_, 8
octave 4
note D_, 4
note C#, 4
octave 3
note B_, 6
octave 4
note C#, 1
octave 3
note B_, 1
note A_, 8
note A_, 8
octave 4
note D_, 4
note C#, 4
octave 3
note B_, 6
note A_, 1
note B_, 1
octave 4
note C#, 8
octave 3
note A_, 8
octave 4
note D_, 4
note C#, 4
octave 3
note B_, 6
octave 4
note C#, 1
octave 3
note B_, 1
note A_, 8
note B_, 4
octave 4
note C#, 4
note D_, 4
note E_, 4
note F#, 8
note B_, 8
note A_, 4
note G#, 4
note F#, 4
note E_, 4
note F#, 8
note E_, 8
sound_loop 0, Music_Vermilion_branch_ba66
Music_Vermilion_Ch3::
note_type 12, 1, 0
Music_Vermilion_branch_baa8::
octave 4
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note A_, 2
note G#, 2
note F#, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note A_, 2
note G#, 2
note F#, 2
note G#, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note A_, 2
note E_, 2
note A_, 2
note E_, 2
note B_, 2
note E_, 2
note A_, 2
note E_, 2
note G#, 2
note E_, 2
note F#, 2
note E_, 2
note G#, 2
note E_, 2
note G#, 2
note E_, 2
note B_, 2
note A_, 2
note G#, 2
note F#, 2
note F#, 2
note E_, 2
note G#, 2
note E_, 2
note A_, 2
note E_, 2
note B_, 2
note E_, 2
note B_, 2
note E_, 2
note B_, 2
note E_, 2
note A_, 2
note E_, 2
note G#, 2
note E_, 2
sound_loop 0, Music_Vermilion_branch_baa8
Music_Vermilion_Ch4::
dspeed 12
Music_Vermilion_branch_bb0e::
callchannel Music_Vermilion_branch_bb3f
sound_call Music_Vermilion_branch_bb3f
triangle1 2
triangle1 1
triangle1 1
@ -300,12 +300,12 @@ Music_Vermilion_branch_bb0e::
triangle1 1
triangle1 1
triangle1 1
loopchannel 4, Music_Vermilion_branch_bb0e
callchannel Music_Vermilion_branch_bb3f
callchannel Music_Vermilion_branch_bb3f
callchannel Music_Vermilion_branch_bb3f
callchannel Music_Vermilion_branch_bb3f
loopchannel 0, Music_Vermilion_branch_bb0e
sound_loop 4, Music_Vermilion_branch_bb0e
sound_call Music_Vermilion_branch_bb3f
sound_call Music_Vermilion_branch_bb3f
sound_call Music_Vermilion_branch_bb3f
sound_call Music_Vermilion_branch_bb3f
sound_loop 0, Music_Vermilion_branch_bb0e
Music_Vermilion_branch_bb3f::
triangle1 2
@ -320,4 +320,4 @@ Music_Vermilion_branch_bb3f::
triangle1 2
triangle1 1
triangle1 1
endchannel
sound_ret

File diff suppressed because it is too large Load diff

View file

@ -1,11 +1,11 @@
SFX_59_1_Ch4:
duty 2
squarenote 4, 15, 1, 1920
endchannel
SFX_59_1_Ch5:
duty 2
squarenote 1, 0, 8, 0
squarenote 4, 10, 1, 1889
endchannel
duty_cycle 2
square_note 4, 15, 1, 1920
sound_ret
SFX_59_1_Ch6:
duty_cycle 2
square_note 1, 0, 8, 0
square_note 4, 10, 1, 1889
sound_ret

View file

@ -1,11 +1,11 @@
SFX_59_3_Ch4:
duty 2
squarenote 4, 15, 1, 1920
endchannel
SFX_59_3_Ch5:
duty 2
squarenote 1, 0, 8, 0
squarenote 4, 10, 1, 1889
endchannel
duty_cycle 2
square_note 4, 15, 1, 1920
sound_ret
SFX_59_3_Ch6:
duty_cycle 2
square_note 1, 0, 8, 0
square_note 4, 10, 1, 1889
sound_ret

View file

@ -1,6 +1,6 @@
SFX_Arrow_Tiles_1_Ch4:
duty 0
pitchenvelope 1, 7
squarenote 15, 13, 2, 1792
pitchenvelope 0, 0
endchannel
SFX_Arrow_Tiles_1_Ch5:
duty_cycle 0
pitch_sweep 1, 7
square_note 15, 13, 2, 1792
pitch_sweep 0, 0
sound_ret

View file

@ -1,6 +1,6 @@
SFX_Arrow_Tiles_3_Ch4:
duty 0
pitchenvelope 1, 7
squarenote 15, 13, 2, 1792
pitchenvelope 0, 0
endchannel
SFX_Arrow_Tiles_3_Ch5:
duty_cycle 0
pitch_sweep 1, 7
square_note 15, 13, 2, 1792
pitch_sweep 0, 0
sound_ret

View file

@ -1,11 +1,11 @@
SFX_Ball_Poof_Ch4:
duty 2
pitchenvelope 1, 6
squarenote 15, 15, 2, 1024
pitchenvelope 0, 0
endchannel
SFX_Ball_Poof_Ch5:
duty_cycle 2
pitch_sweep 1, 6
square_note 15, 15, 2, 1024
pitch_sweep 0, 0
sound_ret
SFX_Ball_Poof_Ch7:
noisenote 15, 10, 2, 34
endchannel
SFX_Ball_Poof_Ch8:
noise_note 15, 10, 2, 34
sound_ret

View file

@ -1,11 +1,11 @@
SFX_Ball_Toss_Ch4:
duty 2
pitchenvelope 2, -7
squarenote 15, 15, 2, 1920
endchannel
SFX_Ball_Toss_Ch5:
duty 2
squarenote 15, 12, 2, 1922
endchannel
duty_cycle 2
pitch_sweep 2, -7
square_note 15, 15, 2, 1920
sound_ret
SFX_Ball_Toss_Ch6:
duty_cycle 2
square_note 15, 12, 2, 1922
sound_ret

View file

@ -1,6 +1,6 @@
SFX_Battle_09_Ch4:
duty 1
pitchenvelope 9, 7
squarenote 15, 15, 2, 1280
pitchenvelope 0, 0
endchannel
SFX_Battle_09_Ch5:
duty_cycle 1
pitch_sweep 9, 7
square_note 15, 15, 2, 1280
pitch_sweep 0, 0
sound_ret

View file

@ -1,3 +1,3 @@
SFX_Battle_0B_Ch7:
noisenote 8, 15, 1, 84
endchannel
SFX_Battle_0B_Ch8:
noise_note 8, 15, 1, 84
sound_ret

View file

@ -1,5 +1,5 @@
SFX_Battle_0C_Ch7:
noisenote 15, 8, -7, 17
noisenote 4, 15, -7, 18
noisenote 10, 15, 1, 85
endchannel
SFX_Battle_0C_Ch8:
noise_note 15, 8, -7, 17
noise_note 4, 15, -7, 18
noise_note 10, 15, 1, 85
sound_ret

View file

@ -1,5 +1,5 @@
SFX_Battle_0D_Ch7:
noisenote 15, 8, -7, 52
noisenote 8, 15, 2, 53
noisenote 10, 15, 1, 85
endchannel
SFX_Battle_0D_Ch8:
noise_note 15, 8, -7, 52
noise_note 8, 15, 2, 53
noise_note 10, 15, 1, 85
sound_ret

View file

@ -1,4 +1,4 @@
SFX_Battle_0E_Ch7:
noisenote 15, 9, -7, 35
noisenote 8, 15, 1, 33
endchannel
SFX_Battle_0E_Ch8:
noise_note 15, 9, -7, 35
noise_note 8, 15, 1, 33
sound_ret

View file

@ -1,6 +1,6 @@
SFX_Battle_0F_Ch7:
noisenote 2, 14, 1, 75
noisenote 10, 15, 1, 68
noisenote 2, 14, 1, 58
noisenote 6, 15, 1, 52
endchannel
SFX_Battle_0F_Ch8:
noise_note 2, 14, 1, 75
noise_note 10, 15, 1, 68
noise_note 2, 14, 1, 58
noise_note 6, 15, 1, 52
sound_ret

View file

@ -1,6 +1,6 @@
SFX_Battle_12_Ch7:
noisenote 8, 4, -7, 35
noisenote 4, 12, 4, 34
noisenote 6, 15, 2, 35
loopchannel 4, SFX_Battle_12_Ch7
endchannel
SFX_Battle_12_Ch8:
noise_note 8, 4, -7, 35
noise_note 4, 12, 4, 34
noise_note 6, 15, 2, 35
sound_loop 4, SFX_Battle_12_Ch8
sound_ret

View file

@ -1,6 +1,6 @@
SFX_Battle_13_Ch7:
noisenote 8, 4, -7, 51
noisenote 4, 12, 4, 34
noisenote 6, 15, 2, 35
noisenote 15, 15, 2, 34
endchannel
SFX_Battle_13_Ch8:
noise_note 8, 4, -7, 51
noise_note 4, 12, 4, 34
noise_note 6, 15, 2, 35
noise_note 15, 15, 2, 34
sound_ret

View file

@ -1,6 +1,6 @@
SFX_Battle_14_Ch7:
noisenote 8, 15, -7, 50
noisenote 8, 15, 4, 67
noisenote 8, 15, 2, 84
noisenote 8, 15, 1, 101
endchannel
SFX_Battle_14_Ch8:
noise_note 8, 15, -7, 50
noise_note 8, 15, 4, 67
noise_note 8, 15, 2, 84
noise_note 8, 15, 1, 101
sound_ret

View file

@ -1,5 +1,5 @@
SFX_Battle_16_Ch7:
noisenote 1, 9, 4, 35
noisenote 1, 11, 4, 34
noisenote 8, 15, 1, 68
endchannel
SFX_Battle_16_Ch8:
noise_note 1, 9, 4, 35
noise_note 1, 11, 4, 34
noise_note 8, 15, 1, 68
sound_ret

View file

@ -1,6 +1,6 @@
SFX_Battle_17_Ch7:
noisenote 2, 9, 4, 51
noisenote 4, 11, 4, 34
noisenote 4, 15, 1, 68
noisenote 8, 15, 1, 85
endchannel
SFX_Battle_17_Ch8:
noise_note 2, 9, 4, 51
noise_note 4, 11, 4, 34
noise_note 4, 15, 1, 68
noise_note 8, 15, 1, 85
sound_ret

View file

@ -1,4 +1,4 @@
SFX_Battle_18_Ch7:
noisenote 4, 15, -7, 85
noisenote 8, 15, 1, 101
endchannel
SFX_Battle_18_Ch8:
noise_note 4, 15, -7, 85
noise_note 8, 15, 1, 101
sound_ret

View file

@ -1,5 +1,5 @@
SFX_Battle_19_Ch7:
noisenote 2, 8, 4, 67
noisenote 2, 12, 4, 34
noisenote 8, 15, 2, 52
endchannel
SFX_Battle_19_Ch8:
noise_note 2, 8, 4, 67
noise_note 2, 12, 4, 34
noise_note 8, 15, 2, 52
sound_ret

View file

@ -1,4 +1,4 @@
SFX_Battle_1B_Ch7:
noisenote 2, 15, 1, 34
noisenote 15, 15, 2, 18
endchannel
SFX_Battle_1B_Ch8:
noise_note 2, 15, 1, 34
noise_note 15, 15, 2, 18
sound_ret

View file

@ -1,5 +1,5 @@
SFX_Battle_1C_Ch7:
noisenote 2, 12, 2, 1
noisenote 15, 15, 4, 1
noisenote 15, 15, 2, 1
endchannel
SFX_Battle_1C_Ch8:
noise_note 2, 12, 2, 1
noise_note 15, 15, 4, 1
noise_note 15, 15, 2, 1
sound_ret

View file

@ -1,16 +1,16 @@
SFX_Battle_1E_Ch4:
duty 0
pitchenvelope 3, -2
squarenote 4, 15, 2, 512
pitchenvelope 2, 2
squarenote 8, 14, 2, 512
pitchenvelope 0, 0
endchannel
SFX_Battle_1E_Ch5:
duty_cycle 0
pitch_sweep 3, -2
square_note 4, 15, 2, 512
pitch_sweep 2, 2
square_note 8, 14, 2, 512
pitch_sweep 0, 0
sound_ret
SFX_Battle_1E_Ch7:
noisenote 0, 13, 1, 66
noisenote 4, 10, 1, 50
noisenote 0, 13, 1, 34
noisenote 6, 10, 1, 50
endchannel
SFX_Battle_1E_Ch8:
noise_note 0, 13, 1, 66
noise_note 4, 10, 1, 50
noise_note 0, 13, 1, 34
noise_note 6, 10, 1, 50
sound_ret

View file

@ -1,4 +1,4 @@
SFX_Battle_20_Ch7:
noisenote 12, 15, 1, 84
noisenote 8, 15, 1, 100
endchannel
SFX_Battle_20_Ch8:
noise_note 12, 15, 1, 84
noise_note 8, 15, 1, 100
sound_ret

View file

@ -1,7 +1,7 @@
SFX_Battle_21_Ch7:
noisenote 2, 15, 1, 51
noisenote 2, 12, 1, 50
noisenote 2, 10, 1, 49
noisenote 15, 8, 2, 50
noisenote 8, 15, 1, 52
endchannel
SFX_Battle_21_Ch8:
noise_note 2, 15, 1, 51
noise_note 2, 12, 1, 50
noise_note 2, 10, 1, 49
noise_note 15, 8, 2, 50
noise_note 8, 15, 1, 52
sound_ret

View file

@ -1,4 +1,4 @@
SFX_Battle_22_Ch7:
noisenote 2, 13, 2, 50
noisenote 15, 15, 2, 67
endchannel
SFX_Battle_22_Ch8:
noise_note 2, 13, 2, 50
noise_note 15, 15, 2, 67
sound_ret

View file

@ -1,7 +1,7 @@
SFX_Battle_23_Ch7:
noisenote 2, 15, 2, 67
noisenote 4, 11, 5, 50
noisenote 9, 8, 6, 49
noisenote 7, 6, 4, 0
noisenote 15, 15, 2, 85
endchannel
SFX_Battle_23_Ch8:
noise_note 2, 15, 2, 67
noise_note 4, 11, 5, 50
noise_note 9, 8, 6, 49
noise_note 7, 6, 4, 0
noise_note 15, 15, 2, 85
sound_ret

View file

@ -1,12 +1,12 @@
SFX_Battle_24_Ch4:
duty 1
pitchenvelope 9, 7
squarenote 15, 15, 2, 1792
pitchenvelope 0, 0
endchannel
SFX_Battle_24_Ch5:
duty_cycle 1
pitch_sweep 9, 7
square_note 15, 15, 2, 1792
pitch_sweep 0, 0
sound_ret
SFX_Battle_24_Ch7:
noisenote 15, 3, -7, 34
noisenote 15, 15, 2, 33
endchannel
SFX_Battle_24_Ch8:
noise_note 15, 3, -7, 34
noise_note 15, 15, 2, 33
sound_ret

View file

@ -1,7 +1,7 @@
SFX_Battle_25_Ch7:
noisenote 15, 4, -7, 65
noisenote 8, 8, -7, 65
noisenote 8, 12, -7, 65
noisenote 8, 15, 2, 66
noisenote 15, 15, 2, 65
endchannel
SFX_Battle_25_Ch8:
noise_note 15, 4, -7, 65
noise_note 8, 8, -7, 65
noise_note 8, 12, -7, 65
noise_note 8, 15, 2, 66
noise_note 15, 15, 2, 65
sound_ret

View file

@ -1,9 +1,9 @@
SFX_Battle_26_Ch7:
noisenote 10, 15, -7, 80
noisenote 15, 15, -7, 81
noisenote 8, 15, 2, 81
noisenote 6, 15, -7, 82
noisenote 6, 15, -7, 83
noisenote 8, 15, -7, 84
noisenote 15, 15, 2, 84
endchannel
SFX_Battle_26_Ch8:
noise_note 10, 15, -7, 80
noise_note 15, 15, -7, 81
noise_note 8, 15, 2, 81
noise_note 6, 15, -7, 82
noise_note 6, 15, -7, 83
noise_note 8, 15, -7, 84
noise_note 15, 15, 2, 84
sound_ret

View file

@ -1,27 +1,27 @@
SFX_Battle_27_Ch4:
duty 2
squarenote 15, 3, -7, 1984
SFX_Battle_27_Ch5:
duty_cycle 2
square_note 15, 3, -7, 1984
SFX_Battle_27_branch_2062a:
squarenote 15, 13, -7, 1984
loopchannel 4, SFX_Battle_27_branch_2062a
squarenote 15, 13, 1, 1984
endchannel
square_note 15, 13, -7, 1984
sound_loop 4, SFX_Battle_27_branch_2062a
square_note 15, 13, 1, 1984
sound_ret
SFX_Battle_27_Ch5:
dutycycle 179
squarenote 15, 2, -7, 1992
SFX_Battle_27_Ch6:
duty_cycle_pattern 179
square_note 15, 2, -7, 1992
SFX_Battle_27_branch_2063d:
squarenote 15, 12, -7, 1991
loopchannel 4, SFX_Battle_27_branch_2063d
squarenote 15, 12, 1, 1992
endchannel
square_note 15, 12, -7, 1991
sound_loop 4, SFX_Battle_27_branch_2063d
square_note 15, 12, 1, 1992
sound_ret
SFX_Battle_27_Ch7:
noisenote 3, 9, 7, 18
noisenote 3, 10, 1, 17
loopchannel 10, SFX_Battle_27_Ch7
endchannel
SFX_Battle_27_Ch8:
noise_note 3, 9, 7, 18
noise_note 3, 10, 1, 17
sound_loop 10, SFX_Battle_27_Ch8
sound_ret

View file

@ -1,21 +1,21 @@
SFX_Battle_28_Ch4:
duty 0
squarenote 0, 15, 1, 1984
squarenote 0, 15, 1, 1792
loopchannel 12, SFX_Battle_28_Ch4
endchannel
SFX_Battle_28_Ch5:
dutycycle 179
squarenote 0, 14, 1, 1985
squarenote 0, 14, 1, 1793
loopchannel 12, SFX_Battle_28_Ch5
endchannel
duty_cycle 0
square_note 0, 15, 1, 1984
square_note 0, 15, 1, 1792
sound_loop 12, SFX_Battle_28_Ch5
sound_ret
SFX_Battle_28_Ch7:
noisenote 1, 13, 1, 73
noisenote 1, 13, 1, 41
loopchannel 6, SFX_Battle_28_Ch7
endchannel
SFX_Battle_28_Ch6:
duty_cycle_pattern 179
square_note 0, 14, 1, 1985
square_note 0, 14, 1, 1793
sound_loop 12, SFX_Battle_28_Ch6
sound_ret
SFX_Battle_28_Ch8:
noise_note 1, 13, 1, 73
noise_note 1, 13, 1, 41
sound_loop 6, SFX_Battle_28_Ch8
sound_ret

View file

@ -1,18 +1,18 @@
SFX_Battle_29_Ch4:
dutycycle 201
squarenote 11, 15, 3, 288
squarenote 9, 13, 3, 336
loopchannel 5, SFX_Battle_29_Ch4
squarenote 8, 14, 3, 304
squarenote 15, 12, 2, 272
endchannel
SFX_Battle_29_Ch5:
duty_cycle_pattern 201
square_note 11, 15, 3, 288
square_note 9, 13, 3, 336
sound_loop 5, SFX_Battle_29_Ch5
square_note 8, 14, 3, 304
square_note 15, 12, 2, 272
sound_ret
SFX_Battle_29_Ch7:
noisenote 10, 15, 3, 53
noisenote 14, 15, 6, 69
loopchannel 4, SFX_Battle_29_Ch7
noisenote 12, 15, 4, 188
noisenote 12, 15, 5, 156
noisenote 15, 15, 4, 172
endchannel
SFX_Battle_29_Ch8:
noise_note 10, 15, 3, 53
noise_note 14, 15, 6, 69
sound_loop 4, SFX_Battle_29_Ch8
noise_note 12, 15, 4, 188
noise_note 12, 15, 5, 156
noise_note 15, 15, 4, 172
sound_ret

View file

@ -1,28 +1,28 @@
SFX_Battle_2A_Ch4:
dutycycle 57
squarenote 4, 15, 4, 1536
squarenote 3, 12, 4, 1280
squarenote 5, 11, 5, 1536
squarenote 13, 14, 2, 1728
loopchannel 3, SFX_Battle_2A_Ch4
squarenote 8, 13, 1, 1536
endchannel
SFX_Battle_2A_Ch5:
dutycycle 141
squarenote 5, 14, 4, 1504
squarenote 4, 11, 4, 1248
squarenote 6, 10, 5, 1512
squarenote 14, 13, 1, 1696
loopchannel 3, SFX_Battle_2A_Ch5
endchannel
duty_cycle_pattern 57
square_note 4, 15, 4, 1536
square_note 3, 12, 4, 1280
square_note 5, 11, 5, 1536
square_note 13, 14, 2, 1728
sound_loop 3, SFX_Battle_2A_Ch5
square_note 8, 13, 1, 1536
sound_ret
SFX_Battle_2A_Ch7:
noisenote 5, 12, 3, 51
noisenote 3, 9, 2, 67
noisenote 10, 11, 5, 51
noisenote 15, 12, 3, 50
loopchannel 2, SFX_Battle_2A_Ch7
endchannel
SFX_Battle_2A_Ch6:
duty_cycle_pattern 141
square_note 5, 14, 4, 1504
square_note 4, 11, 4, 1248
square_note 6, 10, 5, 1512
square_note 14, 13, 1, 1696
sound_loop 3, SFX_Battle_2A_Ch6
sound_ret
SFX_Battle_2A_Ch8:
noise_note 5, 12, 3, 51
noise_note 3, 9, 2, 67
noise_note 10, 11, 5, 51
noise_note 15, 12, 3, 50
sound_loop 2, SFX_Battle_2A_Ch8
sound_ret

View file

@ -1,21 +1,21 @@
SFX_Battle_2B_Ch4:
dutycycle 210
squarenote 3, 8, 1, 768
squarenote 3, 12, 1, 1024
squarenote 3, 15, 1, 1280
squarenote 3, 11, 1, 1024
squarenote 3, 7, 1, 768
loopchannel 5, SFX_Battle_2B_Ch4
squarenote 8, 8, 1, 1024
endchannel
SFX_Battle_2B_Ch5:
duty_cycle_pattern 210
square_note 3, 8, 1, 768
square_note 3, 12, 1, 1024
square_note 3, 15, 1, 1280
square_note 3, 11, 1, 1024
square_note 3, 7, 1, 768
sound_loop 5, SFX_Battle_2B_Ch5
square_note 8, 8, 1, 1024
sound_ret
SFX_Battle_2B_Ch7:
noisenote 3, 6, 2, 34
noisenote 3, 10, 2, 50
noisenote 3, 13, 2, 51
noisenote 3, 9, 2, 35
noisenote 3, 5, 2, 18
loopchannel 5, SFX_Battle_2B_Ch7
noisenote 8, 8, 1, 18
endchannel
SFX_Battle_2B_Ch8:
noise_note 3, 6, 2, 34
noise_note 3, 10, 2, 50
noise_note 3, 13, 2, 51
noise_note 3, 9, 2, 35
noise_note 3, 5, 2, 18
sound_loop 5, SFX_Battle_2B_Ch8
noise_note 8, 8, 1, 18
sound_ret

View file

@ -1,25 +1,25 @@
SFX_Battle_2C_Ch4:
dutycycle 57
squarenote 15, 15, 4, 1280
squarenote 15, 12, 4, 1024
squarenote 15, 14, 2, 1472
loopchannel 3, SFX_Battle_2C_Ch4
endchannel
SFX_Battle_2C_Ch5:
dutycycle 141
squarenote 7, 14, 4, 1072
squarenote 15, 11, 4, 816
squarenote 15, 10, 2, 1080
loopchannel 4, SFX_Battle_2C_Ch5
endchannel
duty_cycle_pattern 57
square_note 15, 15, 4, 1280
square_note 15, 12, 4, 1024
square_note 15, 14, 2, 1472
sound_loop 3, SFX_Battle_2C_Ch5
sound_ret
SFX_Battle_2C_Ch7:
noisenote 9, 15, 4, 68
noisenote 9, 15, 2, 67
noisenote 15, 15, 4, 66
noisenote 15, 15, 4, 65
loopchannel 3, SFX_Battle_2C_Ch7
endchannel
SFX_Battle_2C_Ch6:
duty_cycle_pattern 141
square_note 7, 14, 4, 1072
square_note 15, 11, 4, 816
square_note 15, 10, 2, 1080
sound_loop 4, SFX_Battle_2C_Ch6
sound_ret
SFX_Battle_2C_Ch8:
noise_note 9, 15, 4, 68
noise_note 9, 15, 2, 67
noise_note 15, 15, 4, 66
noise_note 15, 15, 4, 65
sound_loop 3, SFX_Battle_2C_Ch8
sound_ret

View file

@ -1,27 +1,27 @@
SFX_Battle_2E_Ch4:
duty 0
squarenote 2, 15, 1, 512
squarenote 3, 15, 1, 1792
squarenote 4, 15, 1, 1280
squarenote 5, 15, 1, 2032
loopchannel 8, SFX_Battle_2E_Ch4
endchannel
SFX_Battle_2E_Ch5:
dutycycle 179
squarenote 2, 14, 1, 770
squarenote 3, 14, 1, 2034
squarenote 4, 14, 1, 1538
squarenote 5, 14, 1, 1794
loopchannel 8, SFX_Battle_2E_Ch5
endchannel
duty_cycle 0
square_note 2, 15, 1, 512
square_note 3, 15, 1, 1792
square_note 4, 15, 1, 1280
square_note 5, 15, 1, 2032
sound_loop 8, SFX_Battle_2E_Ch5
sound_ret
SFX_Battle_2E_Ch7:
noisenote 2, 13, 3, 16
noisenote 3, 13, 3, 17
noisenote 2, 13, 2, 16
noisenote 5, 13, 2, 18
loopchannel 9, SFX_Battle_2E_Ch7
endchannel
SFX_Battle_2E_Ch6:
duty_cycle_pattern 179
square_note 2, 14, 1, 770
square_note 3, 14, 1, 2034
square_note 4, 14, 1, 1538
square_note 5, 14, 1, 1794
sound_loop 8, SFX_Battle_2E_Ch6
sound_ret
SFX_Battle_2E_Ch8:
noise_note 2, 13, 3, 16
noise_note 3, 13, 3, 17
noise_note 2, 13, 2, 16
noise_note 5, 13, 2, 18
sound_loop 9, SFX_Battle_2E_Ch8
sound_ret

View file

@ -1,21 +1,21 @@
SFX_Battle_2F_Ch4:
dutycycle 43
squarenote 3, 15, 1, 2032
squarenote 4, 15, 2, 512
loopchannel 8, SFX_Battle_2F_Ch4
endchannel
SFX_Battle_2F_Ch5:
dutycycle 179
squarenote 4, 14, 2, 514
squarenote 4, 14, 1, 2018
loopchannel 9, SFX_Battle_2F_Ch5
endchannel
duty_cycle_pattern 43
square_note 3, 15, 1, 2032
square_note 4, 15, 2, 512
sound_loop 8, SFX_Battle_2F_Ch5
sound_ret
SFX_Battle_2F_Ch7:
noisenote 4, 15, -7, 67
noisenote 4, 15, 2, 68
loopchannel 9, SFX_Battle_2F_Ch7
endchannel
SFX_Battle_2F_Ch6:
duty_cycle_pattern 179
square_note 4, 14, 2, 514
square_note 4, 14, 1, 2018
sound_loop 9, SFX_Battle_2F_Ch6
sound_ret
SFX_Battle_2F_Ch8:
noise_note 4, 15, -7, 67
noise_note 4, 15, 2, 68
sound_loop 9, SFX_Battle_2F_Ch8
sound_ret

View file

@ -1,18 +1,18 @@
SFX_Battle_31_Ch4:
duty 2
squarenote 15, 15, -7, 2016
squarenote 15, 15, -7, 2016
squarenote 15, 15, -7, 2016
squarenote 15, 15, -7, 2016
squarenote 15, 15, 2, 2016
endchannel
SFX_Battle_31_Ch5:
duty 3
squarenote 15, 15, -7, 2018
squarenote 15, 15, -7, 2017
squarenote 15, 15, -7, 2018
squarenote 15, 15, -7, 2017
squarenote 15, 15, 2, 2018
endchannel
duty_cycle 2
square_note 15, 15, -7, 2016
square_note 15, 15, -7, 2016
square_note 15, 15, -7, 2016
square_note 15, 15, -7, 2016
square_note 15, 15, 2, 2016
sound_ret
SFX_Battle_31_Ch6:
duty_cycle 3
square_note 15, 15, -7, 2018
square_note 15, 15, -7, 2017
square_note 15, 15, -7, 2018
square_note 15, 15, -7, 2017
square_note 15, 15, 2, 2018
sound_ret

View file

@ -1,12 +1,12 @@
SFX_Battle_32_Ch4:
duty 2
pitchenvelope 10, -7
squarenote 8, 15, 1, 1792
pitchenvelope 0, 0
endchannel
SFX_Battle_32_Ch5:
duty 3
squarenote 8, 15, 1, 1793
endchannel
duty_cycle 2
pitch_sweep 10, -7
square_note 8, 15, 1, 1792
pitch_sweep 0, 0
sound_ret
SFX_Battle_32_Ch6:
duty_cycle 3
square_note 8, 15, 1, 1793
sound_ret

View file

@ -1,18 +1,18 @@
SFX_Battle_33_Ch4:
duty 2
squarenote 6, 15, 1, 1280
squarenote 6, 15, 1, 1408
squarenote 6, 15, 1, 1536
squarenote 6, 15, 1, 1664
squarenote 8, 15, 1, 1792
endchannel
SFX_Battle_33_Ch5:
duty 3
squarenote 6, 14, 1, 1296
squarenote 6, 14, 1, 1424
squarenote 6, 14, 1, 1552
squarenote 6, 14, 1, 1680
squarenote 8, 14, 1, 1808
endchannel
duty_cycle 2
square_note 6, 15, 1, 1280
square_note 6, 15, 1, 1408
square_note 6, 15, 1, 1536
square_note 6, 15, 1, 1664
square_note 8, 15, 1, 1792
sound_ret
SFX_Battle_33_Ch6:
duty_cycle 3
square_note 6, 14, 1, 1296
square_note 6, 14, 1, 1424
square_note 6, 14, 1, 1552
square_note 6, 14, 1, 1680
square_note 8, 14, 1, 1808
sound_ret

View file

@ -1,22 +1,22 @@
SFX_Battle_34_Ch4:
dutycycle 237
squarenote 8, 15, -7, 1016
squarenote 15, 15, -7, 1024
squarenote 15, 15, 3, 1024
endchannel
SFX_Battle_34_Ch5:
dutycycle 180
squarenote 8, 14, -7, 960
squarenote 15, 14, -7, 960
squarenote 15, 14, 3, 960
endchannel
duty_cycle_pattern 237
square_note 8, 15, -7, 1016
square_note 15, 15, -7, 1024
square_note 15, 15, 3, 1024
sound_ret
SFX_Battle_34_Ch7:
noisenote 4, 15, -7, 81
noisenote 8, 15, -7, 84
noisenote 15, 15, -7, 85
noisenote 15, 15, 3, 86
endchannel
SFX_Battle_34_Ch6:
duty_cycle_pattern 180
square_note 8, 14, -7, 960
square_note 15, 14, -7, 960
square_note 15, 14, 3, 960
sound_ret
SFX_Battle_34_Ch8:
noise_note 4, 15, -7, 81
noise_note 8, 15, -7, 84
noise_note 15, 15, -7, 85
noise_note 15, 15, 3, 86
sound_ret

View file

@ -1,29 +1,29 @@
SFX_Battle_35_Ch4:
executemusic
vibrato 10, 2, 4
duty 2
notetype 10, 8, 7
octave 5
G# 8
octave 6
F# 4
E_ 4
octave 5
G# 8
endchannel
SFX_Battle_35_Ch5:
executemusic
vibrato 10, 2, 3
duty 2
notetype 11, 6, 7
execute_music
vibrato 10, 2, 4
duty_cycle 2
note_type 10, 8, 7
octave 5
G# 8
notetype 10, 6, 7
note G#, 8
octave 6
F# 4
E_ 4
note F#, 4
note E_, 4
octave 5
G# 8
endchannel
note G#, 8
sound_ret
SFX_Battle_35_Ch6:
execute_music
vibrato 10, 2, 3
duty_cycle 2
note_type 11, 6, 7
octave 5
note G#, 8
note_type 10, 6, 7
octave 6
note F#, 4
note E_, 4
octave 5
note G#, 8
sound_ret

View file

@ -1,47 +1,47 @@
SFX_Battle_36_Ch4:
duty 0
squarenote 2, 15, 1, 1920
squarenote 2, 15, 1, 1792
squarenote 2, 15, 1, 1936
squarenote 2, 15, 1, 1792
squarenote 2, 15, 1, 1952
squarenote 2, 15, 1, 1792
squarenote 2, 15, 1, 1968
squarenote 2, 15, 1, 1792
squarenote 2, 15, 1, 1984
squarenote 2, 15, 1, 1792
squarenote 2, 15, 1, 2000
SFX_Battle_36_Ch5:
duty_cycle 0
square_note 2, 15, 1, 1920
square_note 2, 15, 1, 1792
square_note 2, 15, 1, 1936
square_note 2, 15, 1, 1792
square_note 2, 15, 1, 1952
square_note 2, 15, 1, 1792
square_note 2, 15, 1, 1968
square_note 2, 15, 1, 1792
square_note 2, 15, 1, 1984
square_note 2, 15, 1, 1792
square_note 2, 15, 1, 2000
SFX_Battle_36_branch_20930:
squarenote 2, 15, 1, 1792
squarenote 2, 15, 1, 2016
loopchannel 12, SFX_Battle_36_branch_20930
squarenote 15, 15, 1, 1792
endchannel
square_note 2, 15, 1, 1792
square_note 2, 15, 1, 2016
sound_loop 12, SFX_Battle_36_branch_20930
square_note 15, 15, 1, 1792
sound_ret
SFX_Battle_36_Ch5:
dutycycle 179
squarenote 2, 15, 1, 1921
squarenote 2, 15, 1, 1793
squarenote 2, 15, 1, 1937
squarenote 2, 15, 1, 1793
squarenote 2, 15, 1, 1953
squarenote 2, 15, 1, 1793
squarenote 2, 15, 1, 1969
squarenote 2, 15, 1, 1793
squarenote 2, 15, 1, 1985
squarenote 2, 15, 1, 1793
squarenote 2, 15, 1, 2001
squarenote 2, 15, 1, 1793
squarenote 2, 15, 1, 2017
loopchannel 12, SFX_Battle_36_branch_20930
squarenote 15, 15, 1, 1793
endchannel
SFX_Battle_36_Ch6:
duty_cycle_pattern 179
square_note 2, 15, 1, 1921
square_note 2, 15, 1, 1793
square_note 2, 15, 1, 1937
square_note 2, 15, 1, 1793
square_note 2, 15, 1, 1953
square_note 2, 15, 1, 1793
square_note 2, 15, 1, 1969
square_note 2, 15, 1, 1793
square_note 2, 15, 1, 1985
square_note 2, 15, 1, 1793
square_note 2, 15, 1, 2001
square_note 2, 15, 1, 1793
square_note 2, 15, 1, 2017
sound_loop 12, SFX_Battle_36_branch_20930
square_note 15, 15, 1, 1793
sound_ret
SFX_Battle_36_Ch7:
noisenote 1, 13, 1, 73
noisenote 1, 13, 1, 41
loopchannel 26, SFX_Battle_36_Ch7
endchannel
SFX_Battle_36_Ch8:
noise_note 1, 13, 1, 73
noise_note 1, 13, 1, 41
sound_loop 26, SFX_Battle_36_Ch8
sound_ret

View file

@ -1,61 +1,61 @@
SFX_Caught_Mon_Ch4:
executemusic
SFX_Caught_Mon_Ch5:
execute_music
tempo 256
volume 7, 7
duty 3
toggleperfectpitch
notetype 6, 11, 2
duty_cycle 3
toggle_perfect_pitch
note_type 6, 11, 2
octave 3
E_ 2
F# 2
G# 2
G# 1
G# 1
B_ 2
note E_, 2
note F#, 2
note G#, 2
note G#, 1
note G#, 1
note B_, 2
octave 4
C# 2
D# 2
D# 1
D# 1
notetype 6, 11, 5
E_ 8
endchannel
SFX_Caught_Mon_Ch5:
executemusic
duty 2
notetype 6, 12, 2
octave 4
G# 2
G# 1
G# 1
E_ 2
E_ 1
E_ 1
B_ 2
B_ 1
B_ 1
A_ 2
A_ 1
A_ 1
notetype 6, 12, 5
G# 8
endchannel
note C#, 2
note D#, 2
note D#, 1
note D#, 1
note_type 6, 11, 5
note E_, 8
sound_ret
SFX_Caught_Mon_Ch6:
executemusic
notetype 6, 1, 0
execute_music
duty_cycle 2
note_type 6, 12, 2
octave 4
B_ 2
note G#, 2
note G#, 1
note G#, 1
note E_, 2
note E_, 1
note E_, 1
note B_, 2
note B_, 1
note B_, 1
note A_, 2
note A_, 1
note A_, 1
note_type 6, 12, 5
note G#, 8
sound_ret
SFX_Caught_Mon_Ch7:
execute_music
note_type 6, 1, 0
octave 4
note B_, 2
rest 2
octave 5
C# 2
note C#, 2
rest 2
D# 2
note D#, 2
rest 2
F# 2
G_ 2
G# 4
endchannel
note F#, 2
note G_, 2
note G#, 4
sound_ret

Some files were not shown because too many files have changed in this diff Show more