@if (arc) {

@if (arc.icon) { } {{ arc.name }}

{{ arc.type === 'HUB' ? 'Arc en hub (quêtes non linéaires)' : 'Arc narratif' }}

@if ((arc.illustrationImageIds?.length ?? 0) > 0) {
} @if ((arc.mapImageIds?.length ?? 0) > 0) {

🗺️ Cartes & plans

} @if (arc.type === 'HUB') {

🗺️ Quêtes du hub (scénario)

@if (hubQuests.length === 0) {

Aucune quête pour ce hub. Créez-en une pour démarrer.

} @if (hubQuests.length > 0) {
@for (q of hubQuests; track q) { }
}
}

📜 Synopsis

@if (arc.description?.trim()) {

{{ arc.description }}

} @else {

Non renseigné

}

Thèmes principaux

@if (arc.themes?.trim()) {

{{ arc.themes }}

} @else {

Non renseigné

}

⚖️ Enjeux globaux

@if (arc.stakes?.trim()) {

{{ arc.stakes }}

} @else {

Non renseigné

}

🎁 Récompenses et progression

@if (arc.rewards?.trim()) {

{{ arc.rewards }}

} @else {

Non renseigné

}

🎬 Dénouement prévu

@if (arc.resolution?.trim()) {

{{ arc.resolution }}

} @else {

Non renseigné

}
@if (arc.gmNotes?.trim()) {

🔒 Notes et planification du MJ

{{ arc.gmNotes }}

} @if (loreId && (arc.relatedPageIds?.length ?? 0) > 0) {

🔗 Pages Lore associées

@for (relId of arc.relatedPageIds; track relId) { {{ titleOfRelated(relId) }} }
}
}