Walking SFX on different materials

This commit is contained in:
2026-06-17 22:46:43 -07:00
parent 30758cd28d
commit 8939460eda
72 changed files with 1201 additions and 176 deletions
@@ -0,0 +1,54 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zennysoft.Game.Abstractions.Audio
{
public enum SoundEffect
{
HealHP,
TakeDamage,
HealVT,
IncreaseStat,
DecreaseStat,
Crit,
PickupItem,
PickupFailure,
OpenInventory,
MoveUI,
Equip,
Unequip,
SortInventory,
SelectUI,
CancelUI,
LevelUp,
Transfer,
RecallEnemies,
KillHalfEnemies,
TeleportToRandomRoom,
TeleportToExit,
AbsorbHPFromAllEnemies,
SwapHPAndVT,
TurnAllEnemiesIntoHealingItems,
WeaponQuickSlash,
WeaponSlowSlash,
WeaponPlasmaSword,
Eucharistia,
Buff,
Debuff,
Death,
Glue,
Identify,
IdentifyAll,
Rust,
FireDamage,
WaterDamage,
AirDamage,
EarthDamage,
HolyDamage,
CurseDamage,
AbsorbHP,
}
}