diff --git a/Content/Items/Weapons/Slimer.cs b/Content/Items/Weapons/Slimer.cs index 8416dee..cea57bb 100644 --- a/Content/Items/Weapons/Slimer.cs +++ b/Content/Items/Weapons/Slimer.cs @@ -3,8 +3,10 @@ using Decimation.Lib.Items; using Decimation.Lib.Util; using Decimation.Lib.Util.Builder; using Terraria; +using Terraria.Audio; using Terraria.ID; using Terraria.ModLoader; +using SoundType = Terraria.ModLoader.SoundType; namespace Decimation.Content.Items.Weapons { @@ -24,6 +26,7 @@ namespace Decimation.Content.Items.Weapons item.height = 24; item.value = Item.sellPrice(silver: 40); item.rare = Rarity.Green.GetRarityValue(); + item.UseSound = mod.GetLegacySoundSlot(SoundType.Custom, "Sounds/Custom/Slimer"); } protected override ModRecipe GetRecipe() diff --git a/Sounds/Custom/Slimer.mp3 b/Sounds/Custom/Slimer.mp3 new file mode 100644 index 0000000..4d6026a Binary files /dev/null and b/Sounds/Custom/Slimer.mp3 differ