From dc49898bb6b35bc7d754ab5a93dbed1dd059b275 Mon Sep 17 00:00:00 2001 From: Kreuvf Date: Mon, 28 Apr 2025 20:31:25 +0200 Subject: [PATCH] * Subdivide roll templates files further down --- Das_Schwarze_Auge_4-1/Makefile | 20 + .../crp/hand_to_hand_combat.html | 211 +++ .../dev/html/roll_templates/crp/intro.html | 3 + .../html/roll_templates/crp/liturgies.html | 36 + .../dev/html/roll_templates/crp/outro.html | 3 + .../dev/html/roll_templates/crp/spells.html | 87 + .../dev/html/roll_templates/crp/talents.html | 335 +--- .../dev/html/roll_templates/intro.html | 6 +- .../roll_templates/legacy/combat_shared.html | 478 ++++++ .../legacy/hand_to_hand_combat.html | 450 +++++ .../dev/html/roll_templates/legacy/intro.html | 3 + .../html/roll_templates/legacy/liturgies.html | 35 + .../dev/html/roll_templates/legacy/outro.html | 3 + .../roll_templates/legacy/ranged_combat.html | 365 +++++ .../html/roll_templates/legacy/spells.html | 35 + .../dev/html/roll_templates/legacy/stats.html | 82 + .../html/roll_templates/legacy/talents.html | 1449 +---------------- .../dev/html/roll_templates/outro.html | 6 +- .../regeneration/astralmeditation.html | 149 ++ .../regeneration/deepbreath.html | 52 + .../roll_templates/regeneration/intro.html | 3 + .../regeneration/karmicmeditation.html | 48 + .../roll_templates/regeneration/outro.html | 3 + .../roll_templates/regeneration/relax.html | 49 + .../roll_templates/regeneration/rest.html | 75 + .../roll_templates/regeneration/sleep.html | 372 +---- .../dev/html/roll_templates/tests.html | 4 +- 27 files changed, 2204 insertions(+), 2158 deletions(-) create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/hand_to_hand_combat.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/intro.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/liturgies.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/outro.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/spells.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/combat_shared.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/hand_to_hand_combat.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/intro.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/liturgies.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/outro.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/ranged_combat.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/spells.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/stats.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/astralmeditation.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/deepbreath.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/intro.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/karmicmeditation.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/outro.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/relax.html create mode 100644 Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/rest.html diff --git a/Das_Schwarze_Auge_4-1/Makefile b/Das_Schwarze_Auge_4-1/Makefile index 881316c956..5d0775d1a2 100644 --- a/Das_Schwarze_Auge_4-1/Makefile +++ b/Das_Schwarze_Auge_4-1/Makefile @@ -60,9 +60,29 @@ HTML = \ dev/html/sheet/footer.html \ dev/html/sheet/outro.html \ dev/html/roll_templates/intro.html \ + dev/html/roll_templates/crp/intro.html \ dev/html/roll_templates/crp/talents.html \ + dev/html/roll_templates/crp/spells.html \ + dev/html/roll_templates/crp/liturgies.html \ + dev/html/roll_templates/crp/hand_to_hand_combat.html \ + dev/html/roll_templates/crp/outro.html \ + dev/html/roll_templates/regeneration/intro.html \ + dev/html/roll_templates/regeneration/deepbreath.html \ + dev/html/roll_templates/regeneration/relax.html \ + dev/html/roll_templates/regeneration/rest.html \ dev/html/roll_templates/regeneration/sleep.html \ + dev/html/roll_templates/regeneration/astralmeditation.html \ + dev/html/roll_templates/regeneration/karmicmeditation.html \ + dev/html/roll_templates/regeneration/outro.html \ + dev/html/roll_templates/legacy/intro.html \ dev/html/roll_templates/legacy/talents.html \ + dev/html/roll_templates/legacy/spells.html \ + dev/html/roll_templates/legacy/liturgies.html \ + dev/html/roll_templates/legacy/stats.html \ + dev/html/roll_templates/legacy/hand_to_hand_combat.html \ + dev/html/roll_templates/legacy/ranged_combat.html \ + dev/html/roll_templates/legacy/combat_shared.html \ + dev/html/roll_templates/legacy/outro.html \ dev/html/roll_templates/tests.html \ dev/html/roll_templates/outro.html \ $(JS) diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/hand_to_hand_combat.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/hand_to_hand_combat.html new file mode 100644 index 0000000000..4d44e49148 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/hand_to_hand_combat.html @@ -0,0 +1,211 @@ + + +
+
+{{#rollTotal() computed::result -3}} + +{{/rollTotal() computed::result -3}} +{{#rollTotal() computed::result -2}} +
+{{/rollTotal() computed::result -2}} +{{#rollTotal() computed::result -1}} +
+{{/rollTotal() computed::result -1}} +{{#rollTotal() computed::result 1}} +
+{{/rollTotal() computed::result 1}} +{{#rollTotal() computed::result 2}} +
+{{/rollTotal() computed::result 2}} +{{#rollTotal() computed::result 3}} +
+{{/rollTotal() computed::result 3}} + + + {{/rollTotal() computed::result -3}} + {{/rollTotal() computed::confirmationRollRequired 0}} + {{#rollTotal() computed::confirmationRollRequired 1}} + ({{computed::rollTag}}) + {{/rollTotal() computed::confirmationRollRequired 1}} + {{/rollTotal() showRollTag 1}} + {{/rollTotal() computed::isConfirmationRoll 0}} + + + + + + + + + + + +{{#rollTotal() computed::confirmationRollRequired 0}} + {{#rollTotal() computed::result -3}} + + + + + + + {{/rollTotal() computed::result -3}} + {{#rollTotal() computed::result -2}} + + + + {{/rollTotal() computed::result -2}} + {{#rollTotal() computed::result -1}} + + + + {{/rollTotal() computed::result -1}} + {{#rollTotal() computed::result 1}} + + + + {{/rollTotal() computed::result 1}} + {{#rollTotal() computed::result 2}} + + + + {{/rollTotal() computed::result 2}} + {{#rollTotal() computed::result 3}} + + + + {{/rollTotal() computed::result 3}} +{{/rollTotal() computed::confirmationRollRequired 0}} +{{#rollTotal() computed::confirmationRollRequired 1}} + {{#rollTotal() computed::isConfirmationRoll 0}} + {{#rollTotal() computed::result -2}} + + + + {{/rollTotal() computed::result -2}} + {{#rollTotal() computed::result -1}} + + + + {{/rollTotal() computed::result -1}} + {{#rollTotal() computed::result 1}} + + + + {{/rollTotal() computed::result 1}} + {{#rollTotal() computed::result 2}} + + + + {{/rollTotal() computed::result 2}} + {{#rollGreater() computed::confirmationRollRequired 0}} + + + + {{/rollGreater() computed::confirmationRollRequired 0}} + {{/rollTotal() computed::isConfirmationRoll 0}} + {{#rollTotal() computed::isConfirmationRoll 1}} + {{#rollTotal() computed::result -3}} + + + + {{/rollTotal() computed::result -3}} + {{#rollTotal() computed::result -2}} + + + + {{/rollTotal() computed::result -2}} + {{#rollTotal() computed::result 2}} + + + + {{/rollTotal() computed::result 2}} + {{#rollTotal() computed::result 3}} + + + + {{/rollTotal() computed::result 3}} + {{#rollTotal() showRollTag 1}} + + + + {{/rollTotal() showRollTag 1}} + {{#rollTotal() computed::result -3}} + + + + {{/rollTotal() computed::result -3}} + {{#rollGreater() computed::rollExpired 0}} + + + + {{/rollGreater() computed::rollExpired 0}} + {{/rollTotal() computed::isConfirmationRoll 1}} +{{/rollTotal() computed::confirmationRollRequired 1}} +{{#rollTotal() computed::msg 1}} + + + +{{/rollTotal() computed::msg 1}} +
+ {{name}} von {{charactername}} + {{#rollTotal() computed::isConfirmationRoll 0}} + {{#rollTotal() showRollTag 1}} + {{#rollTotal() computed::confirmationRollRequired 0}} + {{#rollTotal() computed::result -3}} + ({{computed::rollTag}})
Wert: {{wert}} (Mod {{mod}}, Ansage {{ansage}})
Würfelergebnisse: + {{#rollGreater() roll0 0}}{{roll0}}{{/rollGreater() roll0 0}}{{#rollGreater() roll1 0}}/{{roll1}}{{/rollGreater() roll1 0}}{{#rollGreater() roll2 0}}/{{roll2}}{{/rollGreater() roll2 0}} +
Würfelergebnisse (Bestätigungswürfe): + {{#rollGreater() confirmationRoll0 0}}{{confirmationRoll0}}{{/rollGreater() confirmationRoll0 0}}{{#rollGreater() confirmationRoll1 0}}/{{confirmationRoll1}}{{/rollGreater() confirmationRoll1 0}}{{#rollGreater() confirmationRoll2 0}}/{{confirmationRoll2}}{{/rollGreater() confirmationRoll2 0}}
Ergebnis: Kritisch misslungen und bestätigt!
+ [t Patzerauswirkung bestimmen](~{{characterid}}|patzer||{{computed::passthrough}}) +
Ergebnis: Kritisch misslungen und nicht bestätigt!
Ergebnis: Misslungen!
Ergebnis: Gelungen!
Ergebnis: Kritisch gelungen und nicht bestätigt!
Ergebnis: Kritisch gelungen und bestätigt!
Ergebnis: Kritisch misslungen! Bestätigungswurf nötig.
Ergebnis: Misslungen!
Ergebnis: Gelungen!
Ergebnis: Kritisch gelungen! Bestätigungswurf nötig.
+ [t Bestätigungswurf](~{{characterid}}|combat_reaction||{{computed::passthrough}}) +
Ergebnis: Kritisch misslungen und bestätigt!
Ergebnis: Kritisch misslungen und nicht bestätigt!
Ergebnis: Kritisch gelungen und nicht bestätigt!
Ergebnis: Kritisch gelungen und bestätigt!
Folgewurf zu {{computed::rollTag}}
+ [t Patzerauswirkung bestimmen](~{{characterid}}|patzer||{{computed::passthrough}}) +
Zwischen dieser Reaktion und dem Ursprungswurf liegt eine lange Zeit (mindestens {{computed::rollTimeHuman}} min). Bitte sicherstellen, dass der richtige Reaktionsknopf benutzt wurde.
Hohe Erschwernis.
+
+
+
+ + +
+ + + + + + + + {{#rollTotal() isOriginalRoll 0}} + {{#rollTotal() showRollTag 1}} + + + + {{/rollTotal() showRollTag 1}} + {{/rollTotal() isOriginalRoll 0}} +
{{name}}
+ {{#rollTotal() wurf 2}}Auswirkung: Waffe zerstört + {{/rollTotal() wurf 2}} + {{#rollBetween() wurf 3 5}} + Auswirkung: Sturz + {{/rollBetween() wurf 3 5}} + {{#rollBetween() wurf 6 8}} + Auswirkung: Stolpern + {{/rollBetween() wurf 6 8}} + {{#rollBetween() wurf 9 10}} + Auswirkung: Waffe verloren + {{/rollBetween() wurf 9 10}} + {{#rollTotal() wurf 11}} + Auswirkung: An eigener Waffe verletzt + {{/rollTotal() wurf 11}} + {{#rollTotal() wurf 12}} + Auswirkung: Schwerer Eigentreffer + {{/rollTotal() wurf 12}} + ({{wurf}}) +
Folgewurf zu {{computed::rollTag}}
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/intro.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/intro.html new file mode 100644 index 0000000000..44279c45c7 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/intro.html @@ -0,0 +1,3 @@ + + + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/liturgies.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/liturgies.html new file mode 100644 index 0000000000..f9cd9f9faf --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/liturgies.html @@ -0,0 +1,36 @@ + + +
+ {{#rollBetween() computed::result 1 1}} + + {{/rollBetween() computed::result 1 1}} + {{#rollBetween() computed::result 0 0}} +
+ {{/rollBetween() computed::result 0 0}} + + + + + + + + + + +
{{name}}
+ Mirakelprobe + {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} + {{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} + {{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} + + {{#rollBetween() computed::result 1 1}} + gelungen + {{/rollBetween() computed::result 1 1}} + {{#rollBetween() computed::result 0 0}} + misslungen + {{/rollBetween() computed::result 0 0}} + + ({{computed::roll}} LkP*).
LkW: {{wert}}Eigenschaften: {{computed::stats}}
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/outro.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/outro.html new file mode 100644 index 0000000000..07feb44d36 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/outro.html @@ -0,0 +1,3 @@ + + + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/spells.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/spells.html new file mode 100644 index 0000000000..761b89cba3 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/spells.html @@ -0,0 +1,87 @@ + + +
+ {{#rollBetween() computed::criticality -1 1}} + {{#rollBetween() computed::result 1 2}} + + {{/rollBetween() computed::result 1 2}} + {{#rollBetween() computed::result -1 0}} +
+ {{/rollBetween() computed::result -1 0}} + {{/rollBetween() computed::criticality -1 1}} + + {{#rollBetween() computed::criticality 2 2}} +
+ {{/rollBetween() computed::criticality 2 2}} + {{#rollBetween() computed::criticality 3 3}} +
+ {{/rollBetween() computed::criticality 3 3}} + {{#rollBetween() computed::criticality -2 -2}} +
+ {{/rollBetween() computed::criticality -2 -2}} + {{#rollBetween() computed::criticality -3 -3}} +
+ {{/rollBetween() computed::criticality -3 -3}} + + {{#rollBetween() computed::criticality -4 -4}} +
+ {{/rollBetween() computed::criticality -4 -4}} + + + + + + + + + + + + {{#rollBetween() computed::result 2 2}} + + + + {{/rollBetween() computed::result 2 2}} + {{#rollBetween() computed::result -1 -1}} + + + + {{/rollBetween() computed::result -1 -1}} + {{#repmod}} + + + + {{/repmod}} +
{{name}}
+ Zauberprobe + {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} + {{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} + {{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} + + {{#rollBetween() computed::criticality -1 1}} + {{#rollBetween() computed::result 1 2}} + gelungen + {{/rollBetween() computed::result 1 2}} + {{#rollBetween() computed::result -1 0}} + misslungen + {{/rollBetween() computed::result -1 0}} + {{/rollBetween() computed::criticality -1 1}} + {{#rollBetween() computed::criticality 2 2}} + automatisch gelungen („Doppel-1“) + {{/rollBetween() computed::criticality 2 2}} + {{#rollBetween() computed::criticality 3 3}} + automatisch und zusätzlich mit positiven Zusatzeffekten gelungen („Dreifach-1“!) + {{/rollBetween() computed::criticality 3 3}} + {{#rollBetween() computed::criticality -2 -2}} + automatisch misslungen („Doppel-20“) + {{/rollBetween() computed::criticality -2 -2}} + {{#rollBetween() computed::criticality -3 -3}} + automatisch und zusätzlich mit negativen Zusatzeffekten misslungen („Dreifach-20“!) + {{/rollBetween() computed::criticality -3 -3}} + {{#rollBetween() computed::criticality -4 -4}} + automatisch und mit vollen Kosten misslungen (Spruchhemmung) + {{/rollBetween() computed::criticality -4 -4}} + ({{computed::roll}} ZfP*).
ZfW: {{wert}}Eigenschaften: {{computed::stats}}
Feste Matrix hat Schlimmeres verhindert!
Feste Matrix hat Schlimmeres verhindert!
{{repmod}}
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/talents.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/talents.html index d4ecb90a43..4dd22fe2c0 100644 --- a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/talents.html +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/crp/talents.html @@ -1,4 +1,4 @@ - +
{{#rollBetween() computed::criticality -1 1}} @@ -130,335 +130,4 @@
- - -
- {{#rollBetween() computed::criticality -1 1}} - {{#rollBetween() computed::result 1 2}} - - {{/rollBetween() computed::result 1 2}} - {{#rollBetween() computed::result -1 0}} -
- {{/rollBetween() computed::result -1 0}} - {{/rollBetween() computed::criticality -1 1}} - - {{#rollBetween() computed::criticality 2 2}} -
- {{/rollBetween() computed::criticality 2 2}} - {{#rollBetween() computed::criticality 3 3}} -
- {{/rollBetween() computed::criticality 3 3}} - {{#rollBetween() computed::criticality -2 -2}} -
- {{/rollBetween() computed::criticality -2 -2}} - {{#rollBetween() computed::criticality -3 -3}} -
- {{/rollBetween() computed::criticality -3 -3}} - - {{#rollBetween() computed::criticality -4 -4}} -
- {{/rollBetween() computed::criticality -4 -4}} - - - - - - - - - - - - {{#rollBetween() computed::result 2 2}} - - - - {{/rollBetween() computed::result 2 2}} - {{#rollBetween() computed::result -1 -1}} - - - - {{/rollBetween() computed::result -1 -1}} - {{#repmod}} - - - - {{/repmod}} -
{{name}}
- Zauberprobe - {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} - {{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} - {{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} - - {{#rollBetween() computed::criticality -1 1}} - {{#rollBetween() computed::result 1 2}} - gelungen - {{/rollBetween() computed::result 1 2}} - {{#rollBetween() computed::result -1 0}} - misslungen - {{/rollBetween() computed::result -1 0}} - {{/rollBetween() computed::criticality -1 1}} - {{#rollBetween() computed::criticality 2 2}} - automatisch gelungen („Doppel-1“) - {{/rollBetween() computed::criticality 2 2}} - {{#rollBetween() computed::criticality 3 3}} - automatisch und zusätzlich mit positiven Zusatzeffekten gelungen („Dreifach-1“!) - {{/rollBetween() computed::criticality 3 3}} - {{#rollBetween() computed::criticality -2 -2}} - automatisch misslungen („Doppel-20“) - {{/rollBetween() computed::criticality -2 -2}} - {{#rollBetween() computed::criticality -3 -3}} - automatisch und zusätzlich mit negativen Zusatzeffekten misslungen („Dreifach-20“!) - {{/rollBetween() computed::criticality -3 -3}} - {{#rollBetween() computed::criticality -4 -4}} - automatisch und mit vollen Kosten misslungen (Spruchhemmung) - {{/rollBetween() computed::criticality -4 -4}} - ({{computed::roll}} ZfP*).
ZfW: {{wert}}Eigenschaften: {{computed::stats}}
Feste Matrix hat Schlimmeres verhindert!
Feste Matrix hat Schlimmeres verhindert!
{{repmod}}
-
-
- - -
- {{#rollBetween() computed::result 1 1}} - - {{/rollBetween() computed::result 1 1}} - {{#rollBetween() computed::result 0 0}} -
- {{/rollBetween() computed::result 0 0}} - - - - - - - - - - -
{{name}}
- Mirakelprobe - {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} - {{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} - {{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} - - {{#rollBetween() computed::result 1 1}} - gelungen - {{/rollBetween() computed::result 1 1}} - {{#rollBetween() computed::result 0 0}} - misslungen - {{/rollBetween() computed::result 0 0}} - - ({{computed::roll}} LkP*).
LkW: {{wert}}Eigenschaften: {{computed::stats}}
-
-
- - -
-
-{{#rollTotal() computed::result -3}} - -{{/rollTotal() computed::result -3}} -{{#rollTotal() computed::result -2}} -
-{{/rollTotal() computed::result -2}} -{{#rollTotal() computed::result -1}} -
-{{/rollTotal() computed::result -1}} -{{#rollTotal() computed::result 1}} -
-{{/rollTotal() computed::result 1}} -{{#rollTotal() computed::result 2}} -
-{{/rollTotal() computed::result 2}} -{{#rollTotal() computed::result 3}} -
-{{/rollTotal() computed::result 3}} - - - {{/rollTotal() computed::result -3}} - {{/rollTotal() computed::confirmationRollRequired 0}} - {{#rollTotal() computed::confirmationRollRequired 1}} - ({{computed::rollTag}}) - {{/rollTotal() computed::confirmationRollRequired 1}} - {{/rollTotal() showRollTag 1}} - {{/rollTotal() computed::isConfirmationRoll 0}} - - - - - - - - - - - -{{#rollTotal() computed::confirmationRollRequired 0}} - {{#rollTotal() computed::result -3}} - - - - - - - {{/rollTotal() computed::result -3}} - {{#rollTotal() computed::result -2}} - - - - {{/rollTotal() computed::result -2}} - {{#rollTotal() computed::result -1}} - - - - {{/rollTotal() computed::result -1}} - {{#rollTotal() computed::result 1}} - - - - {{/rollTotal() computed::result 1}} - {{#rollTotal() computed::result 2}} - - - - {{/rollTotal() computed::result 2}} - {{#rollTotal() computed::result 3}} - - - - {{/rollTotal() computed::result 3}} -{{/rollTotal() computed::confirmationRollRequired 0}} -{{#rollTotal() computed::confirmationRollRequired 1}} - {{#rollTotal() computed::isConfirmationRoll 0}} - {{#rollTotal() computed::result -2}} - - - - {{/rollTotal() computed::result -2}} - {{#rollTotal() computed::result -1}} - - - - {{/rollTotal() computed::result -1}} - {{#rollTotal() computed::result 1}} - - - - {{/rollTotal() computed::result 1}} - {{#rollTotal() computed::result 2}} - - - - {{/rollTotal() computed::result 2}} - {{#rollGreater() computed::confirmationRollRequired 0}} - - - - {{/rollGreater() computed::confirmationRollRequired 0}} - {{/rollTotal() computed::isConfirmationRoll 0}} - {{#rollTotal() computed::isConfirmationRoll 1}} - {{#rollTotal() computed::result -3}} - - - - {{/rollTotal() computed::result -3}} - {{#rollTotal() computed::result -2}} - - - - {{/rollTotal() computed::result -2}} - {{#rollTotal() computed::result 2}} - - - - {{/rollTotal() computed::result 2}} - {{#rollTotal() computed::result 3}} - - - - {{/rollTotal() computed::result 3}} - {{#rollTotal() showRollTag 1}} - - - - {{/rollTotal() showRollTag 1}} - {{#rollTotal() computed::result -3}} - - - - {{/rollTotal() computed::result -3}} - {{#rollGreater() computed::rollExpired 0}} - - - - {{/rollGreater() computed::rollExpired 0}} - {{/rollTotal() computed::isConfirmationRoll 1}} -{{/rollTotal() computed::confirmationRollRequired 1}} -{{#rollTotal() computed::msg 1}} - - - -{{/rollTotal() computed::msg 1}} -
- {{name}} von {{charactername}} - {{#rollTotal() computed::isConfirmationRoll 0}} - {{#rollTotal() showRollTag 1}} - {{#rollTotal() computed::confirmationRollRequired 0}} - {{#rollTotal() computed::result -3}} - ({{computed::rollTag}})
Wert: {{wert}} (Mod {{mod}}, Ansage {{ansage}})
Würfelergebnisse: - {{#rollGreater() roll0 0}}{{roll0}}{{/rollGreater() roll0 0}}{{#rollGreater() roll1 0}}/{{roll1}}{{/rollGreater() roll1 0}}{{#rollGreater() roll2 0}}/{{roll2}}{{/rollGreater() roll2 0}} -
Würfelergebnisse (Bestätigungswürfe): - {{#rollGreater() confirmationRoll0 0}}{{confirmationRoll0}}{{/rollGreater() confirmationRoll0 0}}{{#rollGreater() confirmationRoll1 0}}/{{confirmationRoll1}}{{/rollGreater() confirmationRoll1 0}}{{#rollGreater() confirmationRoll2 0}}/{{confirmationRoll2}}{{/rollGreater() confirmationRoll2 0}}
Ergebnis: Kritisch misslungen und bestätigt!
- [t Patzerauswirkung bestimmen](~{{characterid}}|patzer||{{computed::passthrough}}) -
Ergebnis: Kritisch misslungen und nicht bestätigt!
Ergebnis: Misslungen!
Ergebnis: Gelungen!
Ergebnis: Kritisch gelungen und nicht bestätigt!
Ergebnis: Kritisch gelungen und bestätigt!
Ergebnis: Kritisch misslungen! Bestätigungswurf nötig.
Ergebnis: Misslungen!
Ergebnis: Gelungen!
Ergebnis: Kritisch gelungen! Bestätigungswurf nötig.
- [t Bestätigungswurf](~{{characterid}}|combat_reaction||{{computed::passthrough}}) -
Ergebnis: Kritisch misslungen und bestätigt!
Ergebnis: Kritisch misslungen und nicht bestätigt!
Ergebnis: Kritisch gelungen und nicht bestätigt!
Ergebnis: Kritisch gelungen und bestätigt!
Folgewurf zu {{computed::rollTag}}
- [t Patzerauswirkung bestimmen](~{{characterid}}|patzer||{{computed::passthrough}}) -
Zwischen dieser Reaktion und dem Ursprungswurf liegt eine lange Zeit (mindestens {{computed::rollTimeHuman}} min). Bitte sicherstellen, dass der richtige Reaktionsknopf benutzt wurde.
Hohe Erschwernis.
-
-
-
- - -
- - - - - - - - {{#rollTotal() isOriginalRoll 0}} - {{#rollTotal() showRollTag 1}} - - - - {{/rollTotal() showRollTag 1}} - {{/rollTotal() isOriginalRoll 0}} -
{{name}}
- {{#rollTotal() wurf 2}}Auswirkung: Waffe zerstört - {{/rollTotal() wurf 2}} - {{#rollBetween() wurf 3 5}} - Auswirkung: Sturz - {{/rollBetween() wurf 3 5}} - {{#rollBetween() wurf 6 8}} - Auswirkung: Stolpern - {{/rollBetween() wurf 6 8}} - {{#rollBetween() wurf 9 10}} - Auswirkung: Waffe verloren - {{/rollBetween() wurf 9 10}} - {{#rollTotal() wurf 11}} - Auswirkung: An eigener Waffe verletzt - {{/rollTotal() wurf 11}} - {{#rollTotal() wurf 12}} - Auswirkung: Schwerer Eigentreffer - {{/rollTotal() wurf 12}} - ({{wurf}}) -
Folgewurf zu {{computed::rollTag}}
-
-
- + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/intro.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/intro.html index 5190484dd4..22ccde43ad 100644 --- a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/intro.html +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/intro.html @@ -1,3 +1,3 @@ - - - + + + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/combat_shared.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/combat_shared.html new file mode 100644 index 0000000000..42a3b65b2d --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/combat_shared.html @@ -0,0 +1,478 @@ + + +
+ + + + + + + + + + + {{#rollTotal() rg3 1}} + + + + {{/rollTotal() rg3 1}} + {{#rollTotal() rg3 0}} + {{/rollTotal() rg3 0}} +
Initiative für {{char}}: {{ini}}
#W6: + {{#rollTotal() dice 1}} + 1 + {{/rollTotal() dice 1}} + {{#rollTotal() dice 2}} + 2 + {{/rollTotal() dice 2}} + IB: {{IB}}BE: {{BE}}Mod.: {{mod}}
Behinderung aus Rüstung für Initiativewurf aufgrund von Rüstungsgewöhnung III halbiert. Behinderung zusammengesetzt aus Last ({{BE_Last}}) und Behinderung aus Rüstung ({{BE_RG_INI}}).
+
+
+ +
+{{#rollTotal() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} +{{/rollTotal() wurf eff_wert}} +{{#rollLess() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} +{{/rollLess() wurf eff_wert}} +{{#rollGreater() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} +{{/rollGreater() wurf eff_wert}} + + + +{{#rollGreater() ansage 0}} + + + + + + + + + + + + + + +{{/rollGreater() ansage 0}} +{{#^rollGreater() ansage 0}} + + + + + + + + + + + +{{/^rollGreater() ansage 0}} +{{#rollLess() eff_wert 0}} + + + +{{/rollLess() eff_wert 0}} +{{#rollWasCrit() wurf}} + + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} + + {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} + + {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} + + {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} + + {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + +{{/rollWasCrit() wurf}} +{{#rollWasFumble() wurf}} + + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} + + {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} + + {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} + + {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} + + {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + +{{/rollWasFumble() wurf}} + + + +
{{name}}
Ausweichen {{#rollLess() modansage 0}}{{modansage}}{{/rollLess() modansage 0}}{{#rollTotal() modansage 0}}±{{modansage}}{{/rollTotal() modansage 0}}{{#rollGreater() modansage 0}}+{{modansage}}{{/rollGreater() modansage 0}} ({{wurf}}).
PA-Basis: {{pa}}BE: {{be}}
A.-Mod.: {{ausweichenmod}}P.-Mod.: {{#rollLess() probenmod 0}}{{probenmod}}{{/rollLess() probenmod 0}}{{#rollTotal() probenmod 0}}±{{probenmod}}{{/rollTotal() probenmod 0}}{{#rollGreater() probenmod 0}}+{{probenmod}}{{/rollGreater() probenmod 0}}
Ansage: {{ansage}}
Ausweichen {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} ({{wurf}}).
PA-Basis: {{pa}}BE: {{be}}
A.-Mod.: {{ausweichenmod}}P.-Mod.: {{#rollLess() probenmod 0}}{{probenmod}}{{/rollLess() probenmod 0}}{{#rollTotal() probenmod 0}}±{{probenmod}}{{/rollTotal() probenmod 0}}{{#rollGreater() probenmod 0}}+{{probenmod}}{{/rollGreater() probenmod 0}}
Hohe Erschwernis.
Glückliches Ausweichen! Prüfwurf: {{pruefwurf}}.Gewöhnliches Ausweichen! Prüfwurf: {{pruefwurf}}.Glückliches Ausweichen! Prüfwurf: {{pruefwurf}}.Glückliches Ausweichen! Prüfwurf: {{pruefwurf}}.Gewöhnliches Ausweichen! Prüfwurf: {{pruefwurf}}.
Unbestätigter Ausweichenpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Ausweichenpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.Unbestätigter Ausweichenpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Unbestätigter Ausweichenpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Ausweichenpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.
Hinweise zu Ausweichen-Proben.
+
+
+ +
+ + + + + + + + {{#rollLess() damage 0}} + + + + {{/rollLess() damage 0}} +
{{name}}treffer
{{damage}} + {{#rollTotal() TPArt 0}}TP{{/rollTotal() TPArt 0}} + {{#rollTotal() TPArt 1}}TP(A){{/rollTotal() TPArt 1}} + auf + {{#rollTotal() zone 1}} + {{#rollTotal() target 0}}das linke Bein{{/rollTotal() target 0}} + {{#rollTotal() target 1}}den Schwanz{{/rollTotal() target 1}} + {{#rollTotal() target 2}}den Bauch{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 1}} + {{#rollTotal() zone 2}} + {{#rollTotal() target 0}}das rechte Bein{{/rollTotal() target 0}} + {{#rollTotal() target 1}}den Schwanz{{/rollTotal() target 1}} + {{#rollTotal() target 2}}den Bauch{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 2}} + {{#rollTotal() zone 3}} + {{#rollBetween() target 0 1}}das linke Bein{{/rollBetween() target 0 1}} + {{#rollTotal() target 2}}den Schildarm{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 3}} + {{#rollTotal() zone 4}} + {{#rollBetween() target 0 1}}das rechte Bein{{/rollBetween() target 0 1}} + {{#rollTotal() target 2}}den Schwertarm{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 4}} + {{#rollTotal() zone 5}} + {{#rollBetween() target 0 1}}das linke Bein{{/rollBetween() target 0 1}} + {{#rollTotal() target 2}}den Schildarm{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 5}} + {{#rollTotal() zone 6}} + {{#rollBetween() target 0 1}}das rechte Bein{{/rollBetween() target 0 1}} + {{#rollTotal() target 2}}den Schwertarm{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 6}} + {{#rollTotal() zone 7}} + {{#rollBetween() target 0 1}}den Bauch{{/rollBetween() target 0 1}} + {{#rollTotal() target 2}}den Schildarm{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 7}} + {{#rollTotal() zone 8}} + {{#rollBetween() target 0 1}}den Bauch{{/rollBetween() target 0 1}} + {{#rollTotal() target 2}}den Schwertarm{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 8}} + {{#rollTotal() zone 9}} + {{#rollBetween() target 0 2}}den Schildarm{{/rollBetween() target 0 2}} + {{#rollTotal() target 3}}den linken Vorderlauf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 9}} + {{#rollTotal() zone 10}} + {{#rollBetween() target 0 2}}den Schwertarm{{/rollBetween() target 0 2}} + {{#rollTotal() target 3}}den rechten Vorderlauf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 10}} + {{#rollTotal() zone 11}} + {{#rollBetween() target 0 1}}den Schildarm{{/rollBetween() target 0 1}} + {{#rollTotal() target 2}}die Brust{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den linken Hinterlauf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 11}} + {{#rollTotal() zone 12}} + {{#rollBetween() target 0 1}}den Schwertarm{{/rollBetween() target 0 1}} + {{#rollTotal() target 2}}die Brust{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den rechten Hinterlauf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} + {{/rollTotal() zone 12}} + {{#rollTotal() zone 13}} + {{#rollBetween() target 0 1}}den Schildarm{{/rollBetween() target 0 1}} + {{#rollTotal() target 2}}die Brust{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den linken Vorderlauf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}den Bauch{{/rollTotal() target 4}} + {{/rollTotal() zone 13}} + {{#rollTotal() zone 14}} + {{#rollBetween() target 0 1}}den Schwertarm{{/rollBetween() target 0 1}} + {{#rollTotal() target 2}}die Brust{{/rollTotal() target 2}} + {{#rollTotal() target 3}}den rechten Vorderlauf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}den Bauch{{/rollTotal() target 4}} + {{/rollTotal() zone 14}} + {{#rollTotal() zone 15}} + {{#rollBetween() target 0 2}}die Brust{{/rollBetween() target 0 2}} + {{#rollTotal() target 3}}den linken Hinterlauf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}den Schildarm{{/rollTotal() target 4}} + {{/rollTotal() zone 15}} + {{#rollTotal() zone 16}} + {{#rollBetween() target 0 2}}die Brust{{/rollBetween() target 0 2}} + {{#rollTotal() target 3}}den rechten Hinterlauf{{/rollTotal() target 3}} + {{#rollTotal() target 4}}den Schwertarm{{/rollTotal() target 4}} + {{/rollTotal() zone 16}} + {{#rollTotal() zone 17}} + {{#rollBetween() target 0 1}}die Brust{{/rollBetween() target 0 1}} + {{#rollBetween() target 2 3}}den Kopf{{/rollBetween() target 2 3}} + {{#rollTotal() target 4}}den Schildarm{{/rollTotal() target 4}} + {{/rollTotal() zone 17}} + {{#rollTotal() zone 18}} + {{#rollBetween() target 0 1}}die Brust{{/rollBetween() target 0 1}} + {{#rollBetween() target 2 3}}den Kopf{{/rollBetween() target 2 3}} + {{#rollTotal() target 4}}den Schwertarm{{/rollTotal() target 4}} + {{/rollTotal() zone 18}} + {{#rollTotal() zone 19}} + {{#rollBetween() target 0 3}}den Kopf{{/rollBetween() target 0 3}} + {{#rollTotal() target 4}}den Schildarm{{/rollTotal() target 4}} + {{/rollTotal() zone 19}} + {{#rollTotal() zone 20}} + {{#rollBetween() target 0 2}}den Kopf{{/rollBetween() target 0 2}} + {{#rollTotal() target 3}}den Schwanz{{/rollTotal() target 3}} + {{#rollTotal() target 4}}den Schwertarm{{/rollTotal() target 4}} + {{/rollTotal() zone 20}} + ({{zone}}) +
Hinweis: Werte kleiner null zählen als null. *
+
+ +
+ +
+ + + + + + + +
{{name}}treffer
{{damage}} TP auf {{target}}.
+
+
+ + +
+ + + + + + + + + {{#rollTotal() art 0}} + + + + + {{/rollTotal() art 0}} + {{#rollTotal() art 1}} + + + + + + + {{/rollTotal() art 1}} +
{{name}} + {{#rollTotal() zone 0}}(Kopf){{/rollTotal() zone 0}} + {{#rollTotal() zone 1}}(Brust){{/rollTotal() zone 1}} + {{#rollTotal() zone 2}}(Rücken){{/rollTotal() zone 2}} + {{#rollTotal() zone 3}}(Bauch){{/rollTotal() zone 3}} + {{#rollTotal() zone 4}}(linker Arm){{/rollTotal() zone 4}} + {{#rollTotal() zone 5}}(rechter Arm){{/rollTotal() zone 5}} + {{#rollTotal() zone 6}}(linkes Bein){{/rollTotal() zone 6}} + {{#rollTotal() zone 7}}(rechtes Bein){{/rollTotal() zone 7}}
RS: {{RS}}WS: {{WS}}
TP: {{TP}}SP: {{SP}}
TP(A): {{TP}}SP(A): {{SP}} +
SP: {{SPausSPA}}
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/hand_to_hand_combat.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/hand_to_hand_combat.html new file mode 100644 index 0000000000..072a45247c --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/hand_to_hand_combat.html @@ -0,0 +1,450 @@ + + +
+{{#rollTotal() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} +{{/rollTotal() wurf eff_wert}} +{{#rollLess() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} +{{/rollLess() wurf eff_wert}} +{{#rollGreater() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} +{{/rollGreater() wurf eff_wert}} + + + + {{#rollGreater() ansage 0}} + + + + + + + + +{{/rollGreater() ansage 0}} +{{#^rollGreater() ansage 0}} + + + + + + +{{/^rollGreater() ansage 0}} +{{#rollLess() eff_wert 0}} + + + + {{/rollLess() eff_wert 0}} + {{#rollWasCrit() wurf}} + + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} + + {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} + + {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} + + {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} + + {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} + + {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} + + {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} + + {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} + + {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + + {{/rollWasFumble() wurf}} +
{{name}}
Attacke {{#rollLess() modansage 0}}{{modansage}}{{/rollLess() modansage 0}}{{#rollTotal() modansage 0}}±{{modansage}}{{/rollTotal() modansage 0}}{{#rollGreater() modansage 0}}+{{modansage}}{{/rollGreater() modansage 0}} ({{wurf}}).
AT-Wert: {{wert}}Mod.: {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}}Ansage: {{ansage}}
Attacke {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} ({{wurf}}).
AT-Wert: {{wert}}
Hohe Erschwernis.
Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Glückliche Attacke! Prüfwurf: {{pruefwurf}}.Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Glückliche Attacke! Prüfwurf: {{pruefwurf}}.
Unbestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.Unbestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Unbestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.
+
+
+ +
+{{#rollTotal() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} +{{/rollTotal() wurf eff_wert}} +{{#rollLess() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} +{{/rollLess() wurf eff_wert}} +{{#rollGreater() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} +{{/rollGreater() wurf eff_wert}} + + + +{{#rollGreater() ansage 0}} + + + + + + + + +{{/rollGreater() ansage 0}} +{{#^rollGreater() ansage 0}} + + + + + + +{{/^rollGreater() ansage 0}} +{{#rollLess() eff_wert 0}} + + + +{{/rollLess() eff_wert 0}} +{{#rollWasCrit() wurf}} + + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} + + {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} + + {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} + + {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} + + {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + +{{/rollWasCrit() wurf}} +{{#rollWasFumble() wurf}} + + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} + + {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} + + {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} + + {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} + + {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + +{{/rollWasFumble() wurf}} +
{{name}}
Parade {{#rollLess() modansage 0}}{{modansage}}{{/rollLess() modansage 0}}{{#rollTotal() modansage 0}}±{{modansage}}{{/rollTotal() modansage 0}}{{#rollGreater() modansage 0}}+{{modansage}}{{/rollGreater() modansage 0}} ({{wurf}}).
PA-Wert: {{wert}}Mod.: {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}}Ansage: {{ansage}}
Parade {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} ({{wurf}}).
PA-Wert: {{wert}}
Hohe Erschwernis.
Glückliche Parade! Prüfwurf: {{pruefwurf}}.Gewöhnliche Parade! Prüfwurf: {{pruefwurf}}.Glückliche Parade! Prüfwurf: {{pruefwurf}}.Glückliche Parade! Prüfwurf: {{pruefwurf}}.Gewöhnliche Parade! Prüfwurf: {{pruefwurf}}.
Unbestätigter Paradepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Paradepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.Unbestätigter Paradepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Unbestätigter Paradepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Paradepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/intro.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/intro.html new file mode 100644 index 0000000000..a5b86de9a7 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/intro.html @@ -0,0 +1,3 @@ + + + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/liturgies.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/liturgies.html new file mode 100644 index 0000000000..0575681eaa --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/liturgies.html @@ -0,0 +1,35 @@ + + +
+{{#rollGreater() Liturgie -1}} + +{{/rollGreater() Liturgie -1}} +{{#rollLess() Liturgie 0}} +
+{{/rollLess() Liturgie 0}} + + + + + + + + + + + {{#rollWasCrit() Liturgie}} + + + + {{/rollWasCrit() Liturgie}} + {{#rollWasFumble() Liturgie}} + + + + {{/rollWasFumble() Liturgie}} +
{{name}}
Mirakelprobe {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} +{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} +{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} {{#rollGreater() Liturgie -1}}ge{{/rollGreater() Liturgie -1}}{{#rollLess() Liturgie 0}}miss{{/rollLess() Liturgie 0}}lungen ({{Liturgie}} LkP*).
LkW: {{lkw}}Eigenschaften: {{stat1}}/{{stat2}}/{{stat3}}
Auf Mehrfach-1 prüfen!
Auf Mehrfach-20 prüfen!
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/outro.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/outro.html new file mode 100644 index 0000000000..94b6468369 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/outro.html @@ -0,0 +1,3 @@ + + + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/ranged_combat.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/ranged_combat.html new file mode 100644 index 0000000000..7603e7b067 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/ranged_combat.html @@ -0,0 +1,365 @@ + + +
+{{#rollLess() eff_wert 0}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf wert}} +
+ {{/rollTotal() pruefwurf wert}} + {{#rollLess() pruefwurf wert}} +
+ {{/rollLess() pruefwurf wert}} + {{#rollGreater() pruefwurf wert}} +
+ {{/rollGreater() pruefwurf wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} +{{/rollLess() eff_wert 0}} +{{#^rollLess() eff_wert 0}} + {{#rollTotal() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf wert}} +
+ {{/rollTotal() pruefwurf wert}} + {{#rollLess() pruefwurf wert}} +
+ {{/rollLess() pruefwurf wert}} + {{#rollGreater() pruefwurf wert}} +
+ {{/rollGreater() pruefwurf wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} + {{/rollTotal() wurf eff_wert}} + {{#rollLess() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf wert}} +
+ {{/rollTotal() pruefwurf wert}} + {{#rollLess() pruefwurf wert}} +
+ {{/rollLess() pruefwurf wert}} + {{#rollGreater() pruefwurf wert}} +
+ {{/rollGreater() pruefwurf wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} + {{/rollLess() wurf eff_wert}} + {{#rollGreater() wurf eff_wert}} + {{#rollWasCrit() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf eff_wert}} +
+ {{/rollTotal() pruefwurf eff_wert}} + {{#rollLess() pruefwurf eff_wert}} +
+ {{/rollLess() pruefwurf eff_wert}} + {{#rollGreater() pruefwurf eff_wert}} +
+ {{/rollGreater() pruefwurf eff_wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + {{#rollWasCrit() pruefwurf}} +
+ {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} +
+ {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf wert}} +
+ {{/rollTotal() pruefwurf wert}} + {{#rollLess() pruefwurf wert}} +
+ {{/rollLess() pruefwurf wert}} + {{#rollGreater() pruefwurf wert}} +
+ {{/rollGreater() pruefwurf wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + {{/rollWasFumble() wurf}} + {{#^rollWasCrit() wurf}} + {{#^rollWasFumble() wurf}} +
+ {{/^rollWasFumble() wurf}} + {{/^rollWasCrit() wurf}} + {{/rollGreater() wurf eff_wert}} +{{/^rollLess() eff_wert 0}} + + + +{{#rollGreater() ansage 0}} + + + +{{#rollGreater() ZieleKampfgetuemmel 1}} + + + +{{/rollGreater() ZieleKampfgetuemmel 1}} + + + + + +{{/rollGreater() ansage 0}} +{{#^rollGreater() ansage 0}} + + + +{{#rollGreater() ZieleKampfgetuemmel 1}} + + + +{{/rollGreater() ZieleKampfgetuemmel 1}} + + + +{{/^rollGreater() ansage 0}} +{{#rollLess() eff_wert 0}} + + + + {{#rollWasFumble() wurf}} + + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} + + {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf wert}} + + {{/rollTotal() pruefwurf wert}} + {{#rollLess() pruefwurf wert}} + + {{/rollLess() pruefwurf wert}} + {{#rollGreater() pruefwurf wert}} + + {{/rollGreater() pruefwurf wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + + {{/rollWasFumble() wurf}} +{{/rollLess() eff_wert 0}} +{{#^rollLess() eff_wert 0}} + {{#rollWasCrit() wurf}} + + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} + + {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf wert}} + + {{/rollTotal() pruefwurf wert}} + {{#rollLess() pruefwurf wert}} + + {{/rollLess() pruefwurf wert}} + {{#rollGreater() pruefwurf wert}} + + {{/rollGreater() pruefwurf wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + + {{/rollWasCrit() wurf}} + {{#rollWasFumble() wurf}} + + {{#rollWasCrit() pruefwurf}} + + {{/rollWasCrit() pruefwurf}} + {{#rollWasFumble() pruefwurf}} + + {{/rollWasFumble() pruefwurf}} + {{#^rollWasCrit() pruefwurf}} + {{#^rollWasFumble() pruefwurf}} + {{#rollTotal() pruefwurf wert}} + + {{/rollTotal() pruefwurf wert}} + {{#rollLess() pruefwurf wert}} + + {{/rollLess() pruefwurf wert}} + {{#rollGreater() pruefwurf wert}} + + {{/rollGreater() pruefwurf wert}} + {{/^rollWasFumble() pruefwurf}} + {{/^rollWasCrit() pruefwurf}} + + {{/rollWasFumble() wurf}} +{{/^rollLess() eff_wert 0}} +{{#rollTotal() ammohint 0}} + + + +{{/rollTotal() ammohint 0}} +{{#rollTotal() ammohint 1}} + + + +{{/rollTotal() ammohint 1}} +{{#rollTotal() ammohint 2}} + + + +{{/rollTotal() ammohint 2}} +
{{name}}
+ FK-Angriff {{#rollLess() modansage 0}}{{modansage}}{{/rollLess() modansage 0}}{{#rollTotal() modansage 0}}±{{modansage}}{{/rollTotal() modansage 0}}{{#rollGreater() modansage 0}}+{{modansage}}{{/rollGreater() modansage 0}} ({{wurf}}). +
+ Schuss ins Kampfgetümmel trifft + {{#^rollGreater() wurf eff_wert}}das beabsichtigte Ziel.{{/^rollGreater() wurf eff_wert}} + {{#^rollWasFumble() wurf}} + {{#rollGreater() wurf eff_wert}} + {{#^rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} + zufällig einen der {{ZieleKampfgetuemmel}} Beteiligten. + {{/^rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} + {{#rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} + niemanden. + {{/rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} + {{/rollGreater() wurf eff_wert}} + {{/^rollWasFumble() wurf}} + {{#rollWasFumble() wurf}} + niemanden. + {{/rollWasFumble() wurf}} +
FK-Wert: {{wert}}Mod.: {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} +{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} +{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}}Ansage: {{ansage}}
FK-Angriff {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} ({{wurf}}).
+ Schuss ins Kampfgetümmel trifft + {{#^rollGreater() wurf eff_wert}}das beabsichtigte Ziel.{{/^rollGreater() wurf eff_wert}} + {{#^rollWasFumble() wurf}} + {{#rollGreater() wurf eff_wert}} + {{#^rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} + zufällig einen der {{ZieleKampfgetuemmel}} Beteiligten. + {{/^rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} + {{#rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} + niemanden. + {{/rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} + {{/rollGreater() wurf eff_wert}} + {{/^rollWasFumble() wurf}} + {{#rollWasFumble() wurf}} + niemanden. + {{/rollWasFumble() wurf}} +
FK-Wert: {{wert}}
Automatischer Misserfolg.
Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.
Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Glückliche Attacke! Prüfwurf: {{pruefwurf}}.Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Glückliche Attacke! Prüfwurf: {{pruefwurf}}.
Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.
Verbleibende Munition: {{ammoRemaining}}.
Hinweis: Wurf wurde ausgeführt, ohne dass Munition vorhanden war.
Hinweis: Munitionswert ungültig. ℹ️
+
+
+ +
+ + + + + + + +
{{name}}
+ {{#rollTotal() wurf 2}}Auswirkung: Waffe zerstört + {{/rollTotal() wurf 2}} + {{#rollTotal() wurf 3}} + Auswirkung: Waffe beschädigt + {{/rollTotal() wurf 3}} + {{#rollBetween() wurf 4 10}} + Auswirkung: Fehlschuss + {{/rollBetween() wurf 4 10}} + {{#rollBetween() wurf 11 12}} + Auswirkung: Kameraden getroffen + {{/rollBetween() wurf 11 12}} + ({{wurf}}) +
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/spells.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/spells.html new file mode 100644 index 0000000000..9b05c5edb5 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/spells.html @@ -0,0 +1,35 @@ + + +
+{{#rollGreater() Talent -1}} + +{{/rollGreater() Talent -1}} +{{#rollLess() Talent 0}} +
+{{/rollLess() Talent 0}} + + + + + + + + + + + {{#rollWasCrit() Talent}} + + + + {{/rollWasCrit() Talent}} + {{#rollWasFumble() Talent}} + + + + {{/rollWasFumble() Talent}} +
{{name}}
Zauberprobe {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} +{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} +{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} {{#rollGreater() Talent -1}}ge{{/rollGreater() Talent -1}}{{#rollLess() Talent 0}}miss{{/rollLess() Talent 0}}lungen ({{Talent}} ZfP*).
ZfW: {{taw}}Eigenschaften: {{stat1}}/{{stat2}}/{{stat3}}
Auf Mehrfach-1 prüfen!
Auf Mehrfach-20 prüfen!
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/stats.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/stats.html new file mode 100644 index 0000000000..648b86b2ca --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/stats.html @@ -0,0 +1,82 @@ + + +
+{{#rollGreater() Probe -1}} + {{#rollWasCrit() Probe}} + + {{/rollWasCrit() Probe}} + {{#rollWasFumble() Probe}} +
+ {{/rollWasFumble() Probe}} + {{#^rollWasCrit() Probe}} + {{#^rollWasFumble() Probe}} +
+ {{/^rollWasFumble() Probe}} + {{/^rollWasCrit() Probe}} +{{/rollGreater() Probe -1}} +{{#rollLess() Probe 0}} + {{#rollWasCrit() Probe}} +
+ {{/rollWasCrit() Probe}} + {{#rollWasFumble() Probe}} +
+ {{/rollWasFumble() Probe}} + {{#^rollWasCrit() Probe}} + {{#^rollWasFumble() Probe}} +
+ {{/^rollWasFumble() Probe}} + {{/^rollWasCrit() Probe}} +{{/rollLess() Probe 0}} + + + + + + + + + + {{#rollWasCrit() Probe}} + + + + {{/rollWasCrit() Probe}} + {{#rollWasFumble() Probe}} + + + + {{/rollWasFumble() Probe}} +
{{name}}
Eigenschaftsprobe {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} +{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} +{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} + {{#rollGreater() Probe -1}} + {{#rollWasCrit() Probe}} + gelungen ({{ew}} + {{/rollWasCrit() Probe}} + {{#rollWasFumble() Probe}} + misslungen (? + {{/rollWasFumble() Probe}} + {{#^rollWasCrit() Probe}} + {{#^rollWasFumble() Probe}} + gelungen ({{Probe}} + {{/^rollWasFumble() Probe}} + {{/^rollWasCrit() Probe}} + {{/rollGreater() Probe -1}} + {{#rollLess() Probe 0}} + {{#rollWasCrit() Probe}} + gelungen ({{ew}} + {{/rollWasCrit() Probe}} + {{#rollWasFumble() Probe}} + misslungen (-{{ew}} + {{/rollWasFumble() Probe}} + {{#^rollWasCrit() Probe}} + {{#^rollWasFumble() Probe}} + misslungen ({{Probe}} + {{/^rollWasFumble() Probe}} + {{/^rollWasCrit() Probe}} + {{/rollLess() Probe 0}} + EP*). +
EW: {{ew}}
Automatischer Erfolg (1).
Automatischer Misserfolg (20).
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/talents.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/talents.html index 5e93cf1cbc..418773ab13 100644 --- a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/talents.html +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/legacy/talents.html @@ -1,4 +1,4 @@ - +
{{#rollGreater() Talent -1}} @@ -32,7 +32,6 @@
-
{{#rollGreater() Talent -1}} @@ -70,1448 +69,4 @@
- - -
-{{#rollGreater() Talent -1}} - -{{/rollGreater() Talent -1}} -{{#rollLess() Talent 0}} -
-{{/rollLess() Talent 0}} - - - - - - - - - - - {{#rollWasCrit() Talent}} - - - - {{/rollWasCrit() Talent}} - {{#rollWasFumble() Talent}} - - - - {{/rollWasFumble() Talent}} -
{{name}}
Zauberprobe {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} -{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} -{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} {{#rollGreater() Talent -1}}ge{{/rollGreater() Talent -1}}{{#rollLess() Talent 0}}miss{{/rollLess() Talent 0}}lungen ({{Talent}} ZfP*).
ZfW: {{taw}}Eigenschaften: {{stat1}}/{{stat2}}/{{stat3}}
Auf Mehrfach-1 prüfen!
Auf Mehrfach-20 prüfen!
-
-
- - -
-{{#rollGreater() Liturgie -1}} - -{{/rollGreater() Liturgie -1}} -{{#rollLess() Liturgie 0}} -
-{{/rollLess() Liturgie 0}} - - - - - - - - - - - {{#rollWasCrit() Liturgie}} - - - - {{/rollWasCrit() Liturgie}} - {{#rollWasFumble() Liturgie}} - - - - {{/rollWasFumble() Liturgie}} -
{{name}}
Mirakelprobe {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} -{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} -{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} {{#rollGreater() Liturgie -1}}ge{{/rollGreater() Liturgie -1}}{{#rollLess() Liturgie 0}}miss{{/rollLess() Liturgie 0}}lungen ({{Liturgie}} LkP*).
LkW: {{lkw}}Eigenschaften: {{stat1}}/{{stat2}}/{{stat3}}
Auf Mehrfach-1 prüfen!
Auf Mehrfach-20 prüfen!
-
-
- - -
-{{#rollGreater() Probe -1}} - {{#rollWasCrit() Probe}} - - {{/rollWasCrit() Probe}} - {{#rollWasFumble() Probe}} -
- {{/rollWasFumble() Probe}} - {{#^rollWasCrit() Probe}} - {{#^rollWasFumble() Probe}} -
- {{/^rollWasFumble() Probe}} - {{/^rollWasCrit() Probe}} -{{/rollGreater() Probe -1}} -{{#rollLess() Probe 0}} - {{#rollWasCrit() Probe}} -
- {{/rollWasCrit() Probe}} - {{#rollWasFumble() Probe}} -
- {{/rollWasFumble() Probe}} - {{#^rollWasCrit() Probe}} - {{#^rollWasFumble() Probe}} -
- {{/^rollWasFumble() Probe}} - {{/^rollWasCrit() Probe}} -{{/rollLess() Probe 0}} - - - - - - - - - - {{#rollWasCrit() Probe}} - - - - {{/rollWasCrit() Probe}} - {{#rollWasFumble() Probe}} - - - - {{/rollWasFumble() Probe}} -
{{name}}
Eigenschaftsprobe {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} -{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} -{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} - {{#rollGreater() Probe -1}} - {{#rollWasCrit() Probe}} - gelungen ({{ew}} - {{/rollWasCrit() Probe}} - {{#rollWasFumble() Probe}} - misslungen (? - {{/rollWasFumble() Probe}} - {{#^rollWasCrit() Probe}} - {{#^rollWasFumble() Probe}} - gelungen ({{Probe}} - {{/^rollWasFumble() Probe}} - {{/^rollWasCrit() Probe}} - {{/rollGreater() Probe -1}} - {{#rollLess() Probe 0}} - {{#rollWasCrit() Probe}} - gelungen ({{ew}} - {{/rollWasCrit() Probe}} - {{#rollWasFumble() Probe}} - misslungen (-{{ew}} - {{/rollWasFumble() Probe}} - {{#^rollWasCrit() Probe}} - {{#^rollWasFumble() Probe}} - misslungen ({{Probe}} - {{/^rollWasFumble() Probe}} - {{/^rollWasCrit() Probe}} - {{/rollLess() Probe 0}} - EP*). -
EW: {{ew}}
Automatischer Erfolg (1).
Automatischer Misserfolg (20).
-
-
- - -
- - - - - - - - - - - {{#rollTotal() rg3 1}} - - - - {{/rollTotal() rg3 1}} - {{#rollTotal() rg3 0}} - {{/rollTotal() rg3 0}} -
Initiative für {{char}}: {{ini}}
#W6: - {{#rollTotal() dice 1}} - 1 - {{/rollTotal() dice 1}} - {{#rollTotal() dice 2}} - 2 - {{/rollTotal() dice 2}} - IB: {{IB}}BE: {{BE}}Mod.: {{mod}}
Behinderung aus Rüstung für Initiativewurf aufgrund von Rüstungsgewöhnung III halbiert. Behinderung zusammengesetzt aus Last ({{BE_Last}}) und Behinderung aus Rüstung ({{BE_RG_INI}}).
-
-
- - -
-{{#rollTotal() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} -{{/rollTotal() wurf eff_wert}} -{{#rollLess() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} -{{/rollLess() wurf eff_wert}} -{{#rollGreater() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} -{{/rollGreater() wurf eff_wert}} - - - - {{#rollGreater() ansage 0}} - - - - - - - - -{{/rollGreater() ansage 0}} -{{#^rollGreater() ansage 0}} - - - - - - -{{/^rollGreater() ansage 0}} -{{#rollLess() eff_wert 0}} - - - - {{/rollLess() eff_wert 0}} - {{#rollWasCrit() wurf}} - - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} - - {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} - - {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} - - {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} - - {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} - - {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} - - {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} - - {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} - - {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - - {{/rollWasFumble() wurf}} -
{{name}}
Attacke {{#rollLess() modansage 0}}{{modansage}}{{/rollLess() modansage 0}}{{#rollTotal() modansage 0}}±{{modansage}}{{/rollTotal() modansage 0}}{{#rollGreater() modansage 0}}+{{modansage}}{{/rollGreater() modansage 0}} ({{wurf}}).
AT-Wert: {{wert}}Mod.: {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}}Ansage: {{ansage}}
Attacke {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} ({{wurf}}).
AT-Wert: {{wert}}
Hohe Erschwernis.
Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Glückliche Attacke! Prüfwurf: {{pruefwurf}}.Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Glückliche Attacke! Prüfwurf: {{pruefwurf}}.
Unbestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.Unbestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Unbestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.
-
-
- - -
-{{#rollTotal() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} -{{/rollTotal() wurf eff_wert}} -{{#rollLess() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} -{{/rollLess() wurf eff_wert}} -{{#rollGreater() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} -{{/rollGreater() wurf eff_wert}} - - - -{{#rollGreater() ansage 0}} - - - - - - - - -{{/rollGreater() ansage 0}} -{{#^rollGreater() ansage 0}} - - - - - - -{{/^rollGreater() ansage 0}} -{{#rollLess() eff_wert 0}} - - - -{{/rollLess() eff_wert 0}} -{{#rollWasCrit() wurf}} - - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} - - {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} - - {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} - - {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} - - {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - -{{/rollWasCrit() wurf}} -{{#rollWasFumble() wurf}} - - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} - - {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} - - {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} - - {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} - - {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - -{{/rollWasFumble() wurf}} -
{{name}}
Parade {{#rollLess() modansage 0}}{{modansage}}{{/rollLess() modansage 0}}{{#rollTotal() modansage 0}}±{{modansage}}{{/rollTotal() modansage 0}}{{#rollGreater() modansage 0}}+{{modansage}}{{/rollGreater() modansage 0}} ({{wurf}}).
PA-Wert: {{wert}}Mod.: {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}}Ansage: {{ansage}}
Parade {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} ({{wurf}}).
PA-Wert: {{wert}}
Hohe Erschwernis.
Glückliche Parade! Prüfwurf: {{pruefwurf}}.Gewöhnliche Parade! Prüfwurf: {{pruefwurf}}.Glückliche Parade! Prüfwurf: {{pruefwurf}}.Glückliche Parade! Prüfwurf: {{pruefwurf}}.Gewöhnliche Parade! Prüfwurf: {{pruefwurf}}.
Unbestätigter Paradepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Attackepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.Unbestätigter Paradepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Unbestätigter Paradepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Paradepatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.
-
-
- - -
-{{#rollTotal() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} -{{/rollTotal() wurf eff_wert}} -{{#rollLess() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} -{{/rollLess() wurf eff_wert}} -{{#rollGreater() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} -{{/rollGreater() wurf eff_wert}} - - - -{{#rollGreater() ansage 0}} - - - - - - - - - - - - - - -{{/rollGreater() ansage 0}} -{{#^rollGreater() ansage 0}} - - - - - - - - - - - -{{/^rollGreater() ansage 0}} -{{#rollLess() eff_wert 0}} - - - -{{/rollLess() eff_wert 0}} -{{#rollWasCrit() wurf}} - - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} - - {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} - - {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} - - {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} - - {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - -{{/rollWasCrit() wurf}} -{{#rollWasFumble() wurf}} - - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} - - {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} - - {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} - - {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} - - {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - -{{/rollWasFumble() wurf}} - - - -
{{name}}
Ausweichen {{#rollLess() modansage 0}}{{modansage}}{{/rollLess() modansage 0}}{{#rollTotal() modansage 0}}±{{modansage}}{{/rollTotal() modansage 0}}{{#rollGreater() modansage 0}}+{{modansage}}{{/rollGreater() modansage 0}} ({{wurf}}).
PA-Basis: {{pa}}BE: {{be}}
A.-Mod.: {{ausweichenmod}}P.-Mod.: {{#rollLess() probenmod 0}}{{probenmod}}{{/rollLess() probenmod 0}}{{#rollTotal() probenmod 0}}±{{probenmod}}{{/rollTotal() probenmod 0}}{{#rollGreater() probenmod 0}}+{{probenmod}}{{/rollGreater() probenmod 0}}
Ansage: {{ansage}}
Ausweichen {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} ({{wurf}}).
PA-Basis: {{pa}}BE: {{be}}
A.-Mod.: {{ausweichenmod}}P.-Mod.: {{#rollLess() probenmod 0}}{{probenmod}}{{/rollLess() probenmod 0}}{{#rollTotal() probenmod 0}}±{{probenmod}}{{/rollTotal() probenmod 0}}{{#rollGreater() probenmod 0}}+{{probenmod}}{{/rollGreater() probenmod 0}}
Hohe Erschwernis.
Glückliches Ausweichen! Prüfwurf: {{pruefwurf}}.Gewöhnliches Ausweichen! Prüfwurf: {{pruefwurf}}.Glückliches Ausweichen! Prüfwurf: {{pruefwurf}}.Glückliches Ausweichen! Prüfwurf: {{pruefwurf}}.Gewöhnliches Ausweichen! Prüfwurf: {{pruefwurf}}.
Unbestätigter Ausweichenpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Ausweichenpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.Unbestätigter Ausweichenpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Unbestätigter Ausweichenpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Ausweichenpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.
Hinweise zu Ausweichen-Proben.
-
-
- - -
-{{#rollLess() eff_wert 0}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf wert}} -
- {{/rollTotal() pruefwurf wert}} - {{#rollLess() pruefwurf wert}} -
- {{/rollLess() pruefwurf wert}} - {{#rollGreater() pruefwurf wert}} -
- {{/rollGreater() pruefwurf wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} -{{/rollLess() eff_wert 0}} -{{#^rollLess() eff_wert 0}} - {{#rollTotal() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf wert}} -
- {{/rollTotal() pruefwurf wert}} - {{#rollLess() pruefwurf wert}} -
- {{/rollLess() pruefwurf wert}} - {{#rollGreater() pruefwurf wert}} -
- {{/rollGreater() pruefwurf wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} - {{/rollTotal() wurf eff_wert}} - {{#rollLess() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf wert}} -
- {{/rollTotal() pruefwurf wert}} - {{#rollLess() pruefwurf wert}} -
- {{/rollLess() pruefwurf wert}} - {{#rollGreater() pruefwurf wert}} -
- {{/rollGreater() pruefwurf wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} - {{/rollLess() wurf eff_wert}} - {{#rollGreater() wurf eff_wert}} - {{#rollWasCrit() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf eff_wert}} -
- {{/rollTotal() pruefwurf eff_wert}} - {{#rollLess() pruefwurf eff_wert}} -
- {{/rollLess() pruefwurf eff_wert}} - {{#rollGreater() pruefwurf eff_wert}} -
- {{/rollGreater() pruefwurf eff_wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - {{#rollWasCrit() pruefwurf}} -
- {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} -
- {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf wert}} -
- {{/rollTotal() pruefwurf wert}} - {{#rollLess() pruefwurf wert}} -
- {{/rollLess() pruefwurf wert}} - {{#rollGreater() pruefwurf wert}} -
- {{/rollGreater() pruefwurf wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - {{/rollWasFumble() wurf}} - {{#^rollWasCrit() wurf}} - {{#^rollWasFumble() wurf}} -
- {{/^rollWasFumble() wurf}} - {{/^rollWasCrit() wurf}} - {{/rollGreater() wurf eff_wert}} -{{/^rollLess() eff_wert 0}} - - - -{{#rollGreater() ansage 0}} - - - -{{#rollGreater() ZieleKampfgetuemmel 1}} - - - -{{/rollGreater() ZieleKampfgetuemmel 1}} - - - - - -{{/rollGreater() ansage 0}} -{{#^rollGreater() ansage 0}} - - - -{{#rollGreater() ZieleKampfgetuemmel 1}} - - - -{{/rollGreater() ZieleKampfgetuemmel 1}} - - - -{{/^rollGreater() ansage 0}} -{{#rollLess() eff_wert 0}} - - - - {{#rollWasFumble() wurf}} - - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} - - {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf wert}} - - {{/rollTotal() pruefwurf wert}} - {{#rollLess() pruefwurf wert}} - - {{/rollLess() pruefwurf wert}} - {{#rollGreater() pruefwurf wert}} - - {{/rollGreater() pruefwurf wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - - {{/rollWasFumble() wurf}} -{{/rollLess() eff_wert 0}} -{{#^rollLess() eff_wert 0}} - {{#rollWasCrit() wurf}} - - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} - - {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf wert}} - - {{/rollTotal() pruefwurf wert}} - {{#rollLess() pruefwurf wert}} - - {{/rollLess() pruefwurf wert}} - {{#rollGreater() pruefwurf wert}} - - {{/rollGreater() pruefwurf wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - - {{/rollWasCrit() wurf}} - {{#rollWasFumble() wurf}} - - {{#rollWasCrit() pruefwurf}} - - {{/rollWasCrit() pruefwurf}} - {{#rollWasFumble() pruefwurf}} - - {{/rollWasFumble() pruefwurf}} - {{#^rollWasCrit() pruefwurf}} - {{#^rollWasFumble() pruefwurf}} - {{#rollTotal() pruefwurf wert}} - - {{/rollTotal() pruefwurf wert}} - {{#rollLess() pruefwurf wert}} - - {{/rollLess() pruefwurf wert}} - {{#rollGreater() pruefwurf wert}} - - {{/rollGreater() pruefwurf wert}} - {{/^rollWasFumble() pruefwurf}} - {{/^rollWasCrit() pruefwurf}} - - {{/rollWasFumble() wurf}} -{{/^rollLess() eff_wert 0}} -{{#rollTotal() ammohint 0}} - - - -{{/rollTotal() ammohint 0}} -{{#rollTotal() ammohint 1}} - - - -{{/rollTotal() ammohint 1}} -{{#rollTotal() ammohint 2}} - - - -{{/rollTotal() ammohint 2}} -
{{name}}
- FK-Angriff {{#rollLess() modansage 0}}{{modansage}}{{/rollLess() modansage 0}}{{#rollTotal() modansage 0}}±{{modansage}}{{/rollTotal() modansage 0}}{{#rollGreater() modansage 0}}+{{modansage}}{{/rollGreater() modansage 0}} ({{wurf}}). -
- Schuss ins Kampfgetümmel trifft - {{#^rollGreater() wurf eff_wert}}das beabsichtigte Ziel.{{/^rollGreater() wurf eff_wert}} - {{#^rollWasFumble() wurf}} - {{#rollGreater() wurf eff_wert}} - {{#^rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} - zufällig einen der {{ZieleKampfgetuemmel}} Beteiligten. - {{/^rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} - {{#rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} - niemanden. - {{/rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} - {{/rollGreater() wurf eff_wert}} - {{/^rollWasFumble() wurf}} - {{#rollWasFumble() wurf}} - niemanden. - {{/rollWasFumble() wurf}} -
FK-Wert: {{wert}}Mod.: {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}} -{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}} -{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}}Ansage: {{ansage}}
FK-Angriff {{#rollLess() mod 0}}{{mod}}{{/rollLess() mod 0}}{{#rollTotal() mod 0}}±{{mod}}{{/rollTotal() mod 0}}{{#rollGreater() mod 0}}+{{mod}}{{/rollGreater() mod 0}} ({{wurf}}).
- Schuss ins Kampfgetümmel trifft - {{#^rollGreater() wurf eff_wert}}das beabsichtigte Ziel.{{/^rollGreater() wurf eff_wert}} - {{#^rollWasFumble() wurf}} - {{#rollGreater() wurf eff_wert}} - {{#^rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} - zufällig einen der {{ZieleKampfgetuemmel}} Beteiligten. - {{/^rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} - {{#rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} - niemanden. - {{/rollGreater() wurf eff_wert_ohne_kampfgetuemmel}} - {{/rollGreater() wurf eff_wert}} - {{/^rollWasFumble() wurf}} - {{#rollWasFumble() wurf}} - niemanden. - {{/rollWasFumble() wurf}} -
FK-Wert: {{wert}}
Automatischer Misserfolg.
Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.
Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Glückliche Attacke! Prüfwurf: {{pruefwurf}}.Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Kritischer Treffer! Prüfwurf: {{pruefwurf}}. Besondere Auswirkungen eines unparierten Treffers beachten.Glückliche Attacke! Prüfwurf: {{pruefwurf}}.
Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Unbestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen zum Glück verhindert.Bestätigter Fernkampfpatzer! Prüfwurf: {{pruefwurf}}. Auswirkungen erwürfeln.
Verbleibende Munition: {{ammoRemaining}}.
Hinweis: Wurf wurde ausgeführt, ohne dass Munition vorhanden war.
Hinweis: Munitionswert ungültig. ℹ️
-
-
- - -
- - - - - - - - {{#rollLess() damage 0}} - - - - {{/rollLess() damage 0}} -
{{name}}treffer
{{damage}} - {{#rollTotal() TPArt 0}}TP{{/rollTotal() TPArt 0}} - {{#rollTotal() TPArt 1}}TP(A){{/rollTotal() TPArt 1}} - auf - {{#rollTotal() zone 1}} - {{#rollTotal() target 0}}das linke Bein{{/rollTotal() target 0}} - {{#rollTotal() target 1}}den Schwanz{{/rollTotal() target 1}} - {{#rollTotal() target 2}}den Bauch{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 1}} - {{#rollTotal() zone 2}} - {{#rollTotal() target 0}}das rechte Bein{{/rollTotal() target 0}} - {{#rollTotal() target 1}}den Schwanz{{/rollTotal() target 1}} - {{#rollTotal() target 2}}den Bauch{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 2}} - {{#rollTotal() zone 3}} - {{#rollBetween() target 0 1}}das linke Bein{{/rollBetween() target 0 1}} - {{#rollTotal() target 2}}den Schildarm{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 3}} - {{#rollTotal() zone 4}} - {{#rollBetween() target 0 1}}das rechte Bein{{/rollBetween() target 0 1}} - {{#rollTotal() target 2}}den Schwertarm{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 4}} - {{#rollTotal() zone 5}} - {{#rollBetween() target 0 1}}das linke Bein{{/rollBetween() target 0 1}} - {{#rollTotal() target 2}}den Schildarm{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 5}} - {{#rollTotal() zone 6}} - {{#rollBetween() target 0 1}}das rechte Bein{{/rollBetween() target 0 1}} - {{#rollTotal() target 2}}den Schwertarm{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 6}} - {{#rollTotal() zone 7}} - {{#rollBetween() target 0 1}}den Bauch{{/rollBetween() target 0 1}} - {{#rollTotal() target 2}}den Schildarm{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 7}} - {{#rollTotal() zone 8}} - {{#rollBetween() target 0 1}}den Bauch{{/rollBetween() target 0 1}} - {{#rollTotal() target 2}}den Schwertarm{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den Rumpf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 8}} - {{#rollTotal() zone 9}} - {{#rollBetween() target 0 2}}den Schildarm{{/rollBetween() target 0 2}} - {{#rollTotal() target 3}}den linken Vorderlauf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 9}} - {{#rollTotal() zone 10}} - {{#rollBetween() target 0 2}}den Schwertarm{{/rollBetween() target 0 2}} - {{#rollTotal() target 3}}den rechten Vorderlauf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 10}} - {{#rollTotal() zone 11}} - {{#rollBetween() target 0 1}}den Schildarm{{/rollBetween() target 0 1}} - {{#rollTotal() target 2}}die Brust{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den linken Hinterlauf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das linke Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 11}} - {{#rollTotal() zone 12}} - {{#rollBetween() target 0 1}}den Schwertarm{{/rollBetween() target 0 1}} - {{#rollTotal() target 2}}die Brust{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den rechten Hinterlauf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}das rechte Bein{{/rollTotal() target 4}} - {{/rollTotal() zone 12}} - {{#rollTotal() zone 13}} - {{#rollBetween() target 0 1}}den Schildarm{{/rollBetween() target 0 1}} - {{#rollTotal() target 2}}die Brust{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den linken Vorderlauf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}den Bauch{{/rollTotal() target 4}} - {{/rollTotal() zone 13}} - {{#rollTotal() zone 14}} - {{#rollBetween() target 0 1}}den Schwertarm{{/rollBetween() target 0 1}} - {{#rollTotal() target 2}}die Brust{{/rollTotal() target 2}} - {{#rollTotal() target 3}}den rechten Vorderlauf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}den Bauch{{/rollTotal() target 4}} - {{/rollTotal() zone 14}} - {{#rollTotal() zone 15}} - {{#rollBetween() target 0 2}}die Brust{{/rollBetween() target 0 2}} - {{#rollTotal() target 3}}den linken Hinterlauf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}den Schildarm{{/rollTotal() target 4}} - {{/rollTotal() zone 15}} - {{#rollTotal() zone 16}} - {{#rollBetween() target 0 2}}die Brust{{/rollBetween() target 0 2}} - {{#rollTotal() target 3}}den rechten Hinterlauf{{/rollTotal() target 3}} - {{#rollTotal() target 4}}den Schwertarm{{/rollTotal() target 4}} - {{/rollTotal() zone 16}} - {{#rollTotal() zone 17}} - {{#rollBetween() target 0 1}}die Brust{{/rollBetween() target 0 1}} - {{#rollBetween() target 2 3}}den Kopf{{/rollBetween() target 2 3}} - {{#rollTotal() target 4}}den Schildarm{{/rollTotal() target 4}} - {{/rollTotal() zone 17}} - {{#rollTotal() zone 18}} - {{#rollBetween() target 0 1}}die Brust{{/rollBetween() target 0 1}} - {{#rollBetween() target 2 3}}den Kopf{{/rollBetween() target 2 3}} - {{#rollTotal() target 4}}den Schwertarm{{/rollTotal() target 4}} - {{/rollTotal() zone 18}} - {{#rollTotal() zone 19}} - {{#rollBetween() target 0 3}}den Kopf{{/rollBetween() target 0 3}} - {{#rollTotal() target 4}}den Schildarm{{/rollTotal() target 4}} - {{/rollTotal() zone 19}} - {{#rollTotal() zone 20}} - {{#rollBetween() target 0 2}}den Kopf{{/rollBetween() target 0 2}} - {{#rollTotal() target 3}}den Schwanz{{/rollTotal() target 3}} - {{#rollTotal() target 4}}den Schwertarm{{/rollTotal() target 4}} - {{/rollTotal() zone 20}} - ({{zone}}) -
Hinweis: Werte kleiner null zählen als null. *
-
- -
- - -
- - - - - - - -
{{name}}treffer
{{damage}} TP auf {{target}}.
-
-
- - -
- - - - - - - - - {{#rollTotal() art 0}} - - - - - {{/rollTotal() art 0}} - {{#rollTotal() art 1}} - - - - - - - {{/rollTotal() art 1}} -
{{name}} - {{#rollTotal() zone 0}}(Kopf){{/rollTotal() zone 0}} - {{#rollTotal() zone 1}}(Brust){{/rollTotal() zone 1}} - {{#rollTotal() zone 2}}(Rücken){{/rollTotal() zone 2}} - {{#rollTotal() zone 3}}(Bauch){{/rollTotal() zone 3}} - {{#rollTotal() zone 4}}(linker Arm){{/rollTotal() zone 4}} - {{#rollTotal() zone 5}}(rechter Arm){{/rollTotal() zone 5}} - {{#rollTotal() zone 6}}(linkes Bein){{/rollTotal() zone 6}} - {{#rollTotal() zone 7}}(rechtes Bein){{/rollTotal() zone 7}}
RS: {{RS}}WS: {{WS}}
TP: {{TP}}SP: {{SP}}
TP(A): {{TP}}SP(A): {{SP}} -
SP: {{SPausSPA}}
-
-
- - -
- - - - - - - -
{{name}}
- {{#rollTotal() wurf 2}}Auswirkung: Waffe zerstört - {{/rollTotal() wurf 2}} - {{#rollTotal() wurf 3}} - Auswirkung: Waffe beschädigt - {{/rollTotal() wurf 3}} - {{#rollBetween() wurf 4 10}} - Auswirkung: Fehlschuss - {{/rollBetween() wurf 4 10}} - {{#rollBetween() wurf 11 12}} - Auswirkung: Kameraden getroffen - {{/rollBetween() wurf 11 12}} - ({{wurf}}) -
-
-
- + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/outro.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/outro.html index 52560dd5b6..a1b59c9d0f 100644 --- a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/outro.html +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/outro.html @@ -1,3 +1,3 @@ - - - + + + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/astralmeditation.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/astralmeditation.html new file mode 100644 index 0000000000..093f2f170e --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/astralmeditation.html @@ -0,0 +1,149 @@ + + +
+
+ + + + + + + +
Astrale Meditation
Umwandlungsziel auf {{maxconv}} LeP gesetzt.
+
+
+
+ + +
+
+ + + + + {{#impossible}} + + + + {{/impossible}} + {{#notrequired}} + + {{^automode}} + + {{/automode}} + {{#automode}} + + {{/automode}} + + {{/notrequired}} + {{^notrequired}} + {{#rollTotal() computed::checkresult 0}} + + + + + + + + {{#^rollTotal() setup 3}} + + + + + + + + {{/^rollTotal() setup 3}} + {{/rollTotal() computed::checkresult 0}} + {{#rollTotal() computed::checkresult 1}} + + + + {{#rollTotal() setup 2}} + + + + {{/rollTotal() setup 2}} + + + + + + + + + + + + + + + + + + + + + + + + + + + {{#aegainleyline}} + + + + + {{/aegainleyline}} + {{/rollTotal() computed::checkresult 1}} + {{#^rollTotal() computed::criticality 0}} + + + + {{/^rollTotal() computed::criticality 0}} + {{/notrequired}} +
Astrale Meditation {{#limbo}}im Limbus{{/limbo}} + {{#rollTotal() setup 1}} + (mit Sonderfertigkeit, ohne Thonnys) + {{/rollTotal() setup 1}} + {{#rollTotal() setup 2}} + (ohne Sonderfertigkeit, mit Thonnys) + {{/rollTotal() setup 2}} + {{#rollTotal() setup 3}} + (mit Sonderfertigkeit, mit Thonnys) + {{/rollTotal() setup 3}} +
Keine astrale Meditation durchführbar. Das kann die folgenden Gründe haben: +
    +
  • Der Charakter verfügt weder über die Sonderfertigkeit „Astrale Meditation“, noch über Thonnys.
  • +
  • Die Astralenergie reicht nicht aus, um die astrale Meditation zu beginnen. Nur bei Verwendung von Thonnys in Verbindung mit der Sonderfertigkeit „Astrale Meditation“ wird keine Astralenergie zur Einleitung der Meditation benötigt.
  • +
  • Die noch vorhandene Lebensenergie reicht nicht oder nicht sicher ℹ️ aus, um die Meditation durchzuführen.
  • +
+
Keine astrale Meditation durchführbar. Die Astralenergie befindet sich bereits auf oder über dem Maximum ({{ae}}/{{aemax}}).Keine astrale Meditation im Automatikmodus durchführbar. Das kann die folgenden Gründe haben: +
    +
  • Der Charakter verfügt nicht über ausreichend Lebensenergie, um nach der Meditation sicher über einen der Schwellwerte der Automatik zu verbleiben.
  • +
  • Die Menge zu regenerierender Astralenergie ist absolut oder relativ zum Maximum zu gering.
  • +
+ Genaue Informationen zur Funktionsweise der Automatik enthält der dazugehörige Infotext. +
Astrale Meditation ist misslungen ({{computed::checkrollresults}}).
Mod: {{computed::mod}}Eigenschaften: {{computed::stats}}
🌟 Astralenergie: {{ae}} AsP ➞ {{computed::aeneu}} AsP
Einleitung{{computed::aelossinitiation}} AsP
Astrale Meditation ist gelungen ({{computed::checkrollresults}}) und dauert {{computed::duration}} SR.
Maximal umwandelbare Lebensenergie durch Fehlen der Sonderfertigkeit und alleinige Nutzung von Thonnys begrenzt auf {{thonnyslimit}} LeP. + {{#rollGreater() conversiontarget thonnyslimit}} + Gewünschte Menge umzuwandelnder Lebensenergie ({{conversiontarget}} LeP) kann mit der eingesetzten Menge Thonnys leider nicht erreicht werden. Es werden daher nur {{thonnyslimit}} LeP umgewandelt. Die Dauer der Meditation verändert sich damit entsprechend auf {{thonnyslimit}} SR. + {{/rollGreater() conversiontarget thonnyslimit}} +
Mod: {{computed::mod}}Eigenschaften: {{computed::stats}}
🩸 Lebensenergie: {{le}} LeP ➞ {{computed::leneu}} LeP
Umwandlung{{computed::lelossconversion}} LeP
zusätzlicher Verlust{{computed::lelossadditional}} LeP
🌟 Astralenergie: {{ae}} AsP ➞ {{computed::aeneu}} AsP
Einleitung{{computed::aelossinitiation}} AsP
Umwandlung{{^limbo}}{{computed::aegainconversion}}{{/limbo}}{{#limbo}}{{computed::conversiontarget}}{{/limbo}} AsP
Kraftlinie/-knoten{{computed::aegainleyline}} AsP
Bei der Probe wurde eine + {{#rollTotal() computed::criticality -3}} + Dreifach-20 + {{/rollTotal() computed::criticality -3}} + {{#rollTotal() computed::criticality -2}} + Doppel-20 + {{/rollTotal() computed::criticality -2}} + {{#rollTotal() computed::criticality 2}} + Doppel-1 + {{/rollTotal() computed::criticality 2}} + {{#rollTotal() computed::criticality 3}} + Dreifach-1 + {{/rollTotal() computed::criticality 3}} + ({{computed::checkrollresults}}) gewürfelt. Die Probe zur astralen Meditation ist keine gewöhnliche Talentprobe, weshalb regeltechnisch nicht davon auszugehen ist, dass Mehrfach-1 oder Mehrfach-20 besonders zu behandeln sind. Ob dieses Ergebnis besondere Auswirkungen nach sich zieht, ist daher Meisterentscheid.
+
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/deepbreath.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/deepbreath.html new file mode 100644 index 0000000000..e511d8c893 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/deepbreath.html @@ -0,0 +1,52 @@ + + +
+
+ + + + + {{#rollTotal() aurequired 1}} + + + + + + + + {{/rollTotal() aurequired 1}} + {{#rollTotal() computed::xhrequired 1}} + + + + {{/rollTotal() computed::xhrequired 1}} + {{#rollTotal() computed::oxrequired 1}} + {{#rollLess() ox oxmax}} + + + + {{/rollLess() ox oxmax}} + {{#rollTotal() computed::oxnew oxmax}} + + + + {{/rollTotal() computed::oxnew oxmax}} + {{#rollTotal() ox oxmax}} + + + + + + + {{/rollTotal() ox oxmax}} + {{/rollTotal() computed::oxrequired 1}} + {{#nonerequired}} + + + + {{/nonerequired}} +
Regeneration (Atem holen)
👟 Ausdauer: {{au}} AuP ➞ {{computed::aunew}} AuP
Regeneration{{computed::aubase}} AuP
😮‍💨 Erschöpfung: {{xh}} ➞ {{computed::xhnew}}
🥵 Überanstrengung: {{ox}} ➞ {{computed::oxnew}}
Über­an­stren­gungs­grenze erreicht. Charakter bricht zusammen.
🥵 Überanstrengung: {{ox}}
Über­an­stren­gungs­grenze war bereits vor dem Atemholen erreicht. {{charactername}} war daher bereits vor der Probe zu­sam­men­ge­brochen und „Atem holen“ hätte regeltechnisch nicht eingesetzt werden dürfen.
Keine Regeneration notwendig, daher wurde kein Atemholen ausgeführt.
+
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/intro.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/intro.html new file mode 100644 index 0000000000..ca8f7d45a2 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/intro.html @@ -0,0 +1,3 @@ + + + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/karmicmeditation.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/karmicmeditation.html new file mode 100644 index 0000000000..bd20dc28b0 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/karmicmeditation.html @@ -0,0 +1,48 @@ + + +
+
+ + + + + {{#notrequired}} + + + + {{/notrequired}} + {{^notrequired}} + + {{#rollTotal() computed::checkresult 0}} + + {{/rollTotal() computed::checkresult 0}} + {{#rollTotal() computed::checkresult 1}} + + {{/rollTotal() computed::checkresult 1}} + + + + + + {{#rollTotal() computed::checkresult 1}} + + + + + + + + + + + + + + + {{/rollTotal() computed::checkresult 1}} + {{/notrequired}} +
Karmale Meditation
Keine karmale Meditation durchführbar. Die Karmalenergie befindet sich bereits auf oder über dem Maximum ({{ke}}/{{kemax}}).
Liturgiekenntnisprobe {{computed::mod}} mit {{computed::checkpoints}} LkP* misslungen ({{computed::checkroll}}).Liturgiekenntnisprobe {{computed::mod}} mit {{computed::checkpoints}} LkP* gelungen ({{computed::checkroll}}).
LkW: {{wert}}Eigenschaften: {{computed::stats}}
🙏 Karmaenergie: {{ke}} KaP ➞ {{computed::ke}} KaP
Meditation{{computed::kegain}} KaP
🤩 Entrückung: {{entrueckung}} ➞ {{computed::entrueckung}}
Meditation{{computed::entrueckunggain}}
+
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/outro.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/outro.html new file mode 100644 index 0000000000..92dce28276 --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/outro.html @@ -0,0 +1,3 @@ + + + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/relax.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/relax.html new file mode 100644 index 0000000000..9629a124ac --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/relax.html @@ -0,0 +1,49 @@ + + +
+
+ + {{#nonerequired}} + + + + + + + {{/nonerequired}} + {{^nonerequired}} + {{#rollTotal() duration 0}} + + + + + + + {{/rollTotal() duration 0}} + {{#rollGreater() duration 0}} + + + + + + + + + + + + + + + {{/rollGreater() duration 0}} + {{#rollGreater() duration 11}} + + + + {{/rollGreater() duration 11}} + {{/nonerequired}} +
Regeneration (Ausruhen{{#automode}} im Auto­ma­tik­modus{{/automode}})
Keine Regeneration notwendig, daher wurde kein Ausruhen ausgeführt.
Regeneration (Ausruhen{{#automode}} im Auto­ma­tik­modus{{/automode}})
Kein Ausruhen {{#automode}}im Auto­ma­tik­modus{{/automode}} durchführbar, da die Dauer bei 0 SR liegt.
Regeneration (Ausruhen {{#automode}}im Auto­ma­tik­modus{{/automode}} für {{duration}} SR)
👟 Ausdauer: {{au}} AuP ➞ {{computed::aunew}} AuP
Regeneration{{computed::aubase}} AuP
KO-Proben{{computed::auko}} AuP
Hinweis: Kein Abbau von Überanstrengung und Erschöpfung mit dieser Regenerationsart trotz Dauer von mindestens einer Stunde. „Rast“ für längeres Ausruhen in Stunden mit Abbau von Überanstrengung und Erschöpfung verwenden.
+
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/rest.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/rest.html new file mode 100644 index 0000000000..d0e069dc8d --- /dev/null +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/rest.html @@ -0,0 +1,75 @@ + + +
+
+ + {{#nonerequired}} + + + + + + + {{/nonerequired}} + {{#rollTotal() duration 0}} + + + + + + + {{/rollTotal() duration 0}} + {{#rollGreater() duration 0}} + + + + {{#foodrestriction}} + + + + {{/foodrestriction}} + {{#addictioneffect}} + {{#^rollTotal() addictioneffect 0}} + + + + {{/^rollTotal() addictioneffect 0}} + {{/addictioneffect}} + {{#rollTotal() aurequired 1}} + + + + {{/rollTotal() aurequired 1}} + {{#rollTotal() computed::xhrequired 1}} + + + + + + + + {{/rollTotal() computed::xhrequired 1}} + {{#rollTotal() computed::oxrequired 1}} + + + + + + + + {{/rollTotal() computed::oxrequired 1}} + {{#rollTotal() computed::rtrequired 1}} + + + + + + + + {{/rollTotal() computed::rtrequired 1}} + {{/rollGreater() duration 0}} +
Regeneration (Rast{{#automode}} im Auto­ma­tik­modus{{/automode}})
Keine Regeneration notwendig, daher wurde keine Rast durchgeführt.
Regeneration (Rast{{#automode}} im Auto­ma­tik­modus{{/automode}})
Keine Rast {{#automode}}im Auto­ma­tik­modus{{/automode}} durchführbar, da die Dauer bei 0 h liegt. {{#automode}}Mögliche Ursachen: Entzug, Verstoß gegen Nah­rungs­ein­schrän­kun­gen.{{/automode}}
Regeneration (Rast für {{duration}} h)
{{charactername}} hat gegen seine Nah­rungs­ein­schrän­kun­gen verstoßen und regeneriert daher {{#rollTotal() foodrestriction 2}}keine Erschöpfung und Überanstrengung{{/rollTotal() foodrestriction 2}}.
{{charactername}} ist auf Entzug ({{addictiondrug}}) und regeneriert daher keine Erschöpfung und Überanstrengung.
👟 Ausdauer: {{au}} AuP ➞ {{computed::aunew}} AuP
😮‍💨 Erschöpfung: {{xh}} ➞ {{computed::xhnew}}
Abbau durch Regeneration{{computed::xhloss}}
🥵 Überanstrengung: {{ox}} ➞ {{computed::oxnew}}
Abbau durch Regeneration{{computed::oxloss}}
🤩 Entrückung: {{rt}} ➞ {{computed::rtnew}}
Verlust durch Rasten{{computed::rtloss}}
+
+
+
+ diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/sleep.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/sleep.html index 8c0d278b40..d0f6aeb1eb 100644 --- a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/sleep.html +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/regeneration/sleep.html @@ -1,4 +1,4 @@ - +
@@ -291,372 +291,4 @@
- - -
-
- - - - - {{#rollTotal() aurequired 1}} - - - - - - - - {{/rollTotal() aurequired 1}} - {{#rollTotal() computed::xhrequired 1}} - - - - {{/rollTotal() computed::xhrequired 1}} - {{#rollTotal() computed::oxrequired 1}} - {{#rollLess() ox oxmax}} - - - - {{/rollLess() ox oxmax}} - {{#rollTotal() computed::oxnew oxmax}} - - - - {{/rollTotal() computed::oxnew oxmax}} - {{#rollTotal() ox oxmax}} - - - - - - - {{/rollTotal() ox oxmax}} - {{/rollTotal() computed::oxrequired 1}} - {{#nonerequired}} - - - - {{/nonerequired}} -
Regeneration (Atem holen)
👟 Ausdauer: {{au}} AuP ➞ {{computed::aunew}} AuP
Regeneration{{computed::aubase}} AuP
😮‍💨 Erschöpfung: {{xh}} ➞ {{computed::xhnew}}
🥵 Überanstrengung: {{ox}} ➞ {{computed::oxnew}}
Über­an­stren­gungs­grenze erreicht. Charakter bricht zusammen.
🥵 Überanstrengung: {{ox}}
Über­an­stren­gungs­grenze war bereits vor dem Atemholen erreicht. {{charactername}} war daher bereits vor der Probe zu­sam­men­ge­brochen und „Atem holen“ hätte regeltechnisch nicht eingesetzt werden dürfen.
Keine Regeneration notwendig, daher wurde kein Atemholen ausgeführt.
-
-
-
- - -
-
- - {{#nonerequired}} - - - - - - - {{/nonerequired}} - {{^nonerequired}} - {{#rollTotal() duration 0}} - - - - - - - {{/rollTotal() duration 0}} - {{#rollGreater() duration 0}} - - - - - - - - - - - - - - - {{/rollGreater() duration 0}} - {{#rollGreater() duration 11}} - - - - {{/rollGreater() duration 11}} - {{/nonerequired}} -
Regeneration (Ausruhen{{#automode}} im Auto­ma­tik­modus{{/automode}})
Keine Regeneration notwendig, daher wurde kein Ausruhen ausgeführt.
Regeneration (Ausruhen{{#automode}} im Auto­ma­tik­modus{{/automode}})
Kein Ausruhen {{#automode}}im Auto­ma­tik­modus{{/automode}} durchführbar, da die Dauer bei 0 SR liegt.
Regeneration (Ausruhen {{#automode}}im Auto­ma­tik­modus{{/automode}} für {{duration}} SR)
👟 Ausdauer: {{au}} AuP ➞ {{computed::aunew}} AuP
Regeneration{{computed::aubase}} AuP
KO-Proben{{computed::auko}} AuP
Hinweis: Kein Abbau von Überanstrengung und Erschöpfung mit dieser Regenerationsart trotz Dauer von mindestens einer Stunde. „Rast“ für längeres Ausruhen in Stunden mit Abbau von Überanstrengung und Erschöpfung verwenden.
-
-
-
- - -
-
- - {{#nonerequired}} - - - - - - - {{/nonerequired}} - {{#rollTotal() duration 0}} - - - - - - - {{/rollTotal() duration 0}} - {{#rollGreater() duration 0}} - - - - {{#foodrestriction}} - - - - {{/foodrestriction}} - {{#addictioneffect}} - {{#^rollTotal() addictioneffect 0}} - - - - {{/^rollTotal() addictioneffect 0}} - {{/addictioneffect}} - {{#rollTotal() aurequired 1}} - - - - {{/rollTotal() aurequired 1}} - {{#rollTotal() computed::xhrequired 1}} - - - - - - - - {{/rollTotal() computed::xhrequired 1}} - {{#rollTotal() computed::oxrequired 1}} - - - - - - - - {{/rollTotal() computed::oxrequired 1}} - {{#rollTotal() computed::rtrequired 1}} - - - - - - - - {{/rollTotal() computed::rtrequired 1}} - {{/rollGreater() duration 0}} -
Regeneration (Rast{{#automode}} im Auto­ma­tik­modus{{/automode}})
Keine Regeneration notwendig, daher wurde keine Rast durchgeführt.
Regeneration (Rast{{#automode}} im Auto­ma­tik­modus{{/automode}})
Keine Rast {{#automode}}im Auto­ma­tik­modus{{/automode}} durchführbar, da die Dauer bei 0 h liegt. {{#automode}}Mögliche Ursachen: Entzug, Verstoß gegen Nah­rungs­ein­schrän­kun­gen.{{/automode}}
Regeneration (Rast für {{duration}} h)
{{charactername}} hat gegen seine Nah­rungs­ein­schrän­kun­gen verstoßen und regeneriert daher {{#rollTotal() foodrestriction 2}}keine Erschöpfung und Überanstrengung{{/rollTotal() foodrestriction 2}}.
{{charactername}} ist auf Entzug ({{addictiondrug}}) und regeneriert daher keine Erschöpfung und Überanstrengung.
👟 Ausdauer: {{au}} AuP ➞ {{computed::aunew}} AuP
😮‍💨 Erschöpfung: {{xh}} ➞ {{computed::xhnew}}
Abbau durch Regeneration{{computed::xhloss}}
🥵 Überanstrengung: {{ox}} ➞ {{computed::oxnew}}
Abbau durch Regeneration{{computed::oxloss}}
🤩 Entrückung: {{rt}} ➞ {{computed::rtnew}}
Verlust durch Rasten{{computed::rtloss}}
-
-
-
- - -
-
- - - - - - - -
Astrale Meditation
Umwandlungsziel auf {{maxconv}} LeP gesetzt.
-
-
-
- - -
-
- - - - - {{#impossible}} - - - - {{/impossible}} - {{#notrequired}} - - {{^automode}} - - {{/automode}} - {{#automode}} - - {{/automode}} - - {{/notrequired}} - {{^notrequired}} - {{#rollTotal() computed::checkresult 0}} - - - - - - - - {{#^rollTotal() setup 3}} - - - - - - - - {{/^rollTotal() setup 3}} - {{/rollTotal() computed::checkresult 0}} - {{#rollTotal() computed::checkresult 1}} - - - - {{#rollTotal() setup 2}} - - - - {{/rollTotal() setup 2}} - - - - - - - - - - - - - - - - - - - - - - - - - - - {{#aegainleyline}} - - - - - {{/aegainleyline}} - {{/rollTotal() computed::checkresult 1}} - {{#^rollTotal() computed::criticality 0}} - - - - {{/^rollTotal() computed::criticality 0}} - {{/notrequired}} -
Astrale Meditation {{#limbo}}im Limbus{{/limbo}} - {{#rollTotal() setup 1}} - (mit Sonderfertigkeit, ohne Thonnys) - {{/rollTotal() setup 1}} - {{#rollTotal() setup 2}} - (ohne Sonderfertigkeit, mit Thonnys) - {{/rollTotal() setup 2}} - {{#rollTotal() setup 3}} - (mit Sonderfertigkeit, mit Thonnys) - {{/rollTotal() setup 3}} -
Keine astrale Meditation durchführbar. Das kann die folgenden Gründe haben: -
    -
  • Der Charakter verfügt weder über die Sonderfertigkeit „Astrale Meditation“, noch über Thonnys.
  • -
  • Die Astralenergie reicht nicht aus, um die astrale Meditation zu beginnen. Nur bei Verwendung von Thonnys in Verbindung mit der Sonderfertigkeit „Astrale Meditation“ wird keine Astralenergie zur Einleitung der Meditation benötigt.
  • -
  • Die noch vorhandene Lebensenergie reicht nicht oder nicht sicher ℹ️ aus, um die Meditation durchzuführen.
  • -
-
Keine astrale Meditation durchführbar. Die Astralenergie befindet sich bereits auf oder über dem Maximum ({{ae}}/{{aemax}}).Keine astrale Meditation im Automatikmodus durchführbar. Das kann die folgenden Gründe haben: -
    -
  • Der Charakter verfügt nicht über ausreichend Lebensenergie, um nach der Meditation sicher über einen der Schwellwerte der Automatik zu verbleiben.
  • -
  • Die Menge zu regenerierender Astralenergie ist absolut oder relativ zum Maximum zu gering.
  • -
- Genaue Informationen zur Funktionsweise der Automatik enthält der dazugehörige Infotext. -
Astrale Meditation ist misslungen ({{computed::checkrollresults}}).
Mod: {{computed::mod}}Eigenschaften: {{computed::stats}}
🌟 Astralenergie: {{ae}} AsP ➞ {{computed::aeneu}} AsP
Einleitung{{computed::aelossinitiation}} AsP
Astrale Meditation ist gelungen ({{computed::checkrollresults}}) und dauert {{computed::duration}} SR.
Maximal umwandelbare Lebensenergie durch Fehlen der Sonderfertigkeit und alleinige Nutzung von Thonnys begrenzt auf {{thonnyslimit}} LeP. - {{#rollGreater() conversiontarget thonnyslimit}} - Gewünschte Menge umzuwandelnder Lebensenergie ({{conversiontarget}} LeP) kann mit der eingesetzten Menge Thonnys leider nicht erreicht werden. Es werden daher nur {{thonnyslimit}} LeP umgewandelt. Die Dauer der Meditation verändert sich damit entsprechend auf {{thonnyslimit}} SR. - {{/rollGreater() conversiontarget thonnyslimit}} -
Mod: {{computed::mod}}Eigenschaften: {{computed::stats}}
🩸 Lebensenergie: {{le}} LeP ➞ {{computed::leneu}} LeP
Umwandlung{{computed::lelossconversion}} LeP
zusätzlicher Verlust{{computed::lelossadditional}} LeP
🌟 Astralenergie: {{ae}} AsP ➞ {{computed::aeneu}} AsP
Einleitung{{computed::aelossinitiation}} AsP
Umwandlung{{^limbo}}{{computed::aegainconversion}}{{/limbo}}{{#limbo}}{{computed::conversiontarget}}{{/limbo}} AsP
Kraftlinie/-knoten{{computed::aegainleyline}} AsP
Bei der Probe wurde eine - {{#rollTotal() computed::criticality -3}} - Dreifach-20 - {{/rollTotal() computed::criticality -3}} - {{#rollTotal() computed::criticality -2}} - Doppel-20 - {{/rollTotal() computed::criticality -2}} - {{#rollTotal() computed::criticality 2}} - Doppel-1 - {{/rollTotal() computed::criticality 2}} - {{#rollTotal() computed::criticality 3}} - Dreifach-1 - {{/rollTotal() computed::criticality 3}} - ({{computed::checkrollresults}}) gewürfelt. Die Probe zur astralen Meditation ist keine gewöhnliche Talentprobe, weshalb regeltechnisch nicht davon auszugehen ist, dass Mehrfach-1 oder Mehrfach-20 besonders zu behandeln sind. Ob dieses Ergebnis besondere Auswirkungen nach sich zieht, ist daher Meisterentscheid.
-
-
-
- - -
-
- - - - - {{#notrequired}} - - - - {{/notrequired}} - {{^notrequired}} - - {{#rollTotal() computed::checkresult 0}} - - {{/rollTotal() computed::checkresult 0}} - {{#rollTotal() computed::checkresult 1}} - - {{/rollTotal() computed::checkresult 1}} - - - - - - {{#rollTotal() computed::checkresult 1}} - - - - - - - - - - - - - - - {{/rollTotal() computed::checkresult 1}} - {{/notrequired}} -
Karmale Meditation
Keine karmale Meditation durchführbar. Die Karmalenergie befindet sich bereits auf oder über dem Maximum ({{ke}}/{{kemax}}).
Liturgiekenntnisprobe {{computed::mod}} mit {{computed::checkpoints}} LkP* misslungen ({{computed::checkroll}}).Liturgiekenntnisprobe {{computed::mod}} mit {{computed::checkpoints}} LkP* gelungen ({{computed::checkroll}}).
LkW: {{wert}}Eigenschaften: {{computed::stats}}
🙏 Karmaenergie: {{ke}} KaP ➞ {{computed::ke}} KaP
Meditation{{computed::kegain}} KaP
🤩 Entrückung: {{entrueckung}} ➞ {{computed::entrueckung}}
Meditation{{computed::entrueckunggain}}
-
-
-
- + diff --git a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/tests.html b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/tests.html index 8ca594cb45..aabf239f89 100644 --- a/Das_Schwarze_Auge_4-1/dev/html/roll_templates/tests.html +++ b/Das_Schwarze_Auge_4-1/dev/html/roll_templates/tests.html @@ -1,4 +1,4 @@ - + 3W20: {{computed::roll}} (Stats: {{computed::stats}}), Result: {{computed::result}}, Criticality {{computed::criticality}} {{#rollBetween() computed::criticality 2 2}}Doppel-1!{{/rollBetween() computed::criticality 2 2}} @@ -109,4 +109,4 @@ - +