@if ((arc.illustrationImageIds?.length ?? 0) > 0) {
}
@if (arc.type === 'HUB') {
🗺️ {{ 'arcView.hubQuestsTitle' | translate }}
@if (hubQuests.length === 0) {
{{ 'arcView.hubQuestsEmpty' | translate }}
}
@if (hubQuests.length > 0) {
@for (q of hubQuests; track q.id) {
}
}
}
📜 {{ 'arcView.synopsisTitle' | translate }}
@if (arc.description?.trim()) {
{{ arc.description }}
} @else {
{{ 'arcView.notProvided' | translate }}
}
✨ {{ 'arcView.themesTitle' | translate }}
@if (arc.themes?.trim()) {
{{ arc.themes }}
} @else {
{{ 'arcView.notProvided' | translate }}
}
⚖️ {{ 'arcView.stakesTitle' | translate }}
@if (arc.stakes?.trim()) {
{{ arc.stakes }}
} @else {
{{ 'arcView.notProvided' | translate }}
}
🎁 {{ 'arcView.rewardsTitle' | translate }}
@if (arc.rewards?.trim()) {
{{ arc.rewards }}
} @else {
{{ 'arcView.notProvided' | translate }}
}
🎬 {{ 'arcView.resolutionTitle' | translate }}
@if (arc.resolution?.trim()) {
{{ arc.resolution }}
} @else {
{{ 'arcView.notProvided' | translate }}
}
@if (arc.gmNotes?.trim()) {
🔒
{{ 'arcView.gmNotesTitle' | translate }}
{{ arc.gmNotes }}
}
@if (loreId && (arc.relatedPageIds?.length ?? 0) > 0) {
🔗 {{ 'arcView.relatedPagesTitle' | translate }}
}
}