Add Story Scene/Chapter
Scene Manager
Untitled Narrative
World: Fantasy World | Type: Novel Outline
Add your first scene to begin mapping the story flow.
Project Metadata
World: | Type:
I. Story Flow & Synopsis
| Phase | Scene Title | Core Conflict / Summary | POV / Focus | Action |
|---|
II. Phase Legend
- SETUP: Introduces character, setting, and the Inciting Incident.
- RISING ACTION: Series of escalating challenges, trials, and failures.
- CLIMAX: Highest point of tension; the central conflict is resolved or altered.
- RESOLUTION: The falling action, wrap-up, and return to the new normal.
No scenes added.
'; return; } scenes.forEach((scene, index) => { const div = document.createElement('div'); div.className = `manager-item mgr-${scene.phase}`; div.innerHTML = `
${index + 1}. ${scene.title}
(${scene.phase})
`;
container.appendChild(div);
});
}
// --- PDF Export ---
function generatePDF() {
if (scenes.length === 0) {
alert("Please add scenes to the map before generating the PDF.");
return;
}
const template = document.getElementById('pdf-template');
const pdfTbody = document.getElementById('pdf-tbody');
// 1. Transfer Metadata
document.getElementById('pdf-title-copy').innerText = document.getElementById('disp-title').innerText;
document.getElementById('pdf-world').innerText = document.getElementById('cfg-world').value;
document.getElementById('pdf-type').innerText = document.getElementById('cfg-type').value;
// 2. Fill Table Content
pdfTbody.innerHTML = '';
scenes.forEach((entry, index) => {
pdfTbody.innerHTML += `
