Victorian Era Séance Script Creator

Victorian Era Séance Script

Venue: | Date:

Contacting:

A Glimpse Beyond the Veil

Generating script...

Séance Narrative Elements

Dramatic Phenomena

Séance Settings & Characters

Character Names


${data.medium}: Hush, Professor. The energies stir. Concentrate! We are nearing a breakthrough.

[Another beat of silence, then ${data.phenomena2}]

${data.believer}: Oh, merciful heavens! It moves! The presence is undeniable!

${data.medium}: Speak, spirit! We are here to listen! What message do you bring from the great beyond, ${data.spirit}? Reveal yourself!

[The room hums with unseen energy. Suddenly, ${data.phenomena3}]

Spirit (whispering, echoing): ${data.message}

${data.skeptic}: (Startled) Good gracious! What was that?!

${data.medium}: It spoke! The message is clear! We have done it! The spirit of ${data.spirit} has communicated!

[The séance rapidly concludes amidst gasps and exclamations. The lights may flicker, or a final, eerie sound may echo as the connection breaks.]

`; document.getElementById('seance-generated-script').innerHTML = scriptText; }; window.seanceResetData = function(silent = false) { if (silent || confirm("Clear all script data and reset to defaults?")) { document.getElementById('seance-in-theme').value = "an ancient curse"; document.getElementById('seance-in-spirit').value = "a restless spirit"; document.getElementById('seance-in-message').value = "The truth lies buried... beyond the ivy gates."; document.getElementById('seance-in-phenomena1').value = "A cold gust of wind sweeps through the room."; document.getElementById('seance-in-phenomena2').value = "The table begins to rock gently, then more vigorously."; document.getElementById('seance-in-phenomena3').value = "A ghostly whisper is heard distinctly by all, a vase shatters on the mantle."; document.getElementById('seance-cfg-venue').value = "The Old Manor Parlor"; document.getElementById('seance-cfg-date').valueAsDate = new Date('1892-10-31'); // Example Victorian date document.getElementById('seance-cfg-medium').value = "Madame Zelda"; document.getElementById('seance-cfg-skeptic').value = "Dr. Alistair Finch"; document.getElementById('seance-cfg-believer').value = "Lady Beatrice"; seanceGenerateScript(); if (!silent) alert("Script data reset to defaults."); } }; // --- PDF Export --- window.seanceDownloadPDF = function() { const element = document.getElementById('seance-export-area'); // Temporarily adjust styles for PDF (light background, black text) element.style.backgroundColor = '#ffffff'; element.style.color = '#000000'; element.querySelector('.seance-script-preview').style.backgroundColor = '#ffffff'; element.querySelector('.seance-script-preview').style.color = '#000000'; element.querySelector('.seance-script-preview').style.border = 'none'; // Remove dashed border for print element.querySelector('.seance-script-title').style.color = '#333333'; element.querySelector('.seance-script-title').style.textShadow = 'none'; // Specific colors for PDF to ensure readability element.querySelectorAll('.seance-cue').forEach(el => el.style.color = '#964b00'); /* Darker Brown */ element.querySelectorAll('.seance-medium').forEach(el => el.style.color = '#005f73'); /* Darker Teal */ element.querySelectorAll('.seance-spirit').forEach(el => el.style.color = '#8b0000'); /* Dark Red */ element.querySelectorAll('.seance-participant').forEach(el => el.style.color = '#228B22'); /* Forest Green */ // Show PDF header element.querySelector('.seance-pdf-header').style.display = 'block'; const opt = { margin: 0.75, filename: 'Victorian_Seance_Script.pdf', image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'in', format: 'letter', orientation: 'portrait' } }; html2pdf().set(opt).from(element).save().then(() => { // Revert styles after PDF generation element.style.backgroundColor = ''; element.style.color = ''; element.querySelector('.seance-script-preview').style.backgroundColor = ''; element.querySelector('.seance-script-preview').style.color = ''; element.querySelector('.seance-script-preview').style.border = ''; // Restore dashed border element.querySelector('.seance-script-title').style.color = ''; element.querySelector('.seance-script-title').style.textShadow = ''; element.querySelectorAll('.seance-cue').forEach(el => el.style.color = ''); element.querySelectorAll('.seance-medium').forEach(el => el.style.color = ''); element.querySelectorAll('.seance-spirit').forEach(el => el.style.color = ''); element.querySelectorAll('.seance-participant').forEach(el => el.style.color = ''); element.querySelector('.seance-pdf-header').style.display = 'none'; }); }; })();
Scroll to Top