]> Git — Sourcephile - tmp/julm/arpeggigon.git/blob - src/RMCA/Translator/Instruments.hs
Corrected spacing in instrument names.
[tmp/julm/arpeggigon.git] / src / RMCA / Translator / Instruments.hs
1 module RMCA.Translator.Instruments where
2
3 instrumentList :: [(Int, String)]
4 instrumentList = [ (0,"Acoustic Grand Piano")
5 , (1,"Bright Acoustic Piano")
6 , (2,"Electric Grand Piano")
7 , (3,"Honky-tonk Piano")
8 , (4,"Electric Piano 1")
9 , (5,"Electric Piano 2")
10 , (6,"Harpsichord")
11 , (7,"Clavinet")
12 , (8,"Celesta")
13 , (9,"Glockenspiel")
14 , (10,"Music Box")
15 , (11,"Vibraphone")
16 , (12,"Marimba")
17 , (13,"Xylophone")
18 , (14,"Tubular Bells")
19 , (15,"Dulcimer")
20 , (16,"Drawbar Organ")
21 , (17,"Percussive Organ")
22 , (18,"Rock Organ")
23 , (19,"Church Organ")
24 , (20,"Reed Organ")
25 , (21,"Accordion")
26 , (22,"Harmonica")
27 , (23,"Tango Accordion")
28 , (24,"Acoustic Guitar (nylon)")
29 , (25,"Acoustic Guitar (steel)")
30 , (26,"Electric Guitar (jazz)")
31 , (27,"Electric Guitar (clean)")
32 , (28,"Electric Guitar (muted)")
33 , (29,"Overdriven Guitar")
34 , (30,"Distortion Guitar")
35 , (31,"Guitar Harmonics")
36 , (32,"Acoustic Bass")
37 , (33,"Electric Bass (finger)")
38 , (34,"Electric Bass (pick)")
39 , (35,"Fretless Bass")
40 , (36,"Slap Bass 1")
41 , (37,"Slap Bass 2")
42 , (38,"Synth Bass 1")
43 , (39,"Synth Bass 2")
44 , (40,"Violin")
45 , (41,"Viola")
46 , (42,"Cello")
47 , (43,"Contrabass")
48 , (44,"Tremolo Strings")
49 , (45,"Pizzicato Strings")
50 , (46,"Orchestral Harp")
51 , (47,"Timpani")
52 , (48,"String Ensemble 1")
53 , (49,"String Ensemble 2")
54 , (50,"Synth Strings 1")
55 , (51,"Synth Strings 2")
56 , (52,"Choir Aahs")
57 , (53,"Voice Oohs")
58 , (54,"Synth Choir")
59 , (55,"Orchestra Hit")
60 , (56,"Trumpet")
61 , (57,"Trombone")
62 , (58,"Tuba")
63 , (59,"Muted Trumpet")
64 , (60,"French Horn")
65 , (61,"Brass Section")
66 , (62,"Synth Brass 1")
67 , (63,"Synth Brass 2")
68 , (64,"Soprano Sax")
69 , (65,"Alto Sax")
70 , (66,"Tenor Sax")
71 , (67,"Baritone Sax")
72 , (68,"Oboe")
73 , (69,"English Horn")
74 , (70,"Bassoon")
75 , (71,"Clarinet")
76 , (72,"Piccolo")
77 , (73,"Flute")
78 , (74,"Recorder")
79 , (75,"Pan Flute")
80 , (76,"Blown bottle")
81 , (77,"Shakuhachi")
82 , (78,"Whistle")
83 , (79,"Ocarina")
84 , (80,"Lead 1 (square)")
85 , (81,"Lead 2 (sawtooth)")
86 , (82,"Lead 3 (calliope)")
87 , (83,"Lead 4 (chiff)")
88 , (84,"Lead 5 (charang)")
89 , (85,"Lead 6 (voice)")
90 , (86,"Lead 7 (fifths)")
91 , (87,"Lead 8 (bass + lead)")
92 , (88,"Pad 1 (new age)")
93 , (89,"Pad 2 (warm[disambiguation needed])")
94 , (90,"Pad 3 (polysynth)")
95 , (91,"Pad 4 (choir)")
96 , (92,"Pad 5 (bowed)")
97 , (93,"Pad 6 (metallic)")
98 , (94,"Pad 7 (halo)")
99 , (95,"Pad 8 (sweep)")
100 , (96,"FX 1 (rain)")
101 , (97,"FX 2 (soundtrack)")
102 , (98,"FX 3 (crystal)")
103 , (99,"FX 4 (atmosphere)")
104 , (100,"FX 5 (brightness)")
105 , (101,"FX 6 (goblins)")
106 , (102,"FX 7 (echoes)")
107 , (103,"FX 8 (sci-fi)")
108 , (104,"Sitar")
109 , (105,"Banjo")
110 , (106,"Shamisen")
111 , (107,"Koto")
112 , (108,"Kalimba")
113 , (109,"Bagpipe")
114 , (110,"Fiddle")
115 , (111,"Shanai")
116 , (112,"Tinkle Bell")
117 , (113,"Agogo")
118 , (114,"Steel Drums")
119 , (115,"Woodblock")
120 , (116,"Taiko Drum")
121 , (117,"Melodic Tom")
122 , (118,"Synth Drum")
123 , (119,"Reverse Cymbal")
124 , (120,"Guitar Fret Noise")
125 , (121,"Breath Noise")
126 , (122,"Seashore")
127 , (123,"Bird Tweet")
128 , (124,"Telephone Ring")
129 , (125,"Helicopter")
130 , (126,"Applause")
131 , (127,"Gunshot")
132 ]