From f3a715eae181093b9ff071c5c8f0a2a12096d08c Mon Sep 17 00:00:00 2001 From: SteelT Date: Sat, 17 Feb 2024 12:27:57 -0500 Subject: [PATCH] Battle powerup feedback sound definitions --- src/sounds.c | 8 ++++++++ src/sounds.h | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/src/sounds.c b/src/sounds.c index 894580328..165405621 100644 --- a/src/sounds.c +++ b/src/sounds.c @@ -1275,6 +1275,14 @@ sfxinfo_t S_sfx[NUMSFX] = {"dmgb3", false, 255, 8, -1, NULL, 0, -1, -1, LUMPERROR, "Damaged"}, {"dmgb4", false, 255, 8, -1, NULL, 0, -1, -1, LUMPERROR, "Damaged"}, + // Powerup sounds + {"bpwrua", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR, "Super Power"}, + {"bpwrub", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR, "Mega Barrier"}, + {"bpwruc", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR, "Bumper Restock"}, + {"bpwrud", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR, "Rhythm Badge"}, + {"bpwrue", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR, "Super Flicky"}, + {"bpwruf", false, 64, 0, -1, NULL, 0, -1, -1, LUMPERROR, "Bonus"}, + // SRB2Kart - Engine sounds // Engine class A {"krta00", false, 48, 65, -1, NULL, 0, -1, -1, LUMPERROR, ""}, diff --git a/src/sounds.h b/src/sounds.h index 32aa96d94..e240a8f23 100644 --- a/src/sounds.h +++ b/src/sounds.h @@ -1351,6 +1351,14 @@ typedef enum sfx_dmgb3, sfx_dmgb4, + // Powerup sounds + sfx_bpwrua, // Super Power + sfx_bpwrub, // Mega Barrier + sfx_bpwruc, // Bumper Restock + sfx_bpwrud, // Rhythm Badge + sfx_bpwrue, // Super Flicky + sfx_bpwruf, // Bonus + // Next up: UNIQUE ENGINE SOUNDS! Hoooooo boy... // Engine class A - Low Speed, Low Weight sfx_krta00,