Visual Novel Planner Generator
Structure narrative paths, manage assets, and track character requirements.
Project & Story Overview
Character Definition (Main)
Asset Requirements (CGs, Backgrounds, Music)
Narrative Path Logic
Visual Novel Project Brief
Genre: | Protagonist:
I. Core Premise & Scope
Total Character Routes Planned:
II. Narrative Paths & Endings
No paths defined.
III. Assets & Production Requirements
No assets defined.
No assets defined.
'; } else { const groupedAssets = assets.reduce((acc, a) => { if (!acc[a.type]) acc[a.type] = []; acc[a.type].push(a); return acc; }, {}); let assetHtml = '- ';
Object.keys(groupedAssets).forEach(type => {
assetHtml += `
- ${type} (${groupedAssets[type].length} items): `; groupedAssets[type].forEach(a => { assetHtml += `
- ${escapeHtml(a.desc)}
`;
});
});
assetHtml += '