<div class="dialogue"> <p id="text">“Lisa, you’ve come back at the perfect time,” he whispered.</p> <div class="choices"> <button onclick="choose('flirt')">Flirt back</button> <button onclick="choose('ignore')">Ignore him</button> </div> </div> function choose(option) if (option === 'flirt') document.getElementById('text').innerText = "Your smile deepens, and the room seems to pulse with anticipation."; // unlocks a new scene unlockScene('intimate'); else document.getElementById('text').innerText = "You turn away, focusing on the canvas instead."; // leads to a different narrative branch unlockScene('art_focus');