Adds sfx for Sceptre aura

This commit is contained in:
DaforLynx 2021-03-17 23:54:49 +00:00 committed by Joshua Barretto
parent c27593c2d0
commit fbf4defa04
3 changed files with 11 additions and 0 deletions

View File

@ -426,6 +426,12 @@
],
threshold: 0.5,
),
Attack(BasicAura, Sceptre): (
files: [
"voxygen.audio.sfx.abilities.sceptre_aura",
],
threshold: 2.5,
),
//
// Dagger

BIN
assets/voxygen/audio/sfx/abilities/sceptre_aura.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -30,6 +30,7 @@ pub enum CharacterAbilityType {
Shockwave,
BasicBeam,
RepeaterRanged,
BasicAura,
}
impl From<&CharacterState> for CharacterAbilityType {
@ -48,6 +49,7 @@ impl From<&CharacterState> for CharacterAbilityType {
CharacterState::Shockwave(_) => Self::Shockwave,
CharacterState::BasicBeam(_) => Self::BasicBeam,
CharacterState::RepeaterRanged(_) => Self::RepeaterRanged,
CharacterState::BasicAura(_) => Self::BasicAura,
_ => Self::BasicMelee,
}
}