@if (lastRoll) {
{{ lastRoll.total }}
@if (lastRoll.rolls.length > 1) {
({{ lastRoll.rolls.join(' + ') }})
}
→
@if (matched) {
{{ matched.label }}
}
@if (!matched) {
Aucune entrée pour ce résultat
}
}
@if (matched?.detail) {
{{ matched?.detail }}
}
@if (table.entries.length === 0) {
Aucune entrée — édite la table pour en ajouter.
}
@if (table.entries.length > 0) {
| Jet | Résultat |
@for (e of table.entries; track e) {
| {{ rangeLabel(e) }} |
{{ e.label }}
@if (e.detail) {
{{ e.detail }}
}
|
}
}
}