/** * Character State Rendering Module * Displays character state information in the UI */ import { getCharacterState } from '../../core/characterState.js'; /** * Renders the character's emotional state section * @param {Object} $container - jQuery container element */ export function renderEmotionalState($container) { if (!$container || !$container.length) return; const charState = getCharacterState(); const charName = charState.characterName || 'Character'; let html = `
Emotionally neutral
`; } html += `No significant relationships yet
`; } html += `"${thoughts.internalMonologue}"
`; html += `No current thoughts
`; } html += `