mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
f7d6f76a04
I added 36 sword models to the code.
112 lines
3.4 KiB
Plaintext
112 lines
3.4 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: "Forest Day", // Ambience Track
|
|
path: "voxygen.audio.ambient.forest_day",
|
|
length: 629.0,
|
|
timing: Some(Day),
|
|
artist: "https://www.youtube.com/watch?v=FwVTkB-BIvM",
|
|
),
|
|
(
|
|
title: "Into The Dark Forest",
|
|
path: "voxygen.audio.soundtrack.into_the_dark_forest",
|
|
length: 184.0,
|
|
timing: Some(Night),
|
|
artist: "Aeronic",
|
|
),
|
|
(
|
|
title: "Field Grazing",
|
|
path: "voxygen.audio.soundtrack.field_grazing",
|
|
length: 154.0,
|
|
timing: Some(Day),
|
|
artist: "Aeronic",
|
|
),
|
|
(
|
|
title: "Wandering Voices",
|
|
path: "voxygen.audio.soundtrack.wandering_voices",
|
|
length: 137.0,
|
|
timing: Some(Night),
|
|
artist: "Aeronic",
|
|
),
|
|
/*(
|
|
title: "Snowtop Volume", //Snow Region
|
|
path: "voxygen.audio.soundtrack.snowtop_volume",
|
|
length: 89.0,
|
|
timing: Some(Day),
|
|
artist: "Aeronic",
|
|
),*/
|
|
(
|
|
title: "Mineral Deposits",
|
|
path: "voxygen.audio.soundtrack.mineral_deposits",
|
|
length: 148.0,
|
|
timing: Some(Day),
|
|
artist: "Aeronic",
|
|
),
|
|
(
|
|
title: "Moonbeams",
|
|
path: "voxygen.audio.soundtrack.moonbeams",
|
|
length: 158.0,
|
|
timing: Some(Night),
|
|
artist: "Aeronic",
|
|
),
|
|
(
|
|
title: "Serene Meadows",
|
|
path: "voxygen.audio.soundtrack.serene_meadows",
|
|
length: 173.0,
|
|
timing: Some(Night),
|
|
artist: "Aeronic",
|
|
),
|
|
/*(
|
|
title: "Rest Assured", // Town/Shop
|
|
path: "voxygen.audio.soundtrack.rest_assured",
|
|
length: 185.0,
|
|
timing: Some(Day),
|
|
artist: "badbbad",
|
|
),*/
|
|
(
|
|
title: "Just The Beginning",
|
|
path: "voxygen.audio.soundtrack.just_the_beginning",
|
|
length: 188.0,
|
|
timing: Some(Day),
|
|
artist: "badbbad",
|
|
),
|
|
(
|
|
title: "Campfire Stories",
|
|
path: "voxygen.audio.soundtrack.campfire_stories",
|
|
length: 100.0,
|
|
timing: Some(Night),
|
|
artist: "badbbad",
|
|
),
|
|
(
|
|
title: "Limits",
|
|
path: "voxygen.audio.soundtrack.limits",
|
|
length: 203.0,
|
|
timing: Some(Night),
|
|
artist: "badbbad",
|
|
),
|
|
/*( // Dungeon
|
|
title: "Down The Rabbit Hole",
|
|
path: "voxygen.audio.soundtrack.down_the_rabbit_hole",
|
|
length: 244.0,
|
|
timing: Some(Night),
|
|
artist: "badbbad",
|
|
),*/
|
|
(
|
|
title: "Between The Fairies",
|
|
path: "voxygen.audio.soundtrack.between_the_fairies",
|
|
length: 175.0,
|
|
timing: Some(Night),
|
|
artist: "badbbad",
|
|
),
|
|
(
|
|
title: "Forest Morning", // Ambience Track
|
|
path: "voxygen.audio.ambient.forest_morning",
|
|
length: 600.0,
|
|
timing: Some(Day),
|
|
artist: "https://www.youtube.com/watch?v=eq4nfIdK6C4",
|
|
),
|
|
]
|
|
) |