veloren/assets/voxygen/audio/sfx.ron

124 lines
3.2 KiB
Plaintext
Raw Normal View History

(
{
Run: (
files: [
2019-12-08 10:03:40 +00:00
"voxygen.audio.sfx.footsteps.stepgrass_1",
"voxygen.audio.sfx.footsteps.stepgrass_2",
"voxygen.audio.sfx.footsteps.stepgrass_3",
"voxygen.audio.sfx.footsteps.stepgrass_4",
"voxygen.audio.sfx.footsteps.stepgrass_5",
"voxygen.audio.sfx.footsteps.stepgrass_6",
],
threshold: 0.25,
),
GliderOpen: (
files: [
"voxygen.audio.sfx.glider_open",
],
threshold: 0.5,
),
GliderClose: (
files: [
"voxygen.audio.sfx.glider_close",
],
threshold: 0.5,
),
Wield(Sword): (
2020-02-21 02:56:54 +00:00
files: [
"voxygen.audio.sfx.weapon.sword_out",
],
threshold: 0.5,
2020-02-21 02:56:54 +00:00
),
Unwield(Sword): (
2020-02-21 02:56:54 +00:00
files: [
"voxygen.audio.sfx.weapon.sword_in",
],
threshold: 0.5,
2020-02-21 02:56:54 +00:00
),
Inventory(Collected): (
files: [
"voxygen.audio.sfx.inventory.add_item",
],
threshold: 0.3,
),
Inventory(CollectedTool(Sword)): (
files: [
"voxygen.audio.sfx.inventory.pickup_sword",
],
threshold: 0.3,
),
Inventory(CollectedTool(Staff)): (
files: [
"voxygen.audio.sfx.inventory.pickup_staff",
],
threshold: 0.3,
),
Inventory(CollectFailed): (
files: [
"voxygen.audio.sfx.inventory.add_failed",
],
threshold: 0.3,
),
Inventory(Swapped): (
files: [
"voxygen.audio.sfx.inventory.add_item",
],
threshold: 0.3,
),
Inventory(Given): (
files: [
"voxygen.audio.sfx.inventory.add_item",
],
threshold: 0.3,
),
Inventory(Dropped): (
files: [
"voxygen.audio.sfx.inventory.drop_item",
],
threshold: 0.3,
),
Inventory(Consumed("Potion")): (
files: [
"voxygen.audio.sfx.inventory.consumable.liquid",
],
threshold: 0.3,
),
Inventory(Consumed("PotionMinor")): (
files: [
"voxygen.audio.sfx.inventory.consumable.liquid",
],
threshold: 0.3,
),
Inventory(Consumed("Apple")): (
files: [
"voxygen.audio.sfx.inventory.consumable.apple",
],
threshold: 0.3,
),
Inventory(Consumed("Mushroom")): (
files: [
"voxygen.audio.sfx.inventory.consumable.food",
],
threshold: 0.3,
),
Inventory(Consumed("Cheese")): (
files: [
"voxygen.audio.sfx.inventory.consumable.food",
],
threshold: 0.3,
),
Explosion: (
files: [
2020-08-03 11:56:12 +00:00
"voxygen.audio.sfx.explosion",
],
2020-08-03 11:56:12 +00:00
threshold: 0.2,
),
ProjectileShot: (
files: [
"voxygen.audio.sfx.glider_open",
],
threshold: 0.5,
),
}
)