Key split restructure (#2168)
Key split tables have been given names based on usage (KeySplitTable1 -> keysplit_piano etc) and a new macro has been set up to better represent the individual bytes for key splits with it being more obvious to how said bytes are used for the respective voice in the voicegroup. --------- Co-authored-by: Martin Griffin <martinrgriffin@gmail.com>
This commit is contained in:
@@ -21,3 +21,31 @@
|
|||||||
.set voicegroup_\label, . - \starting_note * 0xC
|
.set voicegroup_\label, . - \starting_note * 0xC
|
||||||
.endif
|
.endif
|
||||||
.endm
|
.endm
|
||||||
|
|
||||||
|
.macro keysplit label:req, starting_note
|
||||||
|
.ifb \starting_note
|
||||||
|
.global keysplit_\label
|
||||||
|
keysplit_\label:
|
||||||
|
.set _last_note, 0
|
||||||
|
.else
|
||||||
|
.set keysplit_\label, . - \starting_note
|
||||||
|
.set _last_note, \starting_note
|
||||||
|
.endif
|
||||||
|
.set _last_split, 0
|
||||||
|
.endm
|
||||||
|
|
||||||
|
.macro split index:req, ending_note:req
|
||||||
|
.if \ending_note < _last_note
|
||||||
|
.if _last_split == 0
|
||||||
|
.error "split's ending_note earlier than previous keysplit's starting_note"
|
||||||
|
.else
|
||||||
|
.error "split's ending_note earlier than previous split's ending_note"
|
||||||
|
.endif
|
||||||
|
.else
|
||||||
|
.rept \ending_note - _last_note
|
||||||
|
.byte \index
|
||||||
|
.endr
|
||||||
|
.endif
|
||||||
|
.set _last_note, \ending_note
|
||||||
|
.set _last_split, 1
|
||||||
|
.endm
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
@ Due to the way mks4agb (Nintendo's tool) works, key split table labels can
|
@ Due to the way mks4agb (Nintendo's tool) works, key split table labels can
|
||||||
@ appear before the actual start of the key split table data. If you look at
|
@ appear before the actual start of the key split table data. If you look at
|
||||||
@ the first keysplit table (KeySplitTable1), you'll notice it's offset backwards
|
@ the first keysplit table (keysplit_piano), you'll notice it's offset backwards
|
||||||
@ by 36 bytes. This is because the key split tables don't map instruments
|
@ by 36 bytes. This is because the key split tables don't map instruments
|
||||||
@ for the entire note range (0-127)--they only map subsets, and the upper
|
@ for the entire note range (0-127)--they only map subsets, and the upper
|
||||||
@ and lower ranges aren't necessarily 0 or 127.
|
@ and lower ranges aren't necessarily 0 or 127.
|
||||||
@@ -10,384 +10,26 @@
|
|||||||
@ begins. Therefore, the notes naturally map to the key split table without
|
@ begins. Therefore, the notes naturally map to the key split table without
|
||||||
@ any extra offset calculation.
|
@ any extra offset calculation.
|
||||||
|
|
||||||
.set KeySplitTable1, . - 36
|
keysplit piano, 36
|
||||||
.byte 0 @ 36
|
split 0, 55
|
||||||
.byte 0 @ 37
|
split 1, 70
|
||||||
.byte 0 @ 38
|
split 2, 91
|
||||||
.byte 0 @ 39
|
split 3, 108
|
||||||
.byte 0 @ 40
|
|
||||||
.byte 0 @ 41
|
|
||||||
.byte 0 @ 42
|
|
||||||
.byte 0 @ 43
|
|
||||||
.byte 0 @ 44
|
|
||||||
.byte 0 @ 45
|
|
||||||
.byte 0 @ 46
|
|
||||||
.byte 0 @ 47
|
|
||||||
.byte 0 @ 48
|
|
||||||
.byte 0 @ 49
|
|
||||||
.byte 0 @ 50
|
|
||||||
.byte 0 @ 51
|
|
||||||
.byte 0 @ 52
|
|
||||||
.byte 0 @ 53
|
|
||||||
.byte 0 @ 54
|
|
||||||
.byte 1 @ 55
|
|
||||||
.byte 1 @ 56
|
|
||||||
.byte 1 @ 57
|
|
||||||
.byte 1 @ 58
|
|
||||||
.byte 1 @ 59
|
|
||||||
.byte 1 @ 60
|
|
||||||
.byte 1 @ 61
|
|
||||||
.byte 1 @ 62
|
|
||||||
.byte 1 @ 63
|
|
||||||
.byte 1 @ 64
|
|
||||||
.byte 1 @ 65
|
|
||||||
.byte 1 @ 66
|
|
||||||
.byte 1 @ 67
|
|
||||||
.byte 1 @ 68
|
|
||||||
.byte 1 @ 69
|
|
||||||
.byte 2 @ 70
|
|
||||||
.byte 2 @ 71
|
|
||||||
.byte 2 @ 72
|
|
||||||
.byte 2 @ 73
|
|
||||||
.byte 2 @ 74
|
|
||||||
.byte 2 @ 75
|
|
||||||
.byte 2 @ 76
|
|
||||||
.byte 2 @ 77
|
|
||||||
.byte 2 @ 78
|
|
||||||
.byte 2 @ 79
|
|
||||||
.byte 2 @ 80
|
|
||||||
.byte 2 @ 81
|
|
||||||
.byte 2 @ 82
|
|
||||||
.byte 2 @ 83
|
|
||||||
.byte 2 @ 84
|
|
||||||
.byte 2 @ 85
|
|
||||||
.byte 2 @ 86
|
|
||||||
.byte 2 @ 87
|
|
||||||
.byte 2 @ 88
|
|
||||||
.byte 2 @ 89
|
|
||||||
.byte 2 @ 90
|
|
||||||
.byte 3 @ 91
|
|
||||||
.byte 3 @ 92
|
|
||||||
.byte 3 @ 93
|
|
||||||
.byte 3 @ 94
|
|
||||||
.byte 3 @ 95
|
|
||||||
.byte 3 @ 96
|
|
||||||
.byte 3 @ 97
|
|
||||||
.byte 3 @ 98
|
|
||||||
.byte 3 @ 99
|
|
||||||
.byte 3 @ 100
|
|
||||||
.byte 3 @ 101
|
|
||||||
.byte 3 @ 102
|
|
||||||
.byte 3 @ 103
|
|
||||||
.byte 3 @ 104
|
|
||||||
.byte 3 @ 105
|
|
||||||
.byte 3 @ 106
|
|
||||||
.byte 3 @ 107
|
|
||||||
|
|
||||||
.set KeySplitTable2, . - 36
|
keysplit strings, 36
|
||||||
.byte 0 @ 36
|
split 0, 69
|
||||||
.byte 0 @ 37
|
split 1, 81
|
||||||
.byte 0 @ 38
|
split 2, 108
|
||||||
.byte 0 @ 39
|
|
||||||
.byte 0 @ 40
|
|
||||||
.byte 0 @ 41
|
|
||||||
.byte 0 @ 42
|
|
||||||
.byte 0 @ 43
|
|
||||||
.byte 0 @ 44
|
|
||||||
.byte 0 @ 45
|
|
||||||
.byte 0 @ 46
|
|
||||||
.byte 0 @ 47
|
|
||||||
.byte 0 @ 48
|
|
||||||
.byte 0 @ 49
|
|
||||||
.byte 0 @ 50
|
|
||||||
.byte 0 @ 51
|
|
||||||
.byte 0 @ 52
|
|
||||||
.byte 0 @ 53
|
|
||||||
.byte 0 @ 54
|
|
||||||
.byte 0 @ 55
|
|
||||||
.byte 0 @ 56
|
|
||||||
.byte 0 @ 57
|
|
||||||
.byte 0 @ 58
|
|
||||||
.byte 0 @ 59
|
|
||||||
.byte 0 @ 60
|
|
||||||
.byte 0 @ 61
|
|
||||||
.byte 0 @ 62
|
|
||||||
.byte 0 @ 63
|
|
||||||
.byte 0 @ 64
|
|
||||||
.byte 0 @ 65
|
|
||||||
.byte 0 @ 66
|
|
||||||
.byte 0 @ 67
|
|
||||||
.byte 0 @ 68
|
|
||||||
.byte 1 @ 69
|
|
||||||
.byte 1 @ 70
|
|
||||||
.byte 1 @ 71
|
|
||||||
.byte 1 @ 72
|
|
||||||
.byte 1 @ 73
|
|
||||||
.byte 1 @ 74
|
|
||||||
.byte 1 @ 75
|
|
||||||
.byte 1 @ 76
|
|
||||||
.byte 1 @ 77
|
|
||||||
.byte 1 @ 78
|
|
||||||
.byte 1 @ 79
|
|
||||||
.byte 1 @ 80
|
|
||||||
.byte 2 @ 81
|
|
||||||
.byte 2 @ 82
|
|
||||||
.byte 2 @ 83
|
|
||||||
.byte 2 @ 84
|
|
||||||
.byte 2 @ 85
|
|
||||||
.byte 2 @ 86
|
|
||||||
.byte 2 @ 87
|
|
||||||
.byte 2 @ 88
|
|
||||||
.byte 2 @ 89
|
|
||||||
.byte 2 @ 90
|
|
||||||
.byte 2 @ 91
|
|
||||||
.byte 2 @ 92
|
|
||||||
.byte 2 @ 93
|
|
||||||
.byte 2 @ 94
|
|
||||||
.byte 2 @ 95
|
|
||||||
.byte 2 @ 96
|
|
||||||
.byte 2 @ 97
|
|
||||||
.byte 2 @ 98
|
|
||||||
.byte 2 @ 99
|
|
||||||
.byte 2 @ 100
|
|
||||||
.byte 2 @ 101
|
|
||||||
.byte 2 @ 102
|
|
||||||
.byte 2 @ 103
|
|
||||||
.byte 2 @ 104
|
|
||||||
.byte 2 @ 105
|
|
||||||
.byte 2 @ 106
|
|
||||||
.byte 2 @ 107
|
|
||||||
|
|
||||||
.set KeySplitTable3, . - 36
|
keysplit trumpet, 36
|
||||||
.byte 0 @ 36
|
split 0, 66
|
||||||
.byte 0 @ 37
|
split 1, 84
|
||||||
.byte 0 @ 38
|
split 2, 108
|
||||||
.byte 0 @ 39
|
|
||||||
.byte 0 @ 40
|
|
||||||
.byte 0 @ 41
|
|
||||||
.byte 0 @ 42
|
|
||||||
.byte 0 @ 43
|
|
||||||
.byte 0 @ 44
|
|
||||||
.byte 0 @ 45
|
|
||||||
.byte 0 @ 46
|
|
||||||
.byte 0 @ 47
|
|
||||||
.byte 0 @ 48
|
|
||||||
.byte 0 @ 49
|
|
||||||
.byte 0 @ 50
|
|
||||||
.byte 0 @ 51
|
|
||||||
.byte 0 @ 52
|
|
||||||
.byte 0 @ 53
|
|
||||||
.byte 0 @ 54
|
|
||||||
.byte 0 @ 55
|
|
||||||
.byte 0 @ 56
|
|
||||||
.byte 0 @ 57
|
|
||||||
.byte 0 @ 58
|
|
||||||
.byte 0 @ 59
|
|
||||||
.byte 0 @ 60
|
|
||||||
.byte 0 @ 61
|
|
||||||
.byte 0 @ 62
|
|
||||||
.byte 0 @ 63
|
|
||||||
.byte 0 @ 64
|
|
||||||
.byte 0 @ 65
|
|
||||||
.byte 1 @ 66
|
|
||||||
.byte 1 @ 67
|
|
||||||
.byte 1 @ 68
|
|
||||||
.byte 1 @ 69
|
|
||||||
.byte 1 @ 70
|
|
||||||
.byte 1 @ 71
|
|
||||||
.byte 1 @ 72
|
|
||||||
.byte 1 @ 73
|
|
||||||
.byte 1 @ 74
|
|
||||||
.byte 1 @ 75
|
|
||||||
.byte 1 @ 76
|
|
||||||
.byte 1 @ 77
|
|
||||||
.byte 1 @ 78
|
|
||||||
.byte 1 @ 79
|
|
||||||
.byte 1 @ 80
|
|
||||||
.byte 1 @ 81
|
|
||||||
.byte 1 @ 82
|
|
||||||
.byte 1 @ 83
|
|
||||||
.byte 2 @ 84
|
|
||||||
.byte 2 @ 85
|
|
||||||
.byte 2 @ 86
|
|
||||||
.byte 2 @ 87
|
|
||||||
.byte 2 @ 88
|
|
||||||
.byte 2 @ 89
|
|
||||||
.byte 2 @ 90
|
|
||||||
.byte 2 @ 91
|
|
||||||
.byte 2 @ 92
|
|
||||||
.byte 2 @ 93
|
|
||||||
.byte 2 @ 94
|
|
||||||
.byte 2 @ 95
|
|
||||||
.byte 2 @ 96
|
|
||||||
.byte 2 @ 97
|
|
||||||
.byte 2 @ 98
|
|
||||||
.byte 2 @ 99
|
|
||||||
.byte 2 @ 100
|
|
||||||
.byte 2 @ 101
|
|
||||||
.byte 2 @ 102
|
|
||||||
.byte 2 @ 103
|
|
||||||
.byte 2 @ 104
|
|
||||||
.byte 2 @ 105
|
|
||||||
.byte 2 @ 106
|
|
||||||
.byte 2 @ 107
|
|
||||||
|
|
||||||
.set KeySplitTable4, . - 24
|
keysplit tuba, 24
|
||||||
.byte 0 @ 24
|
split 0, 42
|
||||||
.byte 0 @ 25
|
split 1, 108
|
||||||
.byte 0 @ 26
|
|
||||||
.byte 0 @ 27
|
|
||||||
.byte 0 @ 28
|
|
||||||
.byte 0 @ 29
|
|
||||||
.byte 0 @ 30
|
|
||||||
.byte 0 @ 31
|
|
||||||
.byte 0 @ 32
|
|
||||||
.byte 0 @ 33
|
|
||||||
.byte 0 @ 34
|
|
||||||
.byte 0 @ 35
|
|
||||||
.byte 0 @ 36
|
|
||||||
.byte 0 @ 37
|
|
||||||
.byte 0 @ 38
|
|
||||||
.byte 0 @ 39
|
|
||||||
.byte 0 @ 40
|
|
||||||
.byte 0 @ 41
|
|
||||||
.byte 1 @ 42
|
|
||||||
.byte 1 @ 43
|
|
||||||
.byte 1 @ 44
|
|
||||||
.byte 1 @ 45
|
|
||||||
.byte 1 @ 46
|
|
||||||
.byte 1 @ 47
|
|
||||||
.byte 1 @ 48
|
|
||||||
.byte 1 @ 49
|
|
||||||
.byte 1 @ 50
|
|
||||||
.byte 1 @ 51
|
|
||||||
.byte 1 @ 52
|
|
||||||
.byte 1 @ 53
|
|
||||||
.byte 1 @ 54
|
|
||||||
.byte 1 @ 55
|
|
||||||
.byte 1 @ 56
|
|
||||||
.byte 1 @ 57
|
|
||||||
.byte 1 @ 58
|
|
||||||
.byte 1 @ 59
|
|
||||||
.byte 1 @ 60
|
|
||||||
.byte 1 @ 61
|
|
||||||
.byte 1 @ 62
|
|
||||||
.byte 1 @ 63
|
|
||||||
.byte 1 @ 64
|
|
||||||
.byte 1 @ 65
|
|
||||||
.byte 1 @ 66
|
|
||||||
.byte 1 @ 67
|
|
||||||
.byte 1 @ 68
|
|
||||||
.byte 1 @ 69
|
|
||||||
.byte 1 @ 70
|
|
||||||
.byte 1 @ 71
|
|
||||||
.byte 1 @ 72
|
|
||||||
.byte 1 @ 73
|
|
||||||
.byte 1 @ 74
|
|
||||||
.byte 1 @ 75
|
|
||||||
.byte 1 @ 76
|
|
||||||
.byte 1 @ 77
|
|
||||||
.byte 1 @ 78
|
|
||||||
.byte 1 @ 79
|
|
||||||
.byte 1 @ 80
|
|
||||||
.byte 1 @ 81
|
|
||||||
.byte 1 @ 82
|
|
||||||
.byte 1 @ 83
|
|
||||||
.byte 1 @ 84
|
|
||||||
.byte 1 @ 85
|
|
||||||
.byte 1 @ 86
|
|
||||||
.byte 1 @ 87
|
|
||||||
.byte 1 @ 88
|
|
||||||
.byte 1 @ 89
|
|
||||||
.byte 1 @ 90
|
|
||||||
.byte 1 @ 91
|
|
||||||
.byte 1 @ 92
|
|
||||||
.byte 1 @ 93
|
|
||||||
.byte 1 @ 94
|
|
||||||
.byte 1 @ 95
|
|
||||||
.byte 1 @ 96
|
|
||||||
.byte 1 @ 97
|
|
||||||
.byte 1 @ 98
|
|
||||||
.byte 1 @ 99
|
|
||||||
.byte 1 @ 100
|
|
||||||
.byte 1 @ 101
|
|
||||||
.byte 1 @ 102
|
|
||||||
.byte 1 @ 103
|
|
||||||
.byte 1 @ 104
|
|
||||||
.byte 1 @ 105
|
|
||||||
.byte 1 @ 106
|
|
||||||
.byte 1 @ 107
|
|
||||||
|
|
||||||
.set KeySplitTable5, . - 36
|
keysplit french_horn, 36
|
||||||
.byte 0 @ 36
|
split 0, 66
|
||||||
.byte 0 @ 37
|
split 1, 108
|
||||||
.byte 0 @ 38
|
|
||||||
.byte 0 @ 39
|
|
||||||
.byte 0 @ 40
|
|
||||||
.byte 0 @ 41
|
|
||||||
.byte 0 @ 42
|
|
||||||
.byte 0 @ 43
|
|
||||||
.byte 0 @ 44
|
|
||||||
.byte 0 @ 45
|
|
||||||
.byte 0 @ 46
|
|
||||||
.byte 0 @ 47
|
|
||||||
.byte 0 @ 48
|
|
||||||
.byte 0 @ 49
|
|
||||||
.byte 0 @ 50
|
|
||||||
.byte 0 @ 51
|
|
||||||
.byte 0 @ 52
|
|
||||||
.byte 0 @ 53
|
|
||||||
.byte 0 @ 54
|
|
||||||
.byte 0 @ 55
|
|
||||||
.byte 0 @ 56
|
|
||||||
.byte 0 @ 57
|
|
||||||
.byte 0 @ 58
|
|
||||||
.byte 0 @ 59
|
|
||||||
.byte 0 @ 60
|
|
||||||
.byte 0 @ 61
|
|
||||||
.byte 0 @ 62
|
|
||||||
.byte 0 @ 63
|
|
||||||
.byte 0 @ 64
|
|
||||||
.byte 0 @ 65
|
|
||||||
.byte 1 @ 66
|
|
||||||
.byte 1 @ 67
|
|
||||||
.byte 1 @ 68
|
|
||||||
.byte 1 @ 69
|
|
||||||
.byte 1 @ 70
|
|
||||||
.byte 1 @ 71
|
|
||||||
.byte 1 @ 72
|
|
||||||
.byte 1 @ 73
|
|
||||||
.byte 1 @ 74
|
|
||||||
.byte 1 @ 75
|
|
||||||
.byte 1 @ 76
|
|
||||||
.byte 1 @ 77
|
|
||||||
.byte 1 @ 78
|
|
||||||
.byte 1 @ 79
|
|
||||||
.byte 1 @ 80
|
|
||||||
.byte 1 @ 81
|
|
||||||
.byte 1 @ 82
|
|
||||||
.byte 1 @ 83
|
|
||||||
.byte 1 @ 84
|
|
||||||
.byte 1 @ 85
|
|
||||||
.byte 1 @ 86
|
|
||||||
.byte 1 @ 87
|
|
||||||
.byte 1 @ 88
|
|
||||||
.byte 1 @ 89
|
|
||||||
.byte 1 @ 90
|
|
||||||
.byte 1 @ 91
|
|
||||||
.byte 1 @ 92
|
|
||||||
.byte 1 @ 93
|
|
||||||
.byte 1 @ 94
|
|
||||||
.byte 1 @ 95
|
|
||||||
.byte 1 @ 96
|
|
||||||
.byte 1 @ 97
|
|
||||||
.byte 1 @ 98
|
|
||||||
.byte 1 @ 99
|
|
||||||
.byte 1 @ 100
|
|
||||||
.byte 1 @ 101
|
|
||||||
.byte 1 @ 102
|
|
||||||
.byte 1 @ 103
|
|
||||||
.byte 1 @ 104
|
|
||||||
.byte 1 @ 105
|
|
||||||
.byte 1 @ 106
|
|
||||||
.byte 1 @ 107
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group abandoned_ship
|
voice_group abandoned_ship
|
||||||
voice_keysplit_all voicegroup_route110_drumset
|
voice_keysplit_all voicegroup_route110_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -59,7 +59,7 @@ voice_group abandoned_ship
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ voice_group abnormal_weather
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -60,7 +60,7 @@ voice_group abnormal_weather
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ voice_group aqua_magma_hideout
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,11 +55,11 @@ voice_group b_factory
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group b_frontier
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 239
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 239
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group b_frontier
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group b_palace
|
voice_group b_palace
|
||||||
voice_keysplit_all voicegroup_emerald_drumset_2
|
voice_keysplit_all voicegroup_emerald_drumset_2
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group b_pike
|
voice_group b_pike
|
||||||
voice_keysplit_all voicegroup_emerald_drumset_1
|
voice_keysplit_all voicegroup_emerald_drumset_1
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_programmable_wave_alt 60, 0, ProgrammableWaveData_21, 0, 7, 15, 1
|
voice_programmable_wave_alt 60, 0, ProgrammableWaveData_21, 0, 7, 15, 1
|
||||||
@@ -47,7 +47,7 @@ voice_group b_pike
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -59,7 +59,7 @@ voice_group b_pike
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group b_pyramid
|
voice_group b_pyramid
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group b_pyramid
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 246
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 246
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group b_pyramid
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_distortion_guitar_low, 255, 0, 255, 127
|
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_distortion_guitar_low, 255, 0, 255, 127
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group b_pyramid_top
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -59,7 +59,7 @@ voice_group b_pyramid_top
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group b_tower
|
voice_group b_tower
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group b_tower
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 239
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 239
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group b_tower
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group b_tower_rs
|
voice_group b_tower_rs
|
||||||
voice_keysplit_all voicegroup_route110_drumset
|
voice_keysplit_all voicegroup_route110_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_2_alt 60, 0, 2, 0, 1, 7, 1
|
voice_square_2_alt 60, 0, 2, 0, 1, 7, 1
|
||||||
@@ -47,7 +47,7 @@ voice_group b_tower_rs
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 246, 0, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 246, 0, 226
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group b_tower_rs
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group birch_lab
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -59,7 +59,7 @@ voice_group birch_lab
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,11 +55,11 @@ voice_group cable_car
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group cave_of_origin
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 246, 0, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 246, 0, 226
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -57,9 +57,9 @@ voice_group cave_of_origin
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group contest
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group contest
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,9 +55,9 @@ voice_group contest_lobby
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ voice_group contest_winner
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group credits
|
voice_group credits
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1_alt 60, 0, 0, 1, 1, 5, 2, 4
|
voice_square_1_alt 60, 0, 0, 1, 1, 5, 2, 4
|
||||||
@@ -47,7 +47,7 @@ voice_group credits
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 239
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 239
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group credits
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group cycling
|
voice_group cycling
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group cycling
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 0, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 0, 242
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 193, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 193, 226
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group cycling
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group dewford
|
voice_group dewford
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group dewford
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group dewford
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group dummy
|
voice_group dummy
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group dummy
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 204, 193, 239
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 204, 193, 239
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,7 +55,7 @@ voice_group dummy
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group encounter_aqua
|
voice_group encounter_aqua
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,7 +55,7 @@ voice_group encounter_aqua
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group encounter_brendan
|
voice_group encounter_brendan
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,7 +55,7 @@ voice_group encounter_brendan
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ voice_group encounter_champion
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ voice_group encounter_cool
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ voice_group encounter_elite_four
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group encounter_female
|
voice_group encounter_female
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group encounter_female
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group encounter_girl
|
voice_group encounter_girl
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group encounter_hiker
|
voice_group encounter_hiker
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -57,9 +57,9 @@ voice_group encounter_hiker
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ voice_group encounter_intense
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ voice_group encounter_interviewer
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,11 +55,11 @@ voice_group encounter_magma
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ voice_group encounter_male
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ voice_group encounter_may
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group encounter_rich
|
voice_group encounter_rich
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group encounter_rich
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -57,7 +57,7 @@ voice_group encounter_rich
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group encounter_suspicious
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -57,7 +57,7 @@ voice_group encounter_suspicious
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group encounter_swimmer
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 216, 0, 165
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 216, 0, 165
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -59,7 +59,7 @@ voice_group encounter_swimmer
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group ever_grande
|
voice_group ever_grande
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,7 +55,7 @@ voice_group ever_grande
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ voice_group evolution
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group fallarbor
|
voice_group fallarbor
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group fallarbor
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 0, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 0, 242
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -57,9 +57,9 @@ voice_group fallarbor
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group fanfare
|
voice_group fanfare
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_trinity_30303_mega_bass, 255, 178, 180, 165
|
voice_directsound 60, 0, DirectSoundWaveData_trinity_30303_mega_bass, 255, 178, 180, 165
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group fanfare
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 0, 204
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 0, 204
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 246, 0, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 246, 0, 226
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group fanfare
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group fortree
|
voice_group fortree
|
||||||
voice_keysplit_all voicegroup_petalburg_drumset
|
voice_keysplit_all voicegroup_petalburg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ voice_group frlg_sfx
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group game_corner
|
voice_group game_corner
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group game_corner
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group game_corner
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group gym
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 246, 0, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 246, 0, 226
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group gym
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group hall_of_fame
|
voice_group hall_of_fame
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group hall_of_fame
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 246
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 246
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group hall_of_fame
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group hall_of_fame_room
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 0, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 0, 242
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -57,9 +57,9 @@ voice_group hall_of_fame_room
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group help
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -59,7 +59,7 @@ voice_group help
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group intro
|
voice_group intro
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group intro
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 128, 226, 0, 38
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 128, 226, 0, 38
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 246
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 246
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group intro
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group intro_battle
|
voice_group intro_battle
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_2_alt 60, 0, 1, 1, 1, 6, 2
|
voice_square_2_alt 60, 0, 1, 1, 1, 6, 2
|
||||||
@@ -47,7 +47,7 @@ voice_group intro_battle
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 239
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 239
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group intro_battle
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group lilycove
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 0, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 0, 242
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -57,9 +57,9 @@ voice_group lilycove
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
voice_group lilycove_museum
|
voice_group lilycove_museum
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group lilycove_museum
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 216, 0, 165
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 216, 0, 165
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -57,7 +57,7 @@ voice_group lilycove_museum
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group link_contest_p1
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group link_contest_p1
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group link_contest_p2
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group link_contest_p2
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group link_contest_p3
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group link_contest_p3
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group link_contest_p4
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group link_contest_p4
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group littleroot
|
voice_group littleroot
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_2_alt 60, 0, 2, 1, 4, 4, 2
|
voice_square_2_alt 60, 0, 2, 1, 4, 4, 2
|
||||||
@@ -47,7 +47,7 @@ voice_group littleroot
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 99
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 99
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group littleroot_test
|
voice_group littleroot_test
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_2 60, 0, 2, 0, 1, 4, 2
|
voice_square_2 60, 0, 2, 0, 1, 4, 2
|
||||||
@@ -47,7 +47,7 @@ voice_group littleroot_test
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group mt_chimney
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 193, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 193, 226
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group mt_chimney
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group mt_pyre
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 246
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 246
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -59,7 +59,7 @@ voice_group mt_pyre
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group mt_pyre_exterior
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 38
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 242
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 246
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 180, 246
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -59,7 +59,7 @@ voice_group mt_pyre_exterior
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
voice_group oceanic_museum
|
voice_group oceanic_museum
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group oceanic_museum
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,7 +55,7 @@ voice_group oceanic_museum
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group oldale
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 216, 0, 165
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 216, 0, 165
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -57,9 +57,9 @@ voice_group oldale
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group petalburg
|
voice_group petalburg
|
||||||
voice_keysplit_all voicegroup_petalburg_drumset
|
voice_keysplit_all voicegroup_petalburg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group petalburg
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group petalburg_woods
|
voice_group petalburg_woods
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_2_alt 60, 0, 0, 0, 1, 7, 1
|
voice_square_2_alt 60, 0, 0, 0, 1, 7, 1
|
||||||
@@ -47,7 +47,7 @@ voice_group petalburg_woods
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 216, 0, 165
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 216, 0, 165
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
voice_group poke_center
|
voice_group poke_center
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_programmable_wave_alt 60, 0, ProgrammableWaveData_14, 0, 1, 12, 0
|
voice_programmable_wave_alt 60, 0, ProgrammableWaveData_14, 0, 1, 12, 0
|
||||||
voice_square_1_alt 60, 0, 0, 0, 1, 1, 9, 0
|
voice_square_1_alt 60, 0, 0, 0, 1, 1, 9, 0
|
||||||
voice_square_2_alt 60, 0, 2, 0, 2, 6, 3
|
voice_square_2_alt 60, 0, 2, 0, 2, 6, 3
|
||||||
@@ -47,7 +47,7 @@ voice_group poke_center
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 165
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 226, 0, 165
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group poke_mart
|
voice_group poke_mart
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
voice_group rg_caught_intro
|
voice_group rg_caught_intro
|
||||||
voice_keysplit_all voicegroup_frlg_fanfare_drumset_1
|
voice_keysplit_all voicegroup_frlg_fanfare_drumset_1
|
||||||
voice_keysplit_all voicegroup_frlg_fanfare_drumset_2
|
voice_keysplit_all voicegroup_frlg_fanfare_drumset_2
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_caught_intro
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group rg_caught_intro
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_celadon
|
voice_group rg_celadon
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 255, 188, 128, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 255, 188, 128, 226
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_celadon
|
|||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 216, 0, 165
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_pizzicato_strings, 255, 216, 0, 165
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -59,7 +59,7 @@ voice_group rg_celadon
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_cinnabar
|
voice_group rg_cinnabar
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 255, 188, 128, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 255, 188, 128, 226
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_cinnabar
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,7 +55,7 @@ voice_group rg_cinnabar
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_credits
|
voice_group rg_credits
|
||||||
voice_keysplit_all voicegroup_rg_credits_drumset
|
voice_keysplit_all voicegroup_rg_credits_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1_alt 60, 0, 0, 2, 0, 0, 12, 0
|
voice_square_1_alt 60, 0, 0, 2, 0, 0, 12, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_credits
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 165, 154, 153
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 165, 154, 153
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group rg_credits
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_cycling
|
voice_group rg_cycling
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_cycling
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,7 +55,7 @@ voice_group rg_cycling
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_encounter_boy
|
voice_group rg_encounter_boy
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_encounter_boy
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_encounter_girl
|
voice_group rg_encounter_girl
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_encounter_girl
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_encounter_rival
|
voice_group rg_encounter_rival
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_encounter_rival
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group rg_encounter_rival
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_distortion_guitar_low, 255, 0, 255, 209
|
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_distortion_guitar_low, 255, 0, 255, 209
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_follow_me
|
voice_group rg_follow_me
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_steinway_b_piano, 128, 204, 51, 242
|
voice_directsound 60, 0, DirectSoundWaveData_steinway_b_piano, 128, 204, 51, 242
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ voice_group rg_fuchsia
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group rg_game_corner
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 165, 154, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 165, 154, 235
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group rg_game_corner
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_game_freak
|
voice_group rg_game_freak
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group rg_gym
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 246, 0, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 246, 0, 226
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group rg_gym
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_hall_of_fame
|
voice_group rg_hall_of_fame
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 255, 188, 128, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 255, 188, 128, 226
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_hall_of_fame
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,7 +55,7 @@ voice_group rg_hall_of_fame
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_intro_fight
|
voice_group rg_intro_fight
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_intro_fight
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_lavender
|
voice_group rg_lavender
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_lavender
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 226
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1_alt 60, 0, 0, 2, 0, 2, 3, 1
|
voice_square_1_alt 60, 0, 0, 2, 0, 2, 3, 1
|
||||||
voice_square_2_alt 60, 0, 3, 0, 2, 7, 2
|
voice_square_2_alt 60, 0, 3, 0, 2, 7, 2
|
||||||
@@ -57,9 +57,9 @@ voice_group rg_lavender
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_mt_moon
|
voice_group rg_mt_moon
|
||||||
voice_keysplit_all voicegroup_rs_drumset
|
voice_keysplit_all voicegroup_rs_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_mt_moon
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group rg_new_game
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 193, 76
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 193, 76
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group rg_new_game
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_oak
|
voice_group rg_oak
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_oak
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,9 +55,9 @@ voice_group rg_oak
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group rg_oak_lab
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group rg_pallet
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_pewter
|
voice_group rg_pewter
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 255, 188, 128, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 255, 188, 128, 226
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_pewter
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_photo
|
voice_group rg_photo
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 64, 249, 0, 188
|
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 64, 249, 0, 188
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group rg_poke_center
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group rg_poke_mansion
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -57,7 +57,7 @@ voice_group rg_poke_mansion
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_poke_tower
|
voice_group rg_poke_tower
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_poke_tower
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 242, 51, 226
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1_alt 60, 0, 0, 2, 0, 2, 10, 1
|
voice_square_1_alt 60, 0, 0, 2, 0, 2, 10, 1
|
||||||
voice_square_2_alt 60, 0, 2, 0, 2, 6, 6
|
voice_square_2_alt 60, 0, 2, 0, 2, 6, 6
|
||||||
@@ -57,9 +57,9 @@ voice_group rg_poke_tower
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_rocket_hideout
|
voice_group rg_rocket_hideout
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_rocket_hideout
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 193, 153
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 193, 153
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group rg_rocket_hideout
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_distortion_guitar_low, 255, 0, 255, 127
|
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_distortion_guitar_low, 255, 0, 255, 127
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_route11
|
voice_group rg_route11
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_route11
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_harp, 255, 246, 0, 235
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 127, 154, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 127, 154, 235
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group rg_route11
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group rg_route24
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 193, 127
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 0, 193, 127
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group rg_route24
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ voice_group rg_route3
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 127, 154, 235
|
voice_directsound 60, 0, DirectSoundWaveData_sc88pro_timpani, 255, 127, 154, 235
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
@@ -55,11 +55,11 @@ voice_group rg_route3
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_trumpet_keysplit, KeySplitTable3
|
voice_keysplit voicegroup_trumpet_keysplit, keysplit_trumpet
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_tuba_keysplit, KeySplitTable4
|
voice_keysplit voicegroup_tuba_keysplit, keysplit_tuba
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_french_horn_keysplit, KeySplitTable5
|
voice_keysplit voicegroup_french_horn_keysplit, keysplit_french_horn
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
voice_group rg_sevii_45
|
voice_group rg_sevii_45
|
||||||
voice_keysplit_all voicegroup_frlg_drumset
|
voice_keysplit_all voicegroup_frlg_drumset
|
||||||
voice_keysplit voicegroup_piano_keysplit, KeySplitTable1
|
voice_keysplit voicegroup_piano_keysplit, keysplit_piano
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 255, 188, 128, 226
|
voice_directsound 60, 0, DirectSoundWaveData_sd90_classical_detuned_ep1_low, 255, 188, 128, 226
|
||||||
@@ -47,7 +47,7 @@ voice_group rg_sevii_45
|
|||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_keysplit voicegroup_strings_keysplit, KeySplitTable2
|
voice_keysplit voicegroup_strings_keysplit, keysplit_strings
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
voice_square_1 60, 0, 0, 2, 0, 0, 15, 0
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user