veloren/assets/voxygen/audio/soundtrack.ron
2020-11-18 13:31:12 -08:00

178 lines
5.1 KiB
Plaintext

// TODO: Re-add tunes that are not fitting general outside day/night situations
// TODO: Add an ambient-soundtrack that runs independently from the musical soundtrack
(
tracks: [
(
title: "A Solemn Quest",
path: "voxygen.audio.soundtrack.a_solemn_quest",
length: 206.0,
timing: Some(Day),
biomes: (
void: 1,
lake: 1,
grassland: 1,
ocean: 1,
mountain: 1,
snowland: 1,
desert: 1,
swamp: 1,
jungle: 1,
forest: 0,
),
site: None,
artist: "Eden",
),
(
title: "Into The Dark Forest",
path: "voxygen.audio.soundtrack.into_the_dark_forest",
length: 184.0,
timing: Some(Day),
biomes: (
void: 1,
lake: 1,
grassland: 1,
ocean: 1,
mountain: 1,
snowland: 1,
desert: 1,
swamp: 1,
jungle: 1,
forest: 0,
),
site: None,
artist: "Aeronic",
),
//(
// title: "Field Grazing",
// path: "voxygen.audio.soundtrack.field_grazing",
// length: 154.0,
// timing: Some(Day),
// biome: Some(Snowland),
// site: None,
// artist: "Aeronic",
//),
//(
// title: "Wandering Voices",
// path: "voxygen.audio.soundtrack.wandering_voices",
// length: 137.0,
// timing: Some(Day),
// biome: Some(Desert),
// site: None,
// artist: "Aeronic",
//),
//(
// title: "Snowtop Volume", //Snow Region
// path: "voxygen.audio.soundtrack.snowtop_volume",
// length: 89.0,
// timing: Some(Day),
// biome: Some(Desert),
// site: None,
// artist: "Aeronic",
//),
//(
// title: "Mineral Deposits",
// path: "voxygen.audio.soundtrack.mineral_deposits",
// length: 148.0,
// timing: Some(Day),
// biome: Some(Desert),
// site: None,
// artist: "Aeronic",
//),
//(
// title: "Moonbeams",
// path: "voxygen.audio.soundtrack.moonbeams",
// length: 158.0,
// timing: Some(Night),
// biome: Some(Desert),
// site: None,
// artist: "Aeronic",
//),
//(
// title: "Serene Meadows",
// path: "voxygen.audio.soundtrack.serene_meadows",
// length: 173.0,
// timing: Some(Night),
// biome: Some(Desert),
// site: None,
// artist: "Aeronic",
//),
///*(
// title: "Rest Assured", // Town/Shop
// path: "voxygen.audio.soundtrack.rest_assured",
// length: 185.0,
// timing: Some(Day),
// biome: Some(Desert),
// site: None,
// artist: "badbbad",
//),*/
//(
// title: "Just The Beginning",
// path: "voxygen.audio.soundtrack.just_the_beginning",
// length: 188.0,
// timing: Some(Day),
// biome: Some(Desert),
// site: None,
// artist: "badbbad",
//),
//(
// title: "Campfire Stories",
// path: "voxygen.audio.soundtrack.campfire_stories",
// length: 100.0,
// timing: Some(Night),
// biome: Some(Desert),
// site: None,
// artist: "badbbad",
//),
//(
// title: "Limits",
// path: "voxygen.audio.soundtrack.limits",
// length: 203.0,
// timing: Some(Night),
// biome: Some(Desert),
// site: None,
// artist: "badbbad",
//),
( // Dungeon
title: "Down The Rabbit Hole",
path: "voxygen.audio.soundtrack.down_the_rabbit_hole",
length: 244.0,
timing: None,
biomes: (
void: 1,
lake: 1,
grassland: 1,
ocean: 1,
mountain: 1,
snowland: 1,
desert: 1,
swamp: 1,
jungle: 1,
forest: 1,
),
site: Some(Cave),
artist: "badbbad",
),
(
title: "Between The Fairies",
path: "voxygen.audio.soundtrack.between_the_fairies",
length: 175.0,
timing: None,
biomes: (
void: 1,
lake: 1,
grassland: 1,
ocean: 1,
mountain: 1,
snowland: 1,
desert: 1,
swamp: 1,
jungle: 1,
forest: 1,
),
site: Some(Dungeon),
artist: "badbbad",
),
]
)