From b35d0ae25ebfdab7f24251b0f5d0a122d2eaa2d9 Mon Sep 17 00:00:00 2001 From: James R Date: Mon, 26 Jun 2023 23:25:29 -0700 Subject: [PATCH] Add Super Flicky sounds fbost1, fbird, fhurt1, fhurt2 were previously freeslotted by chars.pk3. They are used by the Flicky skin. --- src/sounds.c | 7 +++++++ src/sounds.h | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/src/sounds.c b/src/sounds.c index 9e2702a10..3accd6b79 100644 --- a/src/sounds.c +++ b/src/sounds.c @@ -1189,6 +1189,13 @@ sfxinfo_t S_sfx[NUMSFX] = {"iwhp", false, 255, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Instawhip attack {"gbrk", false, 255, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Guard break! + // Super Flicky Power-Up + {"supflk", false, 255, 32, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Woodpecking - SF_NOINTERRUPT + {"fbost1", false, 255, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Slowing down + {"fbird", false, 255, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Speeding up + {"fhurt1", false, 255, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Whipped + {"fhurt2", false, 255, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Hunting + // 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 a3a72c6a7..033728e37 100644 --- a/src/sounds.h +++ b/src/sounds.h @@ -1258,6 +1258,12 @@ typedef enum sfx_iwhp, sfx_gbrk, + sfx_supflk, + sfx_fbost1, + sfx_fbird, + sfx_fhurt1, + sfx_fhurt2, + // Next up: UNIQUE ENGINE SOUNDS! Hoooooo boy... // Engine class A - Low Speed, Low Weight sfx_krta00,