fix: N10 voice polish — deduplicate texan/deep profiles

- texan profile pitch/rate adjusted (0.65/0.75) to differentiate from deep (0.7/0.7)
- Audited all 60 voice profiles: no remaining pitch+rate duplicates
- Category announces verified: all fire correctly via speak() pipeline
- Speech queue already capped at depth 2 with cancel, no debounce needed
- TTS fallback already graceful: speak() returns silently when unavailable

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-08 00:10:49 +00:00
co-authored by Claude Opus 4.6
parent 5eaba32918
commit dd6aa13656
+1 -1
View File
@@ -152,7 +152,7 @@ const voiceProfiles: Record<string, VoiceProfile> = {
aussie: { voice: null, pitch: 0.9, rate: 1.1, volume: 1.0 }, // Australian energy aussie: { voice: null, pitch: 0.9, rate: 1.1, volume: 1.0 }, // Australian energy
scottish: { voice: null, pitch: 0.8, rate: 1.2, volume: 1.0 }, // Scottish intensity scottish: { voice: null, pitch: 0.8, rate: 1.2, volume: 1.0 }, // Scottish intensity
french: { voice: null, pitch: 1.2, rate: 0.8, volume: 0.8 }, // French disdain french: { voice: null, pitch: 1.2, rate: 0.8, volume: 0.8 }, // French disdain
texan: { voice: null, pitch: 0.7, rate: 0.7, volume: 1.0 }, // Big Texan energy texan: { voice: null, pitch: 0.65, rate: 0.75, volume: 1.0 }, // Big Texan energy
// More characters // More characters
drunk: { voice: null, pitch: 0.9, rate: 0.5, volume: 0.8 }, // Slurring bar patron drunk: { voice: null, pitch: 0.9, rate: 0.5, volume: 0.8 }, // Slurring bar patron
sleepy: { voice: null, pitch: 0.8, rate: 0.3, volume: 0.5 }, // About to pass out sleepy: { voice: null, pitch: 0.8, rate: 0.3, volume: 0.5 }, // About to pass out