Config/script.js |
"use strict";
this.name = "hyperradioLOFI01";
this.author = "phkb";
this.copyright = "CC-by-nc-sa-4.0";
this.description = "Lo-Fi tracks for Hyperradio";
this.version = "1.0";
this.startUpComplete = function () {
delete this.startUpComplete;
if (worldScripts.hyperradio) {
worldScripts.hyperradio.stationList.push("hyperradio_playListLOFI01");
worldScripts.hyperradio.hyperradio_playListLOFI01 = new Array(
"freepik-punto fijo lo fi.ogg",
"freepik-intimate lo fi.ogg",
"freepik-lo fi machina.ogg",
"freepik-vintage breeze.ogg",
"freepik-cachito.ogg",
"freepik-la puertorri.ogg",
"freepik-faded postcards.ogg",
"freepik-lazy afternoon.ogg",
"freepik-framed sunset.ogg",
"freepik-cozy licks.ogg",
"freepik-coffee and vinyl.ogg",
"freepik-exhausted.ogg",
"freepik-loops in the wind.ogg",
"freepik-cafe amor breeze.ogg",
"freepik-driftwood chords.ogg",
"freepik-sobremesa panorama.ogg",
"freepik-innerverse.ogg",
"freepik-lo-fi track flow state.ogg",
"freepik-cozy room.ogg",
"freepik-cloudy coffee.ogg",
"freepik-lo-fi noir.ogg",
"freepik-chill vibes only.ogg",
"freepik-inner peace.ogg",
"freepik-lo fi chip chillwave.ogg",
"freepik-veiled in blue.ogg"
);
}
if (worldScripts.Lib_Music) {
worldScripts.Lib_Music._addChannel({
name: "Lo-Fi", radio: true, sounds: [
{ snd: "freepik-punto fijo lo fi.ogg", dur: 175 },
{ snd: "freepik-intimate lo fi.ogg", dur: 144 },
{ snd: "freepik-lo fi machina.ogg", dur: 97 },
{ snd: "freepik-vintage breeze.ogg", dur: 135 },
{ snd: "freepik-cachito.ogg", dur: 174 },
{ snd: "freepik-la puertorri.ogg", dur: 139 },
{ snd: "freepik-faded postcards.ogg", dur: 217 },
{ snd: "freepik-lazy afternoon.ogg", dur: 134 },
{ snd: "freepik-framed sunset.ogg", dur: 159 },
{ snd: "freepik-cozy licks.ogg", dur: 133 },
{ snd: "freepik-coffee and vinyl.ogg", dur: 188 },
{ snd: "freepik-exhausted.ogg", dur: 68 },
{ snd: "freepik-loops in the wind.ogg", dur: 60 },
{ snd: "freepik-cafe amor breeze.ogg", dur: 176 },
{ snd: "freepik-driftwood chords.ogg", dur: 179 },
{ snd: "freepik-sobremesa panorama.ogg", dur: 72 },
{ snd: "freepik-innerverse.ogg", dur: 200 },
{ snd: "freepik-lo-fi track flow state.ogg", dur: 129 },
{ snd: "freepik-cozy room.ogg", dur: 188 },
{ snd: "freepik-cloudy coffee.ogg", dur: 139 },
{ snd: "freepik-lo-fi noir.ogg", dur: 239 },
{ snd: "freepik-chill vibes only.ogg", dur: 233 },
{ snd: "freepik-inner peace.ogg", dur: 129 },
{ snd: "freepik-lo fi chip chillwave.ogg", dur: 81 },
{ snd: "freepik-veiled in blue.ogg", dur: 172 }
]
});
}
}; |