diff --git a/templates/chat/rolls/attack-heroic-card.hbs b/templates/chat/rolls/attack-heroic-card.hbs
index 27f4c92..a950afc 100644
--- a/templates/chat/rolls/attack-heroic-card.hbs
+++ b/templates/chat/rolls/attack-heroic-card.hbs
@@ -1,6 +1,6 @@
-
+
Jet Héroïque !
-Augmenter les dommages de 6
-Augmenter les dommages de 12 (1 point d'Heroisme)
-Laisser les dommages inchangés
+Augmenter les dommages de 6
+Augmenter les dommages de 12 (1 point d'Heroisme)
+Laisser les dommages inchangés
diff --git a/templates/chat/rolls/default-roll-card.hbs b/templates/chat/rolls/default-roll-card.hbs
index 2cee17f..88d98e7 100644
--- a/templates/chat/rolls/default-roll-card.hbs
+++ b/templates/chat/rolls/default-roll-card.hbs
@@ -13,9 +13,11 @@
{{localize "BOL.ui.failure"}}...
{{/if}}
{{/if}}
+
{{description}}
+
{{#if reroll}}
-Relancer!
+Relancer!
{{/if}}
{{!#if hasDescription}}
diff --git a/templates/dialogs/adv-roll-part.hbs b/templates/dialogs/adv-roll-part.hbs
new file mode 100644
index 0000000..cb22557
--- /dev/null
+++ b/templates/dialogs/adv-roll-part.hbs
@@ -0,0 +1,12 @@
+
diff --git a/templates/dialogs/aptitude-roll-dialog.hbs b/templates/dialogs/aptitude-roll-dialog.hbs
index b2b8762..5b207a9 100644
--- a/templates/dialogs/aptitude-roll-dialog.hbs
+++ b/templates/dialogs/aptitude-roll-dialog.hbs
@@ -7,47 +7,13 @@
-
-
- {{localize 'BOL.ui.aptitude'}}
-
-
-
- {{localize 'BOL.aptitudes.init'}}
- {{localize 'BOL.aptitudes.melee'}}
- {{localize 'BOL.aptitudes.ranged'}}
- {{localize 'BOL.aptitudes.def'}}
-
-
-
-
-
- {{localize 'BOL.ui.advantages'}}
-
-
-
-
-
-
-
- {{localize 'BOL.ui.modifiers'}}
-
-
-
-
-
- {{#if careers.items}}
-
-
- {{localize 'BOL.ui.careers'}}
-
-
-
- {{#each careers.items as | career id|}}
- {{career.name}} ({{numberFormat career.data.rank decimals=0 sign=true}})
- {{/each}}
-
-
-
- {{/if}}
+
+ {{> "systems/bol/templates/dialogs/aptitude-roll-part.hbs"}}
+
+ {{> "systems/bol/templates/dialogs/adv-roll-part.hbs"}}
+
+ {{> "systems/bol/templates/dialogs/mod-roll-part.hbs"}}
+
+ {{> "systems/bol/templates/dialogs/career-roll-part.hbs"}}
+
\ No newline at end of file
diff --git a/templates/dialogs/aptitude-roll-part.hbs b/templates/dialogs/aptitude-roll-part.hbs
new file mode 100644
index 0000000..83e4aac
--- /dev/null
+++ b/templates/dialogs/aptitude-roll-part.hbs
@@ -0,0 +1,16 @@
+
+
+ {{localize 'BOL.ui.aptitude'}}
+
+
+
+ {{localize 'BOL.aptitudes.init'}}
+
+ {{localize 'BOL.aptitudes.melee'}}
+
+ {{localize 'BOL.aptitudes.ranged'}}
+
+ {{localize 'BOL.aptitudes.def'}}
+
+
+
\ No newline at end of file
diff --git a/templates/dialogs/attribute-roll-dialog.hbs b/templates/dialogs/attribute-roll-dialog.hbs
index 5413f11..4d6600d 100644
--- a/templates/dialogs/attribute-roll-dialog.hbs
+++ b/templates/dialogs/attribute-roll-dialog.hbs
@@ -7,49 +7,15 @@
-
-
- {{localize 'BOL.ui.attribute'}}
-
-
-
- {{localize 'BOL.attributes.vigor'}}
- {{localize 'BOL.attributes.agility'}}
- {{localize 'BOL.attributes.mind'}}
- {{localize 'BOL.attributes.appeal'}}
-
-
-
-
-
- {{localize 'BOL.ui.advantages'}}
-
-
-
-
-
-
-
- {{localize 'BOL.ui.modifiers'}}
-
-
-
-
-
- {{#if careers.items}}
-
-
- {{localize 'BOL.ui.careers'}}
-
-
-
- {{#each careers.items as | career id|}}
- {{career.name}} ({{numberFormat career.data.rank decimals=0 sign=true}})
- {{/each}}
-
-
-
- {{/if}}
+
+ {{> "systems/bol/templates/dialogs/attribute-roll-part.hbs"}}
+
+ {{> "systems/bol/templates/dialogs/adv-roll-part.hbs"}}
+
+ {{> "systems/bol/templates/dialogs/mod-roll-part.hbs"}}
+
+ {{> "systems/bol/templates/dialogs/career-roll-part.hbs"}}
+
diff --git a/templates/dialogs/attribute-roll-part.hbs b/templates/dialogs/attribute-roll-part.hbs
new file mode 100644
index 0000000..96637a7
--- /dev/null
+++ b/templates/dialogs/attribute-roll-part.hbs
@@ -0,0 +1,13 @@
+
+
+ {{localize 'BOL.ui.attribute'}}
+
+
+
+ {{localize 'BOL.attributes.vigor'}}
+ {{localize 'BOL.attributes.agility'}}
+ {{localize 'BOL.attributes.mind'}}
+ {{localize 'BOL.attributes.appeal'}}
+
+
+
diff --git a/templates/dialogs/career-roll-part.hbs b/templates/dialogs/career-roll-part.hbs
new file mode 100644
index 0000000..057d269
--- /dev/null
+++ b/templates/dialogs/career-roll-part.hbs
@@ -0,0 +1,14 @@
+ {{#if careers.items}}
+
+
+ {{localize 'BOL.ui.careers'}}
+
+
+
+ {{#each careers.items as | career id|}}
+ {{career.name}} ({{numberFormat career.data.rank decimals=0 sign=true}})
+ {{/each}}
+
+
+
+ {{/if}}
diff --git a/templates/dialogs/mod-roll-part.hbs b/templates/dialogs/mod-roll-part.hbs
new file mode 100644
index 0000000..1e70e41
--- /dev/null
+++ b/templates/dialogs/mod-roll-part.hbs
@@ -0,0 +1,19 @@
+
+
+ {{localize 'BOL.ui.modifiers'}}
+
+
+
+ {{#select mod}}
+ Trés Facile (+2)
+ Facile (+1)
+ Moyenne (0)
+ Ardue (-1)
+ Difficile (-2)
+ Très Difficile (-4)
+ Impossible (-6)
+ Héroïque (-8)
+ {{/select}}
+
+
+
diff --git a/templates/dialogs/weapon-roll-dialog.hbs b/templates/dialogs/weapon-roll-dialog.hbs
index 036168e..4f77f76 100644
--- a/templates/dialogs/weapon-roll-dialog.hbs
+++ b/templates/dialogs/weapon-roll-dialog.hbs
@@ -7,48 +7,15 @@
-
-
- {{localize 'BOL.ui.attribute'}}
-
-
-
- {{localize 'BOL.attributes.vigor'}}
- {{localize 'BOL.attributes.agility'}}
- {{localize 'BOL.attributes.mind'}}
- {{localize 'BOL.attributes.appeal'}}
-
-
-
-
-
- {{localize 'BOL.ui.aptitude'}}
-
-
-
- {{localize 'BOL.aptitudes.init'}}
- {{localize 'BOL.aptitudes.melee'}}
- {{localize 'BOL.aptitudes.ranged'}}
- {{localize 'BOL.aptitudes.def'}}
-
-
-
-
-
- {{localize 'BOL.ui.advantages'}}
-
-
-
-
-
-
-
- {{localize 'BOL.ui.modifiers'}}
-
-
-
-
-
+
+ {{> "systems/bol/templates/dialogs/attribute-roll-part.hbs"}}
+
+ {{> "systems/bol/templates/dialogs/aptitude-roll-part.hbs"}}
+
+ {{> "systems/bol/templates/dialogs/adv-roll-part.hbs"}}
+
+ {{> "systems/bol/templates/dialogs/mod-roll-part.hbs"}}
+
{{localize 'BOL.ui.targetDefence'}}
@@ -75,18 +42,7 @@
{{/if}}
- {{#if careers.items}}
-
-
- {{localize 'BOL.ui.careers'}}
-
-
-
- {{#each careers.items as | career id|}}
- {{career.name}} ({{numberFormat career.data.rank decimals=0 sign=true}})
- {{/each}}
-
-
-
- {{/if}}
+
+ {{> "systems/bol/templates/dialogs/career-roll-part.hbs"}}
+
\ No newline at end of file