veloren/assets/voxygen/audio/soundtrack.ron

845 lines
29 KiB
Rust
Raw Normal View History

2022-11-25 18:48:56 +00:00
// Times: Day, Night, or None (both)
// Weathers: Clear, Cloudy, Rain, Storm, or None (any weather)
2022-01-24 20:14:38 +00:00
// Biomes: Grassland, Forest, Desert, Snowland, Lake, Mountain, Ocean, Jungle, Savannah, Taiga
// planned biomes: Swamp
// Number after biome indicates weighting; higher numbers are less frequent
2022-11-25 18:48:56 +00:00
// Sites: Settlement(Default, CliffTown, DesertCity, or SavannahPit), Cave, Dungeon(Old or Gnarling), or Void [none]
// Music states: Activity(Explore or Combat)
2022-01-24 20:14:38 +00:00
// Combat music is looped. Needs three files: start, loop, and end. Start contains leadup to the loop.
2022-11-25 18:48:56 +00:00
// Artist format is ("Artist", "https://website.com/"). If no website, use None.
// It's recommended to also have appropriate metadata for those who listen via the game files :)
2022-11-25 18:48:56 +00:00
#![enable(implicit_some)]
(
2022-02-07 00:48:12 +00:00
tracks:
[
// Overworld exploration tracks
2022-11-25 18:48:56 +00:00
Individual((
title: "Torii",
path: "voxygen.audio.soundtrack.overworld.torii",
length: 157.0,
timing: Night,
weather: None,
biomes: [
(Taiga, 1),
],
sites: [Void],
music_state: Activity(Explore),
artist: ("FaceImplosion", "https://www.youtube.com/c/FaceImplosion"),
)),
Individual((
title: "The Undergrowth",
path: "voxygen.audio.soundtrack.overworld.the_undergrowth",
length: 165.0,
timing: None,
weather: None,
biomes: [
(Jungle, 1),
],
sites: [Void],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Oolnokk", "https://soundcloud.com/walkerhallplaysthegeetar"),
)),
Individual((
title: "Moonlit Canopy",
path: "voxygen.audio.soundtrack.overworld.moonlit_canopy",
length: 170.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
biomes: [
(Forest, 1),
(Taiga, 1),
],
sites: [Void],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("GeekyGami", "https://geekygami.newgrounds.com/audio/"),
)),
2022-03-15 16:23:10 +00:00
Individual((
title: "Adventurous Soul",
path: "voxygen.audio.soundtrack.overworld.adventurous_soul",
length: 184.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
2022-03-15 16:23:10 +00:00
biomes: [
(Mountain, 1),
(Snowland, 1),
2022-03-15 16:23:10 +00:00
],
sites: [Void],
2022-03-15 16:23:10 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Crow", None),
2022-03-15 16:23:10 +00:00
)),
Individual((
title: "Stargazing",
path: "voxygen.audio.soundtrack.overworld.stargazing",
length: 216.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
2022-03-15 16:23:10 +00:00
biomes: [
(Taiga, 1),
(Grassland, 1),
2022-03-15 16:23:10 +00:00
],
sites: [Void],
2022-03-15 16:23:10 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("GeekyGami", "https://geekygami.newgrounds.com/audio/"),
2022-03-15 16:23:10 +00:00
)),
2022-02-12 12:38:10 +00:00
Individual((
title: "The Heavens Weep",
path: "voxygen.audio.soundtrack.overworld.the_heavens_weep",
length: 210.0,
2022-02-12 12:38:10 +00:00
timing: None,
2022-11-25 18:48:56 +00:00
weather: Rain,
biomes: [],
sites: [Void],
2022-02-12 12:38:10 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Oolnokk", "https://soundcloud.com/walkerhallplaysthegeetar"),
2022-02-12 12:38:10 +00:00
)),
2022-02-07 00:48:12 +00:00
Individual((
title: "A Hero's Sorrow",
2022-08-06 21:29:38 +00:00
path: "voxygen.audio.soundtrack.overworld.a_heros_sorrow",
length: 252.0,
timing: None,
2022-11-25 18:48:56 +00:00
weather: Rain,
biomes: [],
sites: [Void],
2022-02-07 00:48:12 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Oolnokk", "https://soundcloud.com/walkerhallplaysthegeetar"),
2022-02-08 07:51:31 +00:00
)),
2022-01-03 22:40:31 +00:00
Individual((
title: "Follow the Signs",
path: "voxygen.audio.soundtrack.overworld.follow_the_signs",
length: 154.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
biomes: [
(Forest, 2),
(Taiga, 2),
],
sites: [Void],
2022-01-03 22:40:31 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Oolnokk", "https://soundcloud.com/walkerhallplaysthegeetar"),
2022-01-03 22:40:31 +00:00
)),
Individual((
title: "Travel By Night",
path: "voxygen.audio.soundtrack.overworld.travel_by_night",
length: 66.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
biomes: [
(Forest, 1),
2022-07-14 00:55:35 +00:00
(Taiga, 1),
],
sites: [Void],
2022-01-03 22:40:31 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Oolnokk", "https://soundcloud.com/walkerhallplaysthegeetar"),
2022-01-03 22:40:31 +00:00
)),
2021-04-28 05:07:59 +00:00
Individual((
2021-12-22 11:20:34 +00:00
title: "Raising Below Like Thunder",
2022-03-04 18:36:03 +00:00
path: "voxygen.audio.soundtrack.overworld.raising_below_like_thunder",
2021-12-22 11:20:34 +00:00
length: 120.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
2021-12-22 11:20:34 +00:00
biomes: [
2022-01-24 20:14:38 +00:00
(Desert, 1),
(Savannah, 1),
2021-12-22 11:20:34 +00:00
],
sites: [Void],
2021-12-22 11:20:34 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Rarnage", "https://soundcloud.com/rarnage44"),
2021-12-22 11:20:34 +00:00
)),
Individual((
title: "Calming Hills",
path: "voxygen.audio.soundtrack.overworld.calming_hills",
length: 101.0,
2022-11-25 18:48:56 +00:00
timing: Day,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
2022-01-24 20:14:38 +00:00
(Mountain, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Ultimafounding; mixed by Robotnik", "https://jackmagson.bandcamp.com/"),
)),
Individual((
title: "True Nature",
path: "voxygen.audio.soundtrack.overworld.true_nature",
length: 169.0,
2022-11-25 18:48:56 +00:00
timing: Day,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Forest, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("DaforLynx", "https://daforlynx.neocities.org/"),
)),
Individual((
title: "Jungle Ambient",
path: "voxygen.audio.soundtrack.overworld.jungle_ambient",
length: 218.0,
timing: None,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Jungle, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("badbbad", "https://soundcloud.com/tomerbarnea"),
)),
Individual((
title: "Ethereal Bonds",
path: "voxygen.audio.soundtrack.overworld.ethereal_bonds",
length: 59.0,
2022-11-25 18:48:56 +00:00
timing: Night,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Mountain, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Leap of Faith",
path: "voxygen.audio.soundtrack.overworld.leap_of_faith",
length: 269.0,
2022-11-25 18:48:56 +00:00
timing: Night,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Ocean, 1),
(Lake, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Highland of the Hawk",
path: "voxygen.audio.soundtrack.overworld.highland_of_the_hawk",
length: 283.0,
2022-11-25 18:48:56 +00:00
timing: Day,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Desert, 1),
2022-01-24 20:14:38 +00:00
(Savannah, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("badbbad", "https://soundcloud.com/tomerbarnea"),
)),
Individual((
title: "Verdant Glades",
path: "voxygen.audio.soundtrack.overworld.verdant_glades",
length: 97.0,
2022-11-25 18:48:56 +00:00
timing: Day,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Grassland, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Calling Wild",
path: "voxygen.audio.soundtrack.overworld.calling_wild",
length: 160.0,
2022-11-25 18:48:56 +00:00
timing: Night,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Grassland, 1),
2022-01-24 20:14:38 +00:00
(Savannah, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Ultimafounding", "https://jackmagson.bandcamp.com/"),
)),
Individual((
title: "Drifting Along",
path: "voxygen.audio.soundtrack.overworld.drifting_along",
length: 164.0,
timing: None,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Lake, 1),
(Ocean, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("DaforLynx", "https://daforlynx.neocities.org/"),
)),
Individual((
title: "Winter Falls",
path: "voxygen.audio.soundtrack.overworld.winter_falls",
length: 215.0,
2022-11-25 18:48:56 +00:00
timing: Day,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Snowland, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("DaforLynx", "https://daforlynx.neocities.org/"),
)),
Individual((
title: "Short Meandering",
path: "voxygen.audio.soundtrack.overworld.short_meandering",
length: 147.0,
2022-11-25 18:48:56 +00:00
timing: Night,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Desert, 1),
(Mountain, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Ap1evideogame", "https://youtube.com/channel/UCt1M5lk2kGZStr64B3hUUKg"),
)),
Individual((
2020-11-17 00:38:48 +00:00
title: "Oceania",
path: "voxygen.audio.soundtrack.overworld.oceania",
2020-11-17 00:38:48 +00:00
length: 135.0,
timing: None,
2022-02-20 16:04:05 +00:00
weather: None,
2020-11-17 00:38:48 +00:00
biomes: [
(Lake, 1),
(Ocean, 1),
2020-11-17 00:38:48 +00:00
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Eden", "https://soundcloud.com/usernumberuser"),
)),
Individual((
title: "A Solemn Quest",
path: "voxygen.audio.soundtrack.overworld.a_solemn_quest",
length: 206.0,
2022-11-25 18:48:56 +00:00
timing: Night,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Forest, 1),
2022-07-14 00:55:35 +00:00
(Taiga, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Eden", "https://soundcloud.com/usernumberuser"),
)),
Individual((
title: "Into The Dark Forest",
path: "voxygen.audio.soundtrack.overworld.into_the_dark_forest",
length: 184.0,
2022-11-25 18:48:56 +00:00
timing: Night,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Forest, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Field Grazing",
path: "voxygen.audio.soundtrack.overworld.field_grazing",
length: 154.0,
2022-11-25 18:48:56 +00:00
timing: Day,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Grassland, 1),
(Forest, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Wandering Voices",
path: "voxygen.audio.soundtrack.overworld.wandering_voices",
length: 137.0,
2022-11-25 18:48:56 +00:00
timing: Night,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Grassland, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Snowtop Volume",
path: "voxygen.audio.soundtrack.overworld.snowtop_volume",
length: 89.0,
2022-11-25 18:48:56 +00:00
timing: Day,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Snowland, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Moonbeams",
path: "voxygen.audio.soundtrack.overworld.moonbeams",
length: 158.0,
2022-11-25 18:48:56 +00:00
timing: Night,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Snowland, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Serene Meadows",
path: "voxygen.audio.soundtrack.overworld.serene_meadows",
length: 173.0,
2022-11-25 18:48:56 +00:00
timing: Night,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Grassland, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Just The Beginning",
path: "voxygen.audio.soundtrack.overworld.just_the_beginning",
length: 188.0,
2022-11-25 18:48:56 +00:00
timing: Day,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Grassland, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("badbbad", "https://soundcloud.com/tomerbarnea"),
)),
Individual((
title: "Campfire Stories",
path: "voxygen.audio.soundtrack.overworld.campfire_stories",
length: 100.0,
2022-11-25 18:48:56 +00:00
timing: Night,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Forest, 1),
2022-07-14 00:55:35 +00:00
(Taiga, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("badbbad", "https://soundcloud.com/tomerbarnea"),
)),
Individual((
title: "Limits",
path: "voxygen.audio.soundtrack.overworld.limits",
length: 203.0,
2022-11-25 18:48:56 +00:00
timing: Day,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [
(Mountain, 1),
2022-07-14 00:55:35 +00:00
(Taiga, 1),
],
sites: [Void],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("badbbad", "https://soundcloud.com/tomerbarnea"),
)),
Individual((
title: "Between The Fairies",
path: "voxygen.audio.soundtrack.overworld.between_the_fairies",
length: 175.0,
2022-11-25 18:48:56 +00:00
timing: Day,
weather: None,
biomes: [
(Forest, 1),
2022-07-14 00:55:35 +00:00
(Taiga, 1),
],
sites: [Void],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("badbbad", "https://soundcloud.com/tomerbarnea"),
)),
// Town music
2022-11-25 18:48:56 +00:00
Individual((
title: "Into the Mines",
path: "voxygen.audio.soundtrack.town.into_the_mines",
length: 157.0,
timing: Day,
weather: None,
biomes: [],
sites: [
Settlement(CliffTown),
Settlement(SavannahPit),
],
music_state: Activity(Explore),
artist: ("elliot_stone1998", None),
)),
Individual((
title: "Life of a Background Mob",
path: "voxygen.audio.soundtrack.town.life_of_a_background_mob",
length: 234.0,
2022-11-25 18:48:56 +00:00
timing: Day,
weather: None,
biomes: [
(Forest, 1),
(Grassland, 1),
],
sites: [
Settlement(Default),
2022-10-27 17:40:51 +00:00
Settlement(CliffTown),
2022-11-25 18:48:56 +00:00
Settlement(SavannahPit),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("GeekyGami", "https://geekygami.newgrounds.com/audio/"),
)),
Individual((
title: "Warmth of the Hearth",
path: "voxygen.audio.soundtrack.town.warmth_of_the_hearth",
length: 156.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
biomes:[],
sites: [
Settlement(Default),
2022-10-27 17:40:51 +00:00
Settlement(CliffTown),
Settlement(DesertCity),
2022-11-25 18:48:56 +00:00
Settlement(SavannahPit),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Crow", None),
)),
Individual((
title: "The Quiet After the Battle",
path: "voxygen.audio.soundtrack.town.the_quiet_after_the_battle",
length: 240.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
biomes: [],
sites: [
Settlement(Default),
2022-10-27 17:40:51 +00:00
Settlement(CliffTown),
Settlement(DesertCity),
2022-11-25 18:48:56 +00:00
Settlement(SavannahPit),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Tobias Thy - (Thy SFX)", "https://soundcloud.com/thyofficial"),
)),
Individual((
title: "A Rest Under the Sunset",
path: "voxygen.audio.soundtrack.town.a_rest_under_the_sunset",
length: 83.0,
2022-11-25 18:48:56 +00:00
timing: Day,
weather: None,
biomes: [],
sites: [
Settlement(Default),
2022-10-27 17:40:51 +00:00
Settlement(CliffTown),
2022-11-25 18:48:56 +00:00
Settlement(SavannahPit),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("phoenix13032005", None),
)),
Individual((
title: "A Tale Worth Telling",
path: "voxygen.audio.soundtrack.town.a_tale_worth_telling",
length: 279.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
biomes: [],
sites: [
Settlement(Default),
2022-10-27 17:40:51 +00:00
Settlement(CliffTown),
Settlement(DesertCity),
2022-11-25 18:48:56 +00:00
Settlement(SavannahPit),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Oolnokk; mixed by cereal7", "https://soundcloud.com/walkerhallplaysthegeetar"),
)),
Individual((
title: "Bustle and Bloom",
path: "voxygen.audio.soundtrack.town.bustle_and_bloom",
length: 155.0,
2022-11-25 18:48:56 +00:00
timing: Day,
weather: None,
biomes: [],
sites: [
Settlement(Default),
2022-10-27 17:40:51 +00:00
Settlement(CliffTown),
2022-11-25 18:48:56 +00:00
Settlement(SavannahPit),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("DaforLynx", "https://daforlynx.neocities.org/"),
)),
Individual((
title: "Starlit Pathways",
path: "voxygen.audio.soundtrack.town.starlit_pathways",
length: 132.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
biomes: [],
sites: [
Settlement(Default),
2022-10-27 17:40:51 +00:00
Settlement(CliffTown),
Settlement(DesertCity),
2022-11-25 18:48:56 +00:00
Settlement(SavannahPit),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("DaforLynx", "https://daforlynx.neocities.org/"),
)),
Individual((
title: "Fiesta Del Pueblo",
path: "voxygen.audio.soundtrack.town.fiesta_del_pueblo",
length: 96.0,
2022-11-25 18:48:56 +00:00
timing: Day,
weather: None,
biomes: [],
sites: [
2022-10-27 17:40:51 +00:00
Settlement(DesertCity),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic; mixed by Robotnik", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Rest Assured",
path: "voxygen.audio.soundtrack.town.rest_assured",
length: 189.0,
2022-11-25 18:48:56 +00:00
timing: Day,
weather: None,
biomes: [],
sites: [
Settlement(Default),
2022-10-27 17:40:51 +00:00
Settlement(CliffTown),
2022-11-25 18:48:56 +00:00
Settlement(SavannahPit),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("badbbad", "https://soundcloud.com/tomerbarnea"),
)),
Individual((
title: "I'm Home",
path: "voxygen.audio.soundtrack.town.im_home",
length: 125.0,
2022-11-25 18:48:56 +00:00
timing: Night,
weather: None,
biomes: [],
sites: [
Settlement(Default),
2022-10-27 17:40:51 +00:00
Settlement(CliffTown),
2022-11-25 18:48:56 +00:00
Settlement(SavannahPit),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("badbbad", "https://soundcloud.com/tomerbarnea"),
)),
// Cave music
2022-07-14 00:55:35 +00:00
Individual((
title: "Stars Like Stalactites",
path: "voxygen.audio.soundtrack.cave.stars_like_stalactites",
length: 130.0,
timing: None,
weather: None,
2022-07-14 00:55:35 +00:00
biomes: [],
sites: [Cave],
2022-07-14 00:55:35 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("DragonDee", "https://soundcloud.com/deanna-rusnock"),
2022-07-14 00:55:35 +00:00
)),
Individual((
title: "Cavernous Hollow",
path: "voxygen.audio.soundtrack.cave.cavernous_hollow",
length: 256.0,
timing: None,
weather: None,
biomes: [],
sites: [Cave],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("GeekyGami", "https://geekygami.newgrounds.com/audio/"),
)),
Individual((
title: "Saturated Hallows",
path: "voxygen.audio.soundtrack.cave.saturated_hallows",
length: 227.0,
timing: None,
weather: None,
biomes: [],
sites: [Cave],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Flashbang", "https://soundcloud.com/unboundir0n-m4n"),
)),
Individual((
title: "Mineral Deposits",
path: "voxygen.audio.soundtrack.cave.mineral_deposits",
length: 148.0,
timing: None,
weather: None,
biomes: [],
sites: [Cave],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Down The Rabbit Hole",
path: "voxygen.audio.soundtrack.cave.down_the_rabbit_hole",
length: 244.0,
timing: None,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [],
sites: [Cave],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("badbbad", "https://soundcloud.com/tomerbarnea"),
)),
// Dungeon music
Individual((
title: "Mysty Temple",
path: "voxygen.audio.soundtrack.dungeon.mysty_temple",
length: 183.0,
timing: None,
weather: None,
biomes:[],
sites: [
Dungeon(Old),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Tiny", None),
)),
Individual((
title: "Cobbled Halls",
path: "voxygen.audio.soundtrack.dungeon.cobbled_halls",
length: 240.0,
timing: None,
weather: None,
biomes:[],
sites: [
Dungeon(Old),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Crow", None),
)),
Individual((
title: "Dank Dungeon",
path: "voxygen.audio.soundtrack.dungeon.dank_dungeon",
length: 130.0,
timing: None,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [],
sites: [
Dungeon(Old),
],
2021-04-11 21:47:45 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
2022-02-20 16:04:05 +00:00
)),
Individual((
title: "Ruination",
path: "voxygen.audio.soundtrack.dungeon.ruination",
length: 135.0,
2022-02-20 16:04:05 +00:00
timing: None,
weather: None,
2022-02-20 16:04:05 +00:00
biomes: [],
sites: [
Dungeon(Old),
],
2022-02-20 16:04:05 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
2022-02-20 16:04:05 +00:00
)),
Individual((
title: "Vast Onslaught",
path: "voxygen.audio.soundtrack.dungeon.vast_onslaught",
length: 237.0,
2022-02-20 16:04:05 +00:00
timing: None,
weather: None,
2022-02-20 16:04:05 +00:00
biomes: [],
sites: [
Dungeon(Old),
],
2022-02-20 16:04:05 +00:00
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
)),
Individual((
title: "Sacred Temple",
path: "voxygen.audio.soundtrack.dungeon.sacred_temple",
length: 75.0,
timing: None,
weather: None,
biomes: [],
sites: [
Dungeon(Old),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Aeronic", "https://soundcloud.com/aeronic"),
2022-02-20 16:04:05 +00:00
)),
Individual((
title: "The Undergrowth",
path: "voxygen.audio.soundtrack.overworld.the_undergrowth",
length: 165.0,
timing: None,
weather: None,
biomes: [],
sites: [
Dungeon(Gnarling),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("Oolnokk", "https://soundcloud.com/walkerhallplaysthegeetar"),
)),
Individual((
title: "Jungle Ambient",
path: "voxygen.audio.soundtrack.overworld.jungle_ambient",
length: 218.0,
timing: None,
weather: None,
biomes: [],
sites: [
Dungeon(Gnarling),
],
music_state: Activity(Explore),
2022-11-25 18:48:56 +00:00
artist: ("badbbad", "https://soundcloud.com/tomerbarnea"),
)),
Individual((
title: "Thrumming Waters",
path: "voxygen.audio.soundtrack.dungeon.thrumming_waters",
length: 100.0,
timing: None,
weather: None,
biomes: [],
sites: [
Dungeon(Gnarling),
],
music_state: Activity(Explore),
artist: ("Jeremiah Sweeney", "https://soundcloud.com/jsweeney743"),
)),
2021-12-22 11:20:34 +00:00
// Combat Music
Segmented(
title: "Barred Paths",
timing: None,
2022-02-20 16:04:05 +00:00
weather: None,
biomes: [],
sites: [
Dungeon(Old),
],
segments: [
("voxygen.audio.soundtrack.combat.barred_paths.barred_paths-start", 56.0, Transition(Explore, Combat(High)), Some(Combat(High))),
("voxygen.audio.soundtrack.combat.barred_paths.barred_paths-loop", 54.0, Activity(Combat(High)), None),
2021-12-22 11:20:34 +00:00
("voxygen.audio.soundtrack.combat.barred_paths.barred_paths-end", 6.0, Transition(Combat(High), Explore), None),
],
2022-11-25 18:48:56 +00:00
artist: ("DaforLynx", "https://daforlynx.neocities.org/"),
2021-12-22 11:20:34 +00:00
),
Segmented(
title: "Reversal",
timing: None,
weather: None,
2021-12-22 11:20:34 +00:00
biomes: [],
sites: [
Dungeon(Old),
],
2021-12-22 11:20:34 +00:00
segments: [
("voxygen.audio.soundtrack.combat.reversal.reversal-start", 60.0, Transition(Explore, Combat(High)), Some(Combat(High))),
("voxygen.audio.soundtrack.combat.reversal.reversal-loop", 60.0, Activity(Combat(High)), None),
2021-12-22 11:20:34 +00:00
("voxygen.audio.soundtrack.combat.reversal.reversal-end", 4.0, Transition(Combat(High), Explore), None),
],
2022-11-25 18:48:56 +00:00
artist: ("DaforLynx", "https://daforlynx.neocities.org/"),
),
]
)