Translate learn sounds entries and sync libstorm-nvgt

This commit is contained in:
Storm Dragon
2026-02-27 23:52:14 -05:00
parent c5d26d5edd
commit 566c87c7c2
3 changed files with 104 additions and 44 deletions
+49
View File
@@ -0,0 +1,49 @@
// Project-local learn sounds configuration.
// Keep this file in src/ so libstorm-nvgt can stay untouched.
void configure_project_learn_sounds() {
learn_sounds_reset_configuration();
// Skip entries can be full file paths or directories ending with "/".
learn_sounds_add_skip_entry("sounds/quests/bone1.ogg");
learn_sounds_add_skip_entry("sounds/quests/bone2.ogg");
learn_sounds_add_skip_entry("sounds/quests/bone3.ogg");
learn_sounds_add_skip_entry("sounds/quests/bone4.ogg");
learn_sounds_add_skip_entry("sounds/quests/bone5.ogg");
learn_sounds_add_skip_entry("sounds/quests/bone6.ogg");
learn_sounds_add_skip_entry("sounds/quests/bone7.ogg");
learn_sounds_add_skip_entry("sounds/quests/bone8.ogg");
learn_sounds_add_skip_entry("sounds/actions/fishpole.ogg");
learn_sounds_add_skip_entry("sounds/actions/hit_ground.ogg");
learn_sounds_add_skip_entry("sounds/menu/");
learn_sounds_add_skip_entry("sounds/nature/");
learn_sounds_add_skip_entry("sounds/pets/");
learn_sounds_add_skip_entry("sounds/quests/");
learn_sounds_add_description(
"sounds/actions/bad_cast.ogg",
i18n_text("Your cast missed the water and landed in nearby foliage where it is unlikely to attract fish."));
learn_sounds_add_description(
"sounds/actions/cast_strength.ogg",
i18n_text("When casting release control when over water. When catching release when sound is over player."));
learn_sounds_add_description("sounds/enemies/enter_range.ogg",
i18n_text("An enemy is in range of your currently wielded weapon."));
learn_sounds_add_description("sounds/enemies/exit_range.ogg",
i18n_text("An enemy is no longer in range of your currently wielded weapon."));
learn_sounds_add_description("sounds/actions/falling.ogg", i18n_text("Lowers in pitch as the fall progresses."));
learn_sounds_add_description("sounds/enemies/invasion.ogg", i18n_text("The war drums pound! Prepare for combat!"));
learn_sounds_add_description("sounds/items/miscellaneous.ogg",
i18n_text("You picked up an item for which there is no specific sound."));
learn_sounds_add_description("sounds/enemies/goblin1.ogg", i18n_text("Inhabits mountainous regions."));
learn_sounds_add_description("sounds/enemies/undead_resident1.ogg",
i18n_text("Not quite a zombie nor a vampyr. These undead remember they used to have a home, and "
"maybe there's food there..."));
learn_sounds_add_description("sounds/enemies/wight1.ogg",
i18n_text("More powerful undead. They do not lose track of you when you are in the base."));
learn_sounds_add_description("sounds/enemies/vampyr1.ogg", i18n_text("Ever hungry, they feed upon your residents."));
learn_sounds_add_description("sounds/enemies/vampyr2.ogg", i18n_text("Ever hungry, they feed upon your residents."));
learn_sounds_add_description("sounds/enemies/vampyr3.ogg", i18n_text("Ever hungry, they feed upon your residents."));
learn_sounds_add_description("sounds/enemies/vampyr4.ogg", i18n_text("Ever hungry, they feed upon your residents."));
learn_sounds_add_description("sounds/enemies/yeti1.ogg", i18n_text("Inhabits snowy regions."));
learn_sounds_add_description("sounds/enemies/zombie1.ogg", i18n_text("Basic undead."));
}