mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
Styling and finishing
auto-indented files routed logo to github path after publishing
This commit is contained in:
+257
-229
@@ -1,5 +1,4 @@
|
||||
@import url("https://fonts.googleapis.com/css?family=Saira+Stencil+One&display=swap|family=Orbitron");
|
||||
|
||||
/* === GENERAL === */
|
||||
|
||||
.sheet-hidden {
|
||||
@@ -7,76 +6,81 @@
|
||||
}
|
||||
|
||||
.charsheet {
|
||||
min-width: 800px;
|
||||
min-width: 800px;
|
||||
}
|
||||
|
||||
.sheet-header {
|
||||
margin-bottom: 4px;
|
||||
padding: 2px 4px;
|
||||
background: black;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
margin-bottom: 4px;
|
||||
padding: 2px 4px;
|
||||
background: black;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.sheet-section {
|
||||
float: left;
|
||||
width: 100%;
|
||||
margin: 4px 0;
|
||||
padding: 1px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.sheet-half {
|
||||
max-width: 50%;
|
||||
}
|
||||
.sheet-half-left {
|
||||
max-width: 60.5%;
|
||||
}
|
||||
.sheet-half-right {
|
||||
max-width: 39.5%;
|
||||
}
|
||||
.sheet-break {
|
||||
clear: both;
|
||||
}
|
||||
label,
|
||||
select {
|
||||
margin: 0;
|
||||
}
|
||||
textarea {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
resize: vertical;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.sheet-repitem,
|
||||
.repitem {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
/* Override Roll20 Button styling for something less conspicious */
|
||||
button {
|
||||
height: 22px;
|
||||
line-height: 16px;
|
||||
margin: 0 !important;
|
||||
border-radius: 0 !important;
|
||||
background-image: none !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.repitem button {
|
||||
height: 28px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
textarea,
|
||||
span,
|
||||
label {
|
||||
float: left;
|
||||
width: 100%;
|
||||
margin: 4px 0;
|
||||
padding: 1px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input[type="number"],
|
||||
input[type="text"],
|
||||
.sheet-half {
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
.sheet-half-left {
|
||||
max-width: 60.5%;
|
||||
}
|
||||
|
||||
.sheet-half-right {
|
||||
max-width: 39.5%;
|
||||
}
|
||||
|
||||
.sheet-break {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
label, select {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
textarea {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
resize: vertical;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.sheet-repitem, .repitem {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
/* Override Roll20 Button styling for something less conspicious */
|
||||
|
||||
button {
|
||||
height: 22px;
|
||||
line-height: 16px;
|
||||
margin: 0 !important;
|
||||
border-radius: 0 !important;
|
||||
background-image: none !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.repitem button {
|
||||
height: 28px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
textarea, span, label {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Inputs and echeckboxes */
|
||||
|
||||
input[type="number"], input[type="text"], textarea {
|
||||
border: none;
|
||||
font-family: inherit;
|
||||
background: transparent;
|
||||
@@ -89,7 +93,6 @@ textarea {
|
||||
transition: all 0.2s, height 0.4s;
|
||||
}
|
||||
|
||||
|
||||
input[type="checkbox"] {
|
||||
opacity: 0;
|
||||
z-index: 1;
|
||||
@@ -98,22 +101,20 @@ input[type="checkbox"] {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
input[type="checkbox"] + span {
|
||||
input[type="checkbox"]+span {
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
transition: all 0.2s, opacity 0s;
|
||||
}
|
||||
|
||||
|
||||
label input[type="checkbox"] {
|
||||
position: absolute;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
label:hover input[type="checkbox"] + span {
|
||||
label:hover input[type="checkbox"]+span {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
|
||||
input[type="checkbox"].sheet-squarebox {
|
||||
flex: 0 0 auto;
|
||||
width: 12px;
|
||||
@@ -121,81 +122,88 @@ input[type="checkbox"].sheet-squarebox {
|
||||
margin-right: -12px;
|
||||
}
|
||||
|
||||
input[type="checkbox"].sheet-squarebox + span {
|
||||
input[type="checkbox"].sheet-squarebox+span {
|
||||
flex: 0 0 auto;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
input[type="checkbox"].sheet-squarebox:hover + span {
|
||||
input[type="checkbox"].sheet-squarebox:hover+span {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
input[type="checkbox"].sheet-squarebox:last-child + span {
|
||||
input[type="checkbox"].sheet-squarebox:last-child+span {
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
|
||||
input[type="checkbox"].sheet-squarebox + span {
|
||||
input[type="checkbox"].sheet-squarebox+span {
|
||||
background: white;
|
||||
}
|
||||
|
||||
input[type="checkbox"].sheet-squarebox:checked + span {
|
||||
input[type="checkbox"].sheet-squarebox:checked+span {
|
||||
background: #4e7d7f;
|
||||
}
|
||||
|
||||
/* === BASIC === */
|
||||
/* === Header of sheet === */
|
||||
|
||||
.sheet-logo {
|
||||
width: 190px;
|
||||
margin: 0 5px;
|
||||
float: left;
|
||||
grid-row: span 2;
|
||||
width: 190px;
|
||||
max-height: 100px;
|
||||
margin: 0 5px;
|
||||
float: left;
|
||||
grid-row: span 2;
|
||||
}
|
||||
|
||||
.sheet-section-basic tr {
|
||||
margin-left: 5px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.sheet-section-basic td {
|
||||
padding: 2px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.sheet-section-basic input[type="number"] {
|
||||
width: 100px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.sheet-section-basic .sheet-column {
|
||||
width: calc(50% - 200px);
|
||||
width: calc(50% - 200px);
|
||||
}
|
||||
|
||||
.sheet-characterbox {
|
||||
display: grid;
|
||||
grid-template: auto/200px 3fr 1fr 1fr 1fr 1fr;
|
||||
display: grid;
|
||||
grid-template: auto/200px 3fr 1fr 1fr 1fr 1fr;
|
||||
}
|
||||
|
||||
/* === Aces in Space style boxes === */
|
||||
|
||||
.sheet-ace-box {
|
||||
align-self: stretch;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
.sheet-characterbox .sheet-ace-box .sheet-content input {
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.sheet-playbook {
|
||||
grid-column: span 2;
|
||||
grid-column: span 2;
|
||||
}
|
||||
|
||||
.sheet-callsign {
|
||||
grid-column: span 2;
|
||||
grid-column: span 2;
|
||||
}
|
||||
|
||||
.sheet-namepronouns {
|
||||
grid-column: span 2;
|
||||
grid-column: span 2;
|
||||
}
|
||||
|
||||
.sheet-description {
|
||||
grid-column: span 6;
|
||||
grid-column: span 6;
|
||||
}
|
||||
|
||||
.sheet-ace-box .sheet-title {
|
||||
@@ -207,12 +215,12 @@ width: calc(50% - 200px);
|
||||
}
|
||||
|
||||
.sheet-ace-box .sheet-title label {
|
||||
color: #4e7d7f;
|
||||
color: #4e7d7f;
|
||||
}
|
||||
|
||||
.sheet-ace-box .sheet-title span {
|
||||
color: #4e7d7f;
|
||||
width: 10px;
|
||||
color: #4e7d7f;
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
.sheet-ace-box .sheet-content {
|
||||
@@ -221,253 +229,273 @@ width: calc(50% - 200px);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
.sheet-character-body {
|
||||
display: grid;
|
||||
grid-template: auto/50% 50%;
|
||||
display: grid;
|
||||
grid-template: auto/50% 50%;
|
||||
}
|
||||
|
||||
/* === SKILLS === */
|
||||
|
||||
.sheet-section-skills {
|
||||
min-width: 400px;
|
||||
grid-column: span 2;
|
||||
}
|
||||
.sheet-section-skills input {
|
||||
width: 58px;
|
||||
grid-column: span 1;
|
||||
}
|
||||
.sheet-section-skills td:first-child {
|
||||
text-align: right;
|
||||
font-weight: bold;
|
||||
padding: 0 4px;
|
||||
}
|
||||
.sheet-skill-on {
|
||||
border: 1px solid black;
|
||||
}
|
||||
.sheet-skill-off {
|
||||
background-color: #E3E3E3;
|
||||
border: 1px solid gray;
|
||||
min-width: 400px;
|
||||
grid-column: span 2;
|
||||
}
|
||||
|
||||
/* === ASPECT === */
|
||||
.sheet-section-skills input {
|
||||
width: 58px;
|
||||
grid-column: span 1;
|
||||
}
|
||||
|
||||
.sheet-section-skills td:first-child {
|
||||
text-align: right;
|
||||
font-weight: bold;
|
||||
padding: 0 4px;
|
||||
}
|
||||
|
||||
.sheet-skill-on {
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
.sheet-skill-off {
|
||||
background-color: #E3E3E3;
|
||||
border: 1px solid gray;
|
||||
}
|
||||
|
||||
/* === ASPECTS === */
|
||||
|
||||
.sheet-section-aspects {
|
||||
grid-column: span 2;
|
||||
grid-column: span 2;
|
||||
}
|
||||
|
||||
.sheet-section-aspects .sheet-content label {
|
||||
text-transform: uppercase;
|
||||
font-size: 14px;
|
||||
font-family: "Saira Stencil One";
|
||||
width: 130px;
|
||||
margin: 3px;
|
||||
color: #4e7d7f;
|
||||
text-transform: uppercase;
|
||||
font-size: 14px;
|
||||
font-family: "Saira Stencil One";
|
||||
width: 130px;
|
||||
margin: 3px;
|
||||
color: #4e7d7f;
|
||||
}
|
||||
|
||||
.sheet-section-aspects .sheet-content input {
|
||||
font-size: 16px;
|
||||
width: 100%;
|
||||
margin: 3px;
|
||||
color: #4e7d7f;
|
||||
font-size: 16px;
|
||||
width: 100%;
|
||||
margin: 3px;
|
||||
color: #4e7d7f;
|
||||
}
|
||||
|
||||
.sheet-section-aspects .sheet-aspectitem, .sheet-section-aspects .repitem {
|
||||
display: flex;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
/* === STRESS === */
|
||||
|
||||
.sheet-section-stress td {
|
||||
text-align: left;
|
||||
padding-right: 5px;
|
||||
font-size: 14px;
|
||||
text-align: left;
|
||||
padding-right: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sheet-section-stress input[type="checkbox"] {
|
||||
margin-left: 5px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.sheet-stress-descr {
|
||||
width: 4.5em;
|
||||
width: 4.5em;
|
||||
}
|
||||
|
||||
.sheet-fullwidth {
|
||||
width: 99%;
|
||||
margin-top: 3px;
|
||||
width: 99%;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
|
||||
.sheet-nbsb td {
|
||||
text-align: right;
|
||||
text-style: italic;
|
||||
font-size: 10px;
|
||||
vertical-align: middle;
|
||||
text-align: right;
|
||||
font-style: italic;
|
||||
font-size: 10px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* === CONSEQUENCES === */
|
||||
|
||||
.sheet-section-consequences {
|
||||
float: right;
|
||||
display: block;
|
||||
float: right;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sheet-section-consequences .repitem {
|
||||
display: flex;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.sheet-section-consequences select {
|
||||
width: 130px;
|
||||
float: left;
|
||||
}
|
||||
.sheet-section-consequences input {
|
||||
margin-left: 10px;
|
||||
width: calc(100% - 132px);
|
||||
width: 130px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.sheet-section-consequences input {
|
||||
margin-left: 10px;
|
||||
width: calc(100% - 132px);
|
||||
}
|
||||
|
||||
/* Stunts */
|
||||
.sheet-section-stunts input{
|
||||
color: #222;
|
||||
font-weight: bolder;
|
||||
width: 100%;
|
||||
|
||||
.sheet-section-stunts input {
|
||||
color: #222;
|
||||
font-weight: bolder;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sheet-bold input {
|
||||
color: #222;
|
||||
font-weight: bolder;
|
||||
width: 100%;
|
||||
color: #222;
|
||||
font-weight: bolder;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* === Additional Stress and stress hack === */
|
||||
.charsheet .attr_stunt-name, .charsheet .attr_extras-name {
|
||||
color: #222;
|
||||
font-weight: bolder;
|
||||
width: 100%;
|
||||
color: #222;
|
||||
font-weight: bolder;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.charsheet .sheet-section-stress td, .charsheet .attr_extras-name td {
|
||||
display: inline-block;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.sheet-stress-small {
|
||||
font-size: 11px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
/* === Change default Skill box width === */
|
||||
|
||||
.sheet-section-skills input {
|
||||
width: 116px;
|
||||
}
|
||||
.sheet-description-long {
|
||||
width: 50%;
|
||||
width: 116px;
|
||||
}
|
||||
|
||||
.sheet-description-long {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
/* === Roll type displaying === */
|
||||
button.sheet-roll_type_1,
|
||||
button.sheet-roll_type_2 {
|
||||
display: none;
|
||||
|
||||
button.sheet-roll_type_1, button.sheet-roll_type_2 {
|
||||
display: none;
|
||||
}
|
||||
input.sheet-roll_method_1:checked ~ div table button.sheet-roll_type_1,
|
||||
input.sheet-roll_method_2:checked ~ div table button.sheet-roll_type_2 {
|
||||
display: inline-block !important;
|
||||
|
||||
input.sheet-roll_method_1:checked~div table button.sheet-roll_type_1, input.sheet-roll_method_2:checked~div table button.sheet-roll_type_2 {
|
||||
display: inline-block !important;
|
||||
}
|
||||
|
||||
input.sheet-roll_method_1, input.sheet-roll_method_2 {
|
||||
background-color: #3f3f3f;
|
||||
width: 12px;
|
||||
text-align: right;
|
||||
display: inline;
|
||||
padding-left: 6em;
|
||||
background-color: #3f3f3f;
|
||||
width: 12px;
|
||||
text-align: right;
|
||||
display: inline;
|
||||
padding-left: 6em;
|
||||
}
|
||||
|
||||
.sheet-section-skills {
|
||||
text-align: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* === some fixing === */
|
||||
|
||||
.sheet-header {
|
||||
text-align: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
td, .sheet-fullwidth {
|
||||
white-space: nowrap;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-sktab_1, .charsheet input.sheet-sktab_2 {
|
||||
background-color: #3f3f3f;
|
||||
width: 12px;
|
||||
text-align: right;
|
||||
display: inline;
|
||||
padding-left: 6em;
|
||||
background-color: #3f3f3f;
|
||||
width: 12px;
|
||||
text-align: right;
|
||||
display: inline;
|
||||
padding-left: 6em;
|
||||
}
|
||||
|
||||
div.sheet-break-10 {
|
||||
clear: both;
|
||||
height: 10px;
|
||||
clear: both;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
.sheet-rank {
|
||||
width: 124px;
|
||||
background-color: #Fefefe;
|
||||
font-size: .9em;
|
||||
font-weight: bolder;
|
||||
padding: 1px;
|
||||
font-family: sans-serif;
|
||||
border: 0;
|
||||
width: 124px;
|
||||
background-color: #Fefefe;
|
||||
font-size: .9em;
|
||||
font-weight: bolder;
|
||||
padding: 1px;
|
||||
font-family: sans-serif;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
input.sheet-skill-dyn {
|
||||
width: 113px;
|
||||
width: 113px;
|
||||
}
|
||||
|
||||
/* === SKILL TABS === */
|
||||
div.sheet-sktab-content { display: none; }
|
||||
|
||||
input.sheet-sktab_1:checked ~ div.sheet-sktab_2,
|
||||
input.sheet-sktab_2:checked ~ div.sheet-sktab_1
|
||||
{
|
||||
display: block; !important;
|
||||
div.sheet-sktab-content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input.sheet-sktab_1:checked~div.sheet-sktab_2, input.sheet-sktab_2:checked~div.sheet-sktab_1 {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* === stunts and extra tabs === */
|
||||
|
||||
div.sheet-tab-content {
|
||||
display: block;
|
||||
div.sheet-tab-content {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-tab2 {
|
||||
left: 286px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.charsheet input.sheet-tab1 + span::before, .charsheet input.sheet-tab2 + span::before {
|
||||
content: attr(title);
|
||||
display: inline-block;
|
||||
width: 150px;
|
||||
color: #111;
|
||||
padding-left: 10px;
|
||||
left: 286px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input.sheet-tab + span::before {
|
||||
left: 139px;
|
||||
}
|
||||
.charsheet input.sheet-tab2 + span::before {
|
||||
left: 680px;
|
||||
.charsheet input.sheet-tab1+span::before, .charsheet input.sheet-tab2+span::before {
|
||||
content: attr(title);
|
||||
display: inline-block;
|
||||
width: 150px;
|
||||
color: #111;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
input.sheet-tab:not(:first-child) + span::before
|
||||
{
|
||||
border-left: none;
|
||||
input.sheet-tab+span::before {
|
||||
left: 139px;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-tab2+span::before {
|
||||
left: 680px;
|
||||
}
|
||||
|
||||
input.sheet-tab:not(:first-child)+span::before {
|
||||
border-left: none;
|
||||
}
|
||||
|
||||
sheet-pos {
|
||||
z-index:initial;
|
||||
z-index: initial;
|
||||
}
|
||||
|
||||
/* ==== Advancements ==== */
|
||||
|
||||
.sheet-section-advancements .sheet-content {
|
||||
display: grid;
|
||||
grid-template: 1fr 2fr/1fr 1fr;
|
||||
display: grid;
|
||||
grid-template: 1fr 2fr/1fr 1fr;
|
||||
}
|
||||
|
||||
.sheet-section-advancements .sheet-triggers {
|
||||
grid-column: span 2;
|
||||
grid-column: span 2;
|
||||
}
|
||||
|
||||
/* ==== Vibes ==== */
|
||||
|
||||
.sheet-section-vibes .repitem {
|
||||
display: flex;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.sheet-section-vibes select {
|
||||
width: 45px;
|
||||
float: right;
|
||||
}
|
||||
width: 45px;
|
||||
float: right;
|
||||
}
|
||||
+475
-341
@@ -1,7 +1,8 @@
|
||||
<div class="sheet-section-basic sheet-section">
|
||||
<div class="characterbox">
|
||||
<div class="sheet-logo">
|
||||
<img class="sheet-logo" src="https://agilepraxis.de/wp-content/uploads/2021/02/aces_in_space_logo.png" alt="Aces in Space" />
|
||||
<img class="sheet-logo" src="https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/Aces-in-Space/Assets/aces_in_space_logo.png"
|
||||
alt="Aces in Space" />
|
||||
</div>
|
||||
<div class="ace-box namepronouns">
|
||||
<div class="title">
|
||||
@@ -9,7 +10,7 @@
|
||||
<label data-i18n="name-u">Name and pronouns</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<input type="text" spellcheck="false" name="attr_character_name"></textarea>
|
||||
<input type="text" spellcheck="false" name="attr_character_name"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ace-box">
|
||||
@@ -45,7 +46,7 @@
|
||||
<label data-i18n="callsign-u">Call Sign</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<input type="text" spellcheck="false" name="attr_callsign"></textarea>
|
||||
<input type="text" spellcheck="false" name="attr_callsign"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ace-box playbook">
|
||||
@@ -54,7 +55,7 @@
|
||||
<label data-i18n="playbook-u">Playbook</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<input type="text" spellcheck="false" name="attr_playbook"></textarea>
|
||||
<input type="text" spellcheck="false" name="attr_playbook"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ace-box">
|
||||
@@ -72,370 +73,503 @@
|
||||
<label data-i18n="description-u">Description</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<textarea spellcheck="false" name="attr_Description"></textarea>
|
||||
<textarea spellcheck="false" name="attr_Description"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- .section-basic -->
|
||||
|
||||
<div class="sheet-section">
|
||||
<div class="character-body">
|
||||
<div class="sheet-section-aspects sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="aspects-u">Aspects</label>
|
||||
<div class="section">
|
||||
<div class="character-body">
|
||||
<div class="section-aspects section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="aspects-u">Aspects</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="aspectitem">
|
||||
<label data-i18n-placeholder="concept-u">Concept</label>
|
||||
<input type="text" name="attr_Concept" data-i18n-placeholder="concept-u"
|
||||
placeholder="Concept Aspect" />
|
||||
</div>
|
||||
<div class="aspectitem">
|
||||
<label data-i18n-placeholder="toxicity-u">Toxicity</label>
|
||||
<input type="text" name="attr_Toxicity" data-i18n-placeholder="toxicity-u"
|
||||
placeholder="Toxicity Aspect" />
|
||||
</div>
|
||||
<div class="aspectitem">
|
||||
<label data-i18n-placeholder="chopper-u">Chopper</label>
|
||||
<input type="text" name="attr_Chopper" data-i18n-placeholder="chopper-u"
|
||||
placeholder="Chopper Aspect" />
|
||||
</div>
|
||||
<div class="aspectitem">
|
||||
<label data-i18n-placeholder="luckycharm-u">Lucky Charm</label>
|
||||
<input type="text" name="attr_LuckyCharm" data-i18n-placeholder="luckycharm-u"
|
||||
placeholder="Lucky Charm" />
|
||||
</div>
|
||||
<fieldset class="repeating_Aspects">
|
||||
<label data-i18n-placeholder="additional-aspect-u">Aspect</label>
|
||||
<input type="text" name="attr_Aspect" />
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="sheet-aspectitem">
|
||||
<label data-i18n-placeholder="concept-u">Concept</label>
|
||||
<input type="text" name="attr_Concept" data-i18n-placeholder="concept-u" placeholder="Concept Aspect" />
|
||||
</div>
|
||||
<div class="sheet-aspectitem">
|
||||
<label data-i18n-placeholder="toxicity-u">Toxicity</label>
|
||||
<input type="text" name="attr_Toxicity" data-i18n-placeholder="toxicity-u" placeholder="Toxicity Aspect"/>
|
||||
</div>
|
||||
<div class="sheet-aspectitem">
|
||||
<label data-i18n-placeholder="chopper-u">Chopper</label>
|
||||
<input type="text" name="attr_Chopper" data-i18n-placeholder="chopper-u" placeholder="Chopper Aspect"/>
|
||||
</div>
|
||||
<div class="sheet-aspectitem">
|
||||
<label data-i18n-placeholder="luckycharm-u">Lucky Charm</label>
|
||||
<input type="text" name="attr_LuckyCharm" data-i18n-placeholder="luckycharm-u" placeholder="Lucky Charm"/>
|
||||
</div>
|
||||
<fieldset class="repeating_Aspects">
|
||||
<label data-i18n-placeholder="additional-aspect-u">Aspect</label>
|
||||
<input type="text" name="attr_Aspect" />
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- .section-aspects -->
|
||||
</div> <!-- .section-aspects -->
|
||||
|
||||
<div class="sheet-section-skills sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="skills-u">Skills</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<button type='roll' class="sheet-roll_4df" name='roll_4df' value='/roll 4dF'></button> <span data-i18n="roll-action-u">Roll</span>4df
|
||||
<button type='roll' class="sheet-roll_4dfm" name='roll_4dfm' value='/roll 4dF + ?{Modifier?|0}'></button> 4dF±
|
||||
<input type="radio" class="sheet-roll_method_1" name="attr_roll_method" value="1" data-i18n-title="roll4only-u" title="Roll 4dF+Skill only" checked="checked" /><span> <span data-i18n="roll-action-u">Roll</span> 4dF±<span data-i18n="skill-only-u">Skill only</span></span>
|
||||
<div class="section-skills section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="skills-u">Skills</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<button type='roll' class="sheet-roll_4df" name='roll_4df' value='/roll 4dF'></button> <span
|
||||
data-i18n="roll-action-u">Roll</span>4df
|
||||
<button type='roll' class="sheet-roll_4dfm" name='roll_4dfm'
|
||||
value='/roll 4dF + ?{Modifier?|0}'></button> 4dF±
|
||||
<input type="radio" class="sheet-roll_method_1" name="attr_roll_method" value="1"
|
||||
data-i18n-title="roll4only-u" title="Roll 4dF+Skill only" checked="checked" /><span> <span
|
||||
data-i18n="roll-action-u">Roll</span> 4dF±<span data-i18n="skill-only-u">Skill
|
||||
only</span></span>
|
||||
|
||||
<input type="radio" class="sheet-roll_method_2" name="attr_roll_method" value="2" data-i18n-title="roll4and-u" title="Roll 4dF+Skill+Modifiers" />
|
||||
<span> <span data-i18n="roll-action-u">Roll</span> 4dF+<span data-i18n="skill-u">Skill</span>+<span data-i18n="modifiers-u">Modifiers</span></span>
|
||||
<span data-i18n="skills-u">Skills</span> : <input class="sheet-sktab_1" type="radio" name="attr_sktab" value="1" checked="checked" />
|
||||
<span data-i18n="alt-disp-u">Alternate display</span> <input class="sheet-sktab_2" type="radio" name="attr_sktab" value="2" /> <span data-i18n="classic-disp-u">Classic display </span>
|
||||
<input type="radio" class="sheet-roll_method_2" name="attr_roll_method" value="2"
|
||||
data-i18n-title="roll4and-u" title="Roll 4dF+Skill+Modifiers" />
|
||||
<span> <span data-i18n="roll-action-u">Roll</span> 4dF+<span
|
||||
data-i18n="skill-u">Skill</span>+<span data-i18n="modifiers-u">Modifiers</span></span>
|
||||
<span data-i18n="skills-u">Skills</span> : <input class="sheet-sktab_1"
|
||||
type="radio" name="attr_sktab" value="1" checked="checked" />
|
||||
<span data-i18n="alt-disp-u">Alternate display</span> <input class="sheet-sktab_2"
|
||||
type="radio" name="attr_sktab" value="2" /> <span data-i18n="classic-disp-u">Classic
|
||||
display </span>
|
||||
|
||||
<div class="sheet-break-10"></div>
|
||||
<!-- classic display -->
|
||||
<div class="sheet-break-10"></div>
|
||||
<!-- classic display -->
|
||||
|
||||
<div class="sheet-sktab-content sheet-sktab_1">
|
||||
<div class="sheet-sktab-content sheet-sktab_1">
|
||||
|
||||
<table>
|
||||
<table>
|
||||
<tr>
|
||||
<td><span data-i18n="superb-u">Superb (+5)</span></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Sup1a'
|
||||
value='&{template:default} {{name=@{Sup1}}} {{^{roll-u}=[[4df+5]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Sup1b'
|
||||
value='&{template:default} {{name=@{Sup1}}} {{^{roll-u}=[[4df+5+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Sup1"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Sup2a'
|
||||
value='&{template:default} {{name=@{Sup2}}} {{^{roll-u}=[[4df+5]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Sup2b'
|
||||
value='&{template:default} {{name=@{Sup2}}} {{^{roll-u}=[[4df+5+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Sup2"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Sup3a'
|
||||
value='&{template:default} {{name=@{Sup3}}} {{^{roll-u}=[[4df+5]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Sup3b'
|
||||
value='&{template:default} {{name=@{Sup3}}} {{^{roll-u}=[[4df+5+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Sup3"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Sup4a'
|
||||
value='&{template:default} {{name=@{Sup4}}} {{^{roll-u}=[[4df+5]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Sup4b'
|
||||
value='&{template:default} {{name=@{Sup4}}} {{^{roll-u}=[[4df+5+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Sup4"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Sup5a'
|
||||
value='&{template:default} {{name=@{Sup5}}} {{^{roll-u}=[[4df+5]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Sup5b'
|
||||
value='&{template:default} {{name=@{Sup5}}} {{^{roll-u}=[[4df+5+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Sup5"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span data-i18n="great-u">Great (+4)</span></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Great1a'
|
||||
value='&{template:default} {{name=@{Great1}}} {{^{roll-u}=[[4df+4]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Great1b'
|
||||
value='&{template:default} {{name=@{Great1}}} {{^{roll-u}=[[4df+4+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Great1"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Great2a'
|
||||
value='&{template:default} {{name=@{Great2}}} {{^{roll-u}=[[4df+4]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Great2b'
|
||||
value='&{template:default} {{name=@{Great2}}} {{^{roll-u}=[[4df+4+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Great2"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Great3a'
|
||||
value='&{template:default} {{name=@{Great3}}} {{^{roll-u}=[[4df+4]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Great3b'
|
||||
value='&{template:default} {{name=@{Great3}}} {{^{roll-u}=[[4df+4+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Great3"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Great4a'
|
||||
value='&{template:default} {{name=@{Great4}}} {{^{roll-u}=[[4df+4]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Great4b'
|
||||
value='&{template:default} {{name=@{Great4}}} {{^{roll-u}=[[4df+4+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Great4"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Great5a'
|
||||
value='&{template:default} {{name=@{Great5}}} {{^{roll-u}=[[4df+4]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Great5b'
|
||||
value='&{template:default} {{name=@{Great5}}} {{^{roll-u}=[[4df+4+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Great5"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span data-i18n="good-u">Good (+3)</span></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Good1a'
|
||||
value='&{template:default} {{name=@{Good1}}} {{^{roll-u}=[[4df+3]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Good1b'
|
||||
value='&{template:default} {{name=@{Good1}}} {{^{roll-u}=[[4df+3+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Good1"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Good2a'
|
||||
value='&{template:default} {{name=@{Good2}}} {{^{roll-u}=[[4df+3]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Good2b'
|
||||
value='&{template:default} {{name=@{Good2}}} {{^{roll-u}=[[4df+3+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Good2"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Good3a'
|
||||
value='&{template:default} {{name=@{Good3}}} {{^{roll-u}=[[4df+3]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Good3b'
|
||||
value='&{template:default} {{name=@{Good3}}} {{^{roll-u}=[[4df+3+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Good3"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Good4a'
|
||||
value='&{template:default} {{name=@{Good4}}} {{^{roll-u}=[[4df+3]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Good4b'
|
||||
value='&{template:default} {{name=@{Good4}}} {{^{roll-u}=[[4df+3+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Good4"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Good5a'
|
||||
value='&{template:default} {{name=@{Good5}}} {{^{roll-u}=[[4df+3]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Good5b'
|
||||
value='&{template:default} {{name=@{Good5}}} {{^{roll-u}=[[4df+3+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Good5"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span data-i18n="fair-u">Fair (+2)</span></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Fair1a'
|
||||
value='&{template:default} {{name=@{Fair1}}} {{^{roll-u}=[[4df+2]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Fair1b'
|
||||
value='&{template:default} {{name=@{Fair1}}} {{^{roll-u}=[[4df+2+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Fair1"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Fair2a'
|
||||
value='&{template:default} {{name=@{Fair2}}} {{^{roll-u}=[[4df+2]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Fair2b'
|
||||
value='&{template:default} {{name=@{Fair2}}} {{^{roll-u}=[[4df+2+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Fair2"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Fair3a'
|
||||
value='&{template:default} {{name=@{Fair3}}} {{^{roll-u}=[[4df+2]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Fair3b'
|
||||
value='&{template:default} {{name=@{Fair3}}} {{^{roll-u}=[[4df+2+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Fair3"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Fair4a'
|
||||
value='&{template:default} {{name=@{Fair4}}} {{^{roll-u}=[[4df+2]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Fair4b'
|
||||
value='&{template:default} {{name=@{Fair4}}} {{^{roll-u}=[[4df+2+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Fair4"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Fair5a'
|
||||
value='&{template:default} {{name=@{Fair5}}} {{^{roll-u}=[[4df+2]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Fair5b'
|
||||
value='&{template:default} {{name=@{Fair5}}} {{^{roll-u}=[[4df+2+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Fair5"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span data-i18n="avg-u">Average (+1)</span></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Avg1a'
|
||||
value='&{template:default} {{name=@{Avg1}}} {{^{roll-u}=[[4df+1]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Avg1b'
|
||||
value='&{template:default} {{name=@{Avg1}}} {{^{roll-u}=[[4df+1+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Avg1"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Avg2a'
|
||||
value='&{template:default} {{name=@{Avg2}}} {{^{roll-u}=[[4df+1]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Avg2b'
|
||||
value='&{template:default} {{name=@{Avg2}}} {{^{roll-u}=[[4df+1+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Avg2"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Avg3a'
|
||||
value='&{template:default} {{name=@{Avg3}}} {{^{roll-u}=[[4df+1]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Avg3b'
|
||||
value='&{template:default} {{name=@{Avg3}}} {{^{roll-u}=[[4df+1+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Avg3"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Avg4a'
|
||||
value='&{template:default} {{name=@{Avg4}}} {{^{roll-u}=[[4df+1]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Avg4b'
|
||||
value='&{template:default} {{name=@{Avg4}}} {{^{roll-u}=[[4df+1+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Avg4"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Avg5a'
|
||||
value='&{template:default} {{name=@{Avg5}}} {{^{roll-u}=[[4df+1]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Avg5b'
|
||||
value='&{template:default} {{name=@{Avg5}}} {{^{roll-u}=[[4df+1+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Avg5"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end classic display -->
|
||||
|
||||
<!-- alternate display -->
|
||||
<div class="sheet-sktab-content sheet-sktab_2">
|
||||
<fieldset class="repeating_dynskills">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<select name="attr_rank" class="sheet-rank">
|
||||
<option value="-2" data-i18n="terrible-u">Terrible (-2)</option>
|
||||
<option value="-1" data-i18n="poor-u">Poor (-1)</option>
|
||||
<option value="0" data-i18n="mediocre-u">Mediocre (+0)</option>
|
||||
<option value="1" data-i18n="avg-u">Average (+1)</option>
|
||||
<option value="2" data-i18n="fair-u">Fair (+2)</option>
|
||||
<option value="3" data-i18n="good-u">Good (+3)</option>
|
||||
<option value="4" data-i18n="great-u">Great (+4)</option>
|
||||
<option value="5" data-i18n="superb-u">Superb (+5)</option>
|
||||
<option value="6" data-i18n="fantastic-u">Fantastic (+6)</option>
|
||||
<option value="7" data-i18n="epic-u">Epic (+7)</option>
|
||||
<option value="8" data-i18n="legendary-u">Legendary (+8)</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Epicd1a'
|
||||
value='&{template:default} {{name=@{Epicd1}}} {{^{roll-u}=[[4df+@{Rank}]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Epicd1b'
|
||||
value='&{template:default} {{name=@{Epicd1}}} {{^{roll-u}=[[4df+@{Rank}+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-dyn" type="text" name="attr_Epicd1"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Epicd2a'
|
||||
value='&{template:default} {{name=@{Epicd2}}} {{^{roll-u}=[[4df+@{Rank}]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Epicd2b'
|
||||
value='&{template:default} {{name=@{Epicd2}}} {{^{roll-u}=[[4df+@{Rank}+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-dyn" type="text" name="attr_Epicd2"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Epicd3a'
|
||||
value='&{template:default} {{name=@{Epicd3}}} {{^{roll-u}=[[4df+@{Rank}]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Epicd3b'
|
||||
value='&{template:default} {{name=@{Epicd3}}} {{^{roll-u}=[[4df+@{Rank}+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-dyn" type="text" name="attr_Epicd3"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Epicd4a'
|
||||
value='&{template:default} {{name=@{Epicd4}}} {{^{roll-u}=[[4df+@{Rank}]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Epicd4b'
|
||||
value='&{template:default} {{name=@{Epicd4}}} {{^{roll-u}=[[4df+@{Rank}+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-dyn" type="text" name="attr_Epicd4"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Epicd5a'
|
||||
value='&{template:default} {{name=@{Epicd5}}} {{^{roll-u}=[[4df+@{Rank}]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Epicd5b'
|
||||
value='&{template:default} {{name=@{Epicd5}}} {{^{roll-u}=[[4df+@{Rank}+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-dyn" type="text" name="attr_Epicd5"
|
||||
onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
||||
|
||||
</div>
|
||||
<!-- end alternate display -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end section-skills -->
|
||||
|
||||
<div class="sheet-section-stress sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="stress-u">Stress</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table class="sheet-fullwidth">
|
||||
<tr>
|
||||
<td><span data-i18n="superb-u">Superb (+5)</span></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Sup1a' value='&{template:default} {{name=@{Sup1}}} {{^{roll-u}=[[4df+5]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Sup1b' value='&{template:default} {{name=@{Sup1}}} {{^{roll-u}=[[4df+5+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Sup1" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Sup2a' value='&{template:default} {{name=@{Sup2}}} {{^{roll-u}=[[4df+5]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Sup2b' value='&{template:default} {{name=@{Sup2}}} {{^{roll-u}=[[4df+5+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Sup2" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Sup3a' value='&{template:default} {{name=@{Sup3}}} {{^{roll-u}=[[4df+5]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Sup3b' value='&{template:default} {{name=@{Sup3}}} {{^{roll-u}=[[4df+5+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Sup3" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Sup4a' value='&{template:default} {{name=@{Sup4}}} {{^{roll-u}=[[4df+5]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Sup4b' value='&{template:default} {{name=@{Sup4}}} {{^{roll-u}=[[4df+5+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Sup4" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Sup5a' value='&{template:default} {{name=@{Sup5}}} {{^{roll-u}=[[4df+5]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Sup5b' value='&{template:default} {{name=@{Sup5}}} {{^{roll-u}=[[4df+5+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Sup5" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span data-i18n="great-u">Great (+4)</span></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Great1a' value='&{template:default} {{name=@{Great1}}} {{^{roll-u}=[[4df+4]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Great1b' value='&{template:default} {{name=@{Great1}}} {{^{roll-u}=[[4df+4+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Great1" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Great2a' value='&{template:default} {{name=@{Great2}}} {{^{roll-u}=[[4df+4]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Great2b' value='&{template:default} {{name=@{Great2}}} {{^{roll-u}=[[4df+4+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Great2" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Great3a' value='&{template:default} {{name=@{Great3}}} {{^{roll-u}=[[4df+4]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Great3b' value='&{template:default} {{name=@{Great3}}} {{^{roll-u}=[[4df+4+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Great3" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Great4a' value='&{template:default} {{name=@{Great4}}} {{^{roll-u}=[[4df+4]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Great4b' value='&{template:default} {{name=@{Great4}}} {{^{roll-u}=[[4df+4+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Great4" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Great5a' value='&{template:default} {{name=@{Great5}}} {{^{roll-u}=[[4df+4]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Great5b' value='&{template:default} {{name=@{Great5}}} {{^{roll-u}=[[4df+4+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Great5" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span data-i18n="good-u">Good (+3)</span></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Good1a' value='&{template:default} {{name=@{Good1}}} {{^{roll-u}=[[4df+3]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Good1b' value='&{template:default} {{name=@{Good1}}} {{^{roll-u}=[[4df+3+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Good1" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Good2a' value='&{template:default} {{name=@{Good2}}} {{^{roll-u}=[[4df+3]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Good2b' value='&{template:default} {{name=@{Good2}}} {{^{roll-u}=[[4df+3+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Good2" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Good3a' value='&{template:default} {{name=@{Good3}}} {{^{roll-u}=[[4df+3]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Good3b' value='&{template:default} {{name=@{Good3}}} {{^{roll-u}=[[4df+3+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Good3" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Good4a' value='&{template:default} {{name=@{Good4}}} {{^{roll-u}=[[4df+3]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Good4b' value='&{template:default} {{name=@{Good4}}} {{^{roll-u}=[[4df+3+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Good4" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Good5a' value='&{template:default} {{name=@{Good5}}} {{^{roll-u}=[[4df+3]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Good5b' value='&{template:default} {{name=@{Good5}}} {{^{roll-u}=[[4df+3+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Good5" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span data-i18n="fair-u">Fair (+2)</span></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Fair1a' value='&{template:default} {{name=@{Fair1}}} {{^{roll-u}=[[4df+2]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Fair1b' value='&{template:default} {{name=@{Fair1}}} {{^{roll-u}=[[4df+2+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Fair1" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Fair2a' value='&{template:default} {{name=@{Fair2}}} {{^{roll-u}=[[4df+2]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Fair2b' value='&{template:default} {{name=@{Fair2}}} {{^{roll-u}=[[4df+2+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Fair2" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Fair3a' value='&{template:default} {{name=@{Fair3}}} {{^{roll-u}=[[4df+2]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Fair3b' value='&{template:default} {{name=@{Fair3}}} {{^{roll-u}=[[4df+2+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Fair3" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Fair4a' value='&{template:default} {{name=@{Fair4}}} {{^{roll-u}=[[4df+2]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Fair4b' value='&{template:default} {{name=@{Fair4}}} {{^{roll-u}=[[4df+2+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Fair4" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Fair5a' value='&{template:default} {{name=@{Fair5}}} {{^{roll-u}=[[4df+2]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Fair5b' value='&{template:default} {{name=@{Fair5}}} {{^{roll-u}=[[4df+2+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Fair5" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span data-i18n="avg-u">Average (+1)</span></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Avg1a' value='&{template:default} {{name=@{Avg1}}} {{^{roll-u}=[[4df+1]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Avg1b' value='&{template:default} {{name=@{Avg1}}} {{^{roll-u}=[[4df+1+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Avg1" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Avg2a' value='&{template:default} {{name=@{Avg2}}} {{^{roll-u}=[[4df+1]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Avg2b' value='&{template:default} {{name=@{Avg2}}} {{^{roll-u}=[[4df+1+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Avg2" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Avg3a' value='&{template:default} {{name=@{Avg3}}} {{^{roll-u}=[[4df+1]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Avg3b' value='&{template:default} {{name=@{Avg3}}} {{^{roll-u}=[[4df+1+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Avg3" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Avg4a' value='&{template:default} {{name=@{Avg4}}} {{^{roll-u}=[[4df+1]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Avg4b' value='&{template:default} {{name=@{Avg4}}} {{^{roll-u}=[[4df+1+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-on" type="text" name="attr_Avg4" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Avg5a' value='&{template:default} {{name=@{Avg5}}} {{^{roll-u}=[[4df+1]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Avg5b' value='&{template:default} {{name=@{Avg5}}} {{^{roll-u}=[[4df+1+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-off" type="text" name="attr_Avg5" onkeyup="this.setAttribute('value', this.value);" value="" /></td>
|
||||
<td class="sheet-stress-descr"><span data-i18n="stress-u">Stress</span></td>
|
||||
<td>1<input class="squarebox" type="checkbox" name="attr_Phy1" /><span></span></td>
|
||||
<td>2<input class="squarebox" type="checkbox" name="attr_Phy2" /><span></span></td>
|
||||
<td class="sheet-nbsb" data-i18n-title="nerves-3-u">(Nerves +3)</td>
|
||||
<td>3<input class="squarebox" type="checkbox" name="attr_Phy3" /><span></span></td>
|
||||
<td class="sheet-nbsb" data-i18n-title="nerves-4-u">(Nerves +4)</span></td>
|
||||
<td>4<input class="squarebox" type="checkbox" name="attr_Phy4" /><span></span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end classic display -->
|
||||
|
||||
<!-- alternate display -->
|
||||
<div class="sheet-sktab-content sheet-sktab_2">
|
||||
<fieldset class="repeating_dynskills">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<select name="attr_rank" class="sheet-rank">
|
||||
<option value="-2" data-i18n="terrible-u">Terrible (-2)</option>
|
||||
<option value="-1" data-i18n="poor-u">Poor (-1)</option>
|
||||
<option value="0" data-i18n="mediocre-u">Mediocre (+0)</option>
|
||||
<option value="1" data-i18n="avg-u">Average (+1)</option>
|
||||
<option value="2" data-i18n="fair-u">Fair (+2)</option>
|
||||
<option value="3" data-i18n="good-u">Good (+3)</option>
|
||||
<option value="4" data-i18n="great-u">Great (+4)</option>
|
||||
<option value="5" data-i18n="superb-u">Superb (+5)</option>
|
||||
<option value="6" data-i18n="fantastic-u">Fantastic (+6)</option>
|
||||
<option value="7" data-i18n="epic-u">Epic (+7)</option>
|
||||
<option value="8" data-i18n="legendary-u">Legendary (+8)</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Epicd1a' value='&{template:default} {{name=@{Epicd1}}} {{^{roll-u}=[[4df+@{Rank}]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Epicd1b' value='&{template:default} {{name=@{Epicd1}}} {{^{roll-u}=[[4df+@{Rank}+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-dyn" type="text" name="attr_Epicd1" onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Epicd2a' value='&{template:default} {{name=@{Epicd2}}} {{^{roll-u}=[[4df+@{Rank}]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Epicd2b' value='&{template:default} {{name=@{Epicd2}}} {{^{roll-u}=[[4df+@{Rank}+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-dyn" type="text" name="attr_Epicd2" onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Epicd3a' value='&{template:default} {{name=@{Epicd3}}} {{^{roll-u}=[[4df+@{Rank}]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Epicd3b' value='&{template:default} {{name=@{Epicd3}}} {{^{roll-u}=[[4df+@{Rank}+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-dyn" type="text" name="attr_Epicd3" onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Epicd4a' value='&{template:default} {{name=@{Epicd4}}} {{^{roll-u}=[[4df+@{Rank}]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Epicd4b' value='&{template:default} {{name=@{Epicd4}}} {{^{roll-u}=[[4df+@{Rank}+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-dyn" type="text" name="attr_Epicd4" onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
<td>
|
||||
<button type='roll' class="sheet-roll_type_1" name='roll_Epicd5a' value='&{template:default} {{name=@{Epicd5}}} {{^{roll-u}=[[4df+@{Rank}]]}}'></button>
|
||||
<button type='roll' class="sheet-roll_type_2" name='roll_Epicd5b' value='&{template:default} {{name=@{Epicd5}}} {{^{roll-u}=[[4df+@{Rank}+?{Modifier?|0}]]}}'></button>
|
||||
<input class="sheet-skill-dyn" type="text" name="attr_Epicd5" onkeyup="this.setAttribute('value', this.value);" value="" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
||||
|
||||
</div>
|
||||
<!-- end alternate display -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end section-skills -->
|
||||
|
||||
<div class="sheet-section-stress sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="stress-u">Stress</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table class="sheet-fullwidth">
|
||||
<tr>
|
||||
<td class="sheet-stress-descr"><span data-i18n="stress-u">Stress</span></td>
|
||||
<td>1<input class="squarebox" type="checkbox" name="attr_Phy1" /><span></span></td>
|
||||
<td>2<input class="squarebox" type="checkbox" name="attr_Phy2" /><span></span></td>
|
||||
<td class="sheet-nbsb" data-i18n-title="nerves-3-u">(Nerves +3)</td>
|
||||
<td>3<input class="squarebox" type="checkbox" name="attr_Phy3" /><span></span></td>
|
||||
<td class="sheet-nbsb" data-i18n-title="nerves-4-u">(Nerves +4)</span></td>
|
||||
<td>4<input class="squarebox" type="checkbox" name="attr_Phy4" /><span></span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- .section-stress -->
|
||||
|
||||
<div class="sheet-section-consequences sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="consequences-u">Consequences</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<fieldset class="repeating_Cons">
|
||||
<select name="attr_conType">
|
||||
<option data-i18n="mild-u">Mild (2)</option>
|
||||
<option data-i18n="moderate-u">Moderate (4)</option>
|
||||
<option data-i18n="severe-u">Severe (6)</option>
|
||||
</select>
|
||||
<input type="text" name="attr_Consequence" />
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- .section-consequences -->
|
||||
|
||||
|
||||
<div class="sheet-section-stunts sheet-section sheet-pos">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="stunts-u">Stunts</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="sheet-repitem bold">
|
||||
<input type="text" name="attr_PlaybookStunt" data-i18n-placeholder="playbook-stunt-u" placeholder="Playbook Stunt" />
|
||||
<textarea name="attr_PlaybookStunt_descr"></textarea>
|
||||
</div>
|
||||
<div class="sheet-repitem bold">
|
||||
<input type="text" name="attr_ChopperMod" data-i18n-placeholder="chopper-mod-u" placeholder="Chopper Mod" />
|
||||
<textarea name="attr_ChopperMod_descr"></textarea>
|
||||
</div>
|
||||
<div class="sheet-repitem bold">
|
||||
<input type="text" name="attr_GangStunt" data-i18n-placeholder="gang-stunt-u" placeholder="gang Stunt" />
|
||||
<textarea name="attr_GangStunt_descr"></textarea>
|
||||
</div>
|
||||
<fieldset class="repeating_stunts">
|
||||
<input type="text" name="attr_stunt-name" class="attr_stunt-name"/>
|
||||
<textarea name="attr_stunts_descr"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- .section-stunts -->
|
||||
</div> <!-- .section-stress -->
|
||||
|
||||
<div class="sheet-section-extras sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="extras-u">Extras</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<fieldset class="repeating_Extras">
|
||||
<input type="text" name="attr_extras-name" class="attr_extras-name"/>
|
||||
<textarea name="attr_extras_descr"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sheet-section-advancements sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="advancements-u">Advancements</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="experience">
|
||||
<label data-i18n="experience-u">Experience</label>
|
||||
<input class="squarebox" type="checkbox" name="attr_xp1" value="1"/><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_xp2" value="1"/><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_xp3" value="1"/><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_xp4" value="1"/><span></span>
|
||||
<input class="squarebox"type="checkbox" name="attr_xp5" value="1"/><span></span>
|
||||
<div class="sheet-section-consequences sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="consequences-u">Consequences</label>
|
||||
</div>
|
||||
<div class="advances">
|
||||
<label data-i18n="advances-u">Advances</label>
|
||||
<input class="squarebox" type="checkbox" name="attr_advance1" value="1"/><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_advance2" value="1"/><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_advance3" value="1"/><span></span>
|
||||
<div class="content">
|
||||
<fieldset class="repeating_Cons">
|
||||
<select name="attr_conType">
|
||||
<option data-i18n="mild-u">Mild (2)</option>
|
||||
<option data-i18n="moderate-u">Moderate (4)</option>
|
||||
<option data-i18n="severe-u">Severe (6)</option>
|
||||
</select>
|
||||
<input type="text" name="attr_Consequence" />
|
||||
</fieldset>
|
||||
</div>
|
||||
<div class="triggers">
|
||||
<label data-i18n="trigger-u">Trigger</label>
|
||||
<textarea name="attr_xp_trigger" data-i18n="triggertext-u">Your Toxicity Aspect is compelled. \nYou worked together as a team.</textarea>
|
||||
</div>
|
||||
</div> <!-- .section-consequences -->
|
||||
|
||||
|
||||
<div class="sheet-section-stunts sheet-section sheet-pos">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="stunts-u">Stunts</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="sheet-repitem bold">
|
||||
<input type="text" name="attr_PlaybookStunt" data-i18n-placeholder="playbook-stunt-u"
|
||||
placeholder="Playbook Stunt" />
|
||||
<textarea name="attr_PlaybookStunt_descr"></textarea>
|
||||
</div>
|
||||
<div class="sheet-repitem bold">
|
||||
<input type="text" name="attr_ChopperMod" data-i18n-placeholder="chopper-mod-u"
|
||||
placeholder="Chopper Mod" />
|
||||
<textarea name="attr_ChopperMod_descr"></textarea>
|
||||
</div>
|
||||
<div class="sheet-repitem bold">
|
||||
<input type="text" name="attr_GangStunt" data-i18n-placeholder="gang-stunt-u"
|
||||
placeholder="gang Stunt" />
|
||||
<textarea name="attr_GangStunt_descr"></textarea>
|
||||
</div>
|
||||
<fieldset class="repeating_stunts">
|
||||
<input type="text" name="attr_stunt-name" class="attr_stunt-name" />
|
||||
<textarea name="attr_stunts_descr"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- .section-stunts -->
|
||||
|
||||
<div class="sheet-section-extras sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="extras-u">Extras</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<fieldset class="repeating_Extras">
|
||||
<input type="text" name="attr_extras-name" class="attr_extras-name" />
|
||||
<textarea name="attr_extras_descr"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sheet-section-vibes sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="vibes-u">Vibes</label>
|
||||
<div class="sheet-section-advancements sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="advancements-u">Advancements</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="experience">
|
||||
<label data-i18n="experience-u">Experience</label>
|
||||
<input class="squarebox" type="checkbox" name="attr_xp1" value="1" /><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_xp2" value="1" /><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_xp3" value="1" /><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_xp4" value="1" /><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_xp5" value="1" /><span></span>
|
||||
</div>
|
||||
<div class="advances">
|
||||
<label data-i18n="advances-u">Advances</label>
|
||||
<input class="squarebox" type="checkbox" name="attr_advance1" value="1" /><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_advance2" value="1" /><span></span>
|
||||
<input class="squarebox" type="checkbox" name="attr_advance3" value="1" /><span></span>
|
||||
</div>
|
||||
<div class="triggers">
|
||||
<label data-i18n="trigger-u">Trigger</label>
|
||||
<textarea name="attr_xp_trigger"
|
||||
data-i18n="triggertext-u">Your Toxicity Aspect is compelled. \nYou worked together as a team.</textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content">
|
||||
<fieldset class="repeating_vibes">
|
||||
<input type="text" name="attr_vibes-name" class="attr_vibes-name"/>
|
||||
<select name="attr_conType">
|
||||
</div>
|
||||
<div class="sheet-section-vibes sheet-section">
|
||||
<div class="ace-box">
|
||||
<div class="title">
|
||||
<span>\</span>
|
||||
<label data-i18n="vibes-u">Vibes</label>
|
||||
</div>
|
||||
<div class="content">
|
||||
<fieldset class="repeating_vibes">
|
||||
<input type="text" name="attr_vibes-name" class="attr_vibes-name" />
|
||||
<select name="attr_conType">
|
||||
<option>+</option>
|
||||
<option>-</option>
|
||||
</select>
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -4,5 +4,5 @@
|
||||
"authors": "Twylleth",
|
||||
"roll20userid": "7809041",
|
||||
"preview": "aces_in_space.png",
|
||||
"instructions": "Official character sheet for Aces in Space character by Judith Vogt, Christian Vogt and Harald Eckmueller.\rBased on previous Fate Core Sheet by Andrew Bailey (krathognis) and Devindra Payment (@Ardnived)##\r"
|
||||
"instructions": "Official character sheet for Aces in Space character by Judith Vogt, Christian Vogt and Harald Eckmueller.\rBased on previous Fate Core Sheet with rolls by sioc, Andrew Bailey (krathognis) and Devindra Payment (@Ardnived)##\r"
|
||||
}
|
||||
Reference in New Issue
Block a user