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,