Add goblin voice support for NPCs

- Added GOBLIN_MALE and GOBLIN_FEMALE to VoiceType enum
- Load greeting, farewell, vendor, and pissed sounds for goblin NPCs
- Prevents goblins from falling back to generic voice flag
- Uses proper goblin sound files from Goblin character folder
This commit is contained in:
Kelsi 2026-02-09 17:14:34 -08:00
parent 016cc01c68
commit c002f59699
2 changed files with 14 additions and 0 deletions

View file

@ -36,6 +36,8 @@ enum class VoiceType {
UNDEAD_FEMALE,
GNOME_MALE,
GNOME_FEMALE,
GOBLIN_MALE,
GOBLIN_FEMALE,
GENERIC, // Fallback
};