From 01d8fb2b95d81c531573fd6476fb3f3159b35112 Mon Sep 17 00:00:00 2001 From: Natha Date: Mon, 27 Apr 2020 15:28:55 +0200 Subject: [PATCH] Dungeon World French - Layout refresh and roll options (#6259) * [WIP] DWFR Google fonts * [WIP] layout redo * [WIP] DW layout * [WIP] options * Layout & rolltemplate * [fix] rolltemplate * [FIX] spellcheck * layout final * [FIX] Layout * Roll options added * DW French - Rolltemplate Layout redo * DW FR: damage adjusment * DW FR: etats * [fix]DW FR: etats --- DungeonWorldFrench/dwfr.css | 479 ++++--- DungeonWorldFrench/{dwfr.htm => dwfr.html} | 1316 ++++++++++---------- DungeonWorldFrench/sheet.json | 2 +- 3 files changed, 973 insertions(+), 824 deletions(-) rename DungeonWorldFrench/{dwfr.htm => dwfr.html} (60%) diff --git a/DungeonWorldFrench/dwfr.css b/DungeonWorldFrench/dwfr.css index a6144db0ea..d9d81dafea 100644 --- a/DungeonWorldFrench/dwfr.css +++ b/DungeonWorldFrench/dwfr.css @@ -1,6 +1,9 @@ +@import url('https://fonts.googleapis.com/css?family=Balthazar|Roboto&display=swap'); .charsheet { width: 850px; background: white; + font-family: Balthazar; + font-size: 1.1em; } div{ border-radius: 0px; @@ -11,36 +14,65 @@ textarea { box-sizing: border-box; width: 100%; } - +textarea:focus, +input:focus, +select:focus, +button:focus { + outline: none; +} textarea, -input { +input, +input[type=number] { outline: none; box-shadow: none; margin-bottom: 1px; - font-family: Arial; + font-family: Roboto; border-radius: 0px; + color: #160101; + border-color: transparent; + background-color: white; +} +textarea:hover, +input:hover, +input[type=number]:hover { + border-color: #490403; +} +input[type=number] { + -moz-appearance: textfield; + appearance: textfield; + margin: 0; + text-align: center; +} +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + -webkit-appearance: none; + margin: 0; } - .sheet-header textarea, .sheet-header input { border: none; } - +textarea:placeholder-shown, +input:placeholder-shown, +input[type=number]:placeholder-shown { + background-color:#DDD5D0 +} input[type=number], input[type="text"] { width: 100%; } -input[type=number]{ - text-align: right; -} select { width: auto; margin: 0; + font-family: Roboto; + color: #160101; + border:none; } input[disabled], input[readonly] { -moz-appearance: textfield; + background-color: #DDD5D0; } input[type=number]:disabled::-webkit-inner-spin-button, input[type=number]:disabled::-webkit-outer-spin-button, @@ -56,6 +88,14 @@ input[type=number]:read-only::-webkit-outer-spin-button { background-image: none; border: none; } +/* ===== GENERAL CLASSES ===== */ +.sheet-smalltext { + font-size: 0.9em; +} +.sheet-small-margin { + margin: 0 0.3em; +} + /* ===== LAYOUT ===== */ .sheet-col-left { display: inline-block; @@ -73,10 +113,105 @@ input[type=number]:read-only::-webkit-outer-spin-button { .sheet-toggle:checked ~ .sheet-show { display: none; } +/* === ETATS === */ +label.sheet-etat { + position: relative; + width: -moz-fit-content; + cursor: pointer; + text-align: center; + font-size: 0.9em; + text-transform: none; + font-family: Roboto; + width: 100%; +} +label.sheet-etat input[type="checkbox"] { + position: absolute; + z-index: 1; + opacity: 0; +} +label.sheet-etat span { + color: #CCC; + font-weight: normal; +} +label.sheet-etat span:hover{ + color: white; +} +label.sheet-etat span::before { + font-family: pictos; + font-size: 1.1em; + content: "*"; + margin-right: 0.3em; +} +label.sheet-etat input[type="checkbox"]:checked ~ span { + color: white; + font-weight: bold; +} +label.sheet-etat input[type="checkbox"]:checked ~ span::before { + content: "!"; + font-weight: normal; +} + + +/* === OPTIONS === */ +.sheet-options-ligne { + display: flex; + align-items: baseline; + justify-content: center; +} +.sheet-options-ligne div.sheet-header, +.sheet-options-ligne label { + margin-right: 0.3em; +} +.sheet-options-ligne label { + position: relative; + width: fit-content; + width: -moz-fit-content; + cursor: pointer; + font-family: Roboto; + font-size: 1em; + font-weight: normal; +} +.sheet-options-ligne label input[type="checkbox"], +.sheet-options-ligne label input[type="radio"] { + position: absolute; + z-index: 1; + opacity: 0; +} +.sheet-options-ligne label span { + border-style: solid; + border-color: transparent; + border-width: 0px 0px 1px 0px; + border-radius: 0 1em 1em 0; + color: #666666; + width: fit-content; + width: -moz-fit-content; + padding: 0.3em; +} +.sheet-options-ligne label span:hover{ + border-color: #690805; +} +.sheet-options-ligne label span::after { + font-family: pictos; + font-size: 1.1em; + content: "*"; + margin-left: 0.3em; +} +.sheet-options-ligne label input[type="checkbox"]:checked ~ span, +.sheet-options-ligne label input[type="radio"]:checked ~ span { + color: #490403; + border-color: #490403; +} +.sheet-options-ligne label input[type="checkbox"]:checked ~ span::after, +.sheet-options-ligne label input[type="radio"]:checked ~ span::after { + content: "3"; +} + /* ===== SECTION HEADERS ===== */ .sheet-header { - display: inline-block; - background: linear-gradient(to right bottom, #3D2923 40%, #700200, #DE6928); + display: inline-flex; + align-items: center; + justify-content: space-between; + background: linear-gradient(to right bottom, #160101 40%, #700200, #DE6928); color: #fff; padding: 2px 0px; vertical-align: middle; @@ -85,7 +220,6 @@ input[type=number]:read-only::-webkit-outer-spin-button { line-height: 32px; font-size: 1.1em; margin: 3px 0px; - box-align: center; border-radius: 0px; padding: 2px 2px 2px 8px; } @@ -114,34 +248,39 @@ input[type=number]:read-only::-webkit-outer-spin-button { width: 2em; } button[type="roll"] { - height: 28px; - width: 28px; - margin: 2px; - padding: 4px; - padding-top: 5px; - - font-size: 20px; - text-align: center; - + height: 20px !important; + margin: 0 !important; + padding: 0 !important; background: white; border: none; - border-radius: 0px; + font-size: 1.1em !important; + color: #490403; +} +button[type="roll"]:before { + content: 'l' !important; + font-family: 'dicefontd6' !important; + font-size: 1.5em; + color: #490403; + font-weight: bold; } button[type="roll"]:hover{ color: #DE6928; /* #700200; #CD071E; */ font-weight: bold; } +button[type="roll"]:hover:before { + content: 'L' !important; + font-weight: normal; +} .sheet-header > * { text-align: right; height: 100%; } .sheet-header .sheet-section-name { - display: inline-block; + display: inline-flex; margin-right: 2px; - font-weight: bold; - text-align: left; + font-size: 1.1em; } -/* ===== MAIN HEADER ===== */ + /* ===== MAIN HEADER ===== */ .sheet-topbar { display: block; padding: 4px; @@ -161,28 +300,31 @@ button[type="roll"]:hover{ height: 45px; padding: 3px; margin: 0; - font-size: 22px; - font-weight: bold; + font-size: 1.8em; line-height: 36px; } +.sheet-topbar select option { + font-size: 1.2em; +} .sheet-topbar .sheet-field-name { width: 370px; text-align: center; background-color: white; - color: #3D2923; + color: #160101; +} +.sheet-topbar input.sheet-field-class, +.sheet-topbar select.sheet-field-class { + background: linear-gradient(to bottom right, #160101 40%, #700200, #DE6928); + color: white; + font-family: Balthazar; } .sheet-topbar input.sheet-field-class { width: 200px; text-align: center; - /* background-color: #3D2923; */ - background: linear-gradient(to bottom right, #3D2923 40%, #700200, #DE6928); - color: white; } .sheet-topbar select.sheet-field-class { width: 26px; text-align: left; - background: linear-gradient(to bottom right, #3D2923 40%, #700200, #DE6928); - color: white; } .sheet-topbar select.sheet-field-class option { color: black; @@ -193,10 +335,6 @@ button[type="roll"]:hover{ width: 100%; text-align: center; } -.sheet-statistics .sheet-header { - /* width: 18%; - margin-right: 0.6%; */ -} .sheet-statistics .sheet-header:last-child { margin-right: 0; } @@ -205,6 +343,7 @@ button[type="roll"]:hover{ display: block; width:100%; margin-bottom: 10px; + margin-top: 10px; } .sheet-attributes .sheet-header { height: auto; @@ -216,24 +355,25 @@ button[type="roll"]:hover{ } .sheet-attributes .sheet-header > label { height: 1em; - width: 100px; + width: fit-content; + width: -moz-fit-content; margin: 0; - padding: 1px 2px; - margin: 0 12px; + padding: 0 0.3em; text-transform: uppercase; text-align: center; font-weight: normal; - font-size: 12px; + font-size: 1em; background: white; - transform: skew(-10deg); - -webkit-transform: skew(-10deg); position: absolute; + color: #490403; /* #690805; */ } .sheet-attributes .sheet-header > label.sheet-top { - top: -5px; + top: -0.3em; + left: 0.5em; } .sheet-attributes .sheet-header > label.sheet-bottom { - bottom: -2px; + bottom: -0.3em; + right: 0.5em; } .sheet-attributes .sheet-header input[type=number] { background: white; @@ -251,23 +391,19 @@ button[type="roll"]:hover{ padding: 1px; overflow: hidden; line-height: 14px; - font-size: 12px; + font-size: 1em; text-align: center; text-transform: uppercase; font-weight: bold; } -.sheet-attributes .sheet-row-2 label { - color: #DDD; - font-size: 80%; -} .sheet-attributes .sheet-row-2 input { height: 14px; margin: 0; } .sheet-attributes .sheet-row-3 button { position: absolute; - right: 2px; - bottom: 2px; + right: 0.5em; + bottom: 0.6em; z-index: 1; } /* ==== Matériel ==== */ @@ -276,14 +412,14 @@ button[type="roll"]:hover{ padding: 0; margin: 0; padding: 2px 0px 2px 0px; - border-bottom : 1px dashed #3D2923; + border-bottom : 1px dashed #160101; } .sheet-section-gear input { height: 25px; } .sheet-section-gear span { - color: gray; - font-size: 12px; + color: #690805; + font-size: 1em; } .sheet-section-gear input[name="attr_itemname"] { width: 250px; @@ -315,7 +451,7 @@ input[type="checkbox"].sheet-dispcheck{ z-index: 2; margin: 0; } -input[type="checkbox"].sheet-dispcheck + span{ +input[type="checkbox"].sheet-dispcheck + span { display: inline-block; text-align: center; padding: 0; @@ -326,16 +462,20 @@ input[type="checkbox"].sheet-dispcheck + span{ height: 20px; z-index: 1; font-family: pictos; - color: #DDB29B; /* #EFBAC1; */ + color: #DDB29B; font-size: 20px; line-height: 20px; } -input[type="checkbox"].sheet-dispcheck:hover + span{ - color: #DE6928; /* #ADDDAD; */ +input[type="checkbox"].sheet-dispcheck:checked:hover + span, +input[type="checkbox"].sheet-dispcheck:hover + span { + color: #490403; } input[type="checkbox"].sheet-dispcheck:checked + span{ + color: #DE6928; +} +input[type="checkbox"].sheet-dispcheck:checked + span + input[type="text"] { font-weight: bold; - color: #700200; /* #557F55; */ + border-bottom-color: #160101; } div.sheet-dispcheck { width: 100%; @@ -347,7 +487,7 @@ input[type="checkbox"].sheet-dispcheck:checked ~ div.sheet-dispcheck { div.sheet-dispactionjet{ display: none; } -input[type="checkbox"].sheet-selcheck:checked ~ div.sheet-dispactionjet{ +input[type="checkbox"].sheet-selcheck:checked + div.sheet-dispactionjet{ display: block; } div.sheet-dispdegmod{ @@ -357,7 +497,7 @@ input[type="checkbox"].sheet-selcheck:checked ~ div.sheet-dispdegmod{ display: inline-block; } /* ===== Sélection Check ===== */ -input[type="checkbox"].sheet-selcheck{ +input[type="checkbox"].sheet-selcheck { width: 20px; height: 20px; max-width: 20px; @@ -365,6 +505,9 @@ input[type="checkbox"].sheet-selcheck{ z-index: 2; margin: 0; } +input[type="checkbox"].sheet-selcheck.sheet-hidden { + display: none; +} input[type="checkbox"].sheet-selcheck + span{ display: inline-block; text-align: center; @@ -376,16 +519,16 @@ input[type="checkbox"].sheet-selcheck + span{ height: 20px; z-index: 1; font-family: pictos; - color: #DDB29B; /* #EFBAC1; */ + color: #DDB29B; font-size: 20px; line-height: 20px; } input[type="checkbox"].sheet-selcheck:hover + span{ - color: #DE6928; /* #ADDDAD; */ + color: #DE6928; } input[type="checkbox"].sheet-selcheck:checked + span{ font-weight: bold; - color: #700200; /* #557F55; */ + color: #490403; } /* ==== Action ==== */ div.sheet-action { @@ -393,24 +536,29 @@ div.sheet-action { padding: 0; margin: 0; padding: 2px 0px 2px 0px; - border-bottom : 1px dashed #3D2923; -} -button[type="roll"].sheet-btAction { - width: 20px; - margin: 0px 1px 0px 1px; - font-size: 20px; -} -div.sheet-actionligne{ - display: block; - width: 100%; + border-bottom : 1px dashed #160101; } span.sheet-action { min-width: 60px; white-space: nowrap; display: inline-block; text-align: right; - color: gray; - font-style: italic; + color: #690805; + font-size: 1.1em; + margin-right: 2px; +} +div.sheet-actionligne { + display: flex; + align-items: baseline; +} +div.sheet-actionligne span { + white-space: nowrap; + color: #690805; + font-size: 1.1em; + margin: 0px 2px 0px 2px; +} +div.sheet-actionligne span.sheet-action { + margin: 0px 2px 0px 0px; } select.sheet-action{ padding: 0; @@ -422,16 +570,20 @@ input[type=number].sheet-action{ width: 35px; } input[type="text"].sheet-actionname { - font-weight: bold; width: 460px; height: 25px; - font-size: 14px; + font-size: 1em; } textarea.sheet-actiondesc { resize: vertical; width: 450px; display: inline-block; } +input[type="text"].sheet-degmod { + padding: 2px; + width: 5em; + text-align: center; +} /* ===== Onglets ===== */ div.sheet-onglbase, div.sheet-onglspecial, @@ -444,8 +596,8 @@ div.sheet-onglrecrue{ width: 100%; text-align: left; vertical-align: middle; - margin: 1px 0px 1px 0px; - border: 1px solid #3D2923; + margin: -1px 0px 1px 0px; + border: 1px solid #160101; padding: 3px; z-index: 0; min-height: 250px; @@ -476,24 +628,18 @@ input[type="radio"].sheet-onglnote + span, input[type="radio"].sheet-onglrecrue + span{ color: #666666; background-color: #BBBBBB; - font-size:15px; text-align:center; display: inline-block; width: 85px; - height: 20px; - margin: 0; margin-left: -85px; margin-right: -4px; - padding:0; - margin-bottom: -2px; - padding-top: 5px; - font-size: 0.9em; + font-size: 1.1em; border-style: solid; border-width: 1px; border-left-color: #666666; border-top-color: #666666; border-right-color: #666666; - border-bottom-color: #3D2923; + border-bottom-color: #160101; border-top-left-radius: 0px; border-top-right-radius: 15px; z-index: 1; @@ -505,15 +651,12 @@ input[type="radio"].sheet-onglavance:checked + span, input[type="radio"].sheet-onglsort:checked + span, input[type="radio"].sheet-onglnote:checked + span, input[type="radio"].sheet-onglrecrue:checked + span{ - font-weight: bold; - /* color: #3D2923; - background-color: white; */ color: white; - background: linear-gradient(to top left, #3D2923 40%, #700200, #DE6928); - border-left-color: #3D2923; - border-top-color: #3D2923; - border-right-color: #3D2923; - border-bottom-color: #3D2923; + background: linear-gradient(to top left, #160101 40%, #700200, #DE6928); + border-left-color: #160101; + border-top-color: #160101; + border-right-color: #160101; + border-bottom-color: #160101; } input[type="radio"].sheet-onglbase:checked ~ div.sheet-onglbase{ display: block; @@ -583,98 +726,84 @@ input[type="radio"].sheet-voleur:checked ~ div.sheet-voleur { padding: 0; } /* ==== TEMPLATES ==== */ -.sheet-rolltemplate-jet table{ +.sheet-rolltemplate-jet { + font-size: 1em; +} +.sheet-rolltemplate-jet .sheet-tpl-main{ background: white; - border: 1px solid #3D2923; - border-radius: 6px; width: 100%; - padding: 2px; - font-family: 'Verdana'; - color: #3D2923; - font-size: 0.9em; + font-family: Roboto; + color: #160101; + box-shadow: 10px 6px 6px #666666; + margin-bottom: 5px; + margin-left: -5px; } -.sheet-rolltemplate-jet tr{ - padding-top: 2px; - padding-bottom: 2px; - padding-right: 0px; - padding-left: 0px; -} -.sheet-rolltemplate-jet th{ - padding: 3px; - font-size: 1.1em; +.sheet-rolltemplate-jet .sheet-tpl-pc { text-align: center; - font-family: 'Contrail One'; + font-family: Balthazar; + font-size: 1.25em; + padding: 0.15em; +} +.sheet-rolltemplate-jet .sheet-tpl-title{ + font-size: 1.3em; + text-align: center; + font-family: Balthazar; color: white; - /* background: #3D2923; */ - background: linear-gradient(to right, #3D2923 40%, #700200, #DE6928); + background: linear-gradient(to right, #160101 40%, #700200, #DE6928); + font-weight: normal; + padding: 0.3em; } -.sheet-rolltemplate-jet td{ - padding: 2px; - text-align: left; +.sheet-rolltemplate-jet div.sheet-tpl-line { + display: flex; + align-items: baseline; + justify-content: flex-start; + padding-top: 0.1em; + padding-right: 0.2em; + padding-bottom: 0.1em; + padding-left: 0.2em; } -.sheet-rolltemplate-jet td.sheet-tcat{ - color: #3D2923; - font-style: italic; +.sheet-rolltemplate-jet .sheet-tpl-label { + color: #690805; + font-family: Balthazar; + font-size: 1.25em; text-align: right; - border-right: 1px dashed #3D2923; + min-width: 25%; + padding-right: 0.2em; } -.sheet-rolltemplate-jet .sheet-subheader{ - font-style: italic; - text-align: right; - border-bottom: 1px dashed #3D2923; - color: #3D2923; -} -.sheet-rolltemplate-jet .sheet-desctitre{ - font-style: italic; - text-align: right; - border-bottom: 1px dashed #3D2923; - border-top: 1px solid #3D2923; - color: #3D2923; -} -.sheet-rolltemplate-jet div.sheet-jetdesc{ - font-family: 'Verdana', serif; - font-size: 0.9em; +.sheet-rolltemplate-jet div.sheet-jetdesc { + font-family: Roboto; max-height: 140px; overflow-y: auto; + padding: 0.2em; } -.sheet-rolltemplate-jet .inlinerollresult{ - font-size: 1em; +.sheet-rolltemplate-jet .inlinerollresult, +.sheet-rolltemplate-jet .inlinerollresult.fullcrit, +.sheet-rolltemplate-jet .inlinerollresult.fullfail, +.sheet-rolltemplate-jet .inlinerollresult.importantroll { + font-size: 1.2em; background-color: transparent; - border-width: 0px 0px 0px 0px; - border-top-style: none; - border-right-style: none; - border-left-style: none; - border-bottom-style: none; + border: none; } -.sheet-rolltemplate-jet .inlinerollresult.fullcrit{ - color: #3FB315; - font-size: 1em; - background-color: transparent; - border-width: 0px 0px 0px 0px; - border-top-style: none; - border-right-style: none; - border-left-style: none; - border-bottom-style: none; +.sheet-rolltemplate-jet .sheet-success, +.sheet-rolltemplate-jet .sheet-success .inlinerollresult { + color: darkgreen; } -.sheet-rolltemplate-jet .inlinerollresult.fullfail{ +.sheet-rolltemplate-jet .sheet-partial, +.sheet-rolltemplate-jet .sheet-partial .inlinerollresult { + color: #160101; +} +.sheet-rolltemplate-jet .sheet-failure, +.sheet-rolltemplate-jet .sheet-failure .inlinerollresult { color: #B31515; - font-size: 1em; - background-color: transparent; - border-width: 0px 0px 0px 0px; - border-top-style: none; - border-right-style: none; - border-left-style: none; - border-bottom-style: none; } -.sheet-rolltemplate-jet .inlinerollresult.importantroll{ - color: #4A57ED; - font-size: 1em; - background-color: transparent; - border-width: 0px 0px 0px 0px; - border-top-style: none; - border-right-style: none; - border-left-style: none; - border-bottom-style: none; +.sheet-rolltemplate-jet .sheet-damage .inlinerollresult.fullcrit { + color: darkgreen; +} +.sheet-rolltemplate-jet .sheet-damage .inlinerollresult.fullfail { + color: #B31515; +} +.sheet-rolltemplate-jet .sheet-damage .inlinerollresult.importantroll { + color: darkblue; } /* ===== REPEATING SECTIONS CTRL ===== */ @@ -695,9 +824,9 @@ input[type="radio"].sheet-voleur:checked ~ div.sheet-voleur { .repcontrol .repcontrol_add:before, .repcontrol .repcontrol_edit:after { font-family: pictos; - color: #700200; + color: #490403; display: inline-block; - border: 1px solid #700200; + border: 1px solid #490403; border-radius: 50%; font-size: 14px; padding: 2px; @@ -736,4 +865,4 @@ input[type="radio"].sheet-voleur:checked ~ div.sheet-voleur { padding: 0px; height: 18px; width: 18px; -} +} \ No newline at end of file diff --git a/DungeonWorldFrench/dwfr.htm b/DungeonWorldFrench/dwfr.html similarity index 60% rename from DungeonWorldFrench/dwfr.htm rename to DungeonWorldFrench/dwfr.html index 2f14a83c68..ccba6931ee 100644 --- a/DungeonWorldFrench/dwfr.htm +++ b/DungeonWorldFrench/dwfr.html @@ -1,7 +1,7 @@
Dungeon World VF, feuille version 3.5 (29/01/2019) -
+
- +
@@ -26,7 +26,7 @@
Dégâts
- + @@ -43,15 +43,16 @@
PX
/ - +
PV
/ - - (Base - ) + + (Base + + )
@@ -59,162 +60,180 @@
- -
- +
+
+ +
+
+ +
+
+ + +
- -
- -
- -
- - -
-
- -
- +
+
+ +
+
+ +
+
+ + +
- -
- -
- -
- - -
-
- -
- +
+
+ +
+
+ +
+
+ + +
- -
- -
- -
- - -
-
- -
- +
+
+ +
+
+ +
+
+ + +
- -
- -
- -
- - -
-
- -
- +
+
+ +
+
+ +
+
+ + +
- -
- -
- -
- - -
-
- -
- +
+
+ +
+
+ +
+
+ + +
- -
- -
- -
- - -
-
+ +
+
+ Option de Jet  +
+ + + + +
+ Option de Dégâts  +
+ +
+
Alignement
- +
- +
Peuple
- +
- +
@@ -223,7 +242,7 @@
- +
@@ -233,19 +252,20 @@ Charge / - - (Base - ) + + (Base + + )
- + Poids Util. / - +
@@ -256,13 +276,8 @@
-
+
Actions -
- Bonus aux jets -   - Bonus aux dégâts -
Base @@ -279,15 +294,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{taillename}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{taillemod})[Mod.Carac.] + (@{taillebonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{taillesucsup}}} {{succes=@{taillesucces}}} {{partiel=@{taillepartiel}}} {{echec=@{tailleechec}}} {{degatsaction=@{tailledegats}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +  Cette Action inflige des dégâts 3 -
+
+
+ + + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -327,15 +346,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{salvename}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6+(@{salvemod})[Mod.Carac.]+(@{salvebonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{succes=@{salvesucces}}} {{partiel=@{salvepartiel}}} {{sucsup=@{salvesucsup}}} {{echec=@{salveechec}}} {{degatsaction=@{salvedegats}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +  Cette Action inflige des dégâts 3 -
+
+
+
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -373,44 +392,44 @@
FOR + >FOR DEX + >DEX CON + >CON INT + >INT SAG + >SAG CHA + >CHA y - +
Desc : - +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -420,15 +439,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{defendrename}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{defendremod})[Mod.Carac.] +(@{defendrebonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{defendresucsup}}} {{echec=@{defendreechec}}} {{succes=@{defendresucces}}} {{partiel=@{defendrepartiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : -
Sur 7-9 : -
Sur 6- : - +
@@ -467,15 +486,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{etalername}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{etalermod})[Mod.Carac.] +(@{etalerbonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{etalersucsup}}} {{echec=@{etalerechec}}} {{succes=@{etalersucces}}} {{partiel=@{etalerpartiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -512,15 +531,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{discernername}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{discernermod})[Mod.Carac.] + (@{discernerbonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{discernersucsup}}} {{echec=@{discernerechec}}} {{succes=@{discernersucces}}} {{partiel=@{discernerpartiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -557,15 +576,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{negociername}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{negociermod})[Mod.Carac.] + (@{negocierbonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{negociersucsup}}} {{echec=@{negocierechec}}} {{succes=@{negociersucces}}} {{partiel=@{negocierpartiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -602,11 +621,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{aidername}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (?{LIENS|0})[Liens] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{aidersucsup}}} {{echec=@{aiderechec}}} {{succes=@{aidersucces}}} {{partiel=@{aiderpartiel}}}" > y - +
Desc : - +
Jet : @@ -614,19 +633,19 @@
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -637,26 +656,26 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{actionbasename}}} {{subtags=Action de Base}} {{jetshow=[[@{actionbasejet}]]}} {{jet=@{actionbaseroll}}} {{descshow=[[@{actionbasebodydisp}]]}} {{desc=@{actionbasebody}}} {{sucsup=@{actionbasesucsup}}} {{succes=@{actionbasesucces}}} {{partiel=@{actionbasepartiel}}} {{echec=@{actionbaseechec}}} {{degatsaction=@{actionbasedegats}}}" > y - +
E Desc : - +
- Cette Action inflige des dégâts + Cette Action inflige des dégâts 3 -
+ +
+
- Cette Action nécessite un jet + Cette Action nécessite un jet 3
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -700,15 +719,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{soupirname}}} {{subtags=Action Spéciale}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{soupirmod})[Mod.Carac.] + (@{soupirbonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{soupirsucsup}}} {{succes=@{soupirsucces}}} {{partiel=@{soupirpartiel}}} {{echec=@{soupirechec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -745,11 +764,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{campname}}} {{subtags=Action Spéciale}} {{descshow=[[1]]}} {{desc=@{campbody}}}" > y - +
Desc : - +
@@ -759,11 +778,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{encombrementname}}} {{subtags=Action Spéciale}} {{descshow=[[1]]}} {{desc=@{encombrementbody}}}" > y - +
Desc : - +
@@ -773,15 +792,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{gardename}}} {{subtags=Action Spéciale}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{gardemod})[Mod.Carac.] + (@{gardebonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{gardesucsup}}} {{succes=@{gardesucces}}} {{partiel=@{gardepartiel}}} {{echec=@{gardeechec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -818,16 +837,16 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{voyagename}}} {{subtags=Action Spéciale}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{voyagemod})[Mod.Carac.] + (@{voyagebonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{voyagesucsup}}} {{succes=@{voyagesucces}}} {{partiel=@{voyagepartiel}}} {{echec=@{voyageechec}}}" > y - +
Desc : -
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -864,11 +883,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{sessionname}}} {{subtags=Action Spéciale}} {{descshow=[[1]]}} {{desc=@{sessionbody}}}" > y - +
Desc : - +
@@ -878,11 +897,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{niveauname}}} {{subtags=Action Spéciale}} {{descshow=[[1]]}} {{desc=@{niveaubody}}}" > y - +
Desc : - +
@@ -892,15 +911,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{ripaillername}}} {{subtags=Action Spéciale}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{ripaillermod})[Mod.Carac.] + (@{ripaillerbonus})[Bonus] + (?{Tranches de 100 Po|0})[Tranches de 100 Po] ]]}} {{sucsup=@{ripaillersucsup}}} {{succes=@{ripaillersucces}}} {{partiel=@{ripaillerpartiel}}} {{echec=@{ripaillerechec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -937,15 +956,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{achatsname}}} {{subtags=Action Spéciale}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{achatsmod})[Mod.Carac.] + (@{achatsbonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{achatssucsup}}} {{succes=@{achatssucces}}} {{partiel=@{achatspartiel}}} {{echec=@{achatsechec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -982,11 +1001,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{recuperername}}} {{subtags=Action Spéciale}} {{descshow=[[1]]}} {{desc=@{recupererbody}}}" > y - +
Desc : - +
@@ -996,15 +1015,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{recrutername}}} {{subtags=Action Spéciale}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{recrutermod})[Mod.Carac.] + (@{recruterbonus})[Bonus] + (?{Modificateurs|0})[Modificateurs] ]]}} {{descshow=[[1]]}} {{desc=@{recruterbody}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
@@ -1025,15 +1044,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{avisrechname}}} {{subtags=Action Spéciale}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{avisrechmod})[Mod.Carac.] + (@{avisrechbonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{avisrechsucsup}}} {{echec=@{avisrechechec}}} {{succes=@{avisrechsucces}}} {{partiel=@{avisrechpartiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : -
Sur 6- : - +
@@ -1071,11 +1090,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{preparationname}}} {{subtags=Action Spéciale}} {{descshow=[[1]]}} {{desc=@{preparationbody}}}" > y - +
Desc : - +
@@ -1086,26 +1105,26 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{actionspename}}} {{subtags=Action Spéciale}} {{jetshow=[[@{actionspejet}]]}} {{jet=@{actionsperoll}}} {{descshow=[[@{actionspebodydisp}]]}} {{desc=@{actionspebody}}} {{sucsup=@{actionspesucsup}}} {{succes=@{actionspesucces}}} {{partiel=@{actionspepartiel}}} {{echec=@{actionspeechec}}} {{degatsaction=@{actionspedegats}}}" > y - +
E Desc : - +
- Cette Action inflige des dégâts + Cette Action inflige des dégâts 3 -
+ +
+
- Cette Action nécessite un jet + Cette Action nécessite un jet 3
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -1164,11 +1183,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{barbare-acier-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{barbare-acier-body}}}" > y - +
Desc : - +
@@ -1178,11 +1197,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{barbare-poil-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{barbare-poil-body}}}" > y - +
Desc : - +
@@ -1192,11 +1211,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{barbare-appetit-name}}} {{subtags=Action de Base}} {{descshow=[[0]]}} {{desc=@{barbare-appetit-body}}} {{info=Ambition n°1}} {{infoval=@{barbare-appetit-ambition1}}} {{info2=Ambition n°2}} {{info2val=@{barbare-appetit-ambition2}}} {{info3=Ambition n°3}} {{info3val=@{barbare-appetit-ambition3}}}" > y - +
Desc : - +
Ambition n°1 : @@ -1240,11 +1259,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{barbare-garder-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{barbare-garder-body}}}" > y - +
Desc : - +
@@ -1254,11 +1273,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{barbare-costaud-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{barbare-costaud-body}}}" > y - +
Desc : - +
@@ -1268,15 +1287,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{barbare-attend-name}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{barbare-attend-mod})[Mod.Carac.] + (@{barbare-attend-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{barbare-attend-sucsup}}} {{succes=@{barbare-attend-succes}}} {{partiel=@{barbare-attend-partiel}}} {{echec=@{barbare-attend-echec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -1317,15 +1336,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{barde-art-name}}} {{subtags=Action de Départ de Barde}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{barde-art-mod})[Mod.Carac.] + (@{barde-art-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{barde-art-sucsup}}} {{echec=@{barde-art-echec}}} {{succes=@{barde-art-succes}}} {{partiel=@{barde-art-partiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -1362,11 +1381,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{barde-havre-name}}} {{subtags=Action de Départ de Barde}} {{descshow=[[1]]}} {{desc=@{barde-havre-body}}}" > y - +
Desc : - +
@@ -1376,11 +1395,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{barde-savoir-name}}} {{subtags=Action de Départ de Barde}} {{descshow=[[1]]}} {{desc=@{barde-savoir-body}}} {{info=Domaine de connaissance}} {{infoval=@{barde-savoir-domaine}}}" > y - +
Desc : - +
Domaine de Connaissance : @@ -1402,11 +1421,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{barde-charmant-name}}} {{subtags=Action de Départ de Barde}} {{descshow=[[1]]}} {{desc=@{barde-charmant-body}}}" > y - +
Desc : - +
@@ -1420,15 +1439,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{cambrioleur-piege-name}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{cambrioleur-piege-mod})[Mod.Carac.] + (@{cambrioleur-piege-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{cambrioleur-piege-sucsup}}} {{succes=@{cambrioleur-piege-succes}}} {{partiel=@{cambrioleur-piege-partiel}}} {{echec=@{cambrioleur-piege-echec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : -
Sur 7-9 : - +
Sur 6- : - +
@@ -1466,15 +1485,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{cambrioleur-ficelle-name}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{cambrioleur-ficelle-mod})[Mod.Carac.] + (@{cambrioleur-ficelle-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{cambrioleur-ficelle-sucsup}}} {{succes=@{cambrioleur-ficelle-succes}}} {{partiel=@{cambrioleur-ficelle-partiel}}} {{echec=@{cambrioleur-ficelle-echec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : -
Sur 7-9 : - +
Sur 6- : - +
@@ -1512,11 +1531,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{cambrioleur-morale-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{cambrioleur-morale-body}}}" > y - +
Desc : - +
@@ -1526,15 +1545,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{cambrioleur-sournoise-name}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{cambrioleur-sournoise-mod})[Mod.Carac.] + (@{cambrioleur-sournoise-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{cambrioleur-sournoise-sucsup}}} {{succes=@{cambrioleur-sournoise-succes}}} {{partiel=@{cambrioleur-sournoise-partiel}}} {{echec=@{cambrioleur-sournoise-echec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -1571,11 +1590,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{cambrioleur-dissimulation-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{cambrioleur-dissimulation-body}}}" > y - +
Desc : - +
@@ -1585,11 +1604,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{cambrioleur-pied-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{cambrioleur-pied-body}}}" > y - +
Desc : - +
@@ -1603,11 +1622,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{chaman-murmures-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{chaman-murmures-body}}}" > y - +
Desc : - +
@@ -1617,15 +1636,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{chaman-pacte-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{chaman-pacte-body}}} {{info=Apparence}} {{infoval=@{chaman-pacte-apptotem}}} {{info2=Totems}} {{info2val=@{chaman-pacte-nbtotem}}}" > y - +
Desc : - +
App. : - +
Totems : @@ -1639,11 +1658,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{chaman-creation-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{chaman-creation-body}}}" > y - +
Desc : - +
@@ -1653,15 +1672,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{chaman-langage-name}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{chaman-langage-mod})[Mod.Carac.] + (@{chaman-langage-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{chaman-langage-sucsup}}} {{succes=@{chaman-langage-succes}}} {{partiel=@{chaman-langage-partiel}}} {{echec=@{chaman-langage-echec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -1698,15 +1717,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{chaman-capture-name}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{chaman-capture-mod})[Mod.Carac.] + (@{chaman-capture-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{chaman-capture-sucsup}}} {{succes=@{chaman-capture-succes}}} {{partiel=@{chaman-capture-partiel}}} {{echec=@{chaman-capture-echec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -1747,11 +1766,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{clerc-dieu-name}}} {{subtags=Action de Départ de Clerc}} {{descshow=[[1]]}} {{desc=@{clerc-dieu-body}}} {{info=Domaine}} {{infoval=@{clerc-dieu-domaine}}} {{info2=Précepte}} {{info2val=Votre religion @{clerc-dieu-precepte}}}" > y - +
Desc : - +
Domaine : @@ -1782,11 +1801,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{clerc-inspiration-name}}} {{subtags=Action de Départ de Clerc}} {{descshow=[[1]]}} {{desc=@{clerc-inspiration-body}}}" > y - +
Desc : - +
@@ -1796,15 +1815,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{clerc-repousser-name}}} {{subtags=Action de Départ de Clerc}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{clerc-repousser-mod})[Mod.Carac.] + (@{clerc-repousser-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{clerc-repousser-sucsup}}} {{echec=@{clerc-repousser-echec}}} {{succes=@{clerc-repousser-succes}}} {{partiel=@{clerc-repousser-partiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -1841,11 +1860,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{clerc-communier-name}}} {{subtags=Action de Départ de Clerc}} {{descshow=[[1]]}} {{desc=@{clerc-communier-body}}}" > y - +
Desc : - +
@@ -1855,15 +1874,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{clerc-sort-name}}} {{subtags=Action de Départ de Clerc}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{clerc-sort-mod})[Mod.Carac.] + (@{clerc-sort-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{clerc-sort-sucsup}}} {{echec=@{clerc-sort-echec}}} {{succes=@{clerc-sort-succes}}} {{partiel=@{clerc-sort-partiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -1904,11 +1923,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{druide-essence-name}}} {{subtags=Action de Départ de Druide}} {{descshow=[[1]]}} {{desc=@{druide-essence-body}}}" > y - +
Desc : - +
@@ -1918,15 +1937,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{druide-changeforme-name}}} {{subtags=Action de Départ de Druide}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{druide-changeforme-mod})[Mod.Carac.] + (@{druide-changeforme-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{druide-changeforme-sucsup}}} {{succes=@{druide-changeforme-succes}}} {{partiel=@{druide-changeforme-partiel}}} {{echec=@{druide-changeforme-echec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -1963,11 +1982,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{druide-nourri-name}}} {{subtags=Action de Départ de Druide}} {{descshow=[[1]]}} {{desc=@{druide-nourri-body}}}" > y - +
Desc : - +
@@ -1977,11 +1996,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{druide-langue-name}}} {{subtags=Action de Départ de Druide}} {{descshow=[[1]]}} {{desc=@{druide-langue-body}}}" > y - +
Desc : - +
@@ -1991,11 +2010,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{druide-enfant-name}}} {{subtags=Action de Départ de Druide}} {{descshow=[[1]]}} {{desc=@{druide-enfant-body}}} {{info=Région}} {{infoval=@{druide-enfant-region}}} {{info2=Aspect}} {{info2val=@{druide-enfant-aspect}}}" > y - +
Desc : - +
Région : @@ -2015,7 +2034,7 @@
Aspect : - +
@@ -2029,15 +2048,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{guerrier-forcer-name}}} {{subtags=Action de Départ de Guerrier}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{guerrier-forcer-mod})[Mod.Carac.] + (@{guerrier-forcer-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{guerrier-forcer-sucsup}}} {{echec=@{guerrier-forcer-echec}}} {{succes=@{guerrier-forcer-succes}}} {{partiel=@{guerrier-forcer-partiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2074,11 +2093,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{guerrier-cuirasse-name}}} {{subtags=Action de Départ de Guerrier}} {{descshow=[[1]]}} {{desc=@{guerrier-cuirasse-body}}}" > y - +
Desc : - +
@@ -2088,11 +2107,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{guerrier-arme-name}}} {{subtags=Action de Départ de Guerrier}} {{descshow=[[1]]}} {{desc=@{guerrier-arme-arme} / @{guerrier-arme-portee}}} {{info=Amélioration 1}} {{infoval=@{guerrier-arme-amelioration1}}} {{info2=Amélioration 2}} {{info2val=@{guerrier-arme-amelioration2}}} {{info3=Apparence}} {{info3val=@{guerrier-arme-apparence}}}" > y - +
Desc : - +
Arme : @@ -2161,15 +2180,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{immolateur-tison-name}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{immolateur-tison-mod})[Mod.Carac.] + (@{immolateur-tison-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{immolateur-tison-sucsup}}} {{succes=@{immolateur-tison-succes}}} {{partiel=@{immolateur-tison-partiel}}} {{echec=@{immolateur-tison-echec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : -
Sur 7-9 : - +
Sur 6- : - +
@@ -2207,11 +2226,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{immolateur-feu-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{immolateur-feu-body}}} {{info=Utilisations}} {{infoval=[[1d4]]}}" > y - +
Desc : - +
@@ -2221,15 +2240,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{immolateur-zuko-name}}} {{subtags=Action de Base}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{immolateur-zuko-mod})[Mod.Carac.] + (@{immolateur-zuko-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{immolateur-zuko-sucsup}}} {{succes=@{immolateur-zuko-succes}}} {{partiel=@{immolateur-zuko-partiel}}} {{echec=@{immolateur-zuko-echec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2266,11 +2285,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{immolateur-allumer-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{immolateur-allumer-body}}}" > y - +
Desc : - +
@@ -2280,11 +2299,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{immolateur-main-name}}} {{subtags=Action de Base}} {{descshow=[[1]]}} {{desc=@{immolateur-main-body}}}" > y - +
Desc : - +
@@ -2298,11 +2317,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{magicien-defense-name}}} {{subtags=Action de Départ de Magicien}} {{descshow=[[1]]}} {{desc=@{magicien-defense-body}}}" > y - +
Desc : - +
@@ -2312,11 +2331,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{magicien-rituel-name}}} {{subtags=Action de Départ de Magicien}} {{descshow=[[1]]}} {{desc=@{magicien-rituel-body}}}" > y - +
Desc : - +
@@ -2326,11 +2345,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{magicien-grimoire-name}}} {{subtags=Action de Départ de Magicien}} {{descshow=[[1]]}} {{desc=@{magicien-grimoire-body}}}" > y - +
Desc : - +
@@ -2340,11 +2359,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{magicien-preparer-name}}} {{subtags=Action de Départ de Magicien}} {{descshow=[[1]]}} {{desc=@{magicien-preparer-body}}}" > y - +
Desc : - +
@@ -2354,15 +2373,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{magicien-sort-name}}} {{subtags=Action de Départ de Magicien}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{magicien-sort-mod})[Mod.Carac.] + (@{magicien-sort-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{magicien-sort-sucsup}}} {{echec=@{magicien-sort-echec}}} {{succes=@{magicien-sort-succes}}} {{partiel=@{magicien-sort-partiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2403,15 +2422,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{paladin-imposition-name}}} {{subtags=Action de Départ de Paladin}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{paladin-imposition-mod})[Mod.Carac.] + (@{paladin-imposition-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{paladin-imposition-sucsup}}} {{echec=@{paladin-imposition-echec}}} {{succes=@{paladin-imposition-succes}}} {{partiel=@{paladin-imposition-partiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2448,11 +2467,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{paladin-cuirasse-name}}} {{subtags=Action de Départ de Paladin}} {{descshow=[[1]]}} {{desc=@{paladin-cuirasse-body}}}" > y - +
Desc : - +
@@ -2462,15 +2481,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{paladin-loi-name}}} {{subtags=Action de Départ de Paladin}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{paladin-loi-mod})[Mod.Carac.] + (@{paladin-loi-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{paladin-loi-sucsup}}} {{succes=@{paladin-loi-succes}}} {{partiel=@{paladin-loi-partiel}}} {{echec=@{paladin-loi-echec}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2507,23 +2526,23 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{paladin-quete-name}}} {{subtags=Action de Départ de Paladin}} {{info=Nature}} {{infoval=@{paladin-quete-nature}}} {{info2=Bénédiction(s)}} {{info2val=@{paladin-quete-benediction}}} {{info3=Voeux}} {{info3val=@{paladin-quete-voeux}}}" > y - +
Desc : - +
Nature : - +
Bénédiction(s) : - +
Voeux : - +
@@ -2537,11 +2556,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{ranger-familier-name}}} {{subtags=Action de Départ de Ranger}} {{descshow=[[1]]}} {{desc=Race : @{ranger-familier-race} / Base : @{ranger-familier-base}}} {{info=Qualités}} {{infoval=@{ranger-familier-qualites}}} {{info2=Dressages}} {{info2val=@{ranger-familier-dressages}}} {{info3=Faiblesses}} {{info3val=@{ranger-familier-faiblesses}}}" > y - +
Desc : - +
Race : @@ -2570,15 +2589,15 @@
Qualités : - +
Dressages : - +
Faiblesses : - +
@@ -2588,11 +2607,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{ranger-ordonner-name}}} {{subtags=Action de Départ de Ranger}} {{descshow=[[1]]}} {{desc=@{ranger-ordonner-body}}}" > y - +
Desc : - +
@@ -2602,15 +2621,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{ranger-chasser-name}}} {{subtags=Action de Départ de Ranger}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{ranger-chasser-mod})[Mod.Carac.] + (@{ranger-chasser-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{ranger-chasser-sucsup}}} {{echec=@{ranger-chasser-echec}}} {{succes=@{ranger-chasser-succes}}} {{partiel=@{ranger-chasser-partiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2647,15 +2666,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{ranger-tir-name}}} {{subtags=Action de Départ de Ranger}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{ranger-tir-mod})[Mod.Carac.] + (@{ranger-tir-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{ranger-tir-sucsup}}} {{echec=@{ranger-tir-echec}}} {{succes=@{ranger-tir-succes}}} {{partiel=@{ranger-tir-partiel}}} {{degatsaction=@{ranger-tir-degats}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +  Cette Action inflige des dégâts 3 @@ -2673,19 +2692,19 @@
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2699,15 +2718,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{voleur-piege-name}}} {{subtags=Action de Départ de Voleur}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{voleur-piege-mod})[Mod.Carac.] + (@{voleur-piege-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{voleur-piege-sucsup}}} {{echec=@{voleur-piege-echec}}} {{succes=@{voleur-piege-succes}}} {{partiel=@{voleur-piege-partiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2744,15 +2763,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{voleur-metier-name}}} {{subtags=Action de Départ de Voleur}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{voleur-metier-mod})[Mod.Carac.] + (@{voleur-metier-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{voleur-metier-sucsup}}} {{echec=@{voleur-metier-echec}}} {{succes=@{voleur-metier-succes}}} {{partiel=@{voleur-metier-partiel}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2789,15 +2808,15 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{voleur-sournoise-name}}} {{subtags=Action de Départ de Voleur}} {{jetshow=[[1]]}} {{jet=[[2d6 + (@{voleur-sournoise-mod})[Mod.Carac.] + (@{voleur-sournoise-bonus})[Bonus] + (@{jetpjbonus})[Bonus circonstanciel] ]]}} {{sucsup=@{voleur-sournoise-sucsup}}} {{echec=@{voleur-sournoise-echec}}} {{succes=@{voleur-sournoise-succes}}} {{partiel=@{voleur-sournoise-partiel}}} {{degatsaction=@{voleur-sournoise-degats}}}" > y - +
Desc : - +
Jet : - 2d6 + + 2d6 + - + + +  Cette Action inflige des dégâts 3 @@ -2815,19 +2834,19 @@
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2837,11 +2856,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{voleur-empoisonneur-name}}} {{subtags=Action de Départ de Voleur}} {{descshow=[[1]]}} {{desc=@{voleur-empoisonneur-body}}}" > y - +
Desc : - +
@@ -2851,11 +2870,11 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{voleur-morale-name}}} {{subtags=Action de Départ de Voleur}} {{descshow=[[1]]}} {{desc=@{voleur-morale-body}}}" > y - +
Desc : - +
@@ -2868,26 +2887,26 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{actiondepname}}} {{subtags=Action de Départ}} {{jetshow=[[@{actiondepjet}]]}} {{jet=@{actiondeproll}}} {{descshow=[[@{actiondepbodydisp}]]}} {{desc=@{actiondepbody}}}{{sucsup=@{actiondepsucsup}}} {{succes=@{actiondepsucces}}} {{partiel=@{actiondeppartiel}}} {{echec=@{actiondepechec}}} {{degatsaction=@{actiondepdegats}}}" > y - +
E Desc : - +
- Cette Action inflige des dégâts + Cette Action inflige des dégâts 3 -
+ +
+
- Cette Action nécessite un jet + Cette Action nécessite un jet 3
Jet : - 2d6 + + 2d6 + - + + +
Sur 12+ : - +
Sur 10+ : - +
Sur 7-9 : - +
Sur 6- : - +
@@ -2931,54 +2950,59 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{movename}}} {{subtags=Action Avancée}} {{jetshow=[[@{movejet}]]}} {{jet=@{moveroll}}} {{descshow=[[@{movebodydisp}]]}} {{desc=@{movebody}}} {{sucsup=@{movesucsup}}} {{succes=@{movesucces}}} {{partiel=@{movepartiel}}} {{echec=@{moveechec}}} {{degatsaction=@{movedegats}}}" > y - +
E Desc : - +
- Cette Action inflige des dégâts + Cette Action inflige des dégâts 3 -
+ +
+ + + + +
- Cette Action nécessite un jet + Cette Action nécessite un jet 3 -
-
- Jet : - - 2d6 + - - + - -
-
- Sur 12+ : - -
-
- Sur 10+ : - -
-
- Sur 7-9 : - -
-
- Sur 6- : - -
+
+ +
+
+ Jet : + + 2d6 + + + + + +
+
+ Sur 12+ : + +
+
+ Sur 10+ : + +
+
+ Sur 7-9 : + +
+
+ Sur 6- : +
@@ -2993,12 +3017,10 @@ / Maximum - -
- ( = Niveau - + - ) -
+ + ( = Niveau + + + )
@@ -3006,7 +3028,7 @@ value="&{template:jet} {{perso=@{character_name}}} {{name=@{spellname}}} {{subtags=Sort}} {{jetshow=[[@{spelljet}]]}} {{jetsort=@{spellroll}}} {{descshow=[[@{spellbodydisp}]]}} {{desc=@{spellbody}}}" > y - + Niveau : Préparé : @@ -3016,13 +3038,13 @@
E Desc : - +
3 Jet : - +
@@ -3042,7 +3064,7 @@
- +
@@ -3050,12 +3072,12 @@
Nom - + Salaire - +
Loyauté @@ -3079,7 +3101,7 @@
Notes - +
@@ -3097,129 +3119,127 @@ - +
{{#perso}} -
- - +
{{perso}}
{{/perso}} - +
{{name}}
{{#subtags}} - +
{{subtags}}
{{/subtags}} {{#info}} - - - - +
+ {{info}} + {{infoval}} +
{{/info}} {{#info2}} - - - - +
+ {{info2}} + {{info2val}} +
{{/info2}} {{#info3}} - - - - +
+ {{info3}} + {{info3val}} +
{{/info3}} {{#desc}} {{#rollTotal() descshow 1}} - +
{{desc}}
{{/rollTotal() descshow 1}} {{/desc}} {{#jet}} {{#rollTotal() jetshow 1}} - - - - + + {{#rollGreater() degatsaction 0}} {{#rollGreater() jet 6}} - - - - +
+ Dégâts + {{degatsaction}} +
{{/rollGreater() jet 6}} {{/rollGreater() degatsaction 0}} {{#sucsup}} {{#rollGreater() jet 11}} - +
{{sucsup}}
{{/rollGreater() jet 11}} {{#rollBetween() jet 10 11}} {{#succes}} - +
{{succes}}
{{/succes}} {{/rollBetween() jet 10 11}} {{/sucsup}} {{^sucsup}} {{#succes}} {{#rollGreater() jet 9}} - +
{{succes}}
{{/rollGreater() jet 9}} {{/succes}} {{/sucsup}} {{#partiel}} {{#rollBetween() jet 7 9}} - +
{{partiel}}
{{/rollBetween() jet 7 9}} {{/partiel}} {{#echec}} {{#rollLess() jet 7}} - +
{{echec}}
{{/rollLess() jet 7}} {{/echec}} {{/rollTotal() jetshow 1}} {{#rollTotal() jetshow 0}} {{#rollGreater() degatsaction 0}} - - - - +
+ Dégâts + {{degatsaction}} +
{{/rollGreater() degatsaction 0}} {{/rollTotal() jetshow 0}} {{/jet}} {{#degats}} - - - - +
+ Jet + {{degats}} +
{{/degats}} {{#jetsort}} {{#rollTotal() jetshow 1}} - - - - +
+ Jet + {{jetsort}} +
{{/rollTotal() jetshow 1}} {{/jetsort}} -
{{perso}}
{{name}}
{{subtags}}
{{info}}{{infoval}}
{{info2}}{{info2val}}
{{info3}}{{info3val}}
{{desc}}
Jet - {{jet}} +
+ Jet + {{#sucsup}} {{#rollGreater() jet 11}} - (succès exceptionnel) + {{jet}} (succès exceptionnel) {{/rollGreater() jet 11}} {{#rollBetween() jet 10 11}} - (succès complet) + {{jet}} (succès complet) {{/rollBetween() jet 10 11}} {{/sucsup}} {{^sucsup}} {{#rollGreater() jet 9}} - (succès complet) + {{jet}} (succès complet) {{/rollGreater() jet 9}} {{/sucsup}} {{#rollBetween() jet 7 9}} - (succès partiel) + {{jet}} (succès partiel) {{/rollBetween() jet 7 9}} {{#rollLess() jet 7}} - (échec) + {{jet}} (échec) + +1 PX ! {{/rollLess() jet 7}} -
Dégâts{{degatsaction}}
{{sucsup}}
{{succes}}
{{succes}}
{{partiel}}
{{echec}}
Dégâts{{degatsaction}}
Jet{{degats}}
Jet{{jetsort}}
+
- +