Break up sfxnote parameters into duty, volume, volume change and pitch

This commit is contained in:
dannye 2018-03-16 20:35:40 -05:00
parent b382473f7b
commit 4398dde1e4
311 changed files with 2598 additions and 2586 deletions

View File

@ -563,7 +563,7 @@ Audio1_executemusic:
Audio1_octave:
and $f0
cp $e0 ; is this command an octave?
jr nz, Audio1_unknownsfx0x20 ; no
jr nz, Audio1_sfxnote ; no
ld hl, wChannelOctaves
ld b, 0
add hl, bc
@ -572,17 +572,18 @@ Audio1_octave:
ld [hl], a ; store low nibble as octave
jp Audio1_endchannel
Audio1_unknownsfx0x20:
cp $20 ; is this command an unknownsfx0x20?
jr nz, Audio1_unknownsfx0x10
; sfxnote is either squarenote or noisenote depending on the channel
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?
jr c, Audio1_unknownsfx0x10 ; no
jr c, Audio1_pitchenvelope ; no
ld b, 0
ld hl, wChannelFlags2
add hl, bc
bit BIT_EXECUTE_MUSIC, [hl] ; is executemusic being used?
jr nz, Audio1_unknownsfx0x10 ; yes
jr nz, Audio1_pitchenvelope ; yes
call Audio1_notelength
; This code seems to do the same thing as what Audio1_ApplyDutyAndSoundLength
@ -624,12 +625,12 @@ Audio1_unknownsfx0x20:
call Audio1_ApplyWavePatternAndFrequency
ret
Audio1_unknownsfx0x10:
Audio1_pitchenvelope:
ld a, c
cp Ch4
jr c, Audio1_note ; if not a sfx
ld a, d
cp $10 ; is this command a unknownsfx0x10?
cp $10 ; is this command a pitchenvelope?
jr nz, Audio1_note ; no
ld b, $0
ld hl, wChannelFlags2

View File

@ -557,7 +557,7 @@ Audio2_executemusic:
Audio2_octave:
and $f0
cp $e0 ; is this command an octave?
jr nz, Audio2_unknownsfx0x20 ; no
jr nz, Audio2_sfxnote ; no
ld hl, wChannelOctaves ; yes
ld b, $0
add hl, bc
@ -566,17 +566,18 @@ Audio2_octave:
ld [hl], a ; store low nibble as octave
jp Audio2_endchannel
Audio2_unknownsfx0x20:
cp $20 ; is this command an unknownsfx0x20?
jr nz, Audio2_unknownsfx0x10 ; no
; sfxnote is either squarenote or noisenote depending on the channel
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?
jr c, Audio2_unknownsfx0x10 ; no
jr c, Audio2_pitchenvelope ; no
ld b, $0
ld hl, wChannelFlags2
add hl, bc
bit 0, [hl]
jr nz, Audio2_unknownsfx0x10 ; no
jr nz, Audio2_pitchenvelope ; no
call Audio2_notelength
ld d, a
ld b, $0
@ -611,12 +612,12 @@ Audio2_unknownsfx0x20:
call Audio2_21dcc
ret
Audio2_unknownsfx0x10:
Audio2_pitchenvelope:
ld a, c
cp Ch4
jr c, Audio2_note ; if not a sfx
ld a, d
cp $10 ; is this command a unknownsfx0x10?
cp $10 ; is this command a pitchenvelope?
jr nz, Audio2_note ; no
ld b, $0
ld hl, wChannelFlags2

View File

@ -550,7 +550,7 @@ Audio3_executemusic:
Audio3_octave:
and $f0
cp $e0 ; is this command an octave?
jr nz, Audio3_unknownsfx0x20 ; no
jr nz, Audio3_sfxnote ; no
ld hl, wChannelOctaves ; yes
ld b, $0
add hl, bc
@ -559,17 +559,18 @@ Audio3_octave:
ld [hl], a ; store low nibble as octave
jp Audio3_endchannel
Audio3_unknownsfx0x20:
cp $20 ; is this command an unknownsfx0x20?
jr nz, Audio3_unknownsfx0x10 ; no
; sfxnote is either squarenote or noisenote depending on the channel
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?
jr c, Audio3_unknownsfx0x10 ; no
jr c, Audio3_pitchenvelope ; no
ld b, $0
ld hl, wChannelFlags2
add hl, bc
bit 0, [hl]
jr nz, Audio3_unknownsfx0x10 ; no
jr nz, Audio3_pitchenvelope ; no
call Audio3_notelength ; yes
ld d, a
ld b, $0
@ -604,12 +605,12 @@ Audio3_unknownsfx0x20:
call Audio3_7d6bf
ret
Audio3_unknownsfx0x10:
Audio3_pitchenvelope:
ld a, c
cp Ch4
jr c, Audio3_note ; if not a sfx
ld a, d
cp $10 ; is this command an unknownsfx0x10?
cp $10 ; is this command an pitchenvelope?
jr nz, Audio3_note ; no
ld b, $0
ld hl, wChannelFlags2

View File

@ -1,11 +1,11 @@
SFX_59_1_Ch4:
duty 2
squarenote 4, 241, 128, 7
squarenote 4, 15, 1, 1920
endchannel
SFX_59_1_Ch5:
duty 2
squarenote 1, 8, 0, 0
squarenote 4, 161, 97, 7
squarenote 1, 0, 8, 0
squarenote 4, 10, 1, 1889
endchannel

View File

@ -1,11 +1,11 @@
SFX_59_3_Ch4:
duty 2
squarenote 4, 241, 128, 7
squarenote 4, 15, 1, 1920
endchannel
SFX_59_3_Ch5:
duty 2
squarenote 1, 8, 0, 0
squarenote 4, 161, 97, 7
squarenote 1, 0, 8, 0
squarenote 4, 10, 1, 1889
endchannel

View File

@ -1,6 +1,6 @@
SFX_Arrow_Tiles_1_Ch4:
duty 0
pitchenvelope 1, 7
squarenote 15, 210, 0, 7
squarenote 15, 13, 2, 1792
pitchenvelope 0, 0
endchannel

View File

@ -1,6 +1,6 @@
SFX_Arrow_Tiles_3_Ch4:
duty 0
pitchenvelope 1, 7
squarenote 15, 210, 0, 7
squarenote 15, 13, 2, 1792
pitchenvelope 0, 0
endchannel

View File

@ -1,11 +1,11 @@
SFX_Ball_Poof_Ch4:
duty 2
pitchenvelope 1, 6
squarenote 15, 242, 0, 4
squarenote 15, 15, 2, 1024
pitchenvelope 0, 0
endchannel
SFX_Ball_Poof_Ch7:
noisenote 15, 162, 34
noisenote 15, 10, 2, 34
endchannel

View File

@ -1,11 +1,11 @@
SFX_Ball_Toss_Ch4:
duty 2
pitchenvelope 2, -7
squarenote 15, 242, 128, 7
squarenote 15, 15, 2, 1920
endchannel
SFX_Ball_Toss_Ch5:
duty 2
squarenote 15, 194, 130, 7
squarenote 15, 12, 2, 1922
endchannel

View File

@ -1,6 +1,6 @@
SFX_Battle_09_Ch4:
duty 1
pitchenvelope 9, 7
squarenote 15, 242, 0, 5
squarenote 15, 15, 2, 1280
pitchenvelope 0, 0
endchannel

View File

@ -1,3 +1,3 @@
SFX_Battle_0B_Ch7:
noisenote 8, 241, 84
noisenote 8, 15, 1, 84
endchannel

View File

@ -1,5 +1,5 @@
SFX_Battle_0C_Ch7:
noisenote 15, 143, 17
noisenote 4, 255, 18
noisenote 10, 241, 85
noisenote 15, 8, -7, 17
noisenote 4, 15, -7, 18
noisenote 10, 15, 1, 85
endchannel

View File

@ -1,5 +1,5 @@
SFX_Battle_0D_Ch7:
noisenote 15, 143, 52
noisenote 8, 242, 53
noisenote 10, 241, 85
noisenote 15, 8, -7, 52
noisenote 8, 15, 2, 53
noisenote 10, 15, 1, 85
endchannel

View File

@ -1,4 +1,4 @@
SFX_Battle_0E_Ch7:
noisenote 15, 159, 35
noisenote 8, 241, 33
noisenote 15, 9, -7, 35
noisenote 8, 15, 1, 33
endchannel

View File

@ -1,6 +1,6 @@
SFX_Battle_0F_Ch7:
noisenote 2, 225, 75
noisenote 10, 241, 68
noisenote 2, 225, 58
noisenote 6, 241, 52
noisenote 2, 14, 1, 75
noisenote 10, 15, 1, 68
noisenote 2, 14, 1, 58
noisenote 6, 15, 1, 52
endchannel

View File

@ -1,6 +1,6 @@
SFX_Battle_12_Ch7:
noisenote 8, 79, 35
noisenote 4, 196, 34
noisenote 6, 242, 35
noisenote 8, 4, -7, 35
noisenote 4, 12, 4, 34
noisenote 6, 15, 2, 35
loopchannel 4, SFX_Battle_12_Ch7
endchannel

View File

@ -1,6 +1,6 @@
SFX_Battle_13_Ch7:
noisenote 8, 79, 51
noisenote 4, 196, 34
noisenote 6, 242, 35
noisenote 15, 242, 34
noisenote 8, 4, -7, 51
noisenote 4, 12, 4, 34
noisenote 6, 15, 2, 35
noisenote 15, 15, 2, 34
endchannel

View File

@ -1,6 +1,6 @@
SFX_Battle_14_Ch7:
noisenote 8, 255, 50
noisenote 8, 244, 67
noisenote 8, 242, 84
noisenote 8, 241, 101
noisenote 8, 15, -7, 50
noisenote 8, 15, 4, 67
noisenote 8, 15, 2, 84
noisenote 8, 15, 1, 101
endchannel

View File

@ -1,5 +1,5 @@
SFX_Battle_16_Ch7:
noisenote 1, 148, 35
noisenote 1, 180, 34
noisenote 8, 241, 68
noisenote 1, 9, 4, 35
noisenote 1, 11, 4, 34
noisenote 8, 15, 1, 68
endchannel

View File

@ -1,6 +1,6 @@
SFX_Battle_17_Ch7:
noisenote 2, 148, 51
noisenote 4, 180, 34
noisenote 4, 241, 68
noisenote 8, 241, 85
noisenote 2, 9, 4, 51
noisenote 4, 11, 4, 34
noisenote 4, 15, 1, 68
noisenote 8, 15, 1, 85
endchannel

View File

@ -1,4 +1,4 @@
SFX_Battle_18_Ch7:
noisenote 4, 255, 85
noisenote 8, 241, 101
noisenote 4, 15, -7, 85
noisenote 8, 15, 1, 101
endchannel

View File

@ -1,5 +1,5 @@
SFX_Battle_19_Ch7:
noisenote 2, 132, 67
noisenote 2, 196, 34
noisenote 8, 242, 52
noisenote 2, 8, 4, 67
noisenote 2, 12, 4, 34
noisenote 8, 15, 2, 52
endchannel

View File

@ -1,4 +1,4 @@
SFX_Battle_1B_Ch7:
noisenote 2, 241, 34
noisenote 15, 242, 18
noisenote 2, 15, 1, 34
noisenote 15, 15, 2, 18
endchannel

View File

@ -1,5 +1,5 @@
SFX_Battle_1C_Ch7:
noisenote 2, 194, 1
noisenote 15, 244, 1
noisenote 15, 242, 1
noisenote 2, 12, 2, 1
noisenote 15, 15, 4, 1
noisenote 15, 15, 2, 1
endchannel

View File

@ -1,16 +1,16 @@
SFX_Battle_1E_Ch4:
duty 0
pitchenvelope 3, -2
squarenote 4, 242, 0, 2
squarenote 4, 15, 2, 512
pitchenvelope 2, 2
squarenote 8, 226, 0, 2
squarenote 8, 14, 2, 512
pitchenvelope 0, 0
endchannel
SFX_Battle_1E_Ch7:
noisenote 0, 209, 66
noisenote 4, 161, 50
noisenote 0, 209, 34
noisenote 6, 161, 50
noisenote 0, 13, 1, 66
noisenote 4, 10, 1, 50
noisenote 0, 13, 1, 34
noisenote 6, 10, 1, 50
endchannel

View File

@ -1,4 +1,4 @@
SFX_Battle_20_Ch7:
noisenote 12, 241, 84
noisenote 8, 241, 100
noisenote 12, 15, 1, 84
noisenote 8, 15, 1, 100
endchannel

View File

@ -1,7 +1,7 @@
SFX_Battle_21_Ch7:
noisenote 2, 241, 51
noisenote 2, 193, 50
noisenote 2, 161, 49
noisenote 15, 130, 50
noisenote 8, 241, 52
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

View File

@ -1,4 +1,4 @@
SFX_Battle_22_Ch7:
noisenote 2, 210, 50
noisenote 15, 242, 67
noisenote 2, 13, 2, 50
noisenote 15, 15, 2, 67
endchannel

View File

@ -1,7 +1,7 @@
SFX_Battle_23_Ch7:
noisenote 2, 242, 67
noisenote 4, 181, 50
noisenote 9, 134, 49
noisenote 7, 100, 0
noisenote 15, 242, 85
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

View File

@ -1,12 +1,12 @@
SFX_Battle_24_Ch4:
duty 1
pitchenvelope 9, 7
squarenote 15, 242, 0, 7
squarenote 15, 15, 2, 1792
pitchenvelope 0, 0
endchannel
SFX_Battle_24_Ch7:
noisenote 15, 63, 34
noisenote 15, 242, 33
noisenote 15, 3, -7, 34
noisenote 15, 15, 2, 33
endchannel

View File

@ -1,7 +1,7 @@
SFX_Battle_25_Ch7:
noisenote 15, 79, 65
noisenote 8, 143, 65
noisenote 8, 207, 65
noisenote 8, 242, 66
noisenote 15, 242, 65
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

View File

@ -1,9 +1,9 @@
SFX_Battle_26_Ch7:
noisenote 10, 255, 80
noisenote 15, 255, 81
noisenote 8, 242, 81
noisenote 6, 255, 82
noisenote 6, 255, 83
noisenote 8, 255, 84
noisenote 15, 242, 84
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

View File

@ -1,27 +1,27 @@
SFX_Battle_27_Ch4:
duty 2
squarenote 15, 63, 192, 7
squarenote 15, 3, -7, 1984
SFX_Battle_27_branch_2062a:
squarenote 15, 223, 192, 7
squarenote 15, 13, -7, 1984
loopchannel 4, SFX_Battle_27_branch_2062a
squarenote 15, 209, 192, 7
squarenote 15, 13, 1, 1984
endchannel
SFX_Battle_27_Ch5:
dutycycle 179
squarenote 15, 47, 200, 7
squarenote 15, 2, -7, 1992
SFX_Battle_27_branch_2063d:
squarenote 15, 207, 199, 7
squarenote 15, 12, -7, 1991
loopchannel 4, SFX_Battle_27_branch_2063d
squarenote 15, 193, 200, 7
squarenote 15, 12, 1, 1992
endchannel
SFX_Battle_27_Ch7:
noisenote 3, 151, 18
noisenote 3, 161, 17
noisenote 3, 9, 7, 18
noisenote 3, 10, 1, 17
loopchannel 10, SFX_Battle_27_Ch7
endchannel

View File

@ -1,21 +1,21 @@
SFX_Battle_28_Ch4:
duty 0
squarenote 0, 241, 192, 7
squarenote 0, 241, 0, 7
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, 225, 193, 7
squarenote 0, 225, 1, 7
squarenote 0, 14, 1, 1985
squarenote 0, 14, 1, 1793
loopchannel 12, SFX_Battle_28_Ch5
endchannel
SFX_Battle_28_Ch7:
noisenote 1, 209, 73
noisenote 1, 209, 41
noisenote 1, 13, 1, 73
noisenote 1, 13, 1, 41
loopchannel 6, SFX_Battle_28_Ch7
endchannel

View File

@ -1,18 +1,18 @@
SFX_Battle_29_Ch4:
dutycycle 201
squarenote 11, 243, 32, 1
squarenote 9, 211, 80, 1
squarenote 11, 15, 3, 288
squarenote 9, 13, 3, 336
loopchannel 5, SFX_Battle_29_Ch4
squarenote 8, 227, 48, 1
squarenote 15, 194, 16, 1
squarenote 8, 14, 3, 304
squarenote 15, 12, 2, 272
endchannel
SFX_Battle_29_Ch7:
noisenote 10, 243, 53
noisenote 14, 246, 69
noisenote 10, 15, 3, 53
noisenote 14, 15, 6, 69
loopchannel 4, SFX_Battle_29_Ch7
noisenote 12, 244, 188
noisenote 12, 245, 156
noisenote 15, 244, 172
noisenote 12, 15, 4, 188
noisenote 12, 15, 5, 156
noisenote 15, 15, 4, 172
endchannel

View File

@ -1,28 +1,28 @@
SFX_Battle_2A_Ch4:
dutycycle 57
squarenote 4, 244, 0, 6
squarenote 3, 196, 0, 5
squarenote 5, 181, 0, 6
squarenote 13, 226, 192, 6
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, 209, 0, 6
squarenote 8, 13, 1, 1536
endchannel
SFX_Battle_2A_Ch5:
dutycycle 141
squarenote 5, 228, 224, 5
squarenote 4, 180, 224, 4
squarenote 6, 165, 232, 5
squarenote 14, 209, 160, 6
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
SFX_Battle_2A_Ch7:
noisenote 5, 195, 51
noisenote 3, 146, 67
noisenote 10, 181, 51
noisenote 15, 195, 50
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

View File

@ -1,21 +1,21 @@
SFX_Battle_2B_Ch4:
dutycycle 210
squarenote 3, 129, 0, 3
squarenote 3, 193, 0, 4
squarenote 3, 241, 0, 5
squarenote 3, 177, 0, 4
squarenote 3, 113, 0, 3
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, 129, 0, 4
squarenote 8, 8, 1, 1024
endchannel
SFX_Battle_2B_Ch7:
noisenote 3, 98, 34
noisenote 3, 162, 50
noisenote 3, 210, 51
noisenote 3, 146, 35
noisenote 3, 82, 18
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, 129, 18
noisenote 8, 8, 1, 18
endchannel

View File

@ -1,25 +1,25 @@
SFX_Battle_2C_Ch4:
dutycycle 57
squarenote 15, 244, 0, 5
squarenote 15, 196, 0, 4
squarenote 15, 226, 192, 5
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, 228, 48, 4
squarenote 15, 180, 48, 3
squarenote 15, 162, 56, 4
squarenote 7, 14, 4, 1072
squarenote 15, 11, 4, 816
squarenote 15, 10, 2, 1080
loopchannel 4, SFX_Battle_2C_Ch5
endchannel
SFX_Battle_2C_Ch7:
noisenote 9, 244, 68
noisenote 9, 242, 67
noisenote 15, 244, 66
noisenote 15, 244, 65
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

View File

@ -1,27 +1,27 @@
SFX_Battle_2E_Ch4:
duty 0
squarenote 2, 241, 0, 2
squarenote 3, 241, 0, 7
squarenote 4, 241, 0, 5
squarenote 5, 241, 240, 7
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, 225, 2, 3
squarenote 3, 225, 242, 7
squarenote 4, 225, 2, 6
squarenote 5, 225, 2, 7
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
SFX_Battle_2E_Ch7:
noisenote 2, 211, 16
noisenote 3, 211, 17
noisenote 2, 210, 16
noisenote 5, 210, 18
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

View File

@ -1,21 +1,21 @@
SFX_Battle_2F_Ch4:
dutycycle 43
squarenote 3, 241, 240, 7
squarenote 4, 242, 0, 2
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, 226, 2, 2
squarenote 4, 225, 226, 7
squarenote 4, 14, 2, 514
squarenote 4, 14, 1, 2018
loopchannel 9, SFX_Battle_2F_Ch5
endchannel
SFX_Battle_2F_Ch7:
noisenote 4, 255, 67
noisenote 4, 242, 68
noisenote 4, 15, -7, 67
noisenote 4, 15, 2, 68
loopchannel 9, SFX_Battle_2F_Ch7
endchannel

View File

@ -1,18 +1,18 @@
SFX_Battle_31_Ch4:
duty 2
squarenote 15, 255, 224, 7
squarenote 15, 255, 224, 7
squarenote 15, 255, 224, 7
squarenote 15, 255, 224, 7
squarenote 15, 242, 224, 7
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, 255, 226, 7
squarenote 15, 255, 225, 7
squarenote 15, 255, 226, 7
squarenote 15, 255, 225, 7
squarenote 15, 242, 226, 7
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

View File

@ -1,12 +1,12 @@
SFX_Battle_32_Ch4:
duty 2
pitchenvelope 10, -7
squarenote 8, 241, 0, 7
squarenote 8, 15, 1, 1792
pitchenvelope 0, 0
endchannel
SFX_Battle_32_Ch5:
duty 3
squarenote 8, 241, 1, 7
squarenote 8, 15, 1, 1793
endchannel

View File

@ -1,18 +1,18 @@
SFX_Battle_33_Ch4:
duty 2
squarenote 6, 241, 0, 5
squarenote 6, 241, 128, 5
squarenote 6, 241, 0, 6
squarenote 6, 241, 128, 6
squarenote 8, 241, 0, 7
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, 225, 16, 5
squarenote 6, 225, 144, 5
squarenote 6, 225, 16, 6
squarenote 6, 225, 144, 6
squarenote 8, 225, 16, 7
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

View File

@ -1,22 +1,22 @@
SFX_Battle_34_Ch4:
dutycycle 237
squarenote 8, 255, 248, 3
squarenote 15, 255, 0, 4
squarenote 15, 243, 0, 4
squarenote 8, 15, -7, 1016
squarenote 15, 15, -7, 1024
squarenote 15, 15, 3, 1024
endchannel
SFX_Battle_34_Ch5:
dutycycle 180
squarenote 8, 239, 192, 3
squarenote 15, 239, 192, 3
squarenote 15, 227, 192, 3
squarenote 8, 14, -7, 960
squarenote 15, 14, -7, 960
squarenote 15, 14, 3, 960
endchannel
SFX_Battle_34_Ch7:
noisenote 4, 255, 81
noisenote 8, 255, 84
noisenote 15, 255, 85
noisenote 15, 243, 86
noisenote 4, 15, -7, 81
noisenote 8, 15, -7, 84
noisenote 15, 15, -7, 85
noisenote 15, 15, 3, 86
endchannel

View File

@ -1,47 +1,47 @@
SFX_Battle_36_Ch4:
duty 0
squarenote 2, 241, 128, 7
squarenote 2, 241, 0, 7
squarenote 2, 241, 144, 7
squarenote 2, 241, 0, 7
squarenote 2, 241, 160, 7
squarenote 2, 241, 0, 7
squarenote 2, 241, 176, 7
squarenote 2, 241, 0, 7
squarenote 2, 241, 192, 7
squarenote 2, 241, 0, 7
squarenote 2, 241, 208, 7
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_branch_20930:
squarenote 2, 241, 0, 7
squarenote 2, 241, 224, 7
squarenote 2, 15, 1, 1792
squarenote 2, 15, 1, 2016
loopchannel 12, SFX_Battle_36_branch_20930
squarenote 15, 241, 0, 7
squarenote 15, 15, 1, 1792
endchannel
SFX_Battle_36_Ch5:
dutycycle 179
squarenote 2, 241, 129, 7
squarenote 2, 241, 1, 7
squarenote 2, 241, 145, 7
squarenote 2, 241, 1, 7
squarenote 2, 241, 161, 7
squarenote 2, 241, 1, 7
squarenote 2, 241, 177, 7
squarenote 2, 241, 1, 7
squarenote 2, 241, 193, 7
squarenote 2, 241, 1, 7
squarenote 2, 241, 209, 7
squarenote 2, 241, 1, 7
squarenote 2, 241, 225, 7
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, 241, 1, 7
squarenote 15, 15, 1, 1793
endchannel
SFX_Battle_36_Ch7:
noisenote 1, 209, 73
noisenote 1, 209, 41
noisenote 1, 13, 1, 73
noisenote 1, 13, 1, 41
loopchannel 26, SFX_Battle_36_Ch7
endchannel

View File

@ -1,6 +1,6 @@
SFX_Collision_1_Ch4:
duty 2
pitchenvelope 5, -2
squarenote 15, 241, 0, 3
squarenote 15, 15, 1, 768
pitchenvelope 0, 0
endchannel

View File

@ -1,6 +1,6 @@
SFX_Collision_3_Ch4:
duty 2
pitchenvelope 5, -2
squarenote 15, 241, 0, 3
squarenote 15, 15, 1, 768
pitchenvelope 0, 0
endchannel

View File

@ -1,21 +1,21 @@
SFX_Cry00_1_Ch4:
dutycycle 245
squarenote 4, 243, 24, 7
squarenote 15, 229, 152, 7
squarenote 8, 145, 88, 7
squarenote 4, 15, 3, 1816
squarenote 15, 14, 5, 1944
squarenote 8, 9, 1, 1880
endchannel
SFX_Cry00_1_Ch5:
dutycycle 160
squarenote 5, 179, 8, 7
squarenote 15, 197, 136, 7
squarenote 8, 113, 72, 7
squarenote 5, 11, 3, 1800
squarenote 15, 12, 5, 1928
squarenote 8, 7, 1, 1864
endchannel
SFX_Cry00_1_Ch7:
noisenote 3, 161, 28
noisenote 14, 148, 44
noisenote 8, 129, 28
noisenote 3, 10, 1, 28
noisenote 14, 9, 4, 44
noisenote 8, 8, 1, 28
endchannel

View File

@ -1,21 +1,21 @@
SFX_Cry00_2_Ch4:
dutycycle 245
squarenote 4, 243, 24, 7
squarenote 15, 229, 152, 7
squarenote 8, 145, 88, 7
squarenote 4, 15, 3, 1816
squarenote 15, 14, 5, 1944
squarenote 8, 9, 1, 1880
endchannel
SFX_Cry00_2_Ch5:
dutycycle 160
squarenote 5, 179, 8, 7
squarenote 15, 197, 136, 7
squarenote 8, 113, 72, 7
squarenote 5, 11, 3, 1800
squarenote 15, 12, 5, 1928
squarenote 8, 7, 1, 1864
endchannel
SFX_Cry00_2_Ch7:
noisenote 3, 161, 28
noisenote 14, 148, 44
noisenote 8, 129, 28
noisenote 3, 10, 1, 28
noisenote 14, 9, 4, 44
noisenote 8, 8, 1, 28
endchannel

View File

@ -1,21 +1,21 @@
SFX_Cry00_3_Ch4:
dutycycle 245
squarenote 4, 243, 24, 7
squarenote 15, 229, 152, 7
squarenote 8, 145, 88, 7
squarenote 4, 15, 3, 1816
squarenote 15, 14, 5, 1944
squarenote 8, 9, 1, 1880
endchannel
SFX_Cry00_3_Ch5:
dutycycle 160
squarenote 5, 179, 8, 7
squarenote 15, 197, 136, 7
squarenote 8, 113, 72, 7
squarenote 5, 11, 3, 1800
squarenote 15, 12, 5, 1928
squarenote 8, 7, 1, 1864
endchannel
SFX_Cry00_3_Ch7:
noisenote 3, 161, 28
noisenote 14, 148, 44
noisenote 8, 129, 28
noisenote 3, 10, 1, 28
noisenote 14, 9, 4, 44
noisenote 8, 8, 1, 28
endchannel

View File

@ -1,24 +1,24 @@
SFX_Cry01_1_Ch4:
dutycycle 160
squarenote 4, 243, 0, 6
squarenote 8, 213, 96, 7
squarenote 3, 226, 32, 7
squarenote 8, 209, 16, 7
squarenote 4, 15, 3, 1536
squarenote 8, 13, 5, 1888
squarenote 3, 14, 2, 1824
squarenote 8, 13, 1, 1808
endchannel
SFX_Cry01_1_Ch5:
dutycycle 90
squarenote 5, 179, 241, 6
squarenote 7, 197, 82, 7
squarenote 3, 162, 17, 7
squarenote 8, 177, 1, 6
squarenote 5, 11, 3, 1777
squarenote 7, 12, 5, 1874
squarenote 3, 10, 2, 1809
squarenote 8, 11, 1, 1537
endchannel
SFX_Cry01_1_Ch7:
noisenote 3, 162, 60
noisenote 12, 148, 44
noisenote 3, 130, 28
noisenote 8, 113, 44
noisenote 3, 10, 2, 60
noisenote 12, 9, 4, 44
noisenote 3, 8, 2, 28
noisenote 8, 7, 1, 44
endchannel

View File

@ -1,24 +1,24 @@
SFX_Cry01_2_Ch4:
dutycycle 160
squarenote 4, 243, 0, 6
squarenote 8, 213, 96, 7
squarenote 3, 226, 32, 7
squarenote 8, 209, 16, 7
squarenote 4, 15, 3, 1536
squarenote 8, 13, 5, 1888
squarenote 3, 14, 2, 1824
squarenote 8, 13, 1, 1808
endchannel
SFX_Cry01_2_Ch5:
dutycycle 90
squarenote 5, 179, 241, 6
squarenote 7, 197, 82, 7
squarenote 3, 162, 17, 7
squarenote 8, 177, 1, 6
squarenote 5, 11, 3, 1777
squarenote 7, 12, 5, 1874
squarenote 3, 10, 2, 1809
squarenote 8, 11, 1, 1537
endchannel
SFX_Cry01_2_Ch7:
noisenote 3, 162, 60
noisenote 12, 148, 44
noisenote 3, 130, 28
noisenote 8, 113, 44
noisenote 3, 10, 2, 60
noisenote 12, 9, 4, 44
noisenote 3, 8, 2, 28
noisenote 8, 7, 1, 44
endchannel

View File

@ -1,24 +1,24 @@
SFX_Cry01_3_Ch4:
dutycycle 160
squarenote 4, 243, 0, 6
squarenote 8, 213, 96, 7
squarenote 3, 226, 32, 7
squarenote 8, 209, 16, 7
squarenote 4, 15, 3, 1536
squarenote 8, 13, 5, 1888
squarenote 3, 14, 2, 1824
squarenote 8, 13, 1, 1808
endchannel
SFX_Cry01_3_Ch5:
dutycycle 90
squarenote 5, 179, 241, 6
squarenote 7, 197, 82, 7
squarenote 3, 162, 17, 7
squarenote 8, 177, 1, 6
squarenote 5, 11, 3, 1777
squarenote 7, 12, 5, 1874
squarenote 3, 10, 2, 1809
squarenote 8, 11, 1, 1537
endchannel
SFX_Cry01_3_Ch7:
noisenote 3, 162, 60
noisenote 12, 148, 44
noisenote 3, 130, 28
noisenote 8, 113, 44
noisenote 3, 10, 2, 60
noisenote 12, 9, 4, 44
noisenote 3, 8, 2, 28
noisenote 8, 7, 1, 44
endchannel

View File

@ -1,16 +1,16 @@
SFX_Cry02_1_Ch4:
duty 0
squarenote 8, 245, 128, 4
squarenote 2, 225, 224, 5
squarenote 8, 209, 220, 5
squarenote 8, 15, 5, 1152
squarenote 2, 14, 1, 1504
squarenote 8, 13, 1, 1500
endchannel
SFX_Cry02_1_Ch5:
dutycycle 165
squarenote 7, 149, 65, 4
squarenote 2, 129, 33, 5
squarenote 8, 97, 26, 5
squarenote 7, 9, 5, 1089
squarenote 2, 8, 1, 1313
squarenote 8, 6, 1, 1306
SFX_Cry02_1_Ch7:

View File

@ -1,16 +1,16 @@
SFX_Cry02_2_Ch4:
duty 0
squarenote 8, 245, 128, 4
squarenote 2, 225, 224, 5
squarenote 8, 209, 220, 5
squarenote 8, 15, 5, 1152
squarenote 2, 14, 1, 1504
squarenote 8, 13, 1, 1500
endchannel
SFX_Cry02_2_Ch5:
dutycycle 165
squarenote 7, 149, 65, 4
squarenote 2, 129, 33, 5
squarenote 8, 97, 26, 5
squarenote 7, 9, 5, 1089
squarenote 2, 8, 1, 1313
squarenote 8, 6, 1, 1306
SFX_Cry02_2_Ch7:

View File

@ -1,16 +1,16 @@
SFX_Cry02_3_Ch4:
duty 0
squarenote 8, 245, 128, 4
squarenote 2, 225, 224, 5
squarenote 8, 209, 220, 5
squarenote 8, 15, 5, 1152
squarenote 2, 14, 1, 1504
squarenote 8, 13, 1, 1500
endchannel
SFX_Cry02_3_Ch5:
dutycycle 165
squarenote 7, 149, 65, 4
squarenote 2, 129, 33, 5
squarenote 8, 97, 26, 5
squarenote 7, 9, 5, 1089
squarenote 2, 8, 1, 1313
squarenote 8, 6, 1, 1306
SFX_Cry02_3_Ch7:

View File

@ -1,30 +1,30 @@
SFX_Cry03_1_Ch4:
dutycycle 240
squarenote 4, 247, 8, 6
squarenote 6, 230, 0, 6
squarenote 6, 215, 240, 5
squarenote 6, 196, 224, 5
squarenote 5, 211, 192, 5
squarenote 4, 211, 160, 5
squarenote 8, 225, 128, 5
squarenote 4, 15, 7, 1544
squarenote 6, 14, 6, 1536
squarenote 6, 13, 7, 1520
squarenote 6, 12, 4, 1504
squarenote 5, 13, 3, 1472
squarenote 4, 13, 3, 1440
squarenote 8, 14, 1, 1408
endchannel
SFX_Cry03_1_Ch5:
dutycycle 10
squarenote 4, 199, 4, 5
squarenote 6, 166, 2, 5
squarenote 6, 151, 241, 4
squarenote 4, 180, 225, 4
squarenote 5, 163, 194, 4
squarenote 4, 179, 163, 4
squarenote 8, 193, 130, 4
squarenote 4, 12, 7, 1284
squarenote 6, 10, 6, 1282
squarenote 6, 9, 7, 1265
squarenote 4, 11, 4, 1249
squarenote 5, 10, 3, 1218
squarenote 4, 11, 3, 1187
squarenote 8, 12, 1, 1154
endchannel
SFX_Cry03_1_Ch7:
noisenote 12, 228, 76
noisenote 10, 199, 92
noisenote 12, 182, 76
noisenote 15, 162, 92
noisenote 12, 14, 4, 76
noisenote 10, 12, 7, 92
noisenote 12, 11, 6, 76
noisenote 15, 10, 2, 92
endchannel

View File

@ -1,30 +1,30 @@
SFX_Cry03_2_Ch4:
dutycycle 240
squarenote 4, 247, 8, 6
squarenote 6, 230, 0, 6
squarenote 6, 215, 240, 5
squarenote 6, 196, 224, 5
squarenote 5, 211, 192, 5
squarenote 4, 211, 160, 5
squarenote 8, 225, 128, 5
squarenote 4, 15, 7, 1544
squarenote 6, 14, 6, 1536
squarenote 6, 13, 7, 1520
squarenote 6, 12, 4, 1504
squarenote 5, 13, 3, 1472
squarenote 4, 13, 3, 1440
squarenote 8, 14, 1, 1408
endchannel
SFX_Cry03_2_Ch5:
dutycycle 10
squarenote 4, 199, 4, 5
squarenote 6, 166, 2, 5
squarenote 6, 151, 241, 4
squarenote 4, 180, 225, 4
squarenote 5, 163, 194, 4
squarenote 4, 179, 163, 4
squarenote 8, 193, 130, 4
squarenote 4, 12, 7, 1284
squarenote 6, 10, 6, 1282
squarenote 6, 9, 7, 1265
squarenote 4, 11, 4, 1249
squarenote 5, 10, 3, 1218
squarenote 4, 11, 3, 1187
squarenote 8, 12, 1, 1154
endchannel
SFX_Cry03_2_Ch7:
noisenote 12, 228, 76
noisenote 10, 199, 92
noisenote 12, 182, 76
noisenote 15, 162, 92
noisenote 12, 14, 4, 76
noisenote 10, 12, 7, 92
noisenote 12, 11, 6, 76
noisenote 15, 10, 2, 92
endchannel

View File

@ -1,30 +1,30 @@
SFX_Cry03_3_Ch4:
dutycycle 240
squarenote 4, 247, 8, 6
squarenote 6, 230, 0, 6
squarenote 6, 215, 240, 5
squarenote 6, 196, 224, 5
squarenote 5, 211, 192, 5
squarenote 4, 211, 160, 5
squarenote 8, 225, 128, 5
squarenote 4, 15, 7, 1544
squarenote 6, 14, 6, 1536
squarenote 6, 13, 7, 1520
squarenote 6, 12, 4, 1504
squarenote 5, 13, 3, 1472
squarenote 4, 13, 3, 1440
squarenote 8, 14, 1, 1408
endchannel
SFX_Cry03_3_Ch5:
dutycycle 10
squarenote 4, 199, 4, 5
squarenote 6, 166, 2, 5
squarenote 6, 151, 241, 4
squarenote 4, 180, 225, 4
squarenote 5, 163, 194, 4
squarenote 4, 179, 163, 4
squarenote 8, 193, 130, 4
squarenote 4, 12, 7, 1284
squarenote 6, 10, 6, 1282
squarenote 6, 9, 7, 1265
squarenote 4, 11, 4, 1249
squarenote 5, 10, 3, 1218
squarenote 4, 11, 3, 1187
squarenote 8, 12, 1, 1154
endchannel
SFX_Cry03_3_Ch7:
noisenote 12, 228, 76
noisenote 10, 199, 92
noisenote 12, 182, 76
noisenote 15, 162, 92
noisenote 12, 14, 4, 76
noisenote 10, 12, 7, 92
noisenote 12, 11, 6, 76
noisenote 15, 10, 2, 92
endchannel

View File

@ -1,32 +1,32 @@
SFX_Cry04_1_Ch4:
dutycycle 240
squarenote 4, 247, 160, 6
squarenote 8, 230, 164, 6
squarenote 4, 214, 160, 6
squarenote 12, 211, 32, 6
squarenote 8, 195, 36, 6
squarenote 4, 194, 32, 6
squarenote 8, 177, 16, 6
squarenote 4, 15, 7, 1696
squarenote 8, 14, 6, 1700
squarenote 4, 13, 6, 1696
squarenote 12, 13, 3, 1568
squarenote 8, 12, 3, 1572
squarenote 4, 12, 2, 1568
squarenote 8, 11, 1, 1552
endchannel
SFX_Cry04_1_Ch5:
dutycycle 90
squarenote 4, 231, 1, 6
squarenote 8, 214, 3, 6
squarenote 4, 198, 1, 6
squarenote 12, 195, 129, 5
squarenote 8, 179, 131, 5
squarenote 4, 178, 130, 5
squarenote 8, 161, 113, 5
squarenote 4, 14, 7, 1537
squarenote 8, 13, 6, 1539
squarenote 4, 12, 6, 1537
squarenote 12, 12, 3, 1409
squarenote 8, 11, 3, 1411
squarenote 4, 11, 2, 1410
squarenote 8, 10, 1, 1393
endchannel
SFX_Cry04_1_Ch7:
noisenote 7, 214, 92
noisenote 8, 230, 76
noisenote 4, 212, 92
noisenote 4, 212, 76
noisenote 7, 195, 76
noisenote 8, 161, 92
noisenote 7, 13, 6, 92
noisenote 8, 14, 6, 76
noisenote 4, 13, 4, 92
noisenote 4, 13, 4, 76
noisenote 7, 12, 3, 76
noisenote 8, 10, 1, 92
endchannel

View File

@ -1,32 +1,32 @@
SFX_Cry04_2_Ch4:
dutycycle 240
squarenote 4, 247, 160, 6
squarenote 8, 230, 164, 6
squarenote 4, 214, 160, 6
squarenote 12, 211, 32, 6
squarenote 8, 195, 36, 6
squarenote 4, 194, 32, 6
squarenote 8, 177, 16, 6
squarenote 4, 15, 7, 1696
squarenote 8, 14, 6, 1700
squarenote 4, 13, 6, 1696
squarenote 12, 13, 3, 1568
squarenote 8, 12, 3, 1572
squarenote 4, 12, 2, 1568
squarenote 8, 11, 1, 1552
endchannel
SFX_Cry04_2_Ch5:
dutycycle 90
squarenote 4, 231, 1, 6
squarenote 8, 214, 3, 6
squarenote 4, 198, 1, 6
squarenote 12, 195, 129, 5
squarenote 8, 179, 131, 5
squarenote 4, 178, 130, 5
squarenote 8, 161, 113, 5
squarenote 4, 14, 7, 1537
squarenote 8, 13, 6, 1539
squarenote 4, 12, 6, 1537
squarenote 12, 12, 3, 1409
squarenote 8, 11, 3, 1411
squarenote 4, 11, 2, 1410
squarenote 8, 10, 1, 1393
endchannel
SFX_Cry04_2_Ch7:
noisenote 7, 214, 92
noisenote 8, 230, 76
noisenote 4, 212, 92
noisenote 4, 212, 76
noisenote 7, 195, 76
noisenote 8, 161, 92
noisenote 7, 13, 6, 92
noisenote 8, 14, 6, 76
noisenote 4, 13, 4, 92
noisenote 4, 13, 4, 76
noisenote 7, 12, 3, 76
noisenote 8, 10, 1, 92
endchannel

View File

@ -1,32 +1,32 @@
SFX_Cry04_3_Ch4:
dutycycle 240
squarenote 4, 247, 160, 6
squarenote 8, 230, 164, 6
squarenote 4, 214, 160, 6
squarenote 12, 211, 32, 6
squarenote 8, 195, 36, 6
squarenote 4, 194, 32, 6
squarenote 8, 177, 16, 6
squarenote 4, 15, 7, 1696
squarenote 8, 14, 6, 1700
squarenote 4, 13, 6, 1696
squarenote 12, 13, 3, 1568
squarenote 8, 12, 3, 1572
squarenote 4, 12, 2, 1568
squarenote 8, 11, 1, 1552
endchannel
SFX_Cry04_3_Ch5:
dutycycle 90
squarenote 4, 231, 1, 6
squarenote 8, 214, 3, 6
squarenote 4, 198, 1, 6
squarenote 12, 195, 129, 5
squarenote 8, 179, 131, 5
squarenote 4, 178, 130, 5
squarenote 8, 161, 113, 5
squarenote 4, 14, 7, 1537
squarenote 8, 13, 6, 1539
squarenote 4, 12, 6, 1537
squarenote 12, 12, 3, 1409
squarenote 8, 11, 3, 1411
squarenote 4, 11, 2, 1410
squarenote 8, 10, 1, 1393
endchannel
SFX_Cry04_3_Ch7:
noisenote 7, 214, 92
noisenote 8, 230, 76
noisenote 4, 212, 92
noisenote 4, 212, 76
noisenote 7, 195, 76
noisenote 8, 161, 92
noisenote 7, 13, 6, 92
noisenote 8, 14, 6, 76
noisenote 4, 13, 4, 92
noisenote 4, 13, 4, 76
noisenote 7, 12, 3, 76
noisenote 8, 10, 1, 92
endchannel

View File

@ -1,18 +1,18 @@
SFX_Cry05_1_Ch4:
dutycycle 10
squarenote 6, 226, 0, 5
squarenote 6, 227, 128, 5
squarenote 6, 211, 112, 5
squarenote 8, 161, 96, 5
squarenote 6, 14, 2, 1280
squarenote 6, 14, 3, 1408
squarenote 6, 13, 3, 1392
squarenote 8, 10, 1, 1376
endchannel
SFX_Cry05_1_Ch5:
dutycycle 245
squarenote 6, 226, 130, 4
squarenote 6, 211, 1, 5
squarenote 6, 178, 226, 4
squarenote 8, 129, 193, 4
squarenote 6, 14, 2, 1154
squarenote 6, 13, 3, 1281
squarenote 6, 11, 2, 1250
squarenote 8, 8, 1, 1217
SFX_Cry05_1_Ch7:

View File

@ -1,18 +1,18 @@
SFX_Cry05_2_Ch4:
dutycycle 10
squarenote 6, 226, 0, 5
squarenote 6, 227, 128, 5
squarenote 6, 211, 112, 5
squarenote 8, 161, 96, 5
squarenote 6, 14, 2, 1280
squarenote 6, 14, 3, 1408
squarenote 6, 13, 3, 1392
squarenote 8, 10, 1, 1376
endchannel
SFX_Cry05_2_Ch5:
dutycycle 245
squarenote 6, 226, 130, 4
squarenote 6, 211, 1, 5
squarenote 6, 178, 226, 4
squarenote 8, 129, 193, 4
squarenote 6, 14, 2, 1154
squarenote 6, 13, 3, 1281
squarenote 6, 11, 2, 1250
squarenote 8, 8, 1, 1217
SFX_Cry05_2_Ch7:

View File

@ -1,18 +1,18 @@
SFX_Cry05_3_Ch4:
dutycycle 10
squarenote 6, 226, 0, 5
squarenote 6, 227, 128, 5
squarenote 6, 211, 112, 5
squarenote 8, 161, 96, 5
squarenote 6, 14, 2, 1280
squarenote 6, 14, 3, 1408
squarenote 6, 13, 3, 1392
squarenote 8, 10, 1, 1376
endchannel
SFX_Cry05_3_Ch5:
dutycycle 245
squarenote 6, 226, 130, 4
squarenote 6, 211, 1, 5
squarenote 6, 178, 226, 4
squarenote 8, 129, 193, 4
squarenote 6, 14, 2, 1154
squarenote 6, 13, 3, 1281
squarenote 6, 11, 2, 1250
squarenote 8, 8, 1, 1217
SFX_Cry05_3_Ch7:

View File

@ -1,11 +1,11 @@
SFX_Cry06_1_Ch4:
dutycycle 250
squarenote 6, 131, 71, 2
squarenote 15, 98, 38, 2
squarenote 4, 82, 69, 2
squarenote 9, 99, 6, 2
squarenote 15, 130, 37, 2
squarenote 15, 66, 7, 2
squarenote 6, 8, 3, 583
squarenote 15, 6, 2, 550
squarenote 4, 5, 2, 581
squarenote 9, 6, 3, 518
squarenote 15, 8, 2, 549
squarenote 15, 4, 2, 519
SFX_Cry06_1_Ch5:
@ -13,10 +13,10 @@ SFX_Cry06_1_Ch5:
SFX_Cry06_1_Ch7:
noisenote 8, 212, 140
noisenote 4, 226, 156
noisenote 15, 198, 140
noisenote 8, 228, 172
noisenote 15, 215, 156
noisenote 15, 242, 172
noisenote 8, 13, 4, 140
noisenote 4, 14, 2, 156
noisenote 15, 12, 6, 140
noisenote 8, 14, 4, 172
noisenote 15, 13, 7, 156
noisenote 15, 15, 2, 172
endchannel

View File

@ -1,11 +1,11 @@
SFX_Cry06_2_Ch4:
dutycycle 250
squarenote 6, 131, 71, 2
squarenote 15, 98, 38, 2
squarenote 4, 82, 69, 2
squarenote 9, 99, 6, 2
squarenote 15, 130, 37, 2
squarenote 15, 66, 7, 2
squarenote 6, 8, 3, 583
squarenote 15, 6, 2, 550
squarenote 4, 5, 2, 581
squarenote 9, 6, 3, 518
squarenote 15, 8, 2, 549
squarenote 15, 4, 2, 519
SFX_Cry06_2_Ch5:
@ -13,10 +13,10 @@ SFX_Cry06_2_Ch5:
SFX_Cry06_2_Ch7:
noisenote 8, 212, 140
noisenote 4, 226, 156
noisenote 15, 198, 140
noisenote 8, 228, 172
noisenote 15, 215, 156
noisenote 15, 242, 172
noisenote 8, 13, 4, 140
noisenote 4, 14, 2, 156
noisenote 15, 12, 6, 140
noisenote 8, 14, 4, 172
noisenote 15, 13, 7, 156
noisenote 15, 15, 2, 172
endchannel

View File

@ -1,11 +1,11 @@
SFX_Cry06_3_Ch4:
dutycycle 250
squarenote 6, 131, 71, 2
squarenote 15, 98, 38, 2
squarenote 4, 82, 69, 2
squarenote 9, 99, 6, 2
squarenote 15, 130, 37, 2
squarenote 15, 66, 7, 2
squarenote 6, 8, 3, 583
squarenote 15, 6, 2, 550
squarenote 4, 5, 2, 581
squarenote 9, 6, 3, 518
squarenote 15, 8, 2, 549
squarenote 15, 4, 2, 519
SFX_Cry06_3_Ch5:
@ -13,10 +13,10 @@ SFX_Cry06_3_Ch5:
SFX_Cry06_3_Ch7:
noisenote 8, 212, 140
noisenote 4, 226, 156
noisenote 15, 198, 140
noisenote 8, 228, 172
noisenote 15, 215, 156
noisenote 15, 242, 172
noisenote 8, 13, 4, 140
noisenote 4, 14, 2, 156
noisenote 15, 12, 6, 140
noisenote 8, 14, 4, 172
noisenote 15, 13, 7, 156
noisenote 15, 15, 2, 172
endchannel

View File

@ -1,21 +1,21 @@
SFX_Cry07_1_Ch4:
dutycycle 240
squarenote 4, 243, 224, 6
squarenote 15, 228, 64, 6
squarenote 8, 193, 32, 6
squarenote 4, 15, 3, 1760
squarenote 15, 14, 4, 1600
squarenote 8, 12, 1, 1568
endchannel
SFX_Cry07_1_Ch5:
dutycycle 10
squarenote 3, 195, 131, 6
squarenote 14, 180, 2, 6
squarenote 8, 161, 1, 6
squarenote 3, 12, 3, 1667
squarenote 14, 11, 4, 1538
squarenote 8, 10, 1, 1537
endchannel
SFX_Cry07_1_Ch7:
noisenote 4, 211, 92
noisenote 15, 230, 76
noisenote 8, 177, 92
noisenote 4, 13, 3, 92
noisenote 15, 14, 6, 76
noisenote 8, 11, 1, 92
endchannel

View File

@ -1,21 +1,21 @@
SFX_Cry07_2_Ch4:
dutycycle 240
squarenote 4, 243, 224, 6
squarenote 15, 228, 64, 6
squarenote 8, 193, 32, 6
squarenote 4, 15, 3, 1760
squarenote 15, 14, 4, 1600
squarenote 8, 12, 1, 1568
endchannel
SFX_Cry07_2_Ch5:
dutycycle 10
squarenote 3, 195, 131, 6
squarenote 14, 180, 2, 6
squarenote 8, 161, 1, 6
squarenote 3, 12, 3, 1667
squarenote 14, 11, 4, 1538
squarenote 8, 10, 1, 1537
endchannel
SFX_Cry07_2_Ch7:
noisenote 4, 211, 92
noisenote 15, 230, 76
noisenote 8, 177, 92
noisenote 4, 13, 3, 92
noisenote 15, 14, 6, 76
noisenote 8, 11, 1, 92
endchannel

View File

@ -1,21 +1,21 @@
SFX_Cry07_3_Ch4:
dutycycle 240
squarenote 4, 243, 224, 6
squarenote 15, 228, 64, 6
squarenote 8, 193, 32, 6
squarenote 4, 15, 3, 1760
squarenote 15, 14, 4, 1600
squarenote 8, 12, 1, 1568
endchannel
SFX_Cry07_3_Ch5:
dutycycle 10
squarenote 3, 195, 131, 6
squarenote 14, 180, 2, 6
squarenote 8, 161, 1, 6
squarenote 3, 12, 3, 1667
squarenote 14, 11, 4, 1538
squarenote 8, 10, 1, 1537
endchannel
SFX_Cry07_3_Ch7:
noisenote 4, 211, 92
noisenote 15, 230, 76
noisenote 8, 177, 92
noisenote 4, 13, 3, 92
noisenote 15, 14, 6, 76
noisenote 8, 11, 1, 92
endchannel

View File

@ -1,23 +1,23 @@
SFX_Cry08_1_Ch4:
dutycycle 240
squarenote 15, 246, 101, 5
squarenote 10, 228, 124, 5
squarenote 3, 194, 92, 5
squarenote 15, 178, 60, 5
squarenote 15, 15, 6, 1381
squarenote 10, 14, 4, 1404
squarenote 3, 12, 2, 1372
squarenote 15, 11, 2, 1340
endchannel
SFX_Cry08_1_Ch5:
dutycycle 90
squarenote 14, 214, 3, 5
squarenote 9, 180, 27, 5
squarenote 4, 146, 250, 4
squarenote 15, 162, 219, 4
squarenote 14, 13, 6, 1283
squarenote 9, 11, 4, 1307
squarenote 4, 9, 2, 1274
squarenote 15, 10, 2, 1243
endchannel
SFX_Cry08_1_Ch7:
noisenote 12, 230, 76
noisenote 11, 215, 92
noisenote 15, 194, 76
noisenote 12, 14, 6, 76
noisenote 11, 13, 7, 92
noisenote 15, 12, 2, 76
endchannel

View File

@ -1,23 +1,23 @@
SFX_Cry08_2_Ch4:
dutycycle 240
squarenote 15, 246, 101, 5
squarenote 10, 228, 124, 5
squarenote 3, 194, 92, 5
squarenote 15, 178, 60, 5
squarenote 15, 15, 6, 1381
squarenote 10, 14, 4, 1404
squarenote 3, 12, 2, 1372
squarenote 15, 11, 2, 1340
endchannel
SFX_Cry08_2_Ch5:
dutycycle 90
squarenote 14, 214, 3, 5
squarenote 9, 180, 27, 5
squarenote 4, 146, 250, 4
squarenote 15, 162, 219, 4
squarenote 14, 13, 6, 1283
squarenote 9, 11, 4, 1307
squarenote 4, 9, 2, 1274
squarenote 15, 10, 2, 1243
endchannel
SFX_Cry08_2_Ch7:
noisenote 12, 230, 76
noisenote 11, 215, 92
noisenote 15, 194, 76
noisenote 12, 14, 6, 76
noisenote 11, 13, 7, 92
noisenote 15, 12, 2, 76
endchannel

View File

@ -1,23 +1,23 @@
SFX_Cry08_3_Ch4:
dutycycle 240
squarenote 15, 246, 101, 5
squarenote 10, 228, 124, 5
squarenote 3, 194, 92, 5
squarenote 15, 178, 60, 5
squarenote 15, 15, 6, 1381
squarenote 10, 14, 4, 1404
squarenote 3, 12, 2, 1372
squarenote 15, 11, 2, 1340
endchannel
SFX_Cry08_3_Ch5:
dutycycle 90
squarenote 14, 214, 3, 5
squarenote 9, 180, 27, 5
squarenote 4, 146, 250, 4
squarenote 15, 162, 219, 4
squarenote 14, 13, 6, 1283
squarenote 9, 11, 4, 1307
squarenote 4, 9, 2, 1274
squarenote 15, 10, 2, 1243
endchannel
SFX_Cry08_3_Ch7:
noisenote 12, 230, 76
noisenote 11, 215, 92
noisenote 15, 194, 76
noisenote 12, 14, 6, 76
noisenote 11, 13, 7, 92
noisenote 15, 12, 2, 76
endchannel

View File

@ -1,35 +1,35 @@
SFX_Cry09_1_Ch4:
dutycycle 240
squarenote 15, 247, 160, 7
squarenote 6, 230, 163, 7
squarenote 10, 244, 160, 7
squarenote 15, 15, 7, 1952
squarenote 6, 14, 6, 1955
squarenote 10, 15, 4, 1952
dutycycle 165
squarenote 10, 246, 216, 7
squarenote 4, 227, 215, 7
squarenote 15, 242, 216, 7
squarenote 10, 15, 6, 2008
squarenote 4, 14, 3, 2007
squarenote 15, 15, 2, 2008
endchannel
SFX_Cry09_1_Ch5:
dutycycle 5
squarenote 2, 8, 0, 0
squarenote 15, 167, 161, 6
squarenote 6, 134, 162, 6
squarenote 10, 116, 161, 6
squarenote 2, 0, 8, 0
squarenote 15, 10, 7, 1697
squarenote 6, 8, 6, 1698
squarenote 10, 7, 4, 1697
dutycycle 95
squarenote 10, 118, 214, 6
squarenote 4, 131, 217, 6
squarenote 15, 162, 215, 6
squarenote 10, 7, 6, 1750
squarenote 4, 8, 3, 1753
squarenote 15, 10, 2, 1751
endchannel
SFX_Cry09_1_Ch7:
noisenote 2, 242, 60
noisenote 8, 228, 62
noisenote 15, 215, 60
noisenote 6, 197, 59
noisenote 6, 228, 61
noisenote 8, 182, 60
noisenote 6, 212, 61
noisenote 8, 193, 59
noisenote 2, 15, 2, 60
noisenote 8, 14, 4, 62
noisenote 15, 13, 7, 60
noisenote 6, 12, 5, 59
noisenote 6, 14, 4, 61
noisenote 8, 11, 6, 60
noisenote 6, 13, 4, 61
noisenote 8, 12, 1, 59
endchannel

View File

@ -1,35 +1,35 @@
SFX_Cry09_2_Ch4:
dutycycle 240
squarenote 15, 247, 160, 7
squarenote 6, 230, 163, 7
squarenote 10, 244, 160, 7
squarenote 15, 15, 7, 1952
squarenote 6, 14, 6, 1955
squarenote 10, 15, 4, 1952
dutycycle 165
squarenote 10, 246, 216, 7
squarenote 4, 227, 215, 7
squarenote 15, 242, 216, 7
squarenote 10, 15, 6, 2008
squarenote 4, 14, 3, 2007
squarenote 15, 15, 2, 2008
endchannel
SFX_Cry09_2_Ch5:
dutycycle 5
squarenote 2, 8, 0, 0
squarenote 15, 167, 161, 6
squarenote 6, 134, 162, 6
squarenote 10, 116, 161, 6
squarenote 2, 0, 8, 0
squarenote 15, 10, 7, 1697
squarenote 6, 8, 6, 1698
squarenote 10, 7, 4, 1697
dutycycle 95
squarenote 10, 118, 214, 6
squarenote 4, 131, 217, 6
squarenote 15, 162, 215, 6
squarenote 10, 7, 6, 1750
squarenote 4, 8, 3, 1753
squarenote 15, 10, 2, 1751
endchannel
SFX_Cry09_2_Ch7:
noisenote 2, 242, 60
noisenote 8, 228, 62
noisenote 15, 215, 60
noisenote 6, 197, 59
noisenote 6, 228, 61
noisenote 8, 182, 60
noisenote 6, 212, 61
noisenote 8, 193, 59
noisenote 2, 15, 2, 60
noisenote 8, 14, 4, 62
noisenote 15, 13, 7, 60
noisenote 6, 12, 5, 59
noisenote 6, 14, 4, 61
noisenote 8, 11, 6, 60
noisenote 6, 13, 4, 61
noisenote 8, 12, 1, 59
endchannel

View File

@ -1,35 +1,35 @@
SFX_Cry09_3_Ch4:
dutycycle 240
squarenote 15, 247, 160, 7
squarenote 6, 230, 163, 7
squarenote 10, 244, 160, 7
squarenote 15, 15, 7, 1952
squarenote 6, 14, 6, 1955
squarenote 10, 15, 4, 1952
dutycycle 165
squarenote 10, 246, 216, 7
squarenote 4, 227, 215, 7
squarenote 15, 242, 216, 7
squarenote 10, 15, 6, 2008
squarenote 4, 14, 3, 2007
squarenote 15, 15, 2, 2008
endchannel
SFX_Cry09_3_Ch5:
dutycycle 5
squarenote 2, 8, 0, 0
squarenote 15, 167, 161, 6
squarenote 6, 134, 162, 6
squarenote 10, 116, 161, 6
squarenote 2, 0, 8, 0
squarenote 15, 10, 7, 1697
squarenote 6, 8, 6, 1698
squarenote 10, 7, 4, 1697
dutycycle 95
squarenote 10, 118, 214, 6
squarenote 4, 131, 217, 6
squarenote 15, 162, 215, 6
squarenote 10, 7, 6, 1750
squarenote 4, 8, 3, 1753
squarenote 15, 10, 2, 1751
endchannel
SFX_Cry09_3_Ch7:
noisenote 2, 242, 60
noisenote 8, 228, 62
noisenote 15, 215, 60
noisenote 6, 197, 59
noisenote 6, 228, 61
noisenote 8, 182, 60
noisenote 6, 212, 61
noisenote 8, 193, 59
noisenote 2, 15, 2, 60
noisenote 8, 14, 4, 62
noisenote 15, 13, 7, 60
noisenote 6, 12, 5, 59
noisenote 6, 14, 4, 61
noisenote 8, 11, 6, 60
noisenote 6, 13, 4, 61
noisenote 8, 12, 1, 59
endchannel

View File

@ -1,35 +1,35 @@
SFX_Cry0A_1_Ch4:
dutycycle 240
squarenote 8, 247, 224, 6
squarenote 6, 230, 229, 6
squarenote 3, 244, 224, 6
squarenote 3, 246, 208, 6
squarenote 3, 227, 192, 6
squarenote 4, 242, 176, 6
squarenote 15, 162, 200, 6
squarenote 8, 15, 7, 1760
squarenote 6, 14, 6, 1765
squarenote 3, 15, 4, 1760
squarenote 3, 15, 6, 1744
squarenote 3, 14, 3, 1728
squarenote 4, 15, 2, 1712
squarenote 15, 10, 2, 1736
endchannel
SFX_Cry0A_1_Ch5:
dutycycle 5
squarenote 3, 8, 0, 0
squarenote 8, 167, 161, 6
squarenote 6, 134, 163, 6
squarenote 3, 116, 161, 6
squarenote 3, 118, 145, 6
squarenote 3, 131, 130, 6
squarenote 4, 162, 113, 6
squarenote 15, 114, 137, 6
squarenote 3, 0, 8, 0
squarenote 8, 10, 7, 1697
squarenote 6, 8, 6, 1699
squarenote 3, 7, 4, 1697
squarenote 3, 7, 6, 1681
squarenote 3, 8, 3, 1666
squarenote 4, 10, 2, 1649
squarenote 15, 7, 2, 1673
endchannel
SFX_Cry0A_1_Ch7:
noisenote 2, 242, 60
noisenote 8, 228, 62
noisenote 8, 215, 60
noisenote 5, 197, 59
noisenote 3, 212, 44
noisenote 2, 182, 60
noisenote 3, 164, 44
noisenote 8, 145, 60
noisenote 2, 15, 2, 60
noisenote 8, 14, 4, 62
noisenote 8, 13, 7, 60
noisenote 5, 12, 5, 59
noisenote 3, 13, 4, 44
noisenote 2, 11, 6, 60
noisenote 3, 10, 4, 44
noisenote 8, 9, 1, 60
endchannel

View File

@ -1,35 +1,35 @@
SFX_Cry0A_2_Ch4:
dutycycle 240
squarenote 8, 247, 224, 6
squarenote 6, 230, 229, 6
squarenote 3, 244, 224, 6
squarenote 3, 246, 208, 6
squarenote 3, 227, 192, 6
squarenote 4, 242, 176, 6
squarenote 15, 162, 200, 6
squarenote 8, 15, 7, 1760
squarenote 6, 14, 6, 1765
squarenote 3, 15, 4, 1760
squarenote 3, 15, 6, 1744
squarenote 3, 14, 3, 1728
squarenote 4, 15, 2, 1712
squarenote 15, 10, 2, 1736
endchannel
SFX_Cry0A_2_Ch5:
dutycycle 5
squarenote 3, 8, 0, 0
squarenote 8, 167, 161, 6
squarenote 6, 134, 163, 6
squarenote 3, 116, 161, 6
squarenote 3, 118, 145, 6
squarenote 3, 131, 130, 6
squarenote 4, 162, 113, 6
squarenote 15, 114, 137, 6
squarenote 3, 0, 8, 0
squarenote 8, 10, 7, 1697
squarenote 6, 8, 6, 1699
squarenote 3, 7, 4, 1697
squarenote 3, 7, 6, 1681
squarenote 3, 8, 3, 1666
squarenote 4, 10, 2, 1649
squarenote 15, 7, 2, 1673
endchannel
SFX_Cry0A_2_Ch7:
noisenote 2, 242, 60
noisenote 8, 228, 62
noisenote 8, 215, 60
noisenote 5, 197, 59
noisenote 3, 212, 44
noisenote 2, 182, 60
noisenote 3, 164, 44
noisenote 8, 145, 60
noisenote 2, 15, 2, 60
noisenote 8, 14, 4, 62
noisenote 8, 13, 7, 60
noisenote 5, 12, 5, 59
noisenote 3, 13, 4, 44
noisenote 2, 11, 6, 60
noisenote 3, 10, 4, 44
noisenote 8, 9, 1, 60
endchannel

View File

@ -1,35 +1,35 @@
SFX_Cry0A_3_Ch4:
dutycycle 240
squarenote 8, 247, 224, 6
squarenote 6, 230, 229, 6
squarenote 3, 244, 224, 6
squarenote 3, 246, 208, 6
squarenote 3, 227, 192, 6
squarenote 4, 242, 176, 6
squarenote 15, 162, 200, 6
squarenote 8, 15, 7, 1760
squarenote 6, 14, 6, 1765
squarenote 3, 15, 4, 1760
squarenote 3, 15, 6, 1744
squarenote 3, 14, 3, 1728
squarenote 4, 15, 2, 1712
squarenote 15, 10, 2, 1736
endchannel
SFX_Cry0A_3_Ch5:
dutycycle 5
squarenote 3, 8, 0, 0
squarenote 8, 167, 161, 6
squarenote 6, 134, 163, 6
squarenote 3, 116, 161, 6
squarenote 3, 118, 145, 6
squarenote 3, 131, 130, 6
squarenote 4, 162, 113, 6
squarenote 15, 114, 137, 6
squarenote 3, 0, 8, 0
squarenote 8, 10, 7, 1697
squarenote 6, 8, 6, 1699
squarenote 3, 7, 4, 1697
squarenote 3, 7, 6, 1681
squarenote 3, 8, 3, 1666
squarenote 4, 10, 2, 1649
squarenote 15, 7, 2, 1673
endchannel
SFX_Cry0A_3_Ch7:
noisenote 2, 242, 60
noisenote 8, 228, 62
noisenote 8, 215, 60
noisenote 5, 197, 59
noisenote 3, 212, 44
noisenote 2, 182, 60
noisenote 3, 164, 44
noisenote 8, 145, 60
noisenote 2, 15, 2, 60
noisenote 8, 14, 4, 62
noisenote 8, 13, 7, 60
noisenote 5, 12, 5, 59
noisenote 3, 13, 4, 44
noisenote 2, 11, 6, 60
noisenote 3, 10, 4, 44
noisenote 8, 9, 1, 60
endchannel

View File

@ -1,37 +1,37 @@
SFX_Cry0B_1_Ch4:
dutycycle 204
squarenote 4, 241, 0, 7
squarenote 4, 225, 128, 7
squarenote 4, 209, 64, 7
squarenote 4, 225, 64, 7
squarenote 4, 241, 128, 7
squarenote 4, 209, 0, 7
squarenote 4, 241, 1, 7
squarenote 4, 209, 130, 7
squarenote 4, 193, 66, 7
squarenote 8, 177, 65, 7
squarenote 4, 15, 1, 1792
squarenote 4, 14, 1, 1920
squarenote 4, 13, 1, 1856
squarenote 4, 14, 1, 1856
squarenote 4, 15, 1, 1920
squarenote 4, 13, 1, 1792
squarenote 4, 15, 1, 1793
squarenote 4, 13, 1, 1922
squarenote 4, 12, 1, 1858
squarenote 8, 11, 1, 1857
endchannel
SFX_Cry0B_1_Ch5:
dutycycle 68
squarenote 12, 8, 0, 0
squarenote 4, 241, 1, 7
squarenote 4, 225, 130, 7
squarenote 4, 209, 65, 7
squarenote 4, 225, 65, 7
squarenote 4, 241, 130, 7
squarenote 8, 209, 1, 7
squarenote 12, 0, 8, 0
squarenote 4, 15, 1, 1793
squarenote 4, 14, 1, 1922
squarenote 4, 13, 1, 1857
squarenote 4, 14, 1, 1857
squarenote 4, 15, 1, 1922
squarenote 8, 13, 1, 1793
endchannel
SFX_Cry0B_1_Ch7:
noisenote 15, 8, 0
noisenote 4, 8, 0
noisenote 4, 209, 76
noisenote 4, 177, 44
noisenote 4, 209, 60
noisenote 4, 177, 60
noisenote 4, 193, 44
noisenote 8, 161, 76
noisenote 15, 0, 8, 0
noisenote 4, 0, 8, 0
noisenote 4, 13, 1, 76
noisenote 4, 11, 1, 44
noisenote 4, 13, 1, 60
noisenote 4, 11, 1, 60
noisenote 4, 12, 1, 44
noisenote 8, 10, 1, 76
endchannel

View File

@ -1,37 +1,37 @@
SFX_Cry0B_2_Ch4:
dutycycle 204
squarenote 4, 241, 0, 7
squarenote 4, 225, 128, 7
squarenote 4, 209, 64, 7
squarenote 4, 225, 64, 7
squarenote 4, 241, 128, 7
squarenote 4, 209, 0, 7
squarenote 4, 241, 1, 7
squarenote 4, 209, 130, 7
squarenote 4, 193, 66, 7
squarenote 8, 177, 65, 7
squarenote 4, 15, 1, 1792
squarenote 4, 14, 1, 1920
squarenote 4, 13, 1, 1856
squarenote 4, 14, 1, 1856
squarenote 4, 15, 1, 1920
squarenote 4, 13, 1, 1792
squarenote 4, 15, 1, 1793
squarenote 4, 13, 1, 1922
squarenote 4, 12, 1, 1858
squarenote 8, 11, 1, 1857
endchannel
SFX_Cry0B_2_Ch5:
dutycycle 68
squarenote 12, 8, 0, 0
squarenote 4, 241, 1, 7
squarenote 4, 225, 130, 7
squarenote 4, 209, 65, 7
squarenote 4, 225, 65, 7
squarenote 4, 241, 130, 7
squarenote 8, 209, 1, 7
squarenote 12, 0, 8, 0
squarenote 4, 15, 1, 1793
squarenote 4, 14, 1, 1922
squarenote 4, 13, 1, 1857
squarenote 4, 14, 1, 1857
squarenote 4, 15, 1, 1922
squarenote 8, 13, 1, 1793
endchannel
SFX_Cry0B_2_Ch7:
noisenote 15, 8, 0
noisenote 4, 8, 0
noisenote 4, 209, 76
noisenote 4, 177, 44
noisenote 4, 209, 60
noisenote 4, 177, 60
noisenote 4, 193, 44
noisenote 8, 161, 76
noisenote 15, 0, 8, 0
noisenote 4, 0, 8, 0
noisenote 4, 13, 1, 76
noisenote 4, 11, 1, 44
noisenote 4, 13, 1, 60
noisenote 4, 11, 1, 60
noisenote 4, 12, 1, 44
noisenote 8, 10, 1, 76
endchannel

View File

@ -1,37 +1,37 @@
SFX_Cry0B_3_Ch4:
dutycycle 204
squarenote 4, 241, 0, 7
squarenote 4, 225, 128, 7
squarenote 4, 209, 64, 7
squarenote 4, 225, 64, 7
squarenote 4, 241, 128, 7
squarenote 4, 209, 0, 7
squarenote 4, 241, 1, 7
squarenote 4, 209, 130, 7
squarenote 4, 193, 66, 7
squarenote 8, 177, 65, 7
squarenote 4, 15, 1, 1792
squarenote 4, 14, 1, 1920
squarenote 4, 13, 1, 1856
squarenote 4, 14, 1, 1856
squarenote 4, 15, 1, 1920
squarenote 4, 13, 1, 1792
squarenote 4, 15, 1, 1793
squarenote 4, 13, 1, 1922
squarenote 4, 12, 1, 1858
squarenote 8, 11, 1, 1857
endchannel
SFX_Cry0B_3_Ch5:
dutycycle 68
squarenote 12, 8, 0, 0
squarenote 4, 241, 1, 7
squarenote 4, 225, 130, 7
squarenote 4, 209, 65, 7
squarenote 4, 225, 65, 7
squarenote 4, 241, 130, 7
squarenote 8, 209, 1, 7
squarenote 12, 0, 8, 0
squarenote 4, 15, 1, 1793
squarenote 4, 14, 1, 1922
squarenote 4, 13, 1, 1857
squarenote 4, 14, 1, 1857
squarenote 4, 15, 1, 1922
squarenote 8, 13, 1, 1793
endchannel
SFX_Cry0B_3_Ch7:
noisenote 15, 8, 0
noisenote 4, 8, 0
noisenote 4, 209, 76
noisenote 4, 177, 44
noisenote 4, 209, 60
noisenote 4, 177, 60
noisenote 4, 193, 44
noisenote 8, 161, 76
noisenote 15, 0, 8, 0
noisenote 4, 0, 8, 0
noisenote 4, 13, 1, 76
noisenote 4, 11, 1, 44
noisenote 4, 13, 1, 60
noisenote 4, 11, 1, 60
noisenote 4, 12, 1, 44
noisenote 8, 10, 1, 76
endchannel

View File

@ -1,28 +1,28 @@
SFX_Cry0C_1_Ch4:
dutycycle 204
squarenote 8, 245, 0, 6
squarenote 2, 210, 56, 6
squarenote 2, 194, 48, 6
squarenote 2, 194, 40, 6
squarenote 2, 178, 32, 6
squarenote 2, 178, 16, 6
squarenote 2, 162, 24, 6
squarenote 2, 178, 16, 6
squarenote 8, 193, 32, 6
squarenote 8, 15, 5, 1536
squarenote 2, 13, 2, 1592
squarenote 2, 12, 2, 1584
squarenote 2, 12, 2, 1576
squarenote 2, 11, 2, 1568
squarenote 2, 11, 2, 1552
squarenote 2, 10, 2, 1560
squarenote 2, 11, 2, 1552
squarenote 8, 12, 1, 1568
endchannel
SFX_Cry0C_1_Ch5:
dutycycle 68
squarenote 12, 195, 192, 5
squarenote 3, 177, 249, 5
squarenote 2, 161, 241, 5
squarenote 2, 161, 233, 5
squarenote 2, 145, 225, 5
squarenote 2, 145, 217, 5
squarenote 2, 129, 209, 5
squarenote 2, 145, 217, 5
squarenote 8, 145, 225, 5
squarenote 12, 12, 3, 1472
squarenote 3, 11, 1, 1529
squarenote 2, 10, 1, 1521
squarenote 2, 10, 1, 1513
squarenote 2, 9, 1, 1505
squarenote 2, 9, 1, 1497
squarenote 2, 8, 1, 1489
squarenote 2, 9, 1, 1497
squarenote 8, 9, 1, 1505
SFX_Cry0C_1_Ch7:

View File

@ -1,28 +1,28 @@
SFX_Cry0C_2_Ch4:
dutycycle 204
squarenote 8, 245, 0, 6
squarenote 2, 210, 56, 6
squarenote 2, 194, 48, 6
squarenote 2, 194, 40, 6
squarenote 2, 178, 32, 6
squarenote 2, 178, 16, 6
squarenote 2, 162, 24, 6
squarenote 2, 178, 16, 6
squarenote 8, 193, 32, 6
squarenote 8, 15, 5, 1536
squarenote 2, 13, 2, 1592
squarenote 2, 12, 2, 1584
squarenote 2, 12, 2, 1576
squarenote 2, 11, 2, 1568
squarenote 2, 11, 2, 1552
squarenote 2, 10, 2, 1560
squarenote 2, 11, 2, 1552
squarenote 8, 12, 1, 1568
endchannel
SFX_Cry0C_2_Ch5:
dutycycle 68
squarenote 12, 195, 192, 5
squarenote 3, 177, 249, 5
squarenote 2, 161, 241, 5
squarenote 2, 161, 233, 5
squarenote 2, 145, 225, 5
squarenote 2, 145, 217, 5
squarenote 2, 129, 209, 5
squarenote 2, 145, 217, 5
squarenote 8, 145, 225, 5
squarenote 12, 12, 3, 1472
squarenote 3, 11, 1, 1529
squarenote 2, 10, 1, 1521
squarenote 2, 10, 1, 1513
squarenote 2, 9, 1, 1505
squarenote 2, 9, 1, 1497
squarenote 2, 8, 1, 1489
squarenote 2, 9, 1, 1497
squarenote 8, 9, 1, 1505
SFX_Cry0C_2_Ch7:

View File

@ -1,28 +1,28 @@
SFX_Cry0C_3_Ch4:
dutycycle 204
squarenote 8, 245, 0, 6
squarenote 2, 210, 56, 6
squarenote 2, 194, 48, 6
squarenote 2, 194, 40, 6
squarenote 2, 178, 32, 6
squarenote 2, 178, 16, 6
squarenote 2, 162, 24, 6
squarenote 2, 178, 16, 6
squarenote 8, 193, 32, 6
squarenote 8, 15, 5, 1536
squarenote 2, 13, 2, 1592
squarenote 2, 12, 2, 1584
squarenote 2, 12, 2, 1576
squarenote 2, 11, 2, 1568
squarenote 2, 11, 2, 1552
squarenote 2, 10, 2, 1560
squarenote 2, 11, 2, 1552
squarenote 8, 12, 1, 1568
endchannel
SFX_Cry0C_3_Ch5:
dutycycle 68
squarenote 12, 195, 192, 5
squarenote 3, 177, 249, 5
squarenote 2, 161, 241, 5
squarenote 2, 161, 233, 5
squarenote 2, 145, 225, 5
squarenote 2, 145, 217, 5
squarenote 2, 129, 209, 5
squarenote 2, 145, 217, 5
squarenote 8, 145, 225, 5
squarenote 12, 12, 3, 1472
squarenote 3, 11, 1, 1529
squarenote 2, 10, 1, 1521
squarenote 2, 10, 1, 1513
squarenote 2, 9, 1, 1505
squarenote 2, 9, 1, 1497
squarenote 2, 8, 1, 1489
squarenote 2, 9, 1, 1497
squarenote 8, 9, 1, 1505
SFX_Cry0C_3_Ch7:

View File

@ -1,40 +1,40 @@
SFX_Cry0D_1_Ch4:
dutycycle 136
squarenote 5, 242, 80, 6
squarenote 9, 209, 96, 6
squarenote 5, 226, 18, 6
squarenote 9, 193, 34, 6
squarenote 5, 242, 16, 6
squarenote 6, 209, 32, 6
squarenote 5, 15, 2, 1616
squarenote 9, 13, 1, 1632
squarenote 5, 14, 2, 1554
squarenote 9, 12, 1, 1570
squarenote 5, 15, 2, 1552
squarenote 6, 13, 1, 1568
loopchannel 2, SFX_Cry0D_1_Ch4
endchannel
SFX_Cry0D_1_Ch5:
dutycycle 64
squarenote 4, 8, 0, 0
squarenote 5, 242, 81, 6
squarenote 9, 209, 97, 6
squarenote 5, 226, 20, 6
squarenote 8, 193, 36, 6
squarenote 5, 242, 17, 6
squarenote 12, 209, 33, 6
squarenote 5, 226, 20, 6
squarenote 8, 193, 36, 6
squarenote 5, 242, 17, 6
squarenote 4, 209, 33, 6
squarenote 4, 0, 8, 0
squarenote 5, 15, 2, 1617
squarenote 9, 13, 1, 1633
squarenote 5, 14, 2, 1556
squarenote 8, 12, 1, 1572
squarenote 5, 15, 2, 1553
squarenote 12, 13, 1, 1569
squarenote 5, 14, 2, 1556
squarenote 8, 12, 1, 1572
squarenote 5, 15, 2, 1553
squarenote 4, 13, 1, 1569
endchannel
SFX_Cry0D_1_Ch7:
noisenote 6, 210, 28
noisenote 9, 177, 44
noisenote 8, 194, 44
noisenote 9, 177, 60
noisenote 6, 194, 44
noisenote 9, 162, 60
noisenote 7, 194, 44
noisenote 5, 161, 60
noisenote 9, 194, 44
noisenote 4, 161, 60
noisenote 6, 13, 2, 28
noisenote 9, 11, 1, 44
noisenote 8, 12, 2, 44
noisenote 9, 11, 1, 60
noisenote 6, 12, 2, 44
noisenote 9, 10, 2, 60
noisenote 7, 12, 2, 44
noisenote 5, 10, 1, 60
noisenote 9, 12, 2, 44
noisenote 4, 10, 1, 60
endchannel

View File

@ -1,40 +1,40 @@
SFX_Cry0D_2_Ch4:
dutycycle 136
squarenote 5, 242, 80, 6
squarenote 9, 209, 96, 6
squarenote 5, 226, 18, 6
squarenote 9, 193, 34, 6
squarenote 5, 242, 16, 6
squarenote 6, 209, 32, 6
squarenote 5, 15, 2, 1616
squarenote 9, 13, 1, 1632
squarenote 5, 14, 2, 1554
squarenote 9, 12, 1, 1570
squarenote 5, 15, 2, 1552
squarenote 6, 13, 1, 1568
loopchannel 2, SFX_Cry0D_2_Ch4
endchannel
SFX_Cry0D_2_Ch5:
dutycycle 64
squarenote 4, 8, 0, 0
squarenote 5, 242, 81, 6
squarenote 9, 209, 97, 6
squarenote 5, 226, 20, 6
squarenote 8, 193, 36, 6
squarenote 5, 242, 17, 6
squarenote 12, 209, 33, 6
squarenote 5, 226, 20, 6
squarenote 8, 193, 36, 6
squarenote 5, 242, 17, 6
squarenote 4, 209, 33, 6
squarenote 4, 0, 8, 0
squarenote 5, 15, 2, 1617
squarenote 9, 13, 1, 1633
squarenote 5, 14, 2, 1556
squarenote 8, 12, 1, 1572
squarenote 5, 15, 2, 1553
squarenote 12, 13, 1, 1569
squarenote 5, 14, 2, 1556
squarenote 8, 12, 1, 1572
squarenote 5, 15, 2, 1553
squarenote 4, 13, 1, 1569
endchannel
SFX_Cry0D_2_Ch7:
noisenote 6, 210, 28
noisenote 9, 177, 44
noisenote 8, 194, 44
noisenote 9, 177, 60
noisenote 6, 194, 44
noisenote 9, 162, 60
noisenote 7, 194, 44
noisenote 5, 161, 60
noisenote 9, 194, 44
noisenote 4, 161, 60
noisenote 6, 13, 2, 28
noisenote 9, 11, 1, 44
noisenote 8, 12, 2, 44
noisenote 9, 11, 1, 60
noisenote 6, 12, 2, 44
noisenote 9, 10, 2, 60
noisenote 7, 12, 2, 44
noisenote 5, 10, 1, 60
noisenote 9, 12, 2, 44
noisenote 4, 10, 1, 60
endchannel

View File

@ -1,40 +1,40 @@
SFX_Cry0D_3_Ch4:
dutycycle 136
squarenote 5, 242, 80, 6
squarenote 9, 209, 96, 6
squarenote 5, 226, 18, 6
squarenote 9, 193, 34, 6
squarenote 5, 242, 16, 6
squarenote 6, 209, 32, 6
squarenote 5, 15, 2, 1616
squarenote 9, 13, 1, 1632
squarenote 5, 14, 2, 1554
squarenote 9, 12, 1, 1570
squarenote 5, 15, 2, 1552
squarenote 6, 13, 1, 1568
loopchannel 2, SFX_Cry0D_3_Ch4
endchannel
SFX_Cry0D_3_Ch5:
dutycycle 64
squarenote 4, 8, 0, 0
squarenote 5, 242, 81, 6
squarenote 9, 209, 97, 6
squarenote 5, 226, 20, 6
squarenote 8, 193, 36, 6
squarenote 5, 242, 17, 6
squarenote 12, 209, 33, 6
squarenote 5, 226, 20, 6
squarenote 8, 193, 36, 6
squarenote 5, 242, 17, 6
squarenote 4, 209, 33, 6
squarenote 4, 0, 8, 0
squarenote 5, 15, 2, 1617
squarenote 9, 13, 1, 1633
squarenote 5, 14, 2, 1556
squarenote 8, 12, 1, 1572
squarenote 5, 15, 2, 1553
squarenote 12, 13, 1, 1569
squarenote 5, 14, 2, 1556
squarenote 8, 12, 1, 1572
squarenote 5, 15, 2, 1553
squarenote 4, 13, 1, 1569
endchannel
SFX_Cry0D_3_Ch7:
noisenote 6, 210, 28
noisenote 9, 177, 44
noisenote 8, 194, 44
noisenote 9, 177, 60
noisenote 6, 194, 44
noisenote 9, 162, 60
noisenote 7, 194, 44
noisenote 5, 161, 60
noisenote 9, 194, 44
noisenote 4, 161, 60
noisenote 6, 13, 2, 28
noisenote 9, 11, 1, 44
noisenote 8, 12, 2, 44
noisenote 9, 11, 1, 60
noisenote 6, 12, 2, 44
noisenote 9, 10, 2, 60
noisenote 7, 12, 2, 44
noisenote 5, 10, 1, 60
noisenote 9, 12, 2, 44
noisenote 4, 10, 1, 60
endchannel

View File

@ -1,23 +1,23 @@
SFX_Cry0E_1_Ch4:
dutycycle 165
squarenote 4, 225, 0, 7
squarenote 4, 242, 128, 7
squarenote 2, 146, 64, 7
squarenote 8, 225, 0, 6
squarenote 4, 14, 1, 1792
squarenote 4, 15, 2, 1920
squarenote 2, 9, 2, 1856
squarenote 8, 14, 1, 1536
endchannel
SFX_Cry0E_1_Ch5:
dutycycle 10
squarenote 4, 177, 225, 6
squarenote 3, 194, 225, 6
squarenote 3, 98, 129, 6
squarenote 8, 177, 225, 5
squarenote 4, 11, 1, 1761
squarenote 3, 12, 2, 1761
squarenote 3, 6, 2, 1665
squarenote 8, 11, 1, 1505
endchannel
SFX_Cry0E_1_Ch7:
noisenote 2, 97, 50
noisenote 2, 97, 33
noisenote 8, 97, 17
noisenote 2, 6, 1, 50
noisenote 2, 6, 1, 33
noisenote 8, 6, 1, 17
endchannel

View File

@ -1,23 +1,23 @@
SFX_Cry0E_2_Ch4:
dutycycle 165
squarenote 4, 225, 0, 7
squarenote 4, 242, 128, 7
squarenote 2, 146, 64, 7
squarenote 8, 225, 0, 6
squarenote 4, 14, 1, 1792
squarenote 4, 15, 2, 1920
squarenote 2, 9, 2, 1856
squarenote 8, 14, 1, 1536
endchannel
SFX_Cry0E_2_Ch5:
dutycycle 10
squarenote 4, 177, 225, 6
squarenote 3, 194, 225, 6
squarenote 3, 98, 129, 6
squarenote 8, 177, 225, 5
squarenote 4, 11, 1, 1761
squarenote 3, 12, 2, 1761
squarenote 3, 6, 2, 1665
squarenote 8, 11, 1, 1505
endchannel
SFX_Cry0E_2_Ch7:
noisenote 2, 97, 50
noisenote 2, 97, 33
noisenote 8, 97, 17
noisenote 2, 6, 1, 50
noisenote 2, 6, 1, 33
noisenote 8, 6, 1, 17
endchannel

View File

@ -1,23 +1,23 @@
SFX_Cry0E_3_Ch4:
dutycycle 165
squarenote 4, 225, 0, 7
squarenote 4, 242, 128, 7
squarenote 2, 146, 64, 7
squarenote 8, 225, 0, 6
squarenote 4, 14, 1, 1792
squarenote 4, 15, 2, 1920
squarenote 2, 9, 2, 1856
squarenote 8, 14, 1, 1536
endchannel
SFX_Cry0E_3_Ch5:
dutycycle 10
squarenote 4, 177, 225, 6
squarenote 3, 194, 225, 6
squarenote 3, 98, 129, 6
squarenote 8, 177, 225, 5
squarenote 4, 11, 1, 1761
squarenote 3, 12, 2, 1761
squarenote 3, 6, 2, 1665
squarenote 8, 11, 1, 1505
endchannel
SFX_Cry0E_3_Ch7:
noisenote 2, 97, 50
noisenote 2, 97, 33
noisenote 8, 97, 17
noisenote 2, 6, 1, 50
noisenote 2, 6, 1, 33
noisenote 8, 6, 1, 17
endchannel

View File

@ -1,29 +1,29 @@
SFX_Cry0F_1_Ch4:
dutycycle 241
squarenote 4, 247, 192, 7
squarenote 12, 230, 194, 7
squarenote 6, 181, 128, 6
squarenote 4, 196, 112, 6
squarenote 4, 181, 96, 6
squarenote 8, 193, 64, 6
squarenote 4, 15, 7, 1984
squarenote 12, 14, 6, 1986
squarenote 6, 11, 5, 1664
squarenote 4, 12, 4, 1648
squarenote 4, 11, 5, 1632
squarenote 8, 12, 1, 1600
endchannel
SFX_Cry0F_1_Ch5:
dutycycle 204
squarenote 3, 199, 129, 7
squarenote 12, 182, 128, 7
squarenote 6, 165, 65, 6
squarenote 4, 196, 50, 6
squarenote 6, 181, 33, 6
squarenote 8, 161, 2, 6
squarenote 3, 12, 7, 1921
squarenote 12, 11, 6, 1920
squarenote 6, 10, 5, 1601
squarenote 4, 12, 4, 1586
squarenote 6, 11, 5, 1569
squarenote 8, 10, 1, 1538
endchannel
SFX_Cry0F_1_Ch7:
noisenote 3, 228, 60
noisenote 12, 214, 44
noisenote 4, 228, 60
noisenote 8, 183, 92
noisenote 15, 194, 93
noisenote 3, 14, 4, 60
noisenote 12, 13, 6, 44
noisenote 4, 14, 4, 60
noisenote 8, 11, 7, 92
noisenote 15, 12, 2, 93
endchannel

View File

@ -1,29 +1,29 @@
SFX_Cry0F_2_Ch4:
dutycycle 241
squarenote 4, 247, 192, 7
squarenote 12, 230, 194, 7
squarenote 6, 181, 128, 6
squarenote 4, 196, 112, 6
squarenote 4, 181, 96, 6
squarenote 8, 193, 64, 6
squarenote 4, 15, 7, 1984
squarenote 12, 14, 6, 1986
squarenote 6, 11, 5, 1664
squarenote 4, 12, 4, 1648
squarenote 4, 11, 5, 1632
squarenote 8, 12, 1, 1600
endchannel
SFX_Cry0F_2_Ch5:
dutycycle 204
squarenote 3, 199, 129, 7
squarenote 12, 182, 128, 7
squarenote 6, 165, 65, 6
squarenote 4, 196, 50, 6
squarenote 6, 181, 33, 6
squarenote 8, 161, 2, 6
squarenote 3, 12, 7, 1921
squarenote 12, 11, 6, 1920
squarenote 6, 10, 5, 1601
squarenote 4, 12, 4, 1586
squarenote 6, 11, 5, 1569
squarenote 8, 10, 1, 1538
endchannel
SFX_Cry0F_2_Ch7:
noisenote 3, 228, 60
noisenote 12, 214, 44
noisenote 4, 228, 60
noisenote 8, 183, 92
noisenote 15, 194, 93
noisenote 3, 14, 4, 60
noisenote 12, 13, 6, 44
noisenote 4, 14, 4, 60
noisenote 8, 11, 7, 92
noisenote 15, 12, 2, 93
endchannel

View File

@ -1,29 +1,29 @@
SFX_Cry0F_3_Ch4:
dutycycle 241
squarenote 4, 247, 192, 7
squarenote 12, 230, 194, 7
squarenote 6, 181, 128, 6
squarenote 4, 196, 112, 6
squarenote 4, 181, 96, 6
squarenote 8, 193, 64, 6
squarenote 4, 15, 7, 1984
squarenote 12, 14, 6, 1986
squarenote 6, 11, 5, 1664
squarenote 4, 12, 4, 1648
squarenote 4, 11, 5, 1632
squarenote 8, 12, 1, 1600
endchannel
SFX_Cry0F_3_Ch5:
dutycycle 204
squarenote 3, 199, 129, 7
squarenote 12, 182, 128, 7
squarenote 6, 165, 65, 6
squarenote 4, 196, 50, 6
squarenote 6, 181, 33, 6
squarenote 8, 161, 2, 6
squarenote 3, 12, 7, 1921
squarenote 12, 11, 6, 1920
squarenote 6, 10, 5, 1601
squarenote 4, 12, 4, 1586
squarenote 6, 11, 5, 1569
squarenote 8, 10, 1, 1538
endchannel
SFX_Cry0F_3_Ch7:
noisenote 3, 228, 60
noisenote 12, 214, 44
noisenote 4, 228, 60
noisenote 8, 183, 92
noisenote 15, 194, 93
noisenote 3, 14, 4, 60
noisenote 12, 13, 6, 44
noisenote 4, 14, 4, 60
noisenote 8, 11, 7, 92
noisenote 15, 12, 2, 93
endchannel

View File

@ -1,31 +1,31 @@
SFX_Cry10_1_Ch4:
dutycycle 201
squarenote 8, 247, 128, 6
squarenote 2, 247, 96, 6
squarenote 1, 231, 64, 6
squarenote 1, 231, 32, 6
squarenote 15, 209, 0, 6
squarenote 4, 199, 64, 7
squarenote 4, 167, 48, 7
squarenote 15, 145, 32, 7
squarenote 8, 15, 7, 1664
squarenote 2, 15, 7, 1632
squarenote 1, 14, 7, 1600
squarenote 1, 14, 7, 1568
squarenote 15, 13, 1, 1536
squarenote 4, 12, 7, 1856
squarenote 4, 10, 7, 1840
squarenote 15, 9, 1, 1824
endchannel
SFX_Cry10_1_Ch5:
dutycycle 121
squarenote 10, 231, 130, 6
squarenote 2, 231, 98, 6
squarenote 1, 215, 66, 6
squarenote 1, 215, 34, 6
squarenote 15, 193, 2, 6
squarenote 4, 183, 66, 7
squarenote 2, 151, 50, 7
squarenote 15, 129, 34, 7
squarenote 10, 14, 7, 1666
squarenote 2, 14, 7, 1634
squarenote 1, 13, 7, 1602
squarenote 1, 13, 7, 1570
squarenote 15, 12, 1, 1538
squarenote 4, 11, 7, 1858
squarenote 2, 9, 7, 1842
squarenote 15, 8, 1, 1826
endchannel
SFX_Cry10_1_Ch7:
noisenote 4, 116, 33
noisenote 4, 116, 16
noisenote 4, 113, 32
noisenote 4, 7, 4, 33
noisenote 4, 7, 4, 16
noisenote 4, 7, 1, 32
endchannel

View File

@ -1,31 +1,31 @@
SFX_Cry10_2_Ch4:
dutycycle 201
squarenote 8, 247, 128, 6
squarenote 2, 247, 96, 6
squarenote 1, 231, 64, 6
squarenote 1, 231, 32, 6
squarenote 15, 209, 0, 6
squarenote 4, 199, 64, 7
squarenote 4, 167, 48, 7
squarenote 15, 145, 32, 7
squarenote 8, 15, 7, 1664
squarenote 2, 15, 7, 1632
squarenote 1, 14, 7, 1600
squarenote 1, 14, 7, 1568
squarenote 15, 13, 1, 1536
squarenote 4, 12, 7, 1856
squarenote 4, 10, 7, 1840
squarenote 15, 9, 1, 1824
endchannel
SFX_Cry10_2_Ch5:
dutycycle 121
squarenote 10, 231, 130, 6
squarenote 2, 231, 98, 6
squarenote 1, 215, 66, 6
squarenote 1, 215, 34, 6
squarenote 15, 193, 2, 6
squarenote 4, 183, 66, 7
squarenote 2, 151, 50, 7
squarenote 15, 129, 34, 7
squarenote 10, 14, 7, 1666
squarenote 2, 14, 7, 1634
squarenote 1, 13, 7, 1602
squarenote 1, 13, 7, 1570
squarenote 15, 12, 1, 1538
squarenote 4, 11, 7, 1858
squarenote 2, 9, 7, 1842
squarenote 15, 8, 1, 1826
endchannel
SFX_Cry10_2_Ch7:
noisenote 4, 116, 33
noisenote 4, 116, 16
noisenote 4, 113, 32
noisenote 4, 7, 4, 33
noisenote 4, 7, 4, 16
noisenote 4, 7, 1, 32
endchannel

View File

@ -1,31 +1,31 @@
SFX_Cry10_3_Ch4:
dutycycle 201
squarenote 8, 247, 128, 6
squarenote 2, 247, 96, 6
squarenote 1, 231, 64, 6
squarenote 1, 231, 32, 6
squarenote 15, 209, 0, 6
squarenote 4, 199, 64, 7
squarenote 4, 167, 48, 7
squarenote 15, 145, 32, 7
squarenote 8, 15, 7, 1664
squarenote 2, 15, 7, 1632
squarenote 1, 14, 7, 1600
squarenote 1, 14, 7, 1568
squarenote 15, 13, 1, 1536
squarenote 4, 12, 7, 1856
squarenote 4, 10, 7, 1840
squarenote 15, 9, 1, 1824
endchannel
SFX_Cry10_3_Ch5:
dutycycle 121
squarenote 10, 231, 130, 6
squarenote 2, 231, 98, 6
squarenote 1, 215, 66, 6
squarenote 1, 215, 34, 6
squarenote 15, 193, 2, 6
squarenote 4, 183, 66, 7
squarenote 2, 151, 50, 7
squarenote 15, 129, 34, 7
squarenote 10, 14, 7, 1666
squarenote 2, 14, 7, 1634
squarenote 1, 13, 7, 1602
squarenote 1, 13, 7, 1570
squarenote 15, 12, 1, 1538
squarenote 4, 11, 7, 1858
squarenote 2, 9, 7, 1842
squarenote 15, 8, 1, 1826
endchannel
SFX_Cry10_3_Ch7:
noisenote 4, 116, 33
noisenote 4, 116, 16
noisenote 4, 113, 32
noisenote 4, 7, 4, 33
noisenote 4, 7, 4, 16
noisenote 4, 7, 1, 32
endchannel

View File

@ -1,34 +1,34 @@
SFX_Cry11_1_Ch4:
dutycycle 240
squarenote 6, 247, 160, 7
squarenote 8, 230, 164, 7
squarenote 4, 214, 160, 7
squarenote 15, 211, 32, 7
squarenote 8, 195, 35, 7
squarenote 2, 194, 40, 7
squarenote 8, 177, 48, 7
squarenote 6, 15, 7, 1952
squarenote 8, 14, 6, 1956
squarenote 4, 13, 6, 1952
squarenote 15, 13, 3, 1824
squarenote 8, 12, 3, 1827
squarenote 2, 12, 2, 1832
squarenote 8, 11, 1, 1840
endchannel
SFX_Cry11_1_Ch5:
dutycycle 10
squarenote 4, 8, 0, 0
squarenote 6, 167, 65, 7
squarenote 8, 134, 67, 7
squarenote 4, 118, 65, 7
squarenote 13, 131, 194, 6
squarenote 7, 115, 193, 6
squarenote 3, 130, 204, 6
squarenote 8, 113, 216, 6
squarenote 4, 0, 8, 0
squarenote 6, 10, 7, 1857
squarenote 8, 8, 6, 1859
squarenote 4, 7, 6, 1857
squarenote 13, 8, 3, 1730
squarenote 7, 7, 3, 1729
squarenote 3, 8, 2, 1740
squarenote 8, 7, 1, 1752
endchannel
SFX_Cry11_1_Ch7:
noisenote 2, 242, 76
noisenote 6, 230, 58
noisenote 4, 215, 58
noisenote 6, 214, 44
noisenote 8, 229, 60
noisenote 12, 210, 61
noisenote 8, 209, 44
noisenote 2, 15, 2, 76
noisenote 6, 14, 6, 58
noisenote 4, 13, 7, 58
noisenote 6, 13, 6, 44
noisenote 8, 14, 5, 60
noisenote 12, 13, 2, 61
noisenote 8, 13, 1, 44
endchannel

View File

@ -1,34 +1,34 @@
SFX_Cry11_2_Ch4:
dutycycle 240
squarenote 6, 247, 160, 7
squarenote 8, 230, 164, 7
squarenote 4, 214, 160, 7
squarenote 15, 211, 32, 7
squarenote 8, 195, 35, 7
squarenote 2, 194, 40, 7
squarenote 8, 177, 48, 7
squarenote 6, 15, 7, 1952
squarenote 8, 14, 6, 1956
squarenote 4, 13, 6, 1952
squarenote 15, 13, 3, 1824
squarenote 8, 12, 3, 1827
squarenote 2, 12, 2, 1832
squarenote 8, 11, 1, 1840
endchannel
SFX_Cry11_2_Ch5:
dutycycle 10
squarenote 4, 8, 0, 0
squarenote 6, 167, 65, 7
squarenote 8, 134, 67, 7
squarenote 4, 118, 65, 7
squarenote 13, 131, 194, 6
squarenote 7, 115, 193, 6
squarenote 3, 130, 204, 6
squarenote 8, 113, 216, 6
squarenote 4, 0, 8, 0
squarenote 6, 10, 7, 1857
squarenote 8, 8, 6, 1859
squarenote 4, 7, 6, 1857
squarenote 13, 8, 3, 1730
squarenote 7, 7, 3, 1729
squarenote 3, 8, 2, 1740
squarenote 8, 7, 1, 1752
endchannel
SFX_Cry11_2_Ch7:
noisenote 2, 242, 76
noisenote 6, 230, 58
noisenote 4, 215, 58
noisenote 6, 214, 44
noisenote 8, 229, 60
noisenote 12, 210, 61
noisenote 8, 209, 44
noisenote 2, 15, 2, 76
noisenote 6, 14, 6, 58
noisenote 4, 13, 7, 58
noisenote 6, 13, 6, 44
noisenote 8, 14, 5, 60
noisenote 12, 13, 2, 61
noisenote 8, 13, 1, 44
endchannel

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