/usr/share/kobo-deluxe/sfx/explo5.agw is in kobodeluxe-data 0.5.1-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | /////////////////////////////////////////////
// Explo 5 - Electric
// Copyright (C) 2007 David Olofson
/////////////////////////////////////////////
w_format target, MONO16, 32000;
w_blank target, 32000*.75, 0;
procedure f(tp, f0, res)
{
w_env FREQUENCY, f0;
w_env AMPLITUDE, res;
w_filter target, tp;
}
// Bump
w_env AMPLITUDE,
0, .5,
.1, 0;
w_env FREQUENCY, 1000;
w_osc target, NOISE;
f LOWPASS_12, 2000, 2;
// Crackle
w_env AMPLITUDE,
0, .1,
.5, .05,
.55, 0;
w_env FREQUENCY, 8000;
w_osc target, NOISE;
w_env FREQUENCY, 15000;
w_osc target, NOISE;
// Mod
w_env AMPLITUDE, 1;
w_env FREQUENCY, 50;
w_env BALANCE,
0, .5,
.5, 1;
w_osc target, NOISE, MUL;
// Resonances
f PEAK_12, 90, 10;
f PEAK_12, 160, 15;
f PEAK_12, 800, 5;
f PEAK_12, 1700, 3;
f PEAK_12, 3500, 1;
|