Skip to content

Commit b493979

Browse files
committed
add new guitar presets for various songs including "Hey Joe", "My Way", "One", "Floods", "Scar Tissue", and "Smoke on the Water"
1 parent 51b5487 commit b493979

File tree

7 files changed

+855
-0
lines changed

7 files changed

+855
-0
lines changed
Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
import { Preset } from "lib/public/interface";
2+
import { NoiseGateType } from "lib/core/blocks/noisegate";
3+
import { CompressorType } from "lib/core/blocks/compressor";
4+
import { ModulationType } from "lib/core/blocks/modulation";
5+
import { EffectType } from "lib/core/blocks/effect";
6+
import { AmplifierType } from "lib/core/blocks/amplifier";
7+
import { CabinetType } from "lib/core/blocks/cabinet";
8+
import { EqType } from "lib/core/blocks/eq";
9+
import { ReverbType } from "lib/core/blocks/reverb";
10+
import { DelayType } from "lib/core/blocks/delay";
11+
import jimiHendrix from "lib/public/artist/jimi-hendrix";
12+
13+
const preset: Preset = {
14+
id: "hey-joe-whole-song",
15+
description:
16+
"Warm, slightly overdriven, dynamic, expressive tone with vintage character. Smooth highs, rounded low end, and a touch of ambient depth. Responsive to playing dynamics and volume knob changes, with subtle modulation and a roomy feel.",
17+
"chain": {
18+
"noisegate": {
19+
"type": NoiseGateType.NoiseGate,
20+
"enabled": false,
21+
"params": {
22+
"Sensitivity": 50,
23+
"Decay": 50
24+
}
25+
},
26+
"compressor": {
27+
"type": CompressorType.KComp,
28+
"enabled": false,
29+
"params": {
30+
"Level": 50,
31+
"Sustain": 50,
32+
"Clipping": 50
33+
}
34+
},
35+
"modulation": {
36+
"type": ModulationType.UVibe,
37+
"enabled": true,
38+
"params": {
39+
"Speed": 38,
40+
"Volume": 53,
41+
"Intensity": 65,
42+
"Mode": 30
43+
}
44+
},
45+
"effect": {
46+
"type": EffectType.MuffFuzz,
47+
"enabled": true,
48+
"params": {
49+
"Volume": 55,
50+
"Sustain": 73,
51+
"Tone": 62
52+
}
53+
},
54+
"amplifier": {
55+
"type": AmplifierType.Plexi100,
56+
"enabled": true,
57+
"params": {
58+
"Gain": 32,
59+
"Master": 68,
60+
"Bass": 46,
61+
"Middle": 65,
62+
"Treble": 60,
63+
"Presence": 55
64+
}
65+
},
66+
"cabinet": {
67+
"type": CabinetType.M1960AV,
68+
"enabled": true,
69+
"params": {
70+
"Level": 52,
71+
"LowCut": 45,
72+
"HighCut": 56
73+
}
74+
},
75+
"eq": {
76+
"type": EqType.SixBand,
77+
"enabled": false,
78+
"params": {
79+
"100": 50,
80+
"220": 50,
81+
"500": 50,
82+
"1200": 50,
83+
"2600": 50,
84+
"6400": 50
85+
}
86+
},
87+
"reverb": {
88+
"type": ReverbType.Spring,
89+
"enabled": true,
90+
"params": {
91+
"Level": 28,
92+
"Decay": 40
93+
}
94+
},
95+
"delay": {
96+
"type": DelayType.AnalogDelay,
97+
"enabled": false,
98+
"params": {
99+
"Intensity": 50,
100+
"Rate": 50,
101+
"Echo": 50
102+
}
103+
}
104+
},
105+
pickup: {
106+
type: "single",
107+
tone: 7,
108+
position: "neck",
109+
},
110+
slug: "hey-joe-whole-song",
111+
tabsUrl: "https://www.songsterr.com/a/wsa/jimi-hendrix-hey-joe-tab-s22556",
112+
origin: {
113+
artist: jimiHendrix,
114+
song: "Hey Joe",
115+
part: "Whole Song",
116+
imageUrl:
117+
"https://upload.wikimedia.org/wikipedia/en/7/73/Jimi_Hendrix_-_Hey_Joe.jpg",
118+
},
119+
};
120+
121+
export default preset;
Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
import { Preset } from "lib/public/interface";
2+
import { NoiseGateType } from "lib/core/blocks/noisegate";
3+
import { CompressorType } from "lib/core/blocks/compressor";
4+
import { ModulationType } from "lib/core/blocks/modulation";
5+
import { EffectType } from "lib/core/blocks/effect";
6+
import { AmplifierType } from "lib/core/blocks/amplifier";
7+
import { CabinetType } from "lib/core/blocks/cabinet";
8+
import { EqType } from "lib/core/blocks/eq";
9+
import { ReverbType } from "lib/core/blocks/reverb";
10+
import { DelayType } from "lib/core/blocks/delay";
11+
import pantera from "lib/public/artist/pantera";
12+
import limpBizkit from "lib/public/artist/limp-bizkit";
13+
14+
const preset: Preset = {
15+
id: "my-way-clean-guitar-intro",
16+
description:
17+
"Clean, glassy, and slightly compressed tone with a pronounced rhythmic delay. Moderate brightness, tight low end, and percussive attack. The delay effect creates a spacious, echoing texture that is central to the intro’s vibe.",
18+
chain: {
19+
noisegate: {
20+
type: NoiseGateType.NoiseGate,
21+
"enabled": true,
22+
"params": {
23+
"Sensitivity": 50,
24+
"Decay": 40
25+
}
26+
},
27+
"compressor": {
28+
"type": CompressorType.KComp,
29+
"enabled": true,
30+
"params": {
31+
"Level": 52,
32+
"Sustain": 38,
33+
"Clipping": 45
34+
}
35+
},
36+
"modulation": {
37+
"type": ModulationType.CE1,
38+
"enabled": false,
39+
"params": {
40+
"Rate": 50,
41+
"Depth": 50,
42+
"Intensity": 50
43+
}
44+
},
45+
"effect": {
46+
"type": EffectType.DistortionPlus,
47+
"enabled": false,
48+
"params": {
49+
"Output": 50,
50+
"Sensitivity": 50
51+
}
52+
},
53+
"amplifier": {
54+
"type": AmplifierType.JazzClean,
55+
"enabled": true,
56+
"params": {
57+
"Gain": 42,
58+
"Master": 56,
59+
"Bass": 46,
60+
"Middle": 54,
61+
"Treble": 59,
62+
"Bright": 60
63+
}
64+
},
65+
"cabinet": {
66+
"type": CabinetType.JZ120,
67+
"enabled": true,
68+
"params": {
69+
"Level": 52,
70+
"LowCut": 55,
71+
"HighCut": 52
72+
}
73+
},
74+
"eq": {
75+
"type": EqType.SixBand,
76+
"enabled": true,
77+
"params": {
78+
"100": 44,
79+
"220": 47,
80+
"500": 50,
81+
"1200": 56,
82+
"2600": 60,
83+
"6400": 54
84+
}
85+
},
86+
"reverb": {
87+
"type": ReverbType.Plate,
88+
"enabled": true,
89+
"params": {
90+
"Level": 40,
91+
"Decay": 38
92+
}
93+
},
94+
"delay": {
95+
"type": DelayType.DigitalDelay,
96+
"enabled": true,
97+
"params": {
98+
"E.Level": 58,
99+
"Feedback": 45,
100+
"Time": 54
101+
}
102+
}
103+
},
104+
pickup: {
105+
type: "single",
106+
tone: 8,
107+
position: "neck",
108+
},
109+
slug: "my-way-clean-guitar-intro",
110+
tabsUrl: "https://www.songsterr.com/a/wsa/limp-bizkit-my-way-tab-s11567",
111+
origin: {
112+
artist: limpBizkit,
113+
song: "My Way",
114+
part: "Intro",
115+
imageUrl:
116+
"https://upload.wikimedia.org/wikipedia/en/b/b1/My_Way_%28Limp_Bizkit_song%29_cover_art.jpg",
117+
},
118+
};
119+
120+
export default preset;
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
import { Preset } from "lib/public/interface";
2+
import { NoiseGateType } from "lib/core/blocks/noisegate";
3+
import { CompressorType } from "lib/core/blocks/compressor";
4+
import { ModulationType } from "lib/core/blocks/modulation";
5+
import { EffectType } from "lib/core/blocks/effect";
6+
import { AmplifierType } from "lib/core/blocks/amplifier";
7+
import { CabinetType } from "lib/core/blocks/cabinet";
8+
import { EqType } from "lib/core/blocks/eq";
9+
import { ReverbType } from "lib/core/blocks/reverb";
10+
import { DelayType } from "lib/core/blocks/delay";
11+
import pantera from "lib/public/artist/pantera";
12+
import metallica from "lib/public/artist/metallica";
13+
14+
const preset: Preset = {
15+
id: "one-guitar-intro",
16+
description:
17+
"Crystal clear, glassy clean sound with a shimmering high end, pronounced articulation, and subtle spatial depth. The tone is dynamic with minimal distortion, emphasizing note separation and clarity.",
18+
chain: {
19+
noisegate: {
20+
type: NoiseGateType.NoiseGate,
21+
"enabled": true,
22+
"params": {
23+
"Sensitivity": 48,
24+
"Decay": 40
25+
}
26+
},
27+
"compressor": {
28+
"type": CompressorType.KComp,
29+
"enabled": true,
30+
"params": {
31+
"Level": 52,
32+
"Sustain": 38,
33+
"Clipping": 45
34+
}
35+
},
36+
"modulation": {
37+
"type": ModulationType.CE2,
38+
"enabled": true,
39+
"params": {
40+
"Rate": 34,
41+
"Depth": 26
42+
}
43+
},
44+
"effect": {
45+
"type": EffectType.DistortionPlus,
46+
"enabled": false,
47+
"params": {
48+
"Output": 50,
49+
"Sensitivity": 50
50+
}
51+
},
52+
"amplifier": {
53+
"type": AmplifierType.JazzClean,
54+
"enabled": true,
55+
"params": {
56+
"Gain": 40,
57+
"Master": 60,
58+
"Bass": 44,
59+
"Middle": 42,
60+
"Treble": 67,
61+
"Bright": 63
62+
}
63+
},
64+
"cabinet": {
65+
"type": CabinetType.JZ120,
66+
"enabled": true,
67+
"params": {
68+
"Level": 54,
69+
"LowCut": 60,
70+
"HighCut": 65
71+
}
72+
},
73+
"eq": {
74+
"type": EqType.TenBand,
75+
"enabled": true,
76+
"params": {
77+
"31": 38,
78+
"62": 40,
79+
"125": 44,
80+
"250": 46,
81+
"500": 42,
82+
"1000": 46,
83+
"2000": 56,
84+
"4000": 62,
85+
"8000": 67,
86+
"16000": 70,
87+
"Vol": 50
88+
}
89+
},
90+
"reverb": {
91+
"type": ReverbType.Plate,
92+
"enabled": true,
93+
"params": {
94+
"Level": 40,
95+
"Decay": 62
96+
}
97+
},
98+
"delay": {
99+
"type": DelayType.AnalogDelay,
100+
"enabled": false,
101+
"params": {
102+
"Intensity": 50,
103+
"Rate": 50,
104+
"Echo": 50
105+
}
106+
}
107+
},
108+
pickup: {
109+
type: "single",
110+
tone: 8,
111+
position: "neck",
112+
},
113+
slug: "one-guitar-intro",
114+
tabsUrl: "https://www.songsterr.com/a/wsa/metallica-one-tab-s444t4",
115+
origin: {
116+
artist: metallica,
117+
song: "One",
118+
part: "Intro",
119+
imageUrl:
120+
"https://upload.wikimedia.org/wikipedia/en/f/fb/Metallica_-_One_cover.jpg",
121+
},
122+
};
123+
124+
export default preset;

0 commit comments

Comments
 (0)