mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
11674 lines
1.9 MiB
Plaintext
11674 lines
1.9 MiB
Plaintext
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<style>@import url("https://fonts.googleapis.com/css?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");
|
||
.charsheet {
|
||
padding: 0 !important;
|
||
}
|
||
|
||
.charsheet button[type=roll] {
|
||
text-shadow: none;
|
||
font-size: inherit !important;
|
||
padding: 0 !important;
|
||
margin: 0 !important;
|
||
}
|
||
|
||
.charsheet button[type=roll]::before {
|
||
display: none;
|
||
}
|
||
|
||
.charsheet button[type=roll]:hover, .charsheet button[type=roll]:focus, .charsheet button[type=roll]:active {
|
||
background-color: transparent;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.repcontrol {
|
||
position: absolute;
|
||
bottom: -1px;
|
||
right: 0;
|
||
z-index: 2;
|
||
display: flex;
|
||
}
|
||
|
||
.repcontrol button.btn {
|
||
position: relative;
|
||
color: transparent;
|
||
font-size: 0;
|
||
height: 16px;
|
||
width: 16px;
|
||
transition: color .3s ease-in-out, opacity .3s ease-in-out;
|
||
}
|
||
|
||
.repcontrol button.btn::after, .repcontrol button.btn::before {
|
||
transition: color .3s ease-in-out, opacity .3s ease-in-out;
|
||
}
|
||
|
||
.repcontrol button.btn:hover, .repcontrol button.btn:focus, .repcontrol button.btn:active {
|
||
background-color: transparent;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.repcontrol button.btn::after {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: 1;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: #d6d6d6;
|
||
font-family: Pictos;
|
||
font-size: 12px;
|
||
line-height: 1;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.repcontrol button.btn:hover::after {
|
||
color: #606060;
|
||
}
|
||
|
||
.repcontrol button.btn:active::after {
|
||
color: black;
|
||
}
|
||
|
||
.repcontrol button.btn.repcontrol_add {
|
||
order: 1;
|
||
}
|
||
|
||
.repcontrol button.btn.repcontrol_add::after {
|
||
content: '&';
|
||
}
|
||
|
||
.repcontrol button.btn.repcontrol_edit {
|
||
order: 2;
|
||
float: none;
|
||
}
|
||
|
||
.repcontrol button.btn.repcontrol_edit::after {
|
||
content: '_';
|
||
}
|
||
|
||
.repcontainer.editmode + .repcontrol button.repcontrol_edit::after {
|
||
content: '3';
|
||
}
|
||
|
||
.repcontainer.editmode .sheet-repitem__note-box,
|
||
.repcontainer.editmode .sheet-repitem__settings {
|
||
display: none;
|
||
}
|
||
|
||
.repcontainer.editmode .itemcontrol {
|
||
z-index: 10;
|
||
display: flex !important;
|
||
justify-content: space-between;
|
||
background-color: rgba(255, 255, 255, 0.5) !important;
|
||
border-radius: 2px;
|
||
margin: 0 2px;
|
||
width: calc(100% - 4px) !important;
|
||
}
|
||
|
||
.repcontainer.editmode .itemcontrol a.repcontrol_move {
|
||
order: 1;
|
||
font-size: 18px;
|
||
border-radius: 2px 0 0 2px;
|
||
padding: 0 2px 0 0;
|
||
}
|
||
|
||
.repcontainer.editmode .itemcontrol button.repcontrol_del {
|
||
order: 2;
|
||
float: none !important;
|
||
font-family: Pictos;
|
||
font-size: 12px;
|
||
border-radius: 0 2px 2px 0;
|
||
padding: 0 0 0 4px;
|
||
}
|
||
|
||
.repcontainer.editmode .itemcontrol a.repcontrol_move,
|
||
.repcontainer.editmode .itemcontrol button.repcontrol_del {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: #fff;
|
||
text-shadow: none;
|
||
color: #404040;
|
||
line-height: 1;
|
||
border: 0;
|
||
height: 100%;
|
||
width: 20px;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.repcontainer.editmode .itemcontrol a.repcontrol_move:hover,
|
||
.repcontainer.editmode .itemcontrol button.repcontrol_del:hover {
|
||
color: black !important;
|
||
}
|
||
|
||
.repcontainer.editmode .itemcontrol a.repcontrol_move:active,
|
||
.repcontainer.editmode .itemcontrol button.repcontrol_del:active {
|
||
color: black !important;
|
||
box-shadow: none;
|
||
background: #fff;
|
||
}
|
||
|
||
.repcontainer.editmode div.repitem:hover .itemcontrol {
|
||
background-color: rgba(255, 255, 255, 0.7) !important;
|
||
}
|
||
|
||
*,
|
||
::before,
|
||
::after {
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
p {
|
||
font-family: inherit;
|
||
font-size: inherit;
|
||
line-height: inherit;
|
||
margin: 0 0 8px 0;
|
||
}
|
||
|
||
ul {
|
||
list-style: none;
|
||
padding: 0;
|
||
margin: 0;
|
||
}
|
||
|
||
ul li b:first-child {
|
||
display: inline-block;
|
||
padding-right: 8px;
|
||
min-width: 96px;
|
||
}
|
||
|
||
textarea,
|
||
select,
|
||
button,
|
||
fieldset,
|
||
input,
|
||
option,
|
||
label {
|
||
display: flex;
|
||
background-color: transparent;
|
||
background-image: none;
|
||
font-family: inherit;
|
||
font-weight: 400;
|
||
text-decoration: none;
|
||
padding: 0;
|
||
margin: 0;
|
||
border: 0;
|
||
border-radius: 0;
|
||
outline: 0 !important;
|
||
min-width: 0;
|
||
box-shadow: none;
|
||
appearance: none;
|
||
-moz-appearance: none;
|
||
-webkit-appearance: none;
|
||
}
|
||
|
||
textarea::placeholder,
|
||
select::placeholder,
|
||
button::placeholder,
|
||
fieldset::placeholder,
|
||
input::placeholder,
|
||
option::placeholder,
|
||
label::placeholder {
|
||
color: #d6d6d6;
|
||
}
|
||
|
||
button,
|
||
label,
|
||
input[type=checkbox],
|
||
input[type=radio] {
|
||
cursor: pointer;
|
||
}
|
||
|
||
button:hover, button:hover > span,
|
||
button > span:hover,
|
||
button > span:hover > span {
|
||
color: #303030 !important;
|
||
}
|
||
|
||
button[type=action] {
|
||
color: #606060;
|
||
font-size: 10px;
|
||
font-weight: 500;
|
||
line-height: 1;
|
||
}
|
||
|
||
input[type=text]:not(.sheet-hex) {
|
||
background-color: transparent;
|
||
color: #404040;
|
||
font-size: 10px;
|
||
line-height: 20px;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
input[type=text]:not(.sheet-hex)::placeholder {
|
||
font-size: 8px;
|
||
line-height: 20px;
|
||
}
|
||
|
||
input[type=text]:not(.sheet-hex):not(.sheet-align-left) {
|
||
text-align: center;
|
||
}
|
||
|
||
input[type=hidden] {
|
||
display: none;
|
||
}
|
||
|
||
textarea {
|
||
color: #606060;
|
||
font-size: 9px;
|
||
line-height: 1.6;
|
||
width: 100%;
|
||
resize: none;
|
||
}
|
||
|
||
input.sheet-checkbox[type=checkbox] {
|
||
background-color: #fff;
|
||
border: 1px solid #808080;
|
||
border-radius: 2px;
|
||
height: 10px;
|
||
width: 10px;
|
||
}
|
||
|
||
input.sheet-checkbox[type=checkbox]::before {
|
||
content: '';
|
||
display: block;
|
||
border-radius: 1px;
|
||
margin: 1px 0 0 1px;
|
||
height: 6px;
|
||
width: 6px;
|
||
}
|
||
|
||
input.sheet-checkbox[type=checkbox]:checked::before {
|
||
background-color: #808080;
|
||
}
|
||
|
||
.sheet-wrapper {
|
||
text-align: center;
|
||
}
|
||
|
||
.sheet-body {
|
||
color: #404040;
|
||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||
font-size: 10px;
|
||
line-height: 1;
|
||
text-align: left;
|
||
background-image: linear-gradient(to right, #fbfbfb 1px, transparent 1px), linear-gradient(to bottom, #fbfbfb 1px, transparent 1px);
|
||
background-size: 8px 8px;
|
||
background-position: -1px -1px;
|
||
padding-top: 8px;
|
||
margin: 0 auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
text-rendering: optimizeLegibility;
|
||
}
|
||
|
||
.sheet-body > div {
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.sheet-body ~ rolltemplate {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-variant-radio {
|
||
display: inline-block;
|
||
}
|
||
|
||
.sheet-variant-radio::after {
|
||
content: '';
|
||
display: inline-block;
|
||
padding: 3px;
|
||
border: 1px solid #e0e0e0;
|
||
border-radius: 50%;
|
||
}
|
||
|
||
.sheet-variant-radio:checked::after {
|
||
background-color: #e0e0e0;
|
||
}
|
||
|
||
.sheet-variant-radio--wildcard:checked ~ .sheet-body {
|
||
width: 800px;
|
||
}
|
||
|
||
.sheet-variant-radio--wildcard:checked ~ .sheet-body .sheet-extra {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-variant-radio--extra:checked ~ .sheet-body {
|
||
width: 474px;
|
||
}
|
||
|
||
.sheet-variant-radio--extra:checked ~ .sheet-body .sheet-wildcard {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-wildcard .sheet-section {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.sheet-wildcard .sheet-section > .sheet-left {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex-shrink: 0;
|
||
width: 470px;
|
||
}
|
||
|
||
.sheet-wildcard .sheet-section > .sheet-right {
|
||
flex-grow: 1;
|
||
}
|
||
|
||
.sheet-hidden {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-block {
|
||
position: relative;
|
||
margin-top: 40px;
|
||
}
|
||
|
||
.sheet-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
padding-bottom: 4px;
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-header__title {
|
||
display: block;
|
||
flex-grow: 1;
|
||
color: #606060;
|
||
font-size: 12px;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
}
|
||
|
||
.sheet-header__labels {
|
||
display: flex;
|
||
align-items: flex-end;
|
||
line-height: 8px;
|
||
text-align: center;
|
||
text-transform: uppercase;
|
||
padding-right: 16px;
|
||
margin-bottom: -2px;
|
||
}
|
||
|
||
.sheet-header__labels > span {
|
||
display: block;
|
||
}
|
||
|
||
.sheet-label,
|
||
.sheet-header__labels * {
|
||
color: #b0b0b0;
|
||
font-size: 8px;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.sheet-large-label {
|
||
color: #606060;
|
||
font-size: 12px;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.sheet-footer {
|
||
color: #606060;
|
||
line-height: 16px;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-toggle:not(:checked):not(.sheet-toggle--special) + *, .sheet-toggle:not(:checked):not(.sheet-toggle--special) ~ .repcontainer, .sheet-toggle:not(:checked):not(.sheet-toggle--special) ~ .repcontrol {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-toggle::after {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: #808080;
|
||
line-height: 1;
|
||
width: 16px;
|
||
}
|
||
|
||
.sheet-toggle:checked::after {
|
||
color: #606060;
|
||
}
|
||
|
||
.sheet-toggle--block {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-toggle--visibility {
|
||
position: absolute;
|
||
top: 4px;
|
||
right: 0;
|
||
}
|
||
|
||
.sheet-toggle--visibility::after {
|
||
content: '`';
|
||
color: #d6d6d6;
|
||
font-size: 10px;
|
||
font-family: Pictos;
|
||
height: 10px;
|
||
}
|
||
|
||
.sheet-toggle--visibility:checked::after {
|
||
color: #d6d6d6;
|
||
}
|
||
|
||
.sheet-toggle--visibility:checked::after {
|
||
content: 'J';
|
||
}
|
||
|
||
.sheet-toggle--arrow {
|
||
position: absolute;
|
||
right: 0;
|
||
top: 0;
|
||
}
|
||
|
||
.sheet-toggle--arrow::after {
|
||
content: '►';
|
||
font-size: 8px;
|
||
line-height: 20px;
|
||
height: 20px;
|
||
width: 20px;
|
||
transform-origin: 9px 10px;
|
||
transition: transform .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-toggle--arrow:checked::after {
|
||
transform: rotate(90deg);
|
||
}
|
||
|
||
.sheet-toggle--settings::after, .sheet-toggle--note-box::after, .sheet-toggle--loss::after {
|
||
color: #b0b0b0;
|
||
font-family: Pictos;
|
||
font-size: 10px;
|
||
padding-top: 1px;
|
||
width: 10px;
|
||
}
|
||
|
||
.sheet-toggle--settings::after {
|
||
content: 'y';
|
||
}
|
||
|
||
.sheet-toggle--note-box::after {
|
||
content: 'n';
|
||
}
|
||
|
||
.sheet-toggle--loss::after {
|
||
content: 'Q';
|
||
}
|
||
|
||
.sheet-toggle--weight::after {
|
||
content: 'V';
|
||
color: #b0b0b0;
|
||
font-family: Pictos;
|
||
font-size: 12px;
|
||
padding-top: 1px;
|
||
width: 10px;
|
||
transform: rotateZ(-90deg) scaleX(0.75);
|
||
}
|
||
|
||
.sheet-toggle--spoiler::after {
|
||
content: '&';
|
||
color: #606060;
|
||
font-family: Pictos;
|
||
font-size: 10px;
|
||
height: 100%;
|
||
}
|
||
|
||
.sheet-toggle--spoiler:checked::after {
|
||
content: '_';
|
||
}
|
||
|
||
.sheet-toggle--list-roll:not(:checked) ~ .sheet-repitem__skill-roll {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-radio-track {
|
||
position: relative;
|
||
flex-shrink: 0;
|
||
background-color: #fff;
|
||
box-shadow: 0 0 1.5px 0 rgba(0, 0, 0, 0.5);
|
||
}
|
||
|
||
.sheet-radio-track::before {
|
||
z-index: 1;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: #fff;
|
||
font-size: 9px;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-radio-track::after {
|
||
content: '';
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
display: block;
|
||
border-radius: inherit;
|
||
height: 0;
|
||
width: 0;
|
||
transform: translate(-50%, -50%);
|
||
transition: height .3s ease-in-out, width .3s ease-in-out, background-color .1s ease-in-out;
|
||
}
|
||
|
||
.sheet-radio-track:hover::after, .sheet-radio-track:hover ~ .sheet-radio-track:not(:checked)::after {
|
||
background-color: #f2f2f2;
|
||
height: 60%;
|
||
width: 60%;
|
||
}
|
||
|
||
.sheet-radio-track:checked::after,
|
||
.sheet-radio-track:checked ~ .sheet-radio-track:not(:checked)::after {
|
||
background-color: #898989;
|
||
height: 100%;
|
||
width: 100%;
|
||
transition-duration: .1s;
|
||
}
|
||
|
||
.sheet-tooltip {
|
||
pointer-events: none;
|
||
position: absolute;
|
||
display: flex;
|
||
align-items: center;
|
||
background-color: #606060;
|
||
color: #fff;
|
||
font-size: 10px;
|
||
line-height: 1;
|
||
padding: 2px 6px;
|
||
border-radius: 2px;
|
||
opacity: 0;
|
||
transition: opacity .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-tooltip span:not(:last-child) {
|
||
margin-right: 2px;
|
||
}
|
||
|
||
.sheet-tooltip::after {
|
||
content: '';
|
||
position: absolute;
|
||
height: 10px;
|
||
width: 10px;
|
||
}
|
||
|
||
.sheet-tooltip--left {
|
||
top: 50%;
|
||
left: -6px;
|
||
transform: translate(-100%, -50%);
|
||
}
|
||
|
||
.sheet-tooltip--left::after {
|
||
top: 50%;
|
||
right: -8px;
|
||
border: 5px solid transparent;
|
||
border-left-color: #606060;
|
||
transform: translateY(-50%);
|
||
}
|
||
|
||
.sheet-tooltip--top {
|
||
top: -6px;
|
||
left: 50%;
|
||
transform: translate(-50%, -100%);
|
||
}
|
||
|
||
.sheet-tooltip--top::after {
|
||
bottom: -8px;
|
||
left: 50%;
|
||
border: 5px solid transparent;
|
||
border-top-color: #606060;
|
||
transform: translateX(-50%);
|
||
}
|
||
|
||
.sheet-damage-roll-toggle-label {
|
||
display: block;
|
||
line-height: 8px;
|
||
text-align: center;
|
||
padding-right: 10px;
|
||
}
|
||
|
||
.sheet-damage-roll-toggle-label input[type=checkbox]:checked ~ span {
|
||
color: #606060;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.sheet-damage-roll-toggle-label .sheet-icon {
|
||
display: inline-block;
|
||
font-family: Pictos;
|
||
font-size: 10px;
|
||
margin-right: 4px;
|
||
overflow: visible;
|
||
}
|
||
|
||
.sheet-damage-roll-toggle ~ .repcontainer .sheet-damage-button-overlay {
|
||
position: relative;
|
||
}
|
||
|
||
.sheet-damage-roll-toggle ~ .repcontainer .sheet-damage-button-overlay button[type=roll] {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: -1;
|
||
display: block;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-damage-roll-toggle:checked ~ .repcontainer .sheet-damage-button-overlay button[type=roll] {
|
||
z-index: 1;
|
||
}
|
||
|
||
.sheet-damage-roll-toggle:checked ~ .repcontainer .sheet-damage-button-overlay input[type=text] {
|
||
position: relative;
|
||
z-index: 0;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.sheet-damage-roll-toggle:checked ~ .repcontainer .sheet-damage-button-overlay input[type=text]:placeholder-shown {
|
||
z-index: 2;
|
||
}
|
||
|
||
.sheet-label-toggle {
|
||
user-select: none;
|
||
flex-shrink: 0;
|
||
width: auto;
|
||
}
|
||
|
||
.sheet-label-toggle input.sheet-label-toggle__input[type=text] {
|
||
background-color: #fff;
|
||
color: #606060;
|
||
line-height: 14px;
|
||
border: 1px solid #898989;
|
||
border-width: 1px;
|
||
border-radius: 0 2px 2px 0;
|
||
padding: 0 4px;
|
||
margin-left: -2px;
|
||
height: 14px;
|
||
width: 96px;
|
||
}
|
||
|
||
.sheet-label-toggle input.sheet-label-toggle__input[type=text]:first-child {
|
||
border-left-width: 2px;
|
||
}
|
||
|
||
.sheet-label-toggle input.sheet-label-toggle__input--tiny[type=text] {
|
||
width: 32px;
|
||
}
|
||
|
||
.sheet-label-toggle input.sheet-label-toggle__input[type=text]::placeholder {
|
||
line-height: 12px;
|
||
}
|
||
|
||
.sheet-label-toggle span {
|
||
display: block;
|
||
flex-shrink: 0;
|
||
background-color: #898989;
|
||
color: #fff;
|
||
font-size: 8px;
|
||
font-weight: 500;
|
||
line-height: 15px;
|
||
border-radius: 2px;
|
||
padding: 0 4px;
|
||
height: 14px;
|
||
}
|
||
|
||
.sheet-label-toggle--full-row {
|
||
flex-basis: 100%;
|
||
}
|
||
|
||
.sheet-label-toggle--full-row input.sheet-label-toggle__input[type=text] {
|
||
text-align: left;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-label-toggle input[type=checkbox] {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-label-toggle input[type=checkbox]:not(:checked) + span {
|
||
background-color: #d6d6d6;
|
||
}
|
||
|
||
.sheet-label-toggle input[type=checkbox]:not(:checked) ~ input.sheet-label-toggle__input[type=text] {
|
||
color: #b0b0b0;
|
||
border-color: #d6d6d6;
|
||
}
|
||
|
||
.sheet-toggle-roboto:checked ~ .sheet-body {
|
||
font-family: Roboto, Arial, Helvetica, sans-serif;
|
||
}
|
||
|
||
.sheet-toggle-dark-labels:checked ~ .sheet-body .sheet-header__labels *,
|
||
.sheet-toggle-dark-labels:checked ~ .sheet-body .sheet-label,
|
||
.sheet-toggle-dark-labels:checked ~ .sheet-body .sheet-hexfield__label {
|
||
color: #606060 !important;
|
||
}
|
||
|
||
.sheet-toggle-skill-die-numbers:not(:checked) ~ .sheet-body .sheet-radio-track::before {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-toggle-corners:not(:checked) ~ .sheet-body :not(.sheet-icon):not(.sheet-color-cycle__radio) {
|
||
border-radius: 0 !important;
|
||
}
|
||
|
||
.sheet-toggle-corners:not(:checked) ~ .sheet-body :not(.sheet-icon):not(.sheet-color-cycle__radio)::before, .sheet-toggle-corners:not(:checked) ~ .sheet-body :not(.sheet-icon):not(.sheet-color-cycle__radio)::after {
|
||
border-radius: 0 !important;
|
||
}
|
||
|
||
.sheet-toggle-transitions:not(:checked) ~ .sheet-body *,
|
||
.sheet-toggle-transitions:not(:checked) ~ .sheet-body ::before,
|
||
.sheet-toggle-transitions:not(:checked) ~ .sheet-body ::after {
|
||
transition-duration: 0s !important;
|
||
}
|
||
|
||
.sheet-toggle-delays:not(:checked) ~ .sheet-body *,
|
||
.sheet-toggle-delays:not(:checked) ~ .sheet-body ::before,
|
||
.sheet-toggle-delays:not(:checked) ~ .sheet-body ::after {
|
||
transition-delay: 0s !important;
|
||
}
|
||
|
||
.sheet-toggle-grid:not(:checked) ~ .sheet-body {
|
||
background: none;
|
||
}
|
||
|
||
.sheet-toggle-description-input:not(:checked) ~ .repcontainer .sheet-roll-description {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-toggle-injection-input:not(:checked) ~ .repcontainer .sheet-roll-injection {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-hex {
|
||
position: relative;
|
||
display: block;
|
||
background-repeat: no-repeat;
|
||
background-position: center;
|
||
color: #606060;
|
||
font-weight: 700;
|
||
text-align: center;
|
||
padding: 0 6px;
|
||
filter: drop-shadow(rgba(0, 0, 0, 0.5) 0px 0px 0.7px);
|
||
}
|
||
|
||
.sheet-hex::placeholder {
|
||
color: #d6d6d6;
|
||
font-size: inherit;
|
||
font-weight: inherit;
|
||
line-height: inherit;
|
||
}
|
||
|
||
.sheet-hex--36 {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/hexagon_36.svg");
|
||
font-size: 12px;
|
||
line-height: 36px;
|
||
height: 36px !important;
|
||
width: 36px;
|
||
}
|
||
|
||
.sheet-hex--48 {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/hexagon_48.svg");
|
||
font-size: 16px !important;
|
||
line-height: 48px;
|
||
height: 48px !important;
|
||
width: 48px;
|
||
}
|
||
|
||
.sheet-hex--64 {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/hexagon_64.svg");
|
||
font-size: 18px !important;
|
||
line-height: 64px;
|
||
height: 64px !important;
|
||
width: 64px;
|
||
}
|
||
|
||
.sheet-color-cycle {
|
||
position: relative;
|
||
height: 16px;
|
||
width: 16px;
|
||
}
|
||
|
||
.sheet-color-cycle__radio {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
z-index: 1;
|
||
background-color: transparent;
|
||
padding: 4px;
|
||
border-radius: 50%;
|
||
opacity: 0;
|
||
transform: translate(-50%, -50%);
|
||
}
|
||
|
||
.sheet-color-cycle__radio:checked {
|
||
opacity: 1;
|
||
}
|
||
|
||
.sheet-color-cycle__radio:checked + input {
|
||
z-index: 3;
|
||
}
|
||
|
||
.sheet-color-cycle__radio--none, .sheet-color-cycle__radio--novice {
|
||
z-index: 2;
|
||
}
|
||
|
||
.sheet-color-cycle__radio--none:checked, .sheet-color-cycle__radio--novice:checked {
|
||
background-color: transparent;
|
||
border-color: transparent;
|
||
}
|
||
|
||
.sheet-color-cycle__radio--red:checked {
|
||
background-color: #d9534f;
|
||
border-color: #d9534f;
|
||
}
|
||
|
||
.sheet-color-cycle__radio--yellow:checked {
|
||
background-color: #f0ad4e;
|
||
border-color: #f0ad4e;
|
||
}
|
||
|
||
.sheet-color-cycle__radio--blue:checked {
|
||
background-color: #0275d8;
|
||
border-color: #0275d8;
|
||
}
|
||
|
||
.sheet-color-cycle__radio--green:checked {
|
||
background-color: #5cb85c;
|
||
border-color: #5cb85c;
|
||
}
|
||
|
||
.sheet-color-cycle__radio--purple:checked {
|
||
background-color: #b25afd;
|
||
border-color: #b25afd;
|
||
}
|
||
|
||
.sheet-color-cycle__radio--gray:checked {
|
||
background-color: #545454;
|
||
border-color: #545454;
|
||
}
|
||
|
||
.sheet-color-cycle__radio:last-child:checked {
|
||
z-index: 1;
|
||
}
|
||
|
||
.sheet-wildcard button.sheet-repitem__skill-roll--extra {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-extra button.sheet-repitem__skill-roll--wildcard {
|
||
display: none;
|
||
}
|
||
|
||
fieldset,
|
||
.repcontainer {
|
||
padding: 6px 0;
|
||
min-height: 32px;
|
||
}
|
||
|
||
.repcontainer:empty ~ .repcontrol .repcontrol_add::before {
|
||
content: '+ + +';
|
||
position: absolute;
|
||
top: -27px;
|
||
right: -16px;
|
||
background-color: #f2f2f2;
|
||
color: #808080;
|
||
font-size: 10px;
|
||
line-height: 21px;
|
||
border-radius: 2px;
|
||
height: 20px;
|
||
width: 470px;
|
||
}
|
||
|
||
.repitem:not(:first-child) {
|
||
margin-top: 4px;
|
||
}
|
||
|
||
.repitem input[type=text]::placeholder {
|
||
line-height: 20px;
|
||
}
|
||
|
||
.sheet-repitem {
|
||
position: relative;
|
||
background-color: #fdfdfd;
|
||
border-radius: 2px;
|
||
width: 100%;
|
||
box-shadow: 0 0 1.5px 0 rgba(0, 0, 0, 0.5);
|
||
}
|
||
|
||
.sheet-repitem:not(:last-child) {
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.sheet-repitem button.sheet-repitem__skill-roll {
|
||
font-family: Pictos;
|
||
color: #606060;
|
||
font-size: 10px;
|
||
height: 16px;
|
||
line-height: 15px;
|
||
margin-right: 4px !important;
|
||
}
|
||
|
||
.sheet-repitem--full-field textarea {
|
||
font-size: 10px;
|
||
line-height: 16px;
|
||
padding: 2px 6px 2px;
|
||
min-height: 20px;
|
||
}
|
||
|
||
.sheet-repitem__primary, .sheet-repitem__secondary {
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.sheet-repitem__primary > input.sheet-stretch, .sheet-repitem__secondary > input.sheet-stretch {
|
||
flex-grow: 1;
|
||
width: auto;
|
||
}
|
||
|
||
.sheet-repitem__primary {
|
||
position: relative;
|
||
padding: 0 16px 0 6px;
|
||
height: 20px;
|
||
}
|
||
|
||
.sheet-repitem__primary .sheet-toggle--note-box {
|
||
padding-right: 4px;
|
||
}
|
||
|
||
.sheet-repitem__primary .sheet-toggle--note-box::after {
|
||
padding-top: 0;
|
||
}
|
||
|
||
.sheet-repitem__secondary {
|
||
padding-top: 1px;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-repitem__secondary .sheet-toggle:not(:last-of-type) {
|
||
margin-right: 4px;
|
||
}
|
||
|
||
.sheet-repitem__secondary input[type=text]::placeholder {
|
||
line-height: 16px;
|
||
}
|
||
|
||
.sheet-repitem__secondary, .sheet-repitem__frame {
|
||
color: #606060;
|
||
font-size: 9px;
|
||
margin: 0 6px;
|
||
border-top: 1px dotted #e0e0e0;
|
||
}
|
||
|
||
.sheet-repitem__secondary input[type=text], .sheet-repitem__frame input[type=text] {
|
||
color: #606060;
|
||
font-size: 9px;
|
||
line-height: 16px;
|
||
}
|
||
|
||
.sheet-repitem__secondary input[type=text]::placeholder, .sheet-repitem__frame input[type=text]::placeholder {
|
||
font-size: 9px !important;
|
||
}
|
||
|
||
.sheet-repitem__frame {
|
||
display: flex;
|
||
height: 64px;
|
||
}
|
||
|
||
.sheet-repitem__frame-silhouette {
|
||
background-repeat: no-repeat;
|
||
background-size: 80%;
|
||
background-position: center;
|
||
height: 100%;
|
||
width: 64px;
|
||
opacity: .25;
|
||
}
|
||
|
||
.sheet-repitem__frame-silhouette-button {
|
||
height: 100% !important;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-repitem__frame-build {
|
||
flex-grow: 1;
|
||
margin-left: 8px;
|
||
height: 100%;
|
||
}
|
||
|
||
.sheet-repitem__frame-build textarea {
|
||
padding-top: 6px;
|
||
height: 100%;
|
||
}
|
||
|
||
.sheet-repitem__settings {
|
||
position: absolute;
|
||
bottom: 2px;
|
||
right: -1px;
|
||
z-index: 3;
|
||
background-color: #fdfdfd;
|
||
padding: 4px 6px 0;
|
||
border: 1px solid #dbdbdb;
|
||
border-radius: 0 0 2px 2px;
|
||
border-width: 0 1px 1px;
|
||
width: calc(100% + 2px);
|
||
transform: translateY(100%);
|
||
}
|
||
|
||
.sheet-repitem__settings-content {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
align-items: center;
|
||
border-top: 1px dotted #e0e0e0;
|
||
padding-top: 4px;
|
||
margin-top: -2px;
|
||
}
|
||
|
||
.sheet-repitem__settings-content > label {
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.sheet-repitem__settings-content > :not(:last-child) {
|
||
margin-right: 4px;
|
||
}
|
||
|
||
.sheet-repitem__label {
|
||
font-weight: 500;
|
||
margin: 0 4px 0 6px;
|
||
line-height: 16px;
|
||
}
|
||
|
||
.sheet-repitem__label::after {
|
||
content: ':';
|
||
}
|
||
|
||
.sheet-repitem__note-box {
|
||
position: absolute;
|
||
top: 4px;
|
||
right: -1px;
|
||
z-index: 3;
|
||
background-color: #fdfdfd;
|
||
padding: 4px 6px;
|
||
border: 1px solid #dbdbdb;
|
||
border-radius: 2px 2px 0 0;
|
||
border-width: 1px 1px 0 1px;
|
||
width: calc(100% + 2px);
|
||
transform: translateY(-100%);
|
||
}
|
||
|
||
.sheet-repitem__note-box textarea {
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
height: 60px;
|
||
}
|
||
|
||
.sheet-repitem .sheet-toggle--arrow:not(:checked) ~ .sheet-repitem__weapons {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-repitem__subitem {
|
||
position: relative;
|
||
}
|
||
|
||
.sheet-repitem__subitem .sheet-repitem__primary,
|
||
.sheet-repitem__subitem input[type=text] {
|
||
font-size: 9px !important;
|
||
line-height: 16px;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-repitem__subitem .sheet-repitem__note-box {
|
||
top: 2px;
|
||
padding: 4px 6px 2px;
|
||
}
|
||
|
||
.sheet-repitem .sheet-repitem__weapons .sheet-repitem__note-box {
|
||
right: -7px;
|
||
width: calc(100% + 14px);
|
||
}
|
||
|
||
.sheet-repitem .sheet-repitem__weapons .sheet-toggle--arrow::after {
|
||
line-height: 16px;
|
||
margin: 1px 2px 0 0;
|
||
height: 16px;
|
||
width: 16px;
|
||
transform-origin: 7px 8px;
|
||
}
|
||
|
||
.sheet-repitem .sheet-repitem__weapons .sheet-toggle--note-box::after {
|
||
padding-top: 1px;
|
||
}
|
||
|
||
.sheet-repitem__weapons-control[value='0'] + .sheet-repitem__weapons {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-repitem__weapons-control[value='1'] + .sheet-repitem__weapons .sheet-repitem__subitem:nth-child(-n + 2), .sheet-repitem__weapons-control[value='2'] + .sheet-repitem__weapons .sheet-repitem__subitem:nth-child(-n + 3), .sheet-repitem__weapons-control[value='3'] + .sheet-repitem__weapons .sheet-repitem__subitem:nth-child(-n + 4), .sheet-repitem__weapons-control[value='4'] + .sheet-repitem__weapons .sheet-repitem__subitem:nth-child(-n + 5), .sheet-repitem__weapons-control[value='5'] + .sheet-repitem__weapons .sheet-repitem__subitem:nth-child(-n + 6), .sheet-repitem__weapons-control[value='6'] + .sheet-repitem__weapons .sheet-repitem__subitem:nth-child(-n + 7), .sheet-repitem__weapons-control[value='7'] + .sheet-repitem__weapons .sheet-repitem__subitem:nth-child(-n + 8), .sheet-repitem__weapons-control[value='8'] + .sheet-repitem__weapons .sheet-repitem__subitem:nth-child(-n + 9), .sheet-repitem__weapons-control[value='9'] + .sheet-repitem__weapons .sheet-repitem__subitem:nth-child(-n + 10), .sheet-repitem__weapons-control[value='10'] + .sheet-repitem__weapons .sheet-repitem__subitem:nth-child(-n + 11) {
|
||
display: block;
|
||
}
|
||
|
||
.sheet-repitem__weapons .sheet-header {
|
||
border-bottom: 1px solid #e0e0e0;
|
||
}
|
||
|
||
.sheet-repitem__weapons .sheet-header__labels {
|
||
padding-right: 30px;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-repitem__weapons .sheet-repitem__subitem {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-repitem__weapons .sheet-repitem__subitem:not(.sheet-repitem__subitem--1) .sheet-repitem__primary {
|
||
border-top: 1px solid #e0e0e0;
|
||
}
|
||
|
||
.sheet-repitem__weapons .sheet-repitem__primary {
|
||
margin-right: 6px;
|
||
padding-right: 10px;
|
||
}
|
||
|
||
.sheet-repitem__weapons-name {
|
||
flex-grow: 1;
|
||
text-align: left;
|
||
padding-left: 6px;
|
||
}
|
||
|
||
.sheet-repitem__weapons input.sheet-repitem__weapons-name[type=text] {
|
||
padding-left: 0;
|
||
}
|
||
|
||
.sheet-repitem__weapons-damage, .sheet-repitem__weapons-range {
|
||
width: 85px;
|
||
}
|
||
|
||
.sheet-repitem__weapons-rof {
|
||
width: 30px;
|
||
}
|
||
|
||
div:not(:hover) > .sheet-hide-until-needed > div,
|
||
div:not(:hover) > .sheet-hide-until-needed > input,
|
||
div.sheet-health:not(:hover) .sheet-health__center .sheet-hexfield > div,
|
||
div.sheet-health:not(:hover) .sheet-health__center .sheet-hexfield > input {
|
||
opacity: 0;
|
||
}
|
||
|
||
div:not(:hover) > .sheet-hide-until-needed input:hover,
|
||
div:not(:hover) > .sheet-hide-until-needed input:focus,
|
||
div.sheet-health:not(:hover) .sheet-health__center .sheet-hexfield input:hover,
|
||
div.sheet-health:not(:hover) .sheet-health__center .sheet-hexfield input:focus {
|
||
opacity: 1;
|
||
}
|
||
|
||
div:not(:hover) > .sheet-hide-until-needed input:hover ~ div,
|
||
div:not(:hover) > .sheet-hide-until-needed input:hover ~ input,
|
||
div:not(:hover) > .sheet-hide-until-needed input:focus ~ div,
|
||
div:not(:hover) > .sheet-hide-until-needed input:focus ~ input,
|
||
div.sheet-health:not(:hover) .sheet-health__center .sheet-hexfield input:hover ~ div,
|
||
div.sheet-health:not(:hover) .sheet-health__center .sheet-hexfield input:hover ~ input,
|
||
div.sheet-health:not(:hover) .sheet-health__center .sheet-hexfield input:focus ~ div,
|
||
div.sheet-health:not(:hover) .sheet-health__center .sheet-hexfield input:focus ~ input {
|
||
opacity: 1;
|
||
}
|
||
|
||
.sheet-hexfield {
|
||
position: relative;
|
||
white-space: nowrap;
|
||
color: #606060;
|
||
height: 36px;
|
||
width: 36px;
|
||
transition: color .3s ease-in-out, opacity .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-hexfield div,
|
||
.sheet-hexfield input {
|
||
transition: color .3s ease-in-out, opacity .3s ease-in-out;
|
||
transition-delay: .4s;
|
||
}
|
||
|
||
.sheet-hexfield-gray, .sheet-hexfield-gray input {
|
||
color: #b0b0b0;
|
||
}
|
||
|
||
.sheet-hexfield .sheet-hexfield .sheet-hexfield__label {
|
||
color: #b0b0b0;
|
||
}
|
||
|
||
.sheet-hexfield.sheet-stay-on-input input:not(:placeholder-shown) {
|
||
opacity: 1 !important;
|
||
}
|
||
|
||
.sheet-hexfield.sheet-stay-on-input input:not(:placeholder-shown) ~ :not(.sheet-exception) {
|
||
color: #606060;
|
||
opacity: 1 !important;
|
||
}
|
||
|
||
.sheet-hexfield__label {
|
||
position: absolute;
|
||
top: 10px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: flex-end;
|
||
font-size: 9px !important;
|
||
font-weight: 500;
|
||
line-height: 10px !important;
|
||
text-transform: uppercase;
|
||
height: 16px;
|
||
transform: translateX(-100%);
|
||
}
|
||
|
||
.sheet-hexfield__label span {
|
||
max-width: 48px;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.sheet-hexfield__label--right {
|
||
left: 36px;
|
||
justify-content: flex-start;
|
||
transform: translateX(0);
|
||
}
|
||
|
||
.sheet-hexfield__label--bottom {
|
||
top: 38px;
|
||
left: 18px;
|
||
align-items: flex-start;
|
||
justify-content: center;
|
||
transform: translateX(-50%);
|
||
}
|
||
|
||
.sheet-hexfield__label--up {
|
||
top: -18px;
|
||
left: 18px;
|
||
align-items: flex-end;
|
||
justify-content: center;
|
||
transform: translateX(-50%);
|
||
}
|
||
|
||
.sheet-sans-tab-line {
|
||
position: absolute;
|
||
top: 0;
|
||
right: 0;
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
height: 16px;
|
||
width: 266px;
|
||
}
|
||
|
||
.sheet-sans {
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.sheet-sans input[name=attr_sans_tabs] {
|
||
position: relative;
|
||
z-index: 1;
|
||
display: inline-block;
|
||
}
|
||
|
||
.sheet-sans input[name=attr_sans_tabs]::after {
|
||
content: attr(label);
|
||
display: inline-block;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: #b0b0b0;
|
||
font-size: 10px;
|
||
font-weight: 500;
|
||
line-height: 1;
|
||
padding: 3px 6px 0;
|
||
border: 1px dotted transparent;
|
||
border-width: 1px 1px 0 1px;
|
||
border-radius: 2px;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-sans input[name=attr_sans_tabs]:hover::after {
|
||
color: #808080;
|
||
}
|
||
|
||
.sheet-sans input[name=attr_sans_tabs]:checked::after {
|
||
background-color: #fff;
|
||
color: #606060;
|
||
border-color: #e0e0e0;
|
||
}
|
||
|
||
.sheet-sans input[name=attr_sans_tabs][value=skills] {
|
||
margin-left: 72px;
|
||
}
|
||
|
||
.sheet-sans input[name=attr_sans_tabs][value=notebook] ~ .sheet-notebook {
|
||
height: calc(100% - 8px);
|
||
}
|
||
|
||
.sheet-sans input[name=attr_sans_tabs][value=skills]:not(:checked) ~ .sheet-skills, .sheet-sans input[name=attr_sans_tabs][value=advancements]:not(:checked) ~ .sheet-advancements, .sheet-sans input[name=attr_sans_tabs][value=notebook]:not(:checked) ~ .sheet-notebook, .sheet-sans input[name=attr_sans_tabs][value=settings]:not(:checked) ~ .sheet-settings {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-meta {
|
||
width: 472px;
|
||
margin-bottom: 44px;
|
||
}
|
||
|
||
.sheet-meta .sheet-container {
|
||
display: flex;
|
||
}
|
||
|
||
.sheet-meta .sheet-container:first-child {
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.sheet-meta .sheet-label {
|
||
text-transform: uppercase;
|
||
margin-top: 4px;
|
||
}
|
||
|
||
.sheet-meta .sheet-meta-field:not(:last-child) {
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.sheet-meta .sheet-meta-field input.sheet-meta-field__input {
|
||
color: #808080;
|
||
font-weight: 500;
|
||
line-height: 15px;
|
||
text-align: left;
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
padding: 0 2px;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-meta .sheet-meta-field input.sheet-meta-field__input--name {
|
||
width: 136px;
|
||
}
|
||
|
||
.sheet-meta .sheet-meta-field input.sheet-meta-field__input--size, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--exp, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--level, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--age, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--bennies {
|
||
width: 40px;
|
||
}
|
||
|
||
.sheet-meta .sheet-meta-field input.sheet-meta-field__input--size + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--exp + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--level + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--age + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--bennies + .sheet-label {
|
||
max-width: 40px;
|
||
}
|
||
|
||
.sheet-meta .sheet-meta-field input.sheet-meta-field__input--height, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--weight, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--eyes, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--hair, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--rank, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--origin, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--gender, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--bits {
|
||
width: 64px;
|
||
}
|
||
|
||
.sheet-meta .sheet-meta-field input.sheet-meta-field__input--height + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--weight + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--eyes + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--hair + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--rank + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--origin + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--gender + .sheet-label, .sheet-meta .sheet-meta-field input.sheet-meta-field__input--bits + .sheet-label {
|
||
max-width: 64px;
|
||
}
|
||
|
||
.sheet-buttons {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
margin-right: -4px;
|
||
width: 274px;
|
||
}
|
||
|
||
.sheet-buttons::after {
|
||
content: '';
|
||
display: block;
|
||
flex-grow: 1000000;
|
||
}
|
||
|
||
.sheet-buttons > div,
|
||
.sheet-buttons > label {
|
||
margin: 0 4px;
|
||
}
|
||
|
||
.sheet-buttons > div {
|
||
position: relative;
|
||
z-index: 1;
|
||
display: flex;
|
||
flex-grow: 1;
|
||
white-space: nowrap;
|
||
border-radius: 2px;
|
||
margin-bottom: 8px;
|
||
height: 16px;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.sheet-buttons > div::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: -1;
|
||
display: block;
|
||
background-color: #fdfdfd;
|
||
border: 1px dotted #e0e0e0;
|
||
border-radius: 2px;
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
|
||
.sheet-buttons button {
|
||
flex-shrink: 0;
|
||
flex-grow: 1;
|
||
justify-content: center;
|
||
color: #b0b0b0;
|
||
font-size: 10px;
|
||
font-weight: 500;
|
||
line-height: 16px;
|
||
padding: 0 4px !important;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-buttons button:hover {
|
||
background-color: #898989;
|
||
}
|
||
|
||
.sheet-buttons button:hover > span {
|
||
color: #fff !important;
|
||
}
|
||
|
||
.sheet-buttons .sheet-dice-roller input.sheet-dice-roller__input[type=text] {
|
||
flex-grow: 100;
|
||
width: auto;
|
||
}
|
||
|
||
.sheet-buttons .sheet-dice-roller input.sheet-dice-roller__input[type=text]::placeholder {
|
||
font-size: 10px;
|
||
}
|
||
|
||
.sheet-buttons .sheet-label-toggle {
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.sheet-buttons .sheet-label-toggle span {
|
||
font-size: 10px;
|
||
line-height: 16px;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-attribute {
|
||
position: relative;
|
||
font-size: 14px;
|
||
height: 48px;
|
||
width: 48px;
|
||
}
|
||
|
||
.sheet-attribute__button {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 0;
|
||
color: #606060;
|
||
font-size: 14px;
|
||
font-weight: 700;
|
||
transform: translate(-100%, -50%);
|
||
}
|
||
|
||
.sheet-attribute:not(:hover) .sheet-hexfield--mod input:not(:focus) + .sheet-hexfield__label {
|
||
opacity: 0;
|
||
}
|
||
|
||
.sheet-attribute .sheet-hexfield {
|
||
position: absolute;
|
||
top: 37px;
|
||
}
|
||
|
||
.sheet-attribute .sheet-hexfield--nat {
|
||
left: 27px;
|
||
}
|
||
|
||
.sheet-attribute .sheet-hexfield--mod {
|
||
top: 9px;
|
||
left: 43px;
|
||
}
|
||
|
||
.sheet-attribute .sheet-hexfield--mod .sheet-hexfield__label {
|
||
color: #b0b0b0;
|
||
}
|
||
|
||
.sheet-attribute .sheet-hexfield--mod .sheet-hexfield__input:not(:placeholder-shown) ~ .sheet-hexfield__label {
|
||
color: #606060;
|
||
}
|
||
|
||
.sheet-attribute .sheet-hexfield--wd {
|
||
left: 59px;
|
||
}
|
||
|
||
.sheet-toggle-silhouette-markers:not(:checked) + .sheet-silhouette .sheet-color-cycle {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-silhouette {
|
||
position: relative;
|
||
z-index: 1;
|
||
height: 300px;
|
||
width: 200px;
|
||
}
|
||
|
||
.sheet-silhouette__image {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/female_silhouette.png");
|
||
background-repeat: no-repeat;
|
||
background-size: contain;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-silhouette__image:hover ~ .sheet-color-cycle :checked {
|
||
opacity: 1;
|
||
transition-delay: 0.4s;
|
||
}
|
||
|
||
.sheet-silhouette .sheet-color-cycle {
|
||
position: absolute;
|
||
transform: translateX(-50%);
|
||
}
|
||
|
||
.sheet-silhouette .sheet-color-cycle:hover :checked {
|
||
opacity: 1;
|
||
}
|
||
|
||
.sheet-silhouette .sheet-color-cycle__radio {
|
||
border: 2px solid #fff;
|
||
opacity: 0;
|
||
transition: opacity .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-silhouette .sheet-color-cycle__radio:not(.sheet-color-cycle__radio--none):checked {
|
||
opacity: 1;
|
||
}
|
||
|
||
.sheet-silhouette .sheet-color-cycle__radio--none {
|
||
background-color: #d9d9d9 !important;
|
||
}
|
||
|
||
.sheet-silhouette__head {
|
||
top: 26px;
|
||
left: 99px;
|
||
}
|
||
|
||
.sheet-silhouette__torso-upper {
|
||
top: 64px;
|
||
left: 99px;
|
||
}
|
||
|
||
.sheet-silhouette__torso-lower {
|
||
top: 100px;
|
||
left: 99px;
|
||
}
|
||
|
||
.sheet-silhouette__left-arm-upper {
|
||
top: 70px;
|
||
left: 128px;
|
||
}
|
||
|
||
.sheet-silhouette__left-arm-lower {
|
||
top: 109px;
|
||
left: 138px;
|
||
}
|
||
|
||
.sheet-silhouette__left-hand {
|
||
top: 134px;
|
||
left: 142px;
|
||
}
|
||
|
||
.sheet-silhouette__right-arm-upper {
|
||
top: 70px;
|
||
left: 69px;
|
||
}
|
||
|
||
.sheet-silhouette__right-arm-lower {
|
||
top: 109px;
|
||
left: 59px;
|
||
}
|
||
|
||
.sheet-silhouette__right-hand {
|
||
top: 134px;
|
||
left: 55px;
|
||
}
|
||
|
||
.sheet-silhouette__left-leg-upper {
|
||
top: 160px;
|
||
left: 125px;
|
||
}
|
||
|
||
.sheet-silhouette__left-leg-lower {
|
||
top: 230px;
|
||
left: 129px;
|
||
}
|
||
|
||
.sheet-silhouette__right-leg-upper {
|
||
top: 160px;
|
||
left: 72px;
|
||
}
|
||
|
||
.sheet-silhouette__right-leg-lower {
|
||
top: 230px;
|
||
left: 68px;
|
||
}
|
||
|
||
.sheet-silhouette__switch {
|
||
position: absolute;
|
||
bottom: 12px;
|
||
left: 50%;
|
||
z-index: 3;
|
||
}
|
||
|
||
.sheet-silhouette__switch::after {
|
||
content: '[ ]';
|
||
display: block;
|
||
color: #d6d6d6;
|
||
font-family: Pictos;
|
||
font-size: 8px;
|
||
transform: translateX(-50%);
|
||
}
|
||
|
||
.sheet-silhouette__switch:checked + .sheet-silhouette__image {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/male_silhouette.png");
|
||
}
|
||
|
||
.sheet-silhouette__switch:checked ~ .sheet-silhouette__left-arm-upper {
|
||
top: 70px;
|
||
left: 141px;
|
||
}
|
||
|
||
.sheet-silhouette__switch:checked ~ .sheet-silhouette__left-arm-lower {
|
||
top: 105px;
|
||
left: 150px;
|
||
}
|
||
|
||
.sheet-silhouette__switch:checked ~ .sheet-silhouette__left-hand {
|
||
top: 143px;
|
||
left: 147px;
|
||
}
|
||
|
||
.sheet-silhouette__switch:checked ~ .sheet-silhouette__right-arm-upper {
|
||
top: 70px;
|
||
left: 56px;
|
||
}
|
||
|
||
.sheet-silhouette__switch:checked ~ .sheet-silhouette__right-arm-lower {
|
||
top: 105px;
|
||
left: 47px;
|
||
}
|
||
|
||
.sheet-silhouette__switch:checked ~ .sheet-silhouette__right-hand {
|
||
top: 143px;
|
||
left: 50px;
|
||
}
|
||
|
||
.sheet-silhouette__switch:checked ~ .sheet-silhouette__left-leg-upper {
|
||
top: 172px;
|
||
left: 126px;
|
||
}
|
||
|
||
.sheet-silhouette__switch:checked ~ .sheet-silhouette__right-leg-upper {
|
||
top: 172px;
|
||
left: 71px;
|
||
}
|
||
|
||
.sheet-secondary {
|
||
display: flex;
|
||
padding-right: 80px;
|
||
}
|
||
|
||
.sheet-secondary > :not(:last-child) {
|
||
margin-right: 24px;
|
||
}
|
||
|
||
.sheet-secondary .sheet-hexfield--run {
|
||
top: -100px;
|
||
left: -16px;
|
||
}
|
||
|
||
.sheet-secondary .sheet-hexfield--flight {
|
||
top: -64px;
|
||
left: 16px;
|
||
}
|
||
|
||
.sheet-secondary .sheet-hexfield--soak-mod {
|
||
top: -36px;
|
||
left: 32px;
|
||
}
|
||
|
||
.sheet-secondary .sheet-hexfield--soak-wd {
|
||
top: -72px;
|
||
left: 64px;
|
||
}
|
||
|
||
.sheet-secondary .sheet-hexfield--soak {
|
||
font-size: 9px;
|
||
}
|
||
|
||
.sheet-secondary .sheet-hexfield--soak > button[type=roll] {
|
||
color: #606060;
|
||
font-weight: 700;
|
||
}
|
||
|
||
.sheet-armor {
|
||
z-index: 1;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-end;
|
||
padding-right: 48px;
|
||
}
|
||
|
||
.sheet-armor > .sheet-hexfield:not(:last-child) {
|
||
margin-bottom: 36px;
|
||
}
|
||
|
||
.sheet-armor > .sheet-hexfield span {
|
||
max-width: none;
|
||
}
|
||
|
||
.sheet-armor > .sheet-hexfield--armor-head, .sheet-armor > .sheet-hexfield--armor-legs {
|
||
margin-right: 16px;
|
||
}
|
||
|
||
.sheet-armor > .sheet-hexfield .sheet-hexfield__label--left {
|
||
background-color: #fff;
|
||
padding-left: 4px;
|
||
}
|
||
|
||
.sheet-armor > .sheet-hexfield textarea {
|
||
position: absolute;
|
||
top: 8px;
|
||
left: 36px;
|
||
color: #808080;
|
||
font-size: 9px !important;
|
||
line-height: 1.6;
|
||
padding-top: 4px;
|
||
height: 60px;
|
||
width: 80px;
|
||
}
|
||
|
||
.sheet-armor > .sheet-hexfield textarea::placeholder {
|
||
color: #f0f0f0;
|
||
font-size: 22px;
|
||
font-weight: 700;
|
||
line-height: 0.6;
|
||
}
|
||
|
||
.sheet-armor__decoration, .sheet-armor__pointer {
|
||
position: absolute;
|
||
background-repeat: no-repeat;
|
||
background-size: contain;
|
||
opacity: .12;
|
||
}
|
||
|
||
.sheet-armor__decoration {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/decoration_line.png");
|
||
top: 15px;
|
||
left: -60px;
|
||
height: 322px;
|
||
width: 95px;
|
||
}
|
||
|
||
.sheet-armor__pointer {
|
||
transform: translateX(-100%);
|
||
}
|
||
|
||
.sheet-armor__pointer--head {
|
||
top: 17px;
|
||
left: -28px;
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/head_line.png");
|
||
height: 2px;
|
||
width: 122px;
|
||
}
|
||
|
||
.sheet-armor__pointer--torso {
|
||
top: -11px;
|
||
left: -33px;
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/torso_line.png");
|
||
height: 30px;
|
||
width: 131px;
|
||
}
|
||
|
||
.sheet-armor__pointer--arms {
|
||
top: -44px;
|
||
left: -30px;
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/arms_line.png");
|
||
height: 63px;
|
||
width: 97px;
|
||
}
|
||
|
||
.sheet-armor__pointer--legs {
|
||
top: -23px;
|
||
left: -27px;
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/legs_line.png");
|
||
height: 42px;
|
||
width: 98px;
|
||
}
|
||
|
||
.sheet-toggle-skill-markers:not(:checked) + .sheet-skills .sheet-color-cycle {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-skills {
|
||
position: relative;
|
||
}
|
||
|
||
.sheet-skills__lock {
|
||
position: absolute;
|
||
top: 0;
|
||
right: 0;
|
||
}
|
||
|
||
.sheet-skills__lock::after {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: #b0b0b0;
|
||
font-family: Pictos;
|
||
font-size: 8px;
|
||
height: 16px;
|
||
width: 16px;
|
||
}
|
||
|
||
.sheet-skills__lock:not(:checked)::after {
|
||
content: ')';
|
||
}
|
||
|
||
.sheet-skills__lock:not(:checked) + .sheet-skills__wrapper .sheet-skills__step-button {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-skills__lock:checked::after {
|
||
content: '(';
|
||
}
|
||
|
||
.sheet-skills__lock:checked ~ .sheet-skills__wrapper .sheet-skills__track input {
|
||
cursor: default;
|
||
pointer-events: none;
|
||
}
|
||
|
||
.sheet-skills .sheet-header {
|
||
justify-content: flex-end;
|
||
border: none;
|
||
}
|
||
|
||
.sheet-skills__die {
|
||
width: 18px;
|
||
}
|
||
|
||
.sheet-skills__die:not(.sheet-a) {
|
||
margin-right: 3px;
|
||
}
|
||
|
||
.sheet-skills__mod, .sheet-skills__wd {
|
||
width: 24px;
|
||
}
|
||
|
||
.sheet-skills__mod {
|
||
margin-right: 3px;
|
||
}
|
||
|
||
.sheet-skills__plus {
|
||
color: #d6d6d6;
|
||
font-size: 12px;
|
||
line-height: 1;
|
||
text-align: center;
|
||
width: 18px;
|
||
}
|
||
|
||
.sheet-skills__color-marker {
|
||
width: 16px;
|
||
}
|
||
|
||
.sheet-skills__color-marker .sheet-color-cycle__radio {
|
||
padding: 3px;
|
||
border: 1px solid transparent;
|
||
}
|
||
|
||
.sheet-skills__color-marker .sheet-color-cycle__radio--none {
|
||
border-color: #e0e0e0;
|
||
}
|
||
|
||
.sheet-skills__skill {
|
||
display: flex;
|
||
flex-direction: row-reverse;
|
||
align-items: center;
|
||
justify-content: flex-start;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-skills__skill:not(:last-child) {
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.sheet-skills__skill input.sheet-skills__mod[type=text],
|
||
.sheet-skills__skill input.sheet-skills__wd[type=text] {
|
||
background-color: #fff;
|
||
font-size: 9px !important;
|
||
height: 14px;
|
||
box-shadow: 0 0 1.5px 0 rgba(0, 0, 0, 0.5);
|
||
}
|
||
|
||
.sheet-skills__skill input.sheet-skills__mod[type=text]::placeholder,
|
||
.sheet-skills__skill input.sheet-skills__wd[type=text]::placeholder {
|
||
line-height: 14px;
|
||
}
|
||
|
||
.sheet-skills__skill input.sheet-skills__mod[type=text]:not(:placeholder-shown),
|
||
.sheet-skills__skill input.sheet-skills__wd[type=text]:not(:placeholder-shown) {
|
||
background-color: #898989;
|
||
color: #fff;
|
||
}
|
||
|
||
.sheet-skills__skill .sheet-skills__mod {
|
||
border-radius: 2px 0 0 2px;
|
||
}
|
||
|
||
.sheet-skills__skill .sheet-skills__wd {
|
||
border-radius: 0 2px 2px 0;
|
||
}
|
||
|
||
.sheet-skills__track {
|
||
display: flex;
|
||
flex-direction: row-reverse;
|
||
}
|
||
|
||
.sheet-skills input.sheet-radio-track[type=radio] {
|
||
height: 14px;
|
||
width: 18px;
|
||
}
|
||
|
||
.sheet-skills input.sheet-radio-track[type=radio]:not(:first-of-type) {
|
||
margin-right: 3px;
|
||
}
|
||
|
||
.sheet-skills input.sheet-radio-track[type=radio]:not(.sheet-d4-2):checked::before {
|
||
content: attr(label);
|
||
}
|
||
|
||
.sheet-skills input.sheet-radio-track.sheet-d12[type=radio] {
|
||
border-radius: 0 2px 2px 0;
|
||
}
|
||
|
||
.sheet-skills input.sheet-radio-track.sheet-d4-2[type=radio] {
|
||
border-radius: 2px 0 0 2px;
|
||
}
|
||
|
||
.sheet-skills input.sheet-radio-track.sheet-d4-2[type=radio]:checked {
|
||
background: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/unskilled_bg.png") repeat;
|
||
}
|
||
|
||
.sheet-skills input.sheet-radio-track.sheet-d4-2[type=radio]:checked::after {
|
||
background-color: transparent;
|
||
}
|
||
|
||
.sheet-skills input.sheet-radio-track.sheet-d4-2[type=radio]:checked ~ button > span {
|
||
color: #b0b0b0;
|
||
}
|
||
|
||
.sheet-skills button[type=roll] .sheet-tooltip {
|
||
z-index: 10;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.sheet-skills button[type=roll] .sheet-tooltip--left {
|
||
text-transform: uppercase;
|
||
}
|
||
|
||
.sheet-skills button[type=roll]:hover .sheet-tooltip {
|
||
opacity: 1;
|
||
transition-delay: .4s;
|
||
}
|
||
|
||
.sheet-skills button.sheet-skills__step-button[type=roll] {
|
||
position: relative;
|
||
margin-right: -18px !important;
|
||
height: 14px;
|
||
width: 18px;
|
||
}
|
||
|
||
.sheet-skills__button {
|
||
position: relative;
|
||
align-items: center;
|
||
color: #606060;
|
||
font-size: 10px;
|
||
font-weight: 500;
|
||
line-height: 1;
|
||
}
|
||
|
||
.sheet-skills__button > span {
|
||
display: block;
|
||
padding: 1px 8px 1px 0;
|
||
max-width: 88px;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.sheet-advancements {
|
||
color: #606060;
|
||
font-size: 10px;
|
||
line-height: 16px;
|
||
padding-left: 64px;
|
||
}
|
||
|
||
.sheet-advancements__item {
|
||
display: flex;
|
||
background-color: #fff;
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
height: 16px;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-advancements__item:not(:last-child) {
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.sheet-advancements__rank {
|
||
font-weight: 700;
|
||
text-align: center;
|
||
margin-right: 8px;
|
||
width: 8px;
|
||
}
|
||
|
||
.sheet-advancements input[type=text] {
|
||
flex-grow: 1;
|
||
color: #606060;
|
||
font-size: 10px;
|
||
line-height: 16px;
|
||
}
|
||
|
||
.sheet-advancements input[type=text]::placeholder {
|
||
font-size: 10px;
|
||
}
|
||
|
||
.sheet-notebook {
|
||
padding-left: 64px;
|
||
}
|
||
|
||
.sheet-notebook textarea {
|
||
background-image: linear-gradient(to right, #f6f6f6 1px, transparent 1px), linear-gradient(to bottom, #f6f6f6 1px, transparent 1px);
|
||
background-size: 16px 16px;
|
||
background-position: 4px -1px;
|
||
background-color: #fff;
|
||
color: #606060;
|
||
font-size: 10px;
|
||
line-height: 16px;
|
||
padding: 0 8px;
|
||
resize: none;
|
||
height: 100%;
|
||
}
|
||
|
||
.sheet-settings {
|
||
text-align: center;
|
||
padding-left: 64px;
|
||
}
|
||
|
||
.sheet-settings__page {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-end;
|
||
text-align: left;
|
||
white-space: normal;
|
||
}
|
||
|
||
.sheet-settings__page-tab {
|
||
display: inline-block;
|
||
color: #b0b0b0;
|
||
margin-bottom: 7px;
|
||
}
|
||
|
||
.sheet-settings__page-tab::before, .sheet-settings__page-tab::after {
|
||
display: inline-block;
|
||
font-size: 10px;
|
||
font-weight: 500;
|
||
line-height: 15px;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-settings__page-tab::before {
|
||
content: attr(label);
|
||
}
|
||
|
||
.sheet-settings__page-tab:not(:last-of-type)::after {
|
||
content: '|';
|
||
margin: 0 2px 0 4px;
|
||
}
|
||
|
||
.sheet-settings__page-tab:checked::before {
|
||
color: #808080;
|
||
}
|
||
|
||
.sheet-settings .sheet-settings__page-tab--styles:not(:checked) ~ .sheet-settings__page--styles, .sheet-settings .sheet-settings__page-tab--setup:not(:checked) ~ .sheet-settings__page--setup, .sheet-settings .sheet-settings__page-tab--blocks:not(:checked) ~ .sheet-settings__page--blocks, .sheet-settings .sheet-settings__page-tab--skills:not(:checked) ~ .sheet-settings__page--skills, .sheet-settings .sheet-settings__page-tab--help:not(:checked) ~ .sheet-settings__page--help {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-settings__textarea-toggle:not(:checked) + textarea {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-settings__item {
|
||
user-select: none;
|
||
display: flex;
|
||
align-items: center;
|
||
width: 100%;
|
||
min-height: 16px;
|
||
}
|
||
|
||
.sheet-settings__item:not(:last-child) {
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.sheet-settings__item > span:first-of-type {
|
||
display: block;
|
||
flex-grow: 1;
|
||
color: #606060;
|
||
font-size: 10px;
|
||
font-weight: 500;
|
||
line-height: 15px;
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
margin-right: 12px;
|
||
height: 100%;
|
||
}
|
||
|
||
.sheet-settings__item .sheet-checkbox {
|
||
margin-right: 4px;
|
||
}
|
||
|
||
.sheet-settings__item--text-input > span:first-of-type {
|
||
flex-grow: 0;
|
||
flex-shrink: 0;
|
||
margin-right: 0;
|
||
}
|
||
|
||
.sheet-settings__item--text-input > span:first-of-type::before {
|
||
content: '[';
|
||
}
|
||
|
||
.sheet-settings__item--text-input > span:first-of-type::after {
|
||
content: ']';
|
||
}
|
||
|
||
.sheet-settings__item--text-input > span:first-of-type ~ input[type=text] {
|
||
padding-left: 5px;
|
||
}
|
||
|
||
.sheet-settings__item--text-input input[type=text] {
|
||
flex-grow: 1;
|
||
color: #606060;
|
||
line-height: 15px;
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
margin-right: 12px;
|
||
height: 16px;
|
||
width: auto;
|
||
}
|
||
|
||
.sheet-settings__item--text-input input[type=text]::placeholder {
|
||
font-size: 10px;
|
||
}
|
||
|
||
.sheet-settings__item--text-input input[type=text]:last-child {
|
||
margin-right: 26px;
|
||
}
|
||
|
||
.sheet-settings__item--text-input input[type=text] + span:last-of-type {
|
||
display: block;
|
||
flex-shrink: 0;
|
||
color: #808080;
|
||
font-family: Pictos;
|
||
font-size: 11px;
|
||
margin: 0 4px 0 1px;
|
||
height: 16px;
|
||
width: 9px;
|
||
}
|
||
|
||
.sheet-settings__item--textarea {
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.sheet-settings__item--textarea textarea {
|
||
flex-basis: 100%;
|
||
background-color: #fff;
|
||
font-size: 10px;
|
||
line-height: 16px;
|
||
padding: 4px;
|
||
border: 1px solid #e0e0e0;
|
||
border-radius: 2px;
|
||
height: 64px;
|
||
margin: 8px 4px 0 0;
|
||
transition: border-color .3s ease-in-out, height .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-settings__item--textarea textarea:hover {
|
||
border-color: #898989;
|
||
}
|
||
|
||
.sheet-settings__item--textarea textarea:focus {
|
||
border-color: #898989;
|
||
height: 192px;
|
||
}
|
||
|
||
.sheet-settings__item--help {
|
||
flex-wrap: wrap;
|
||
height: auto;
|
||
}
|
||
|
||
.sheet-settings__item--help > span:first-of-type {
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.sheet-settings__item--help .sheet-bottom {
|
||
user-select: text;
|
||
flex-basis: 100%;
|
||
text-align: justify;
|
||
line-height: 1.6;
|
||
padding: 4px 0;
|
||
}
|
||
|
||
.sheet-features {
|
||
position: relative;
|
||
flex-grow: 1;
|
||
}
|
||
|
||
.sheet-features fieldset,
|
||
.sheet-features .repcontainer {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
padding: 4px 0;
|
||
margin: 0 -4px;
|
||
}
|
||
|
||
.sheet-features fieldset::after,
|
||
.sheet-features .repcontainer::after {
|
||
content: '';
|
||
display: block;
|
||
flex-grow: 1000000;
|
||
}
|
||
|
||
.sheet-features fieldset > *,
|
||
.sheet-features .repcontainer > * {
|
||
opacity: .6;
|
||
transition-delay: .4s;
|
||
transition: opacity .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-features fieldset:hover > *,
|
||
.sheet-features .repcontainer:hover > * {
|
||
opacity: 1;
|
||
}
|
||
|
||
.sheet-features .repitem {
|
||
flex-grow: 1;
|
||
margin-top: 0;
|
||
}
|
||
|
||
.sheet-features .sheet-repitem {
|
||
position: relative;
|
||
display: flex;
|
||
padding-right: 6px;
|
||
margin: 4px;
|
||
width: auto;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio {
|
||
top: 1px;
|
||
left: 1px;
|
||
align-items: center;
|
||
padding: 0;
|
||
height: 14px;
|
||
width: 14px;
|
||
opacity: 1;
|
||
transform: none;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio::after {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 10px;
|
||
font-weight: 700;
|
||
line-height: 1;
|
||
height: 100%;
|
||
width: 100%;
|
||
border-radius: 2px 0 0 2px;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--novice:checked::after {
|
||
content: 'N';
|
||
background-color: rgba(0, 0, 0, 0.05);
|
||
color: #606060;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--seasoned:checked::after {
|
||
content: 'S';
|
||
background-color: #5cb85c;
|
||
color: #fff;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--veteran:checked::after {
|
||
content: 'V';
|
||
background-color: #0275d8;
|
||
color: #fff;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--heroic:checked::after {
|
||
content: 'H';
|
||
background-color: #b25afd;
|
||
color: #fff;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--legendary:checked::after {
|
||
content: 'L';
|
||
background-color: #f0ad4e;
|
||
color: #fff;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--augmentation:checked::after {
|
||
content: 'A';
|
||
background-color: #898989;
|
||
color: #fff;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--dot:checked::after {
|
||
content: '';
|
||
background-color: #606060;
|
||
border: 4px solid #fdfdfd;
|
||
border-radius: 50%;
|
||
height: 14px;
|
||
width: 14px;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--hindrance:checked::after {
|
||
content: '*';
|
||
background-color: #923836;
|
||
color: #fff;
|
||
font-family: Pictos;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--disabled:checked::after {
|
||
content: 'e';
|
||
font-size: 12px;
|
||
font-family: Pictos;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--disabled:checked ~ *, .sheet-features .sheet-color-cycle__radio--disabled:checked::after {
|
||
color: #b0b0b0;
|
||
text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
|
||
}
|
||
|
||
.sheet-features .sheet-color-cycle__radio--disabled:checked ~ .sheet-features__inner-background {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
height: 100%;
|
||
width: 100%;
|
||
z-index: 0;
|
||
background: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/unskilled_bg.png") repeat;
|
||
}
|
||
|
||
.sheet-features span {
|
||
display: block;
|
||
visibility: hidden;
|
||
line-height: 16px;
|
||
margin-left: 22px;
|
||
}
|
||
|
||
.sheet-features input.sheet-features__name[type=text] {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 20px;
|
||
z-index: 1;
|
||
line-height: 16px;
|
||
height: 100%;
|
||
width: calc(100% - 24px);
|
||
}
|
||
|
||
.sheet-features .repcontainer.editmode .itemcontrol {
|
||
margin: 4px;
|
||
width: calc(100% - 8px) !important;
|
||
max-height: 16px;
|
||
}
|
||
|
||
.sheet-health {
|
||
position: relative;
|
||
display: flex;
|
||
align-items: flex-end;
|
||
}
|
||
|
||
.sheet-health > .sheet-hex {
|
||
order: 2;
|
||
}
|
||
|
||
.sheet-health .sheet-header__title {
|
||
margin-top: 8px;
|
||
}
|
||
|
||
.sheet-health:hover .sheet-health__icons * {
|
||
opacity: 1;
|
||
}
|
||
|
||
.sheet-health__icons {
|
||
display: flex;
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon {
|
||
color: #b0b0b0;
|
||
font-size: 10px;
|
||
line-height: 1;
|
||
opacity: 0;
|
||
transition: opacity .3s ease-in-out;
|
||
transition-delay: .4s;
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon:checked {
|
||
color: #fff;
|
||
opacity: 1;
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon:checked::after {
|
||
background-color: #898989;
|
||
border: 1px solid #898989;
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon:not(:last-child) {
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon::after {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background-color: #fff;
|
||
font-family: Pictos;
|
||
border: 1px dotted #e0e0e0;
|
||
border-radius: 50%;
|
||
margin: 2px 2px 6px;
|
||
height: 20px;
|
||
width: 20px;
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon--shield::after {
|
||
content: 'b';
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon--bug::after {
|
||
content: 'i';
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon--fire::after {
|
||
content: 'r';
|
||
font-family: 'Pictos Custom';
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon--hit::after {
|
||
content: 't';
|
||
font-family: 'Pictos Custom';
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon--lightning::after {
|
||
content: 'e';
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon--cancel::after {
|
||
content: 'd';
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon--rad::after {
|
||
content: 'l';
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon--tools::after {
|
||
content: 'x';
|
||
}
|
||
|
||
.sheet-health__icons .sheet-icon--ecg::after {
|
||
content: 'Y';
|
||
}
|
||
|
||
.sheet-health__track {
|
||
position: relative;
|
||
display: flex;
|
||
}
|
||
|
||
.sheet-health__track .sheet-radio-track,
|
||
.sheet-health__track .sheet-reset-button {
|
||
border-radius: 2px;
|
||
margin-right: 8px;
|
||
height: 24px;
|
||
width: 24px;
|
||
}
|
||
|
||
.sheet-health__track:hover .sheet-reset-button:not(:checked), .sheet-health__track:hover .sheet-radio-track-toggle {
|
||
opacity: 1;
|
||
transition-delay: .4s;
|
||
}
|
||
|
||
.sheet-health__track .sheet-reset-button {
|
||
position: absolute;
|
||
z-index: 2;
|
||
opacity: 0;
|
||
transition: opacity .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-health__track .sheet-reset-button::after {
|
||
content: '*';
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background-color: #898989;
|
||
color: #fff;
|
||
font-family: Pictos;
|
||
line-height: 1;
|
||
border-radius: 2px;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-health__track .sheet-reset-button:checked {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-health__track .sheet-radio-track-toggle {
|
||
position: absolute;
|
||
top: 24px;
|
||
z-index: 2;
|
||
height: 16px;
|
||
width: 24px;
|
||
opacity: 0;
|
||
transition: opacity .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-health__track .sheet-radio-track-toggle::before, .sheet-health__track .sheet-radio-track-toggle::after {
|
||
content: '';
|
||
background-color: rgba(0, 0, 0, 0.1);
|
||
height: 4px;
|
||
width: 50%;
|
||
}
|
||
|
||
.sheet-health__track .sheet-radio-track-toggle::after {
|
||
background-color: rgba(0, 0, 0, 0.05);
|
||
}
|
||
|
||
.sheet-health__track .sheet-radio-track-toggle:checked {
|
||
flex-direction: row-reverse;
|
||
}
|
||
|
||
.sheet-health__track .sheet-radio-track-toggle:checked + input {
|
||
background: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/unskilled_bg.png") repeat;
|
||
}
|
||
|
||
.sheet-health__track .sheet-radio-track-toggle:checked + input::before, .sheet-health__track .sheet-radio-track-toggle:checked + input::after {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-health__wounds {
|
||
order: 1;
|
||
}
|
||
|
||
.sheet-health__wounds .sheet-health__track {
|
||
flex-direction: row-reverse;
|
||
justify-content: flex-end;
|
||
}
|
||
|
||
.sheet-health__wounds .sheet-radio-track--6 {
|
||
margin-right: 0;
|
||
}
|
||
|
||
.sheet-health__wounds .sheet-radio-track-toggle--6 {
|
||
left: 160px;
|
||
}
|
||
|
||
.sheet-health__wounds .sheet-radio-track-toggle--5 {
|
||
left: 128px;
|
||
}
|
||
|
||
.sheet-health__wounds .sheet-radio-track-toggle--4 {
|
||
left: 96px;
|
||
}
|
||
|
||
.sheet-health__wounds .sheet-radio-track-toggle--3 {
|
||
left: 64px;
|
||
}
|
||
|
||
.sheet-health__wounds .sheet-radio-track-toggle--2 {
|
||
left: 32px;
|
||
}
|
||
|
||
.sheet-health__center {
|
||
order: 3;
|
||
position: absolute;
|
||
left: 185px;
|
||
}
|
||
|
||
.sheet-health__center .sheet-hexfield {
|
||
position: absolute;
|
||
bottom: 8px;
|
||
transform: translateY(100%);
|
||
}
|
||
|
||
.sheet-health__center .sheet-hexfield span {
|
||
max-width: none;
|
||
}
|
||
|
||
.sheet-health__center .sheet-hexfield--wound-mitigation {
|
||
left: 1px;
|
||
}
|
||
|
||
.sheet-health__center .sheet-hexfield--rads {
|
||
left: 33px;
|
||
}
|
||
|
||
.sheet-health .sheet-hex--64 {
|
||
margin: 0 4px;
|
||
}
|
||
|
||
.sheet-health .sheet-hex--64::after {
|
||
content: '';
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/skull.png");
|
||
background-repeat: no-repeat;
|
||
background-size: 32px;
|
||
background-position: center;
|
||
height: 100%;
|
||
width: 100%;
|
||
opacity: .15;
|
||
}
|
||
|
||
.sheet-health .sheet-hex--64:checked::after {
|
||
opacity: .5;
|
||
}
|
||
|
||
.sheet-health__fatigue {
|
||
order: 4;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-end;
|
||
}
|
||
|
||
.sheet-health__fatigue .sheet-reset-button {
|
||
right: 0;
|
||
margin: 0;
|
||
}
|
||
|
||
.sheet-health__fatigue .sheet-radio-track--1 {
|
||
margin-right: 0;
|
||
}
|
||
|
||
.sheet-health__fatigue .sheet-radio-track-toggle--3 {
|
||
right: 64px;
|
||
}
|
||
|
||
.sheet-health__fatigue .sheet-radio-track-toggle--2 {
|
||
right: 32px;
|
||
}
|
||
|
||
.sheet-power {
|
||
position: relative;
|
||
margin-right: -8px;
|
||
}
|
||
|
||
.sheet-power .sheet-header__title {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 0;
|
||
transform: translate(-100%, -50%);
|
||
}
|
||
|
||
.sheet-power .sheet-hexfield {
|
||
position: absolute;
|
||
bottom: -28px;
|
||
}
|
||
|
||
.sheet-power .sheet-hexfield--power-consumed {
|
||
left: -2px;
|
||
}
|
||
|
||
.sheet-power .sheet-hexfield--power-consumed span {
|
||
max-width: none;
|
||
}
|
||
|
||
.sheet-power .sheet-hexfield--power-maximum {
|
||
left: 30px;
|
||
}
|
||
|
||
.sheet-weapons {
|
||
margin-top: 32px;
|
||
}
|
||
|
||
.sheet-weapons__damage, .sheet-weapons__range {
|
||
width: 80px;
|
||
}
|
||
|
||
.sheet-weapons__ap, .sheet-weapons__rof, .sheet-weapons__weight {
|
||
width: 30px;
|
||
}
|
||
|
||
.sheet-weapons__shots {
|
||
width: 40px;
|
||
}
|
||
|
||
.sheet-weapons__trapping {
|
||
width: 64px;
|
||
}
|
||
|
||
.sheet-weapons__damage-button {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 164px;
|
||
display: none;
|
||
height: 20px;
|
||
width: 80px;
|
||
}
|
||
|
||
.sheet-weapons input.sheet-toggle:not(:checked) ~ .sheet-weapons__trapping {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-apparel__armor {
|
||
width: 40px;
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.sheet-apparel__tags {
|
||
text-align: left;
|
||
width: 210px;
|
||
}
|
||
|
||
.sheet-apparel__weight {
|
||
width: 30px;
|
||
}
|
||
|
||
.sheet-integrity {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.sheet-integrity__status {
|
||
width: 320px;
|
||
}
|
||
|
||
.sheet-integrity__progress {
|
||
position: relative;
|
||
display: flex;
|
||
justify-content: flex-end;
|
||
background-color: #e0e0e0;
|
||
border-radius: 2px;
|
||
height: 8px;
|
||
width: 100%;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.sheet-integrity__progress-fill {
|
||
background-color: #898989;
|
||
height: 100%;
|
||
width: 100%;
|
||
transition: width .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="0"] ~ .sheet-integrity__progress-fill {
|
||
width: 0px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="1"] ~ .sheet-integrity__progress-fill {
|
||
width: 4px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="2"] ~ .sheet-integrity__progress-fill {
|
||
width: 8px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="3"] ~ .sheet-integrity__progress-fill {
|
||
width: 12px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="4"] ~ .sheet-integrity__progress-fill {
|
||
width: 16px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="5"] ~ .sheet-integrity__progress-fill {
|
||
width: 20px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="6"] ~ .sheet-integrity__progress-fill {
|
||
width: 24px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="7"] ~ .sheet-integrity__progress-fill {
|
||
width: 28px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="8"] ~ .sheet-integrity__progress-fill {
|
||
width: 32px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="9"] ~ .sheet-integrity__progress-fill {
|
||
width: 36px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="10"] ~ .sheet-integrity__progress-fill {
|
||
width: 40px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="11"] ~ .sheet-integrity__progress-fill {
|
||
width: 44px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="12"] ~ .sheet-integrity__progress-fill {
|
||
width: 48px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="13"] ~ .sheet-integrity__progress-fill {
|
||
width: 52px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="14"] ~ .sheet-integrity__progress-fill {
|
||
width: 56px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="15"] ~ .sheet-integrity__progress-fill {
|
||
width: 60px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="16"] ~ .sheet-integrity__progress-fill {
|
||
width: 64px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="17"] ~ .sheet-integrity__progress-fill {
|
||
width: 68px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="18"] ~ .sheet-integrity__progress-fill {
|
||
width: 72px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="19"] ~ .sheet-integrity__progress-fill {
|
||
width: 76px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="20"] ~ .sheet-integrity__progress-fill {
|
||
width: 80px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="21"] ~ .sheet-integrity__progress-fill {
|
||
width: 84px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="22"] ~ .sheet-integrity__progress-fill {
|
||
width: 88px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="23"] ~ .sheet-integrity__progress-fill {
|
||
width: 92px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="24"] ~ .sheet-integrity__progress-fill {
|
||
width: 96px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="25"] ~ .sheet-integrity__progress-fill {
|
||
width: 100px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="26"] ~ .sheet-integrity__progress-fill {
|
||
width: 104px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="27"] ~ .sheet-integrity__progress-fill {
|
||
width: 108px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="28"] ~ .sheet-integrity__progress-fill {
|
||
width: 112px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="29"] ~ .sheet-integrity__progress-fill {
|
||
width: 116px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="30"] ~ .sheet-integrity__progress-fill {
|
||
width: 120px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="31"] ~ .sheet-integrity__progress-fill {
|
||
width: 124px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="32"] ~ .sheet-integrity__progress-fill {
|
||
width: 128px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="33"] ~ .sheet-integrity__progress-fill {
|
||
width: 132px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="34"] ~ .sheet-integrity__progress-fill {
|
||
width: 136px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="35"] ~ .sheet-integrity__progress-fill {
|
||
width: 140px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="36"] ~ .sheet-integrity__progress-fill {
|
||
width: 144px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="37"] ~ .sheet-integrity__progress-fill {
|
||
width: 148px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="38"] ~ .sheet-integrity__progress-fill {
|
||
width: 152px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="39"] ~ .sheet-integrity__progress-fill {
|
||
width: 156px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="40"] ~ .sheet-integrity__progress-fill {
|
||
width: 160px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="41"] ~ .sheet-integrity__progress-fill {
|
||
width: 164px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="42"] ~ .sheet-integrity__progress-fill {
|
||
width: 168px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="43"] ~ .sheet-integrity__progress-fill {
|
||
width: 172px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="44"] ~ .sheet-integrity__progress-fill {
|
||
width: 176px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="45"] ~ .sheet-integrity__progress-fill {
|
||
width: 180px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="46"] ~ .sheet-integrity__progress-fill {
|
||
width: 184px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="47"] ~ .sheet-integrity__progress-fill {
|
||
width: 188px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="48"] ~ .sheet-integrity__progress-fill {
|
||
width: 192px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="49"] ~ .sheet-integrity__progress-fill {
|
||
width: 196px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="50"] ~ .sheet-integrity__progress-fill {
|
||
width: 200px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="51"] ~ .sheet-integrity__progress-fill {
|
||
width: 204px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="52"] ~ .sheet-integrity__progress-fill {
|
||
width: 208px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="53"] ~ .sheet-integrity__progress-fill {
|
||
width: 212px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="54"] ~ .sheet-integrity__progress-fill {
|
||
width: 216px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="55"] ~ .sheet-integrity__progress-fill {
|
||
width: 220px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="56"] ~ .sheet-integrity__progress-fill {
|
||
width: 224px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="57"] ~ .sheet-integrity__progress-fill {
|
||
width: 228px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="58"] ~ .sheet-integrity__progress-fill {
|
||
width: 232px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="59"] ~ .sheet-integrity__progress-fill {
|
||
width: 236px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="60"] ~ .sheet-integrity__progress-fill {
|
||
width: 240px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="61"] ~ .sheet-integrity__progress-fill {
|
||
width: 244px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="62"] ~ .sheet-integrity__progress-fill {
|
||
width: 248px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="63"] ~ .sheet-integrity__progress-fill {
|
||
width: 252px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="64"] ~ .sheet-integrity__progress-fill {
|
||
width: 256px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="65"] ~ .sheet-integrity__progress-fill {
|
||
width: 260px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="66"] ~ .sheet-integrity__progress-fill {
|
||
width: 264px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="67"] ~ .sheet-integrity__progress-fill {
|
||
width: 268px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="68"] ~ .sheet-integrity__progress-fill {
|
||
width: 272px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="69"] ~ .sheet-integrity__progress-fill {
|
||
width: 276px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="70"] ~ .sheet-integrity__progress-fill {
|
||
width: 280px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="71"] ~ .sheet-integrity__progress-fill {
|
||
width: 284px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="72"] ~ .sheet-integrity__progress-fill {
|
||
width: 288px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="73"] ~ .sheet-integrity__progress-fill {
|
||
width: 292px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="74"] ~ .sheet-integrity__progress-fill {
|
||
width: 296px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="75"] ~ .sheet-integrity__progress-fill {
|
||
width: 300px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="76"] ~ .sheet-integrity__progress-fill {
|
||
width: 304px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="77"] ~ .sheet-integrity__progress-fill {
|
||
width: 308px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="78"] ~ .sheet-integrity__progress-fill {
|
||
width: 312px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="79"] ~ .sheet-integrity__progress-fill {
|
||
width: 316px;
|
||
}
|
||
|
||
.sheet-integrity__bar-width[value="80"] ~ .sheet-integrity__progress-fill {
|
||
width: 320px;
|
||
}
|
||
|
||
.sheet-integrity__marker {
|
||
position: absolute;
|
||
top: 0;
|
||
background-color: #fff;
|
||
width: 2px;
|
||
height: 10px;
|
||
transform: translateX(-50%);
|
||
}
|
||
|
||
.sheet-integrity__marker--70 {
|
||
left: 40px;
|
||
}
|
||
|
||
.sheet-integrity__marker--60 {
|
||
left: 80px;
|
||
}
|
||
|
||
.sheet-integrity__marker--50 {
|
||
left: 120px;
|
||
}
|
||
|
||
.sheet-integrity__marker--40 {
|
||
left: 160px;
|
||
}
|
||
|
||
.sheet-integrity__marker--30 {
|
||
left: 200px;
|
||
}
|
||
|
||
.sheet-integrity__marker--20 {
|
||
left: 240px;
|
||
}
|
||
|
||
.sheet-integrity__marker--10 {
|
||
left: 280px;
|
||
}
|
||
|
||
.sheet-integrity__loss-effects {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
font-size: 10px;
|
||
margin: 8px 0;
|
||
height: 16px;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-integrity__loss-effects > span {
|
||
display: block;
|
||
color: #d6d6d6;
|
||
font-weight: 500;
|
||
white-space: nowrap;
|
||
transition: color .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-integrity__loss-effects input[type=checkbox]:checked + span {
|
||
color: #606060;
|
||
}
|
||
|
||
.sheet-integrity__hexfields {
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.sheet-integrity__hexfields .sheet-large-label {
|
||
max-width: 83px;
|
||
}
|
||
|
||
.sheet-integrity__hexfields .sheet-container {
|
||
position: relative;
|
||
}
|
||
|
||
.sheet-integrity__hexfields .sheet-hexfield {
|
||
position: absolute;
|
||
bottom: -28px;
|
||
}
|
||
|
||
.sheet-integrity__hexfields .sheet-hexfield--integrity-maximum {
|
||
right: -6px;
|
||
transform: translateX(-100%);
|
||
}
|
||
|
||
.sheet-integrity__hexfields .sheet-hexfield--integrity-mod {
|
||
left: -5px;
|
||
transform: translateX(100%);
|
||
}
|
||
|
||
.sheet-abilities .sheet-repitem {
|
||
position: relative;
|
||
}
|
||
|
||
.sheet-abilities .sheet-repitem span {
|
||
display: block;
|
||
visibility: hidden;
|
||
font-size: 10px;
|
||
line-height: 16px;
|
||
white-space: pre-wrap;
|
||
padding: 2px 6px 2px;
|
||
min-height: 20px;
|
||
}
|
||
|
||
.sheet-abilities .sheet-repitem textarea {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-toggle--strain:checked ~ .sheet-augmentations .sheet-augmentations__power, .sheet-toggle--strain:checked ~ .sheet-augmentations .sheet-augmentations__slots {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-toggle--strain:checked ~ .sheet-augmentations .sheet-a {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-toggle--strain:checked ~ .sheet-augmentations .sheet-b {
|
||
display: inline;
|
||
}
|
||
|
||
.sheet-toggle-augmentation-markers:not(:checked) ~ .sheet-augmentations .sheet-color-cycle {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-augmentations .sheet-header__labels span {
|
||
text-transform: uppercase;
|
||
}
|
||
|
||
.sheet-augmentations__grade {
|
||
width: 60px;
|
||
}
|
||
|
||
.sheet-augmentations__power, .sheet-augmentations__slots, .sheet-augmentations__loss {
|
||
width: 40px;
|
||
}
|
||
|
||
.sheet-augmentations .sheet-b {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-augmentations .sheet-color-cycle__radio {
|
||
padding: 3px;
|
||
border: 1px solid transparent;
|
||
}
|
||
|
||
.sheet-augmentations .sheet-color-cycle__radio--none {
|
||
border-color: #e0e0e0;
|
||
}
|
||
|
||
.sheet-augmentations__multiplier {
|
||
text-align: left;
|
||
width: 18px;
|
||
}
|
||
|
||
.sheet-augmentations input.sheet-toggle:not(:checked) ~ .sheet-augmentations__multiplier {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-engrams__penalty {
|
||
width: 48px;
|
||
padding-right: 8px;
|
||
}
|
||
|
||
.sheet-engrams__description {
|
||
flex-shrink: 0;
|
||
text-align: left;
|
||
width: 280px;
|
||
}
|
||
|
||
input.sheet-toggle--pp:checked ~ .sheet-powers .sheet-a {
|
||
display: none;
|
||
}
|
||
|
||
input.sheet-toggle--pp:checked ~ .sheet-powers .sheet-b {
|
||
display: inline;
|
||
}
|
||
|
||
.sheet-powers__ap, .sheet-powers__pp, .sheet-powers__penalty {
|
||
width: 40px;
|
||
}
|
||
|
||
.sheet-powers__duration {
|
||
width: 60px;
|
||
}
|
||
|
||
.sheet-powers__damage, .sheet-powers__range {
|
||
width: 80px;
|
||
}
|
||
|
||
.sheet-powers__trapping {
|
||
width: 64px;
|
||
}
|
||
|
||
.sheet-powers .sheet-b {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-powers input.sheet-toggle:not(:checked) ~ .sheet-powers__trapping {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-vehicles__size, .sheet-vehicles__handling, .sheet-vehicles__speed, .sheet-vehicles__toughness, .sheet-vehicles__crew, .sheet-vehicles__weapons {
|
||
width: 45px;
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='0'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/car_01.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='1'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/car_02.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='2'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/car_03.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='3'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/car_04.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='4'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/sports-bike.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='5'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/quad-bike.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='6'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/tank.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='7'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/aircraft_01.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='8'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/aircraft_02.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='9'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/aircraft_03.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='10'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/watercraft_01.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='11'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/watercraft_02.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='12'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/watercraft_03.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='13'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/spacecraft_01.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='14'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/spacecraft_02.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='15'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/spacecraft_03.png");
|
||
}
|
||
|
||
.sheet-vehicles .sheet-repitem__frame-silhouette-control[value='16'] ~ .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/spacecraft_04.png");
|
||
}
|
||
|
||
.sheet-powerarmors__size, .sheet-powerarmors__armor, .sheet-powerarmors__pace, .sheet-powerarmors__mods, .sheet-powerarmors__weight, .sheet-powerarmors__weapons {
|
||
width: 45px;
|
||
}
|
||
|
||
.sheet-powerarmors .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/powerarmor_01.png");
|
||
background-size: contain;
|
||
margin-top: 4px;
|
||
height: 56px;
|
||
}
|
||
|
||
.sheet-walkers__size, .sheet-walkers__pace, .sheet-walkers__crew {
|
||
width: 35px;
|
||
}
|
||
|
||
.sheet-walkers__strength {
|
||
width: 60px;
|
||
}
|
||
|
||
.sheet-walkers__toughness, .sheet-walkers__mods, .sheet-walkers__weapons {
|
||
width: 45px;
|
||
}
|
||
|
||
.sheet-walkers .sheet-repitem__frame-silhouette {
|
||
background-image: url("https://raw.githubusercontent.com/Tetrakern/roll20-character-sheets/master/Savage%20Worlds%20-%20Graph%20Paper/img/walker.png");
|
||
background-size: contain;
|
||
margin-top: 4px;
|
||
height: 56px;
|
||
}
|
||
|
||
.sheet-allies__pace, .sheet-allies__parry, .sheet-allies__toughness, .sheet-allies__size, .sheet-allies__exp, .sheet-allies__level {
|
||
width: 45px;
|
||
}
|
||
|
||
.sheet-allies .sheet-header__labels {
|
||
padding-right: 30px;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary {
|
||
align-items: flex-start;
|
||
justify-content: space-between;
|
||
height: auto;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
flex-wrap: wrap;
|
||
flex-shrink: 0;
|
||
font-size: 10px;
|
||
padding: 5px 0 6px;
|
||
width: 44px;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left button[type=roll],
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left .sheet-allies__health-field input[type=text] {
|
||
font-weight: 700;
|
||
border-radius: 2px;
|
||
height: 20px;
|
||
width: 20px;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left button[type=roll] {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: #b0b0b0;
|
||
line-height: 1;
|
||
border: 1px dotted #e0e0e0;
|
||
margin-bottom: 4px !important;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left button[type=roll]:hover {
|
||
background-color: #898989;
|
||
border-color: #898989;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left button[type=roll]:hover span {
|
||
color: #fff !important;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left .sheet-allies__health-field {
|
||
position: relative;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left .sheet-allies__health-field::before {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
display: block;
|
||
background-color: #f2f2f2;
|
||
color: #fff;
|
||
font-family: Pictos;
|
||
font-size: 14px;
|
||
font-weight: 900;
|
||
line-height: 22px;
|
||
text-align: center;
|
||
border-radius: 2px;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left .sheet-allies__health-field--wounds::before {
|
||
content: 'k';
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left .sheet-allies__health-field--fatigue::before {
|
||
content: 'Y';
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-left .sheet-allies__health-field input[type=text] {
|
||
position: relative;
|
||
z-index: 1;
|
||
color: #606060;
|
||
font-size: 14px;
|
||
line-height: 20px;
|
||
text-align: center;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-right {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
flex-wrap: wrap;
|
||
padding: 5px 0 0 8px;
|
||
}
|
||
|
||
.sheet-allies .sheet-repitem__secondary .sheet-right input.sheet-allies__note-field[type=text] {
|
||
font-size: 10px;
|
||
text-align: left;
|
||
padding: 0 2px;
|
||
margin-bottom: 4px;
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
height: 20px;
|
||
width: 76px !important;
|
||
}
|
||
|
||
.sheet-quick-notes {
|
||
position: relative;
|
||
width: 266px;
|
||
}
|
||
|
||
.sheet-quick-notes__content {
|
||
position: relative;
|
||
padding: 8px 0;
|
||
margin-bottom: 16px;
|
||
}
|
||
|
||
.sheet-quick-notes__content span {
|
||
display: block;
|
||
visibility: hidden;
|
||
font-size: 10px;
|
||
line-height: 16px;
|
||
padding: 0 8px;
|
||
white-space: pre-wrap;
|
||
min-height: 64px;
|
||
}
|
||
|
||
.sheet-quick-notes__content textarea {
|
||
position: absolute;
|
||
top: 8px;
|
||
left: 0;
|
||
height: 100%;
|
||
width: 100%;
|
||
background-image: linear-gradient(to right, #f6f6f6 1px, transparent 1px), linear-gradient(to bottom, #f6f6f6 1px, transparent 1px);
|
||
background-size: 16px 16px;
|
||
background-position: 4px -1px;
|
||
background-color: #fff;
|
||
color: #606060;
|
||
font-size: 10px;
|
||
line-height: 16px;
|
||
padding: 0 8px;
|
||
resize: none;
|
||
}
|
||
|
||
.sheet-encumbrance {
|
||
display: flex;
|
||
text-align: center;
|
||
margin: 16px 0 24px;
|
||
width: 266px;
|
||
}
|
||
|
||
.sheet-encumbrance .sheet-label {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
text-transform: uppercase;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-encumbrance__container {
|
||
width: 48px;
|
||
}
|
||
|
||
.sheet-encumbrance__container:not(:last-child) {
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.sheet-encumbrance__container--summary {
|
||
width: 98px;
|
||
}
|
||
|
||
.sheet-encumbrance__content {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
background-color: #fff;
|
||
font-size: 12px;
|
||
border-radius: 2px;
|
||
height: 32px;
|
||
overflow: hidden;
|
||
box-shadow: 0 0 1.5px 0 rgba(0, 0, 0, 0.5);
|
||
}
|
||
|
||
.sheet-encumbrance__content span {
|
||
user-select: none;
|
||
}
|
||
|
||
.sheet-encumbrance__content input[type=text] {
|
||
border-radius: 2px;
|
||
}
|
||
|
||
.sheet-encumbrance__content input[type=text]:hover {
|
||
background-color: #f2f2f2;
|
||
}
|
||
|
||
.sheet-encumbrance__content input[type=text]:focus {
|
||
background-color: #fdfdfd;
|
||
font-size: 16px !important;
|
||
font-weight: 700;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-encumbrance__content input[type=text]:focus ~ * {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-encumbrance__content--summary {
|
||
flex-direction: row-reverse;
|
||
}
|
||
|
||
.sheet-encumbrance__content--summary > div {
|
||
padding: 0 4px;
|
||
}
|
||
|
||
.sheet-encumbrance__content--summary input[type=text],
|
||
.sheet-encumbrance__content--summary span {
|
||
font-size: 12px;
|
||
width: 32px;
|
||
}
|
||
|
||
.sheet-inventory {
|
||
position: relative;
|
||
width: 266px;
|
||
}
|
||
|
||
.sheet-inventory__amount, .sheet-inventory__weight {
|
||
width: 30px;
|
||
}
|
||
|
||
.sheet-inventory__multi {
|
||
color: #b0b0b0;
|
||
line-height: 11px;
|
||
text-align: center;
|
||
width: 8px;
|
||
}
|
||
|
||
.sheet-inventory .sheet-repitem__note-box {
|
||
width: 268px;
|
||
}
|
||
|
||
.sheet-inventory .repcontainer:empty ~ .repcontrol .repcontrol_add::before {
|
||
width: 266px;
|
||
}
|
||
|
||
.sheet-ammunition {
|
||
position: relative;
|
||
margin-bottom: 16px;
|
||
width: 266px;
|
||
}
|
||
|
||
.sheet-ammunition__content {
|
||
display: flex;
|
||
padding: 6px 0 14px;
|
||
}
|
||
|
||
.sheet-ammunition__container {
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background-color: #fdfdfd;
|
||
border-radius: 2px;
|
||
height: 34px;
|
||
width: 40px;
|
||
}
|
||
|
||
.sheet-ammunition__container--1, .sheet-ammunition__container--2 {
|
||
margin-right: 6px;
|
||
}
|
||
|
||
.sheet-ammunition__container span {
|
||
position: absolute;
|
||
left: 0;
|
||
z-index: 0;
|
||
display: block;
|
||
background-color: #d6d6d6;
|
||
color: #fff;
|
||
font-size: 8px;
|
||
font-weight: 500;
|
||
line-height: 13px;
|
||
text-align: center;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
height: 12px;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-ammunition__container span:first-of-type {
|
||
top: 0;
|
||
border-radius: 2px 2px 0 0;
|
||
}
|
||
|
||
.sheet-ammunition__container span:last-of-type {
|
||
bottom: -10px;
|
||
letter-spacing: -0.4px;
|
||
text-transform: uppercase;
|
||
padding: 0 2px;
|
||
border-radius: 0 0 2px 2px;
|
||
}
|
||
|
||
.sheet-ammunition__container input[type=radio] {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: 1;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-ammunition__container input[type=radio]::after {
|
||
content: '';
|
||
position: absolute;
|
||
bottom: -10px;
|
||
left: 0;
|
||
z-index: 1;
|
||
height: 10px;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-ammunition__container input[type=radio]:checked ~ span {
|
||
background-color: #898989;
|
||
}
|
||
|
||
.sheet-ammunition__container input[type=radio]::before {
|
||
content: '';
|
||
border: 2px solid #d6d6d6;
|
||
border-width: 2px 2px 0;
|
||
border-radius: 2px;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-ammunition__container input[type=radio]:checked::before {
|
||
border-color: #898989;
|
||
}
|
||
|
||
.sheet-ammunition__container input[type=radio]:checked ~ input[type=text] {
|
||
color: #808080;
|
||
}
|
||
|
||
.sheet-ammunition__container input[type=text] {
|
||
position: relative;
|
||
z-index: 2;
|
||
color: #d6d6d6;
|
||
font-size: 14px;
|
||
font-weight: 700;
|
||
line-height: 1;
|
||
margin-top: 9px;
|
||
height: 14px;
|
||
width: 36px;
|
||
}
|
||
|
||
.sheet-ammunition__buttons {
|
||
flex-grow: 1;
|
||
}
|
||
|
||
.sheet-ammunition__buttons > div {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.sheet-ammunition__buttons > div:first-child {
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.sheet-ammunition__buttons button[type=action] {
|
||
flex-shrink: 0;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background-color: #fdfdfd;
|
||
color: #b0b0b0;
|
||
border: 1px dotted #e0e0e0;
|
||
border-radius: 2px;
|
||
padding: 0 4px;
|
||
height: 20px;
|
||
}
|
||
|
||
.sheet-ammunition__buttons button[type=action]:hover {
|
||
background-color: #898989;
|
||
color: #fff !important;
|
||
border: 1px solid #898989;
|
||
}
|
||
|
||
.sheet-ammunition__buttons button[type=action]:not(:last-child) {
|
||
margin-right: 4px;
|
||
}
|
||
|
||
.sheet-ammunition__buttons button[type=action]:last-child {
|
||
flex-grow: 1;
|
||
max-width: 21px;
|
||
}
|
||
|
||
.sheet-simple-trait {
|
||
position: relative;
|
||
display: flex;
|
||
flex-shrink: 0;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
font-size: 11px;
|
||
line-height: 24px;
|
||
padding-right: 6px;
|
||
border-radius: 2px;
|
||
height: 24px;
|
||
min-width: 66px;
|
||
}
|
||
|
||
.sheet-simple-trait span {
|
||
color: #404040;
|
||
}
|
||
|
||
.sheet-simple-trait .sheet-background {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-simple-trait__expand {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: 2;
|
||
border: 1px solid transparent;
|
||
border-radius: 2px;
|
||
height: 100% !important;
|
||
width: 100%;
|
||
transition: border .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-simple-trait__expand:hover, .sheet-simple-trait__expand:checked {
|
||
border-color: #e0e0e0;
|
||
}
|
||
|
||
.sheet-simple-trait__expand:checked ~ .sheet-simple-trait__inputs {
|
||
display: flex;
|
||
background-color: #fff;
|
||
}
|
||
|
||
.sheet-simple-trait__expand:checked ~ .sheet-background {
|
||
background-color: #fff;
|
||
}
|
||
|
||
.sheet-simple-trait button.sheet-simple-trait__roll[type=roll] {
|
||
padding-left: 6px !important;
|
||
}
|
||
|
||
.sheet-simple-trait__roll {
|
||
position: relative;
|
||
z-index: 3;
|
||
font-size: 11px;
|
||
font-weight: 500;
|
||
line-height: 24px;
|
||
}
|
||
|
||
.sheet-simple-trait__roll:hover + .sheet-simple-trait__buttons {
|
||
pointer-events: all;
|
||
opacity: 1;
|
||
transition-delay: .7s;
|
||
}
|
||
|
||
.sheet-simple-trait__custom-roll {
|
||
color: #606060;
|
||
font-size: 10px;
|
||
font-weight: 500;
|
||
line-height: 16px;
|
||
}
|
||
|
||
.sheet-simple-trait__custom-roll:not(:last-child) {
|
||
margin-right: 4px !important;
|
||
}
|
||
|
||
.sheet-simple-trait__buttons {
|
||
pointer-events: none;
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
z-index: 4;
|
||
display: flex;
|
||
background-color: #fff;
|
||
padding: 0 4px;
|
||
border-radius: 2px;
|
||
height: 16px;
|
||
transform: translateY(-100%);
|
||
opacity: 0;
|
||
box-shadow: 0 0 1.5px 0 rgba(0, 0, 0, 0.5);
|
||
transition: opacity .3s ease-in-out;
|
||
}
|
||
|
||
.sheet-simple-trait__buttons:hover {
|
||
pointer-events: all;
|
||
opacity: 1;
|
||
transition-delay: .7s;
|
||
}
|
||
|
||
.sheet-simple-trait__label {
|
||
position: relative;
|
||
z-index: 1;
|
||
font-weight: 500;
|
||
margin-left: 8px;
|
||
}
|
||
|
||
.sheet-simple-trait__inputs {
|
||
position: absolute;
|
||
bottom: 1px;
|
||
left: 0;
|
||
z-index: 4;
|
||
display: none;
|
||
background-color: #fff;
|
||
border: 1px solid #e0e0e0;
|
||
border-width: 0 1px 1px 1px;
|
||
border-radius: 0 0 2px 2px;
|
||
padding: 0 6px;
|
||
width: 100%;
|
||
transform: translateY(100%);
|
||
}
|
||
|
||
.sheet-simple-trait__inputs > input[type=text] {
|
||
text-align: center;
|
||
border-top: 1px dotted #e0e0e0;
|
||
width: 33.3%;
|
||
}
|
||
|
||
.sheet-extra {
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-extra .sheet-buttons {
|
||
padding-bottom: 1px;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-extra .sheet-buttons > div {
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.sheet-extra .sheet-block {
|
||
margin-top: 16px;
|
||
}
|
||
|
||
.sheet-extra .sheet-simple-trait:not(:last-child) {
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.sheet-extra-meta {
|
||
display: flex;
|
||
margin-bottom: 19px;
|
||
}
|
||
|
||
.sheet-extra-meta .sheet-meta-field:first-child {
|
||
flex-grow: 1;
|
||
}
|
||
|
||
.sheet-extra-meta .sheet-meta-field input.sheet-meta-field__input--name[type=text] {
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-extra .sheet-features {
|
||
margin-top: 16px;
|
||
}
|
||
|
||
.sheet-extra .repcontainer:empty ~ .repcontrol .repcontrol_add::before {
|
||
width: 474px;
|
||
}
|
||
|
||
.sheet-extra .sheet-footer {
|
||
opacity: 0;
|
||
}
|
||
|
||
.sheet-extra .sheet-quick-notes {
|
||
width: 100%;
|
||
margin-bottom: 16px;
|
||
}
|
||
|
||
.sheet-extra .sheet-quick-notes span {
|
||
min-height: 32px;
|
||
}
|
||
|
||
.sheet-extra .sheet-quick-notes textarea {
|
||
height: calc(100% - 16px);
|
||
}
|
||
|
||
.sheet-extra-attributes {
|
||
position: relative;
|
||
}
|
||
|
||
.sheet-extra-attributes .sheet-container {
|
||
display: flex;
|
||
padding-top: 8px;
|
||
}
|
||
|
||
.sheet-extra-skills {
|
||
position: relative;
|
||
}
|
||
|
||
.sheet-extra-skills .sheet-container {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
padding-top: 8px;
|
||
}
|
||
|
||
.sheet-extra-skills .sheet-container::after {
|
||
content: '';
|
||
display: block;
|
||
flex-grow: 1000000;
|
||
}
|
||
|
||
.sheet-extra-skills__selection-toggle::after {
|
||
position: absolute;
|
||
top: 2px;
|
||
right: 20px;
|
||
display: block;
|
||
font-family: Pictos;
|
||
font-size: 10px;
|
||
line-height: 14px;
|
||
}
|
||
|
||
.sheet-extra-skills__selection-toggle:hover::after {
|
||
color: #606060 !important;
|
||
}
|
||
|
||
.sheet-extra-skills__selection-toggle:checked ~ .sheet-container .sheet-simple-trait {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-extra-skills__selection-toggle:checked ~ .sheet-container {
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.sheet-extra-skills__selection-toggle:checked::after {
|
||
content: '3';
|
||
color: #606060;
|
||
}
|
||
|
||
.sheet-extra-skills__selection-toggle:not(:checked) ~ .sheet-container .sheet-extra-skills__toggle-label {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-extra-skills__selection-toggle:not(:checked)::after {
|
||
content: 'W';
|
||
color: #b0b0b0;
|
||
}
|
||
|
||
.sheet-extra-skills__toggle-label {
|
||
flex-shrink: 0;
|
||
width: auto;
|
||
}
|
||
|
||
.sheet-extra-skills__toggle:not(:checked) + .sheet-simple-trait {
|
||
display: none;
|
||
}
|
||
|
||
.sheet-extra-skills__toggle + span {
|
||
user-select: none;
|
||
display: block;
|
||
color: #b0b0b0;
|
||
font-size: 11px;
|
||
font-weight: 500;
|
||
line-height: 24px;
|
||
text-transform: capitalize;
|
||
white-space: nowrap;
|
||
padding: 0 4px;
|
||
}
|
||
|
||
.sheet-extra-skills__toggle:hover + span {
|
||
color: #808080;
|
||
}
|
||
|
||
.sheet-extra-skills__toggle:checked + span {
|
||
color: #404040;
|
||
}
|
||
|
||
.sheet-extra-secondary .sheet-container {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
justify-content: center;
|
||
padding-top: 8px;
|
||
}
|
||
|
||
.sheet-extra-secondary__field {
|
||
flex-grow: 1;
|
||
width: auto;
|
||
}
|
||
|
||
.sheet-extra-secondary__field:not(:last-child) {
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.sheet-extra-secondary__field .sheet-label {
|
||
color: #b0b0b0;
|
||
font-weight: 500;
|
||
line-height: 16px;
|
||
text-align: center;
|
||
text-transform: uppercase;
|
||
letter-spacing: -0.1px;
|
||
height: 16px;
|
||
}
|
||
|
||
.sheet-extra-secondary input[type=text] {
|
||
line-height: 24px;
|
||
}
|
||
|
||
.sheet-extra-secondary input[type=text]::placeholder {
|
||
font-size: 10px;
|
||
line-height: 24px;
|
||
}
|
||
|
||
.sheet-extra-secondary input.sheet-extra-secondary__input[type=text], .sheet-extra-secondary__field > span {
|
||
display: block;
|
||
background-color: #fff;
|
||
font-weight: 500;
|
||
text-align: center;
|
||
border: 1px solid #e0e0e0;
|
||
border-radius: 2px;
|
||
height: 24px;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-extra-secondary .sheet-simple-trait__expand {
|
||
border-color: #e0e0e0;
|
||
}
|
||
|
||
.sheet-extra-secondary .sheet-divider {
|
||
border-right: 1px dotted #e0e0e0;
|
||
margin: 0 10px 0 2px;
|
||
height: 24px;
|
||
}
|
||
|
||
.sheet-extra-settings {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
padding: 8px 0;
|
||
margin-top: 15px !important;
|
||
border-top: 1px dotted #e0e0e0;
|
||
}
|
||
|
||
.sheet-extra-settings__item {
|
||
user-select: none;
|
||
line-height: 16px;
|
||
margin-bottom: 4px;
|
||
width: auto;
|
||
}
|
||
|
||
.sheet-extra-settings__item:not(:last-child) {
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.sheet-extra-settings__item span {
|
||
color: #d6d6d6;
|
||
font-size: 10px;
|
||
font-weight: 500;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.sheet-extra-settings input[type=checkbox]:checked ~ span {
|
||
color: #808080;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .inlinerollresult.showtip::before,
|
||
.sheet-rolltemplate-DiceRoller .inlinerollresult.showtip::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: -1;
|
||
display: block;
|
||
background-color: #fafafa;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll,
|
||
.sheet-rolltemplate-DiceRoller,
|
||
.sheet-rolltemplate-RunRoll,
|
||
.sheet-rolltemplate-DamageRoll,
|
||
.sheet-rolltemplate-InfoBox {
|
||
color: #404040;
|
||
padding-top: 8px;
|
||
-webkit-font-smoothing: antialiased;
|
||
text-rendering: optimizeLegibility;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .inlinerollresult.showtip,
|
||
.sheet-rolltemplate-DiceRoller .inlinerollresult.showtip,
|
||
.sheet-rolltemplate-RunRoll .inlinerollresult.showtip,
|
||
.sheet-rolltemplate-DamageRoll .inlinerollresult.showtip,
|
||
.sheet-rolltemplate-InfoBox .inlinerollresult.showtip {
|
||
position: relative;
|
||
z-index: 1;
|
||
background-color: transparent;
|
||
padding: 0;
|
||
border: 0;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate {
|
||
position: relative;
|
||
background-color: #fff;
|
||
background-image: linear-gradient(to right, #fbfbfb 1px, transparent 1px), linear-gradient(to bottom, #fbfbfb 1px, transparent 1px);
|
||
background-size: 8px 8px;
|
||
background-position: -1px -1px;
|
||
padding: 8px;
|
||
border-radius: 2px;
|
||
box-shadow: 0 0 1.5px 0 rgba(0, 0, 0, 0.5);
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__header,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__header,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__header,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__header,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__header {
|
||
font-size: 12px;
|
||
font-weight: bold;
|
||
line-height: 16px;
|
||
text-align: center;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__header:not(:last-child),
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__header:not(:last-child),
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__header:not(:last-child),
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__header:not(:last-child),
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__header:not(:last-child) {
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
padding-bottom: 7px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__content,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__content,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__content,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__content,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__content {
|
||
position: relative;
|
||
font-size: 11px;
|
||
text-align: center;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__content:not(:first-child),
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__content:not(:first-child),
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__content:not(:first-child),
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__content:not(:first-child),
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__content:not(:first-child) {
|
||
padding-top: 8px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__content:not(:last-child),
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__content:not(:last-child),
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__content:not(:last-child),
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__content:not(:last-child),
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__content:not(:last-child) {
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
padding-bottom: 7px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__content span,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__content span,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__content span,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__content span,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__content span {
|
||
font-size: 11px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__content span.inlinerollresult,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__content span.inlinerollresult,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__content span.inlinerollresult,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__content span.inlinerollresult,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__content span.inlinerollresult {
|
||
font-weight: 400;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__content-row,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__content-row,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__content-row,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__content-row,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__content-row {
|
||
display: flex;
|
||
align-items: center;
|
||
line-height: 16px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__content-row > div,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__content-row > div,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__content-row > div,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__content-row > div,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__content-row > div {
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__content-row > .sheet-left,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__content-row > .sheet-left,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__content-row > .sheet-left,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__content-row > .sheet-left,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__content-row > .sheet-left {
|
||
font-weight: 500;
|
||
text-align: right;
|
||
padding-right: 8px;
|
||
width: 96px;
|
||
min-width: 96px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__content-row > .sheet-right,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__content-row > .sheet-right,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__content-row > .sheet-right,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__content-row > .sheet-right,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__content-row > .sheet-right {
|
||
text-align: left;
|
||
white-space: nowrap;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
padding: 0 24px 0 8px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__dice,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__dice,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__dice,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__dice,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__dice {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 11px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__dice span,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__dice span,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__dice span,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__dice span,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__dice span {
|
||
display: block;
|
||
font-size: 11px;
|
||
line-height: 20px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__dice .sheet-left,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__dice .sheet-left,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__dice .sheet-left,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__dice .sheet-left,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__dice .sheet-left {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
padding-right: 8px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__dice .sheet-right,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__dice .sheet-right,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__dice .sheet-right,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__dice .sheet-right,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__dice .sheet-right {
|
||
display: flex;
|
||
flex-shrink: 0;
|
||
padding: 0 4px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__dice--damage,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__dice--damage,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__dice--damage,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__dice--damage,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__dice--damage {
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__roll,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__roll,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__roll,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__roll,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__roll {
|
||
flex-shrink: 0;
|
||
text-align: center;
|
||
border-radius: 2px;
|
||
min-width: 20px;
|
||
margin-top: 8px;
|
||
overflow: hidden;
|
||
box-shadow: 0 0 1.5px 0 rgba(0, 0, 0, 0.5);
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__roll:not(:last-child),
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__roll:not(:last-child),
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__roll:not(:last-child),
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__roll:not(:last-child),
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__roll:not(:last-child) {
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__roll span.fullcrit:not([original-title*='"basicdiceroll"'])::before,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__roll span.fullcrit:not([original-title*='"basicdiceroll"'])::before,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__roll span.fullcrit:not([original-title*='"basicdiceroll"'])::before,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__roll span.fullcrit:not([original-title*='"basicdiceroll"'])::before,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__roll span.fullcrit:not([original-title*='"basicdiceroll"'])::before {
|
||
background-color: #e0e0e0;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__roll span.fullfail:not([original-title*='"basicdiceroll"']),
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__roll span.fullfail:not([original-title*='"basicdiceroll"']),
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__roll span.fullfail:not([original-title*='"basicdiceroll"']),
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__roll span.fullfail:not([original-title*='"basicdiceroll"']),
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__roll span.fullfail:not([original-title*='"basicdiceroll"']) {
|
||
color: #fff;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__roll span.fullfail:not([original-title*='"basicdiceroll"'])::before,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__roll span.fullfail:not([original-title*='"basicdiceroll"'])::before,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__roll span.fullfail:not([original-title*='"basicdiceroll"'])::before,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__roll span.fullfail:not([original-title*='"basicdiceroll"'])::before,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__roll span.fullfail:not([original-title*='"basicdiceroll"'])::before {
|
||
background-color: #d9534f;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__roll--wd,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__roll--wd,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__roll--wd,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__roll--wd,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__roll--wd {
|
||
height: 20px;
|
||
transform: rotateZ(45deg);
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__roll--wd:not(:last-child),
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__roll--wd:not(:last-child),
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__roll--wd:not(:last-child),
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__roll--wd:not(:last-child),
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__roll--wd:not(:last-child) {
|
||
margin-right: 16px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__roll--wd span,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__roll--wd span,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__roll--wd span,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__roll--wd span,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__roll--wd span {
|
||
transform: rotateZ(-45deg);
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__roll--wd span::before,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__roll--wd span::before,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__roll--wd span::before,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__roll--wd span::before,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__roll--wd span::before {
|
||
transform: rotateZ(45deg);
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__reroll,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__reroll,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__reroll,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__reroll,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__reroll {
|
||
position: absolute;
|
||
top: 2px;
|
||
right: -4px;
|
||
font-family: Pictos;
|
||
border: 4px solid #fff;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__roll-damage,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__roll-damage,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__roll-damage,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__roll-damage,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__roll-damage {
|
||
position: absolute;
|
||
top: 26px;
|
||
right: -4px;
|
||
font-family: 'Pictos Custom';
|
||
border: 4px solid #fff;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__button a,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__button a,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__button a,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__button a,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__button a {
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background-color: #fdfdfd;
|
||
color: #b0b0b0;
|
||
font-size: 10px;
|
||
font-weight: 500;
|
||
line-height: 9px;
|
||
border: 1px dotted #e0e0e0;
|
||
border-radius: 2px;
|
||
padding: 0 4px;
|
||
height: 20px;
|
||
min-width: 20px;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__button a:hover,
|
||
.sheet-rolltemplate-DiceRoller .sheet-rolltemplate__button a:hover,
|
||
.sheet-rolltemplate-RunRoll .sheet-rolltemplate__button a:hover,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__button a:hover,
|
||
.sheet-rolltemplate-InfoBox .sheet-rolltemplate__button a:hover {
|
||
background-color: #898989;
|
||
color: #fff !important;
|
||
border: 1px solid #898989;
|
||
}
|
||
|
||
.sheet-rolltemplate-TraitRoll .sheet-rolltemplate__description,
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__description {
|
||
color: #606060;
|
||
font-size: 9px;
|
||
font-style: italic;
|
||
line-height: 16px;
|
||
text-align: center;
|
||
padding: 8px 0 7px;
|
||
border-bottom: 1px dotted #e0e0e0;
|
||
}
|
||
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__damage-roll {
|
||
padding-right: 8px;
|
||
margin: 8px 0 0 8px;
|
||
}
|
||
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__damage-roll:not(:last-child) {
|
||
border-right: 1px dotted #e0e0e0;
|
||
}
|
||
|
||
.sheet-rolltemplate-DamageRoll .sheet-rolltemplate__damage-roll span {
|
||
font-size: 16px;
|
||
line-height: 24px;
|
||
}
|
||
|
||
.sheet-sans {
|
||
position: relative;
|
||
}
|
||
|
||
.sheet-sans > div:not(:first-child) {
|
||
margin-top: 8px;
|
||
}
|
||
|
||
.sheet-section > .sheet-right:not(.sheet-sans) {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-end;
|
||
}
|
||
|
||
.sheet-section--footer > .sheet-right {
|
||
padding-top: 32px;
|
||
}
|
||
|
||
.sheet-section--traits {
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
margin-left: 24px;
|
||
height: 400px;
|
||
}
|
||
|
||
.sheet-attributes {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: 2;
|
||
}
|
||
|
||
.sheet-attributes .sheet-attribute {
|
||
position: absolute;
|
||
}
|
||
|
||
.sheet-attributes .sheet-attribute--agility {
|
||
top: 0;
|
||
left: 32px;
|
||
}
|
||
|
||
.sheet-attributes .sheet-attribute--smarts {
|
||
top: 80px;
|
||
left: 16px;
|
||
}
|
||
|
||
.sheet-attributes .sheet-attribute--spirit {
|
||
top: 160px;
|
||
left: 0;
|
||
}
|
||
|
||
.sheet-attributes .sheet-attribute--strength {
|
||
top: 240px;
|
||
left: 16px;
|
||
}
|
||
|
||
.sheet-attributes .sheet-attribute--vigor {
|
||
top: 320px;
|
||
left: 32px;
|
||
}
|
||
|
||
.sheet-armor {
|
||
position: absolute;
|
||
right: 0;
|
||
top: 22px;
|
||
}
|
||
|
||
.sheet-silhouette {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 100px;
|
||
}
|
||
|
||
.sheet-secondary {
|
||
position: absolute;
|
||
bottom: 23px;
|
||
right: 0;
|
||
z-index: 2;
|
||
}
|
||
|
||
.sheet-section--features {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
flex-grow: 1;
|
||
min-height: 176px;
|
||
padding: 24px 0 8px;
|
||
}
|
||
|
||
.sheet-section--resources {
|
||
display: flex;
|
||
align-items: flex-end;
|
||
justify-content: space-between;
|
||
margin-bottom: 32px;
|
||
}
|
||
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<input type="hidden" name="attr_sheet_update" value="1">
|
||
<input type="hidden" name="attr_adjust_untrained" value="">
|
||
<input type="hidden" name="attr_unskilled" value="d4-2">
|
||
<input type="hidden" name="attr_unskilled_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_unskilled_roll" value="1d4">
|
||
<input type="hidden" name="attr_unskilled_wd_roll" value="1d6">
|
||
<input type="hidden" name="attr_unskilled_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_unskilled_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_unskilled_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_unskilled_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} ^{unskilled}}} {{trait=^{unskilled}}} {{traitdie=@{unskilled}}} {{flat=@{unskilled_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{unskilled_roll}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{unskilled_roll}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{unskilled_roll}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{unskilled_roll}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{unskilled_roll}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{unskilled_roll}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{unskilled_roll}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{unskilled_roll}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{unskilled_global_wd_roll} @{unskilled_global_bonus_wd_roll}">
|
||
<div class="sheet-wrapper">
|
||
<input class="sheet-hidden sheet-toggle-grid" type="checkbox" name="attr_toggle_style_grid" checked>
|
||
<input class="sheet-hidden sheet-toggle-dark-labels" type="checkbox" name="attr_toggle_style_dark_labels">
|
||
<input class="sheet-hidden sheet-toggle-corners" type="checkbox" name="attr_toggle_style_corners" checked>
|
||
<input class="sheet-hidden sheet-toggle-transitions" type="checkbox" name="attr_toggle_style_transitions" checked>
|
||
<input class="sheet-hidden sheet-toggle-delays" type="checkbox" name="attr_toggle_style_delays" checked>
|
||
<input class="sheet-hidden sheet-toggle-roboto" type="checkbox" name="attr_toggle_style_roboto" checked>
|
||
<input class="sheet-hidden sheet-toggle-skill-die-numbers" type="checkbox" name="attr_toggle_skill_die_numbers" checked>
|
||
<input class="sheet-variant-radio sheet-variant-radio--wildcard" type="radio" name="attr_sheet_variant" value="wildcard" checked>
|
||
<input class="sheet-variant-radio sheet-variant-radio--extra" type="radio" name="attr_sheet_variant" value="extra">
|
||
<div class="sheet-body">
|
||
<div class="sheet-wildcard">
|
||
<div class="sheet-section sheet-section--header">
|
||
<div class="sheet-left">
|
||
<div class="sheet-meta">
|
||
<div class="sheet-container">
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--name" type="text" name="attr_name" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_name" data-i18n="name">Name</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--origin" type="text" name="attr_origin" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_origin" data-i18n="origin">Origin</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--rank" type="text" name="attr_rank" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_rank" data-i18n="rank">Rank</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--size" type="text" name="attr_size" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_size" data-i18n="size">Size</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--level" type="text" name="attr_level" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_level" data-i18n="level">Level</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--exp" type="text" name="attr_exp" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_exp" data-i18n="exp">EXP</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--bennies" type="text" name="attr_bennies" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_bennies" data-i18n="bennies">Bennies</span></div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-container">
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--gender" type="text" name="attr_gender" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_gender" data-i18n="gender">Gender</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--age" type="text" name="attr_age" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_age" data-i18n="age">Age</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--hair" type="text" name="attr_hair" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_hair" data-i18n="hair">Hair</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--eyes" type="text" name="attr_eyes" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_eyes" data-i18n="eyes">Eyes</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--height" type="text" name="attr_height" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_height" data-i18n="_height">Height</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--weight" type="text" name="attr_weight" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_weight" data-i18n="weight">Weight</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--bits" type="text" name="attr_bits" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_bits" data-i18n="bits">#Bits</span></div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-right">
|
||
<div class="sheet-buttons">
|
||
<div class="sheet-dice-roller">
|
||
<input type="hidden" name="attr_dice_roller_code" value="0">
|
||
<input type="hidden" name="attr_dice_roller_template" value="{{rof=[[ 0 + ?{@{query_rate_of_fire}|1} ]]}} {{roll1=[[ @{dice_roller_code} ]]}} {{roll2=[[ @{dice_roller_code} ]]}} {{roll3=[[ @{dice_roller_code} ]]}} {{roll4=[[ @{dice_roller_code} ]]}} {{roll5=[[ @{dice_roller_code} ]]}} {{roll6=[[ @{dice_roller_code} ]]}} {{roll7=[[ @{dice_roller_code} ]]}} {{roll8=[[ @{dice_roller_code} ]]}}">
|
||
<input class="sheet-dice-roller__input" type="text" name="attr_dice_roller_input" placeholder="2d6!+2" data-i18n-placeholder="dice-roller-code-placeholder">
|
||
<button type="roll" name="roll_dice_roller_damage" value="@{gm_roll} &{template:DamageRoll} {{header=@{name} ^{rolls} ^{damage}}} {{code=@{dice_roller_input}}} @{dice_roller_template} {{reroll=[r](~dice_roller_damage)}}"><span data-i18n="dice-roller-damage">Damage</span></button>
|
||
<button type="roll" name="roll_dice_roller_hidden" value="/w gm &{template:DiceRoller} {{header=@{name} ^{rolls} @{dice_roller_input}}} @{dice_roller_template} {{reroll=[r](~dice_roller_hidden)}}"><span data-i18n="dice-roller-hidden">Hidden</span></button>
|
||
<button type="roll" name="roll_dice_roller_open" value="&{template:DiceRoller} {{header=@{name} ^{rolls} @{dice_roller_input}}} @{dice_roller_template} {{reroll=[r](~dice_roller_open)}}"><span data-i18n="dice-roller-roll">Roll</span></button>
|
||
</div>
|
||
<div class="sheet-run-roller">
|
||
<input type="hidden" name="attr_run_wounds" value="@{wound_mod}">
|
||
<input type="hidden" name="attr_run_fatigue" value="0">
|
||
<input type="hidden" name="attr_run_code" value="@{run_roll}">
|
||
<button type="roll" name="roll_run" value="@{gm_roll} &{template:RunRoll} {{header=@{name} ^{runs-ellipsis} [[ @{run_code} + @{pace} - @{run_wounds} - @{run_fatigue} + ?{@{query_modifier}|0} ]]^{exclamation-mark}}} {{content=^{run} (@{pace} + @{run_code}) + ^{mod} (?{@{query_modifier}|0}) - ^{penalty} ([[ @{run_wounds} + @{run_fatigue} ]])}}"><span data-i18n="dice-roller-run">Run</span></button>
|
||
</div>
|
||
<div class="sheet-raise-calculator">
|
||
<button type="roll" name="roll_raise_calculator" value="@{gm_roll} &{template:InfoBox} {{content=^{roll-of} (?{@{query_roll_result}}) ^{vs-tn} (?{@{query_target_number}|4}) = [[ floor((?{@{query_roll_result}} - ?{@{query_target_number}|4}) / 4) ]] ^{raises}}}"><span data-i18n="raise-calculator">Raise Calculator</span></button>
|
||
</div>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_query_global_rof" value="1">
|
||
<input type="checkbox" name="attr_toggle_global_rof"><span data-i18n="query-rof">Query RoF</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_query_global_wd" value="-10000-d20">
|
||
<input type="checkbox" name="attr_toggle_global_wd"><span data-i18n="query-wd">Query WD</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_query_global_bonus_wd" value="-10000-d20">
|
||
<input type="checkbox" name="attr_toggle_global_bonus_wd"><span data-i18n="bonus-wd">Bonus WD</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="checkbox" name="attr_gm_roll" value="/w gm"><span data-i18n="gm-roll">GM Roll</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_toggle_custom_button_1">
|
||
<div class="sheet-custom-button">
|
||
<button type="roll" name="roll_custom_button_1" value="@{custom_button_1_macro}"><span name="attr_rename_custom_button_1">UnShake</span></button>
|
||
</div>
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_toggle_custom_button_2">
|
||
<div class="sheet-custom-button">
|
||
<button type="roll" name="roll_custom_button_2" value="@{custom_button_2_macro}"><span name="attr_rename_custom_button_2">Button #2</span></button>
|
||
</div>
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_toggle_custom_button_3">
|
||
<div class="sheet-custom-button">
|
||
<button type="roll" name="roll_custom_button_3" value="@{custom_button_3_macro}"><span name="attr_rename_custom_button_3">Button #3</span></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-section sheet-section--center">
|
||
<div class="sheet-left">
|
||
<div class="sheet-section--traits">
|
||
<div class="sheet-attributes">
|
||
<div class="sheet-attribute sheet-attribute--agility">
|
||
<input type="hidden" name="attr_rename_agility" value="Agility">
|
||
<input type="hidden" name="attr_agility_roll" value="1d4">
|
||
<input type="hidden" name="attr_agility_wd_roll" value="1d6">
|
||
<input type="hidden" name="attr_agility_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_agility_code" value="d4">
|
||
<input type="hidden" name="attr_agility_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_agility_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_agility_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_agility}}} {{trait=@{rename_agility}}} {{traitdie=@{agility_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{agility_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{agility_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{agility_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{agility_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{agility_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{agility_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{agility_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{agility_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{agility_global_wd_roll} @{agility_global_bonus_wd_roll}">
|
||
<button class="sheet-attribute__button" type="roll" name="roll_agility" value="@{agility_roll_body} {{wd=@{agility_wd}}} {{wdroll=[[ @{agility_wd_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~agility)}}"><span name="attr_rename_agi" data-i18n="agi-u">AGI</span></button>
|
||
<input class="sheet-hex sheet-hex--48 sheet-hexfield__input" type="text" name="attr_agility" placeholder="d4" value="d4" spellcheck="false">
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--nat sheet-hexfield--agility-natural">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_agility_natural" placeholder="d4" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="agility-natural">Natural</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-stay-on-input sheet-hexfield--mod sheet-hexfield--agility-mod">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_agility_mod" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right sheet-exception"><span data-i18n="agility-mod">Bonus</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--wd sheet-hexfield--agility-wd">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_agility_wd" placeholder="d6" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right"><span data-i18n="agility-wd">WD</span></div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-attribute sheet-attribute--smarts">
|
||
<input type="hidden" name="attr_rename_smarts" value="Smarts">
|
||
<input type="hidden" name="attr_smarts_roll" value="1d4">
|
||
<input type="hidden" name="attr_smarts_wd_roll" value="1d6">
|
||
<input type="hidden" name="attr_smarts_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_smarts_code" value="d4">
|
||
<input type="hidden" name="attr_smarts_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_smarts_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_smarts_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_smarts}}} {{trait=@{rename_smarts}}} {{traitdie=@{smarts_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{smarts_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{smarts_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{smarts_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{smarts_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{smarts_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{smarts_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{smarts_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{smarts_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{smarts_global_wd_roll} @{smarts_global_bonus_wd_roll}">
|
||
<button class="sheet-attribute__button" type="roll" name="roll_smarts" value="@{smarts_roll_body} {{wd=@{smarts_wd}}} {{wdroll=[[ @{smarts_wd_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~smarts)}}"><span name="attr_rename_sma" data-i18n="sma-u">SMA</span></button>
|
||
<input class="sheet-hex sheet-hex--48 sheet-hexfield__input" type="text" name="attr_smarts" placeholder="d4" value="d4" spellcheck="false">
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--nat sheet-hexfield--smarts-natural">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_smarts_natural" placeholder="d4" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="smarts-natural">Natural</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-stay-on-input sheet-hexfield--mod sheet-hexfield--smarts-mod">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_smarts_mod" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right sheet-exception"><span data-i18n="smarts-mod">Bonus</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--wd sheet-hexfield--smarts-wd">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_smarts_wd" placeholder="d6" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right"><span data-i18n="smarts-wd">WD</span></div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-attribute sheet-attribute--spirit">
|
||
<input type="hidden" name="attr_rename_spirit" value="Spirit">
|
||
<input type="hidden" name="attr_spirit_roll" value="1d4">
|
||
<input type="hidden" name="attr_spirit_wd_roll" value="1d6">
|
||
<input type="hidden" name="attr_spirit_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_spirit_code" value="d4">
|
||
<input type="hidden" name="attr_spirit_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_spirit_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_spirit_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spirit}}} {{trait=@{rename_spirit}}} {{traitdie=@{spirit_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{spirit_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{spirit_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{spirit_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{spirit_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{spirit_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{spirit_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{spirit_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{spirit_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spirit_global_wd_roll} @{spirit_global_bonus_wd_roll}">
|
||
<button class="sheet-attribute__button" type="roll" name="roll_spirit" value="@{spirit_roll_body} {{wd=@{spirit_wd}}} {{wdroll=[[ @{spirit_wd_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~spirit)}}"><span name="attr_rename_spi" data-i18n="spi-u">SPI</span></button>
|
||
<input class="sheet-hex sheet-hex--48 sheet-hexfield__input" type="text" name="attr_spirit" placeholder="d4" value="d4" spellcheck="false">
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--nat sheet-hexfield--spirit-natural">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_spirit_natural" placeholder="d4" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="spirit-natural">Natural</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-stay-on-input sheet-hexfield--mod sheet-hexfield--spirit-mod">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_spirit_mod" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right sheet-exception"><span data-i18n="spirit-mod">Bonus</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--wd sheet-hexfield--spirit-wd">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_spirit_wd" placeholder="d6" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right"><span data-i18n="spirit-wd">WD</span></div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-attribute sheet-attribute--strength">
|
||
<input type="hidden" name="attr_rename_strength" value="Strength">
|
||
<input type="hidden" name="attr_strength_roll" value="1d4">
|
||
<input type="hidden" name="attr_strength_wd_roll" value="1d6">
|
||
<input type="hidden" name="attr_strength_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_strength_code" value="d4">
|
||
<input type="hidden" name="attr_strength_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_strength_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_strength_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_strength}}} {{trait=@{rename_strength}}} {{traitdie=@{strength_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{strength_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{strength_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{strength_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{strength_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{strength_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{strength_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{strength_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{strength_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{strength_global_wd_roll} @{strength_global_bonus_wd_roll}">
|
||
<button class="sheet-attribute__button" type="roll" name="roll_strength" value="@{strength_roll_body} {{wd=@{strength_wd}}} {{wdroll=[[ @{strength_wd_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~strength)}}"><span name="attr_rename_str" data-i18n="str-u">STR</span></button>
|
||
<input class="sheet-hex sheet-hex--48 sheet-hexfield__input" type="text" name="attr_strength" placeholder="d4" value="d4" spellcheck="false">
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--nat sheet-hexfield--strength-natural">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_strength_natural" placeholder="d4" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="strength-natural">Natural</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-stay-on-input sheet-hexfield--mod sheet-hexfield--strength-mod">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_strength_mod" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right sheet-exception"><span data-i18n="strength-mod">Bonus</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--wd sheet-hexfield--strength-wd">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_strength_wd" placeholder="d6" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right"><span data-i18n="strength-wd">WD</span></div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-attribute sheet-attribute--vigor">
|
||
<input type="hidden" name="attr_rename_vigor" value="Vigor">
|
||
<input type="hidden" name="attr_vigor_roll" value="1d4">
|
||
<input type="hidden" name="attr_vigor_wd_roll" value="1d6">
|
||
<input type="hidden" name="attr_vigor_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_vigor_code" value="d4">
|
||
<input type="hidden" name="attr_vigor_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_vigor_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_vigor_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_vigor}}} {{trait=@{rename_vigor}}} {{traitdie=@{vigor_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{vigor_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{vigor_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{vigor_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{vigor_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{vigor_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{vigor_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{vigor_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{vigor_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{vigor_global_wd_roll} @{vigor_global_bonus_wd_roll}">
|
||
<button class="sheet-attribute__button" type="roll" name="roll_vigor" value="@{vigor_roll_body} {{wd=@{vigor_wd}}} {{wdroll=[[ @{vigor_wd_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~vigor)}}"><span name="attr_rename_vig" data-i18n="vig-u">VIG</span></button>
|
||
<input class="sheet-hex sheet-hex--48 sheet-hexfield__input" type="text" name="attr_vigor" placeholder="d4" value="d4" spellcheck="false">
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--nat sheet-hexfield--vigor-natural">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_vigor_natural" placeholder="d4" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="vigor-natural">Natural</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-stay-on-input sheet-hexfield--mod sheet-hexfield--vigor-mod">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_vigor_mod" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right sheet-exception"><span data-i18n="vigor-mod">Bonus</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--wd sheet-hexfield--vigor-wd">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_vigor_wd" placeholder="d6" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right"><span data-i18n="vigor-wd">WD</span></div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-secondary">
|
||
<div class="sheet-hexfield sheet-hexfield--pace">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_pace" placeholder="6" value="6" spellcheck="false">
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-stay-on-input sheet-hexfield--flight">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_flight" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right"><span data-i18n="flight">Flight</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield--run">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_run" placeholder="d6" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="run">Run</span></div>
|
||
</div>
|
||
<input type="hidden" name="attr_run_roll" value="d6">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--bottom"><span data-i18n="pace">Pace</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hexfield--parry">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_parry" placeholder="2" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--bottom"><span data-i18n="parry">Parry</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hexfield--toughness">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_toughness" placeholder="4" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--bottom"><span data-i18n="toughness">Tough.</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hexfield--soak">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_soak" placeholder="d4" value="d4" spellcheck="false">
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-stay-on-input sheet-hexfield--soak-mod">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_soak_mod" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--up sheet-exception"><span data-i18n="soak-mod">Bonus</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield--soak-wd">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_soak_wd" placeholder="d6" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right"><span data-i18n="soak-wd">WD</span></div>
|
||
</div>
|
||
<input type="hidden" name="attr_soak_roll" value="1d4">
|
||
<input type="hidden" name="attr_soak_wd_roll" value="1d6">
|
||
<input type="hidden" name="attr_soak_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_soak_code" value="d4">
|
||
<input type="hidden" name="attr_soak_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_soak_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_soak_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} ^{soak}}} {{trait=^{soak}}} {{traitdie=@{soak_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{soak_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{soak_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{soak_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{soak_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{soak_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{soak_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{soak_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{soak_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{soak_global_wd_roll} @{soak_global_bonus_wd_roll}">
|
||
<button class="sheet-hexfield__label sheet-hexfield__label--bottom" type="roll" name="roll_soak" value="@{soak_roll_body} {{wd=@{soak_wd}}} {{wdroll=[[ @{soak_wd_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~soak)}}"><span data-i18n="soak">Soak</span></button>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-armor">
|
||
<div class="sheet-armor__decoration"></div>
|
||
<div class="sheet-hexfield sheet-hexfield--armor-head">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_armor_head" placeholder="0" value="" spellcheck="false">
|
||
<textarea name="attr_head_notes" placeholder="NOTES" data-i18n-placeholder="armor-notes-u" spellcheck="false"></textarea>
|
||
<div class="sheet-armor__pointer sheet-armor__pointer--head"></div>
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="armor-head">Head</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hexfield--armor-torso">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_armor_torso" placeholder="0" value="" spellcheck="false">
|
||
<textarea name="attr_torso_notes" placeholder="NOTES" data-i18n-placeholder="armor-notes-u" spellcheck="false"></textarea>
|
||
<div class="sheet-armor__pointer sheet-armor__pointer--torso"></div>
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="armor-torso">Torso</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hexfield--armor-arms">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_armor_arms" placeholder="0" value="" spellcheck="false">
|
||
<textarea name="attr_arms_notes" placeholder="NOTES" data-i18n-placeholder="armor-notes-u" spellcheck="false"></textarea>
|
||
<div class="sheet-armor__pointer sheet-armor__pointer--arms"></div>
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="armor-arms">Arms</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hexfield--armor-legs">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_armor_legs" placeholder="0" value="" spellcheck="false">
|
||
<textarea name="attr_legs_notes" placeholder="NOTES" data-i18n-placeholder="armor-notes-u" spellcheck="false"></textarea>
|
||
<div class="sheet-armor__pointer sheet-armor__pointer--legs"></div>
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="armor-legs">Legs</span></div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-toggle-silhouette-markers" type="checkbox" name="attr_toggle_silhouette_markers" checked>
|
||
<div class="sheet-silhouette">
|
||
<input class="sheet-silhouette__switch" type="checkbox" name="attr_silhouette_selection">
|
||
<div class="sheet-silhouette__image"></div>
|
||
<div class="sheet-color-cycle sheet-silhouette__head">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_head" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_head" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_head" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_head" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_head" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_head" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_head" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__torso-upper">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_torso_upper" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_torso_upper" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_torso_upper" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_torso_upper" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_torso_upper" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_torso_upper" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_torso_upper" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__torso-lower">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_torso_lower" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_torso_lower" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_torso_lower" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_torso_lower" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_torso_lower" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_torso_lower" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_torso_lower" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__left-arm-upper">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_left_arm_upper" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_left_arm_upper" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_left_arm_upper" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_left_arm_upper" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_left_arm_upper" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_left_arm_upper" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_left_arm_upper" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__left-arm-lower">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_left_arm_lower" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_left_arm_lower" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_left_arm_lower" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_left_arm_lower" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_left_arm_lower" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_left_arm_lower" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_left_arm_lower" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__left-hand">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_left_hand" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_left_hand" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_left_hand" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_left_hand" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_left_hand" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_left_hand" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_left_hand" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__right-arm-upper">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_right_arm_upper" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_right_arm_upper" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_right_arm_upper" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_right_arm_upper" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_right_arm_upper" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_right_arm_upper" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_right_arm_upper" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__right-arm-lower">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_right_arm_lower" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_right_arm_lower" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_right_arm_lower" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_right_arm_lower" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_right_arm_lower" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_right_arm_lower" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_right_arm_lower" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__right-hand">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_right_hand" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_right_hand" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_right_hand" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_right_hand" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_right_hand" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_right_hand" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_right_hand" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__left-leg-upper">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_left_leg_upper" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_left_leg_upper" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_left_leg_upper" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_left_leg_upper" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_left_leg_upper" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_left_leg_upper" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_left_leg_upper" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__left-leg-lower">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_left_leg_lower" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_left_leg_lower" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_left_leg_lower" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_left_leg_lower" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_left_leg_lower" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_left_leg_lower" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_left_leg_lower" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__right-leg-upper">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_right_leg_upper" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_right_leg_upper" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_right_leg_upper" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_right_leg_upper" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_right_leg_upper" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_right_leg_upper" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_right_leg_upper" value="gray">
|
||
</div>
|
||
<div class="sheet-color-cycle sheet-silhouette__right-leg-lower">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_right_leg_lower" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_right_leg_lower" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_right_leg_lower" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_right_leg_lower" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_right_leg_lower" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_right_leg_lower" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_right_leg_lower" value="gray">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-section--features">
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_features_block" checked>
|
||
<div class="sheet-features">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__title" data-i18n="edges-and-hindrances">Edges & Hindrances</div>
|
||
</div>
|
||
<fieldset class="repeating_features">
|
||
<div class="sheet-repitem">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--novice" type="radio" name="attr_feature_rank" value="novice" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--seasoned" type="radio" name="attr_feature_rank" value="seasoned">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--veteran" type="radio" name="attr_feature_rank" value="veteran">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--heroic" type="radio" name="attr_feature_rank" value="heroic">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--legendary" type="radio" name="attr_feature_rank" value="legendary">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--augmentation" type="radio" name="attr_feature_rank" value="augmentation">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--dot" type="radio" name="attr_feature_rank" value="dot">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--hindrance" type="radio" name="attr_feature_rank" value="hindrance">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--disabled" type="radio" name="attr_feature_rank" value="disabled">
|
||
<div class="sheet-features__inner-background"></div><span name="attr_feature_name">New Edge/Hindrance</span>
|
||
<input class="sheet-align-left sheet-features__name" type="text" name="attr_feature_name" placeholder="New" data-i18n-placeholder="feature-name-new" spellcheck="false">
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-section--resources">
|
||
<div class="sheet-health">
|
||
<input type="hidden" name="attr_wound_mod" value="0">
|
||
<input type="hidden" name="attr_fatigue_mod" value="0">
|
||
<input class="sheet-hex sheet-hex--64 sheet-hex--incap" type="checkbox" name="attr_incap">
|
||
<div class="sheet-health__wounds">
|
||
<div class="sheet-health__icons">
|
||
<input class="sheet-icon sheet-icon--shield" type="checkbox" name="attr_health_icon_shield">
|
||
<input class="sheet-icon sheet-icon--bug" type="checkbox" name="attr_health_icon_bug">
|
||
<input class="sheet-icon sheet-icon--fire" type="checkbox" name="attr_health_icon_fire">
|
||
<input class="sheet-icon sheet-icon--hit" type="checkbox" name="attr_health_icon_hit">
|
||
<input class="sheet-icon sheet-icon--lightning" type="checkbox" name="attr_health_icon_lightning">
|
||
<input class="sheet-icon sheet-icon--cancel" type="checkbox" name="attr_health_icon_cancel">
|
||
</div>
|
||
<div class="sheet-health__track">
|
||
<input class="sheet-radio-track-toggle sheet-radio-track-toggle--6" type="checkbox" name="attr_wound_toggle_6" checked>
|
||
<input class="sheet-radio-track sheet-radio-track--6" type="radio" name="attr_wounds" value="6">
|
||
<input class="sheet-radio-track-toggle sheet-radio-track-toggle--5" type="checkbox" name="attr_wound_toggle_5" checked>
|
||
<input class="sheet-radio-track sheet-radio-track--5" type="radio" name="attr_wounds" value="5">
|
||
<input class="sheet-radio-track-toggle sheet-radio-track-toggle--4" type="checkbox" name="attr_wound_toggle_4" checked>
|
||
<input class="sheet-radio-track sheet-radio-track--4" type="radio" name="attr_wounds" value="4">
|
||
<input class="sheet-radio-track-toggle sheet-radio-track-toggle--3" type="checkbox" name="attr_wound_toggle_3">
|
||
<input class="sheet-radio-track sheet-radio-track--3" type="radio" name="attr_wounds" value="3">
|
||
<input class="sheet-radio-track-toggle sheet-radio-track-toggle--2" type="checkbox" name="attr_wound_toggle_2">
|
||
<input class="sheet-radio-track sheet-radio-track--2" type="radio" name="attr_wounds" value="2">
|
||
<input class="sheet-radio-track sheet-radio-track--1" type="radio" name="attr_wounds" value="1">
|
||
<input class="sheet-reset-button" type="radio" name="attr_wounds" value="0" checked>
|
||
</div>
|
||
<div class="sheet-header__title" data-i18n="wounds">Wounds</div>
|
||
</div>
|
||
<div class="sheet-health__center">
|
||
<div class="sheet-hexfield sheet-stay-on-input sheet-hexfield--wound-mitigation">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_wound_mitigation" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="wound-mitigation">Wound Mitigation</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-stay-on-input sheet-hexfield--rads">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_rads" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right"><span data-i18n="rads">Rads</span></div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-health__fatigue">
|
||
<div class="sheet-health__icons">
|
||
<input class="sheet-icon sheet-icon--rad" type="checkbox" name="attr_health_icon_rad">
|
||
<input class="sheet-icon sheet-icon--tools" type="checkbox" name="attr_health_icon_tools">
|
||
<input class="sheet-icon sheet-icon--ecg" type="checkbox" name="attr_health_icon_ecg">
|
||
</div>
|
||
<div class="sheet-health__track">
|
||
<input class="sheet-radio-track-toggle sheet-radio-track-toggle--3" type="checkbox" name="attr_fatigue_toggle_3" checked>
|
||
<input class="sheet-radio-track sheet-radio-track--3" type="radio" name="attr_fatigue" value="3">
|
||
<input class="sheet-radio-track-toggle sheet-radio-track-toggle--2" type="checkbox" name="attr_fatigue_toggle_2">
|
||
<input class="sheet-radio-track sheet-radio-track--2" type="radio" name="attr_fatigue" value="2">
|
||
<input class="sheet-radio-track sheet-radio-track--1" type="radio" name="attr_fatigue" value="1">
|
||
<input class="sheet-reset-button" type="radio" name="attr_fatigue" checked>
|
||
</div>
|
||
<div class="sheet-header__title" data-i18n="fatigue">Fatigue</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_power_block" checked>
|
||
<div class="sheet-power">
|
||
<input class="sheet-hex sheet-hex--64 sheet-hexfield__input" type="text" name="attr_power" placeholder="0"><span class="sheet-header__title" name="attr_rename_block_power" data-i18n="power-energy">Power</span>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield--power-consumed">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_power_consumed" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="power-consumed">Consumed</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield--power-maximum">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_power_maximum" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right"><span data-i18n="power-maximum">Max</span></div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-right sheet-sans">
|
||
<div class="sheet-sans-tab-line"></div>
|
||
<input type="radio" name="attr_sans_tabs" value="skills" label="Skills" data-i18n-label="tab-skills" checked>
|
||
<input type="radio" name="attr_sans_tabs" value="advancements" label="Advancements" data-i18n-label="tab-advancements">
|
||
<input type="radio" name="attr_sans_tabs" value="notebook" label="Notebook" data-i18n-label="tab-notebook">
|
||
<input type="radio" name="attr_sans_tabs" value="settings" label="Settings" data-i18n-label="tab-settings">
|
||
<input class="sheet-hidden sheet-toggle-skill-markers" type="checkbox" name="attr_toggle_skill_markers" checked>
|
||
<div class="sheet-skills">
|
||
<input class="sheet-skills__lock" type="checkbox" name="attr_skill_lock">
|
||
<div class="sheet-skills__wrapper">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-skills__die"><span data-i18n="die-button-number-2">2</span></div>
|
||
<div class="sheet-skills__die"><span data-i18n="die-button-number-4">4</span></div>
|
||
<div class="sheet-skills__die"><span data-i18n="die-button-number-6">6</span></div>
|
||
<div class="sheet-skills__die"><span data-i18n="die-button-number-8">8</span></div>
|
||
<div class="sheet-skills__die"><span data-i18n="die-button-number-10">10</span></div>
|
||
<div class="sheet-skills__die sheet-a"><span data-i18n="die-button-number-12">12</span></div>
|
||
<div class="sheet-skills__plus"></div>
|
||
<div class="sheet-skills__mod"><span data-i18n="skill-track-mod-u">MOD</span></div>
|
||
<div class="sheet-skills__wd"><span data-i18n="skill-track-wd-u">WD</span></div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_academics" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--academics">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_academics" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_academics" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_academics" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_academics" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_academics" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_academics" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_academics" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_academics_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_academics_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_academics" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_academics_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d12}} {{flat=@{academics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_wd_roll}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~academics_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_academics" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_academics_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d10}} {{flat=@{academics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_wd_roll}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~academics_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_academics" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_academics_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d8}} {{flat=@{academics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_wd_roll}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~academics_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_academics" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_academics_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d6}} {{flat=@{academics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_wd_roll}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~academics_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_academics" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_academics_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d4}} {{flat=@{academics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_wd_roll}!cs2 + (0)[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~academics_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_academics" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_academics_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d4-2}} {{flat=@{academics_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~academics_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_academics" value="Academics">
|
||
<input type="hidden" name="attr_academics_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_academics_roll" value="d4">
|
||
<input type="hidden" name="attr_academics_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_academics_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_academics_code" value="d4-2">
|
||
<input type="hidden" name="attr_academics_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_academics_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_academics_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=@{academics_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{academics_roll}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{academics_roll}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{academics_roll}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{academics_roll}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{academics_roll}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{academics_roll}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{academics_roll}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{academics_roll}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{academics_global_wd_roll} @{academics_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_academics" value="@{academics_roll_body} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_wd_roll}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~academics)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_academics">Academics</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_athletics" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--athletics">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_athletics" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_athletics" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_athletics" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_athletics" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_athletics" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_athletics" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_athletics" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_athletics_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_athletics_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_athletics" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_athletics_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d12}} {{flat=@{athletics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_wd_roll}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~athletics_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_athletics" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_athletics_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d10}} {{flat=@{athletics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_wd_roll}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~athletics_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_athletics" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_athletics_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d8}} {{flat=@{athletics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_wd_roll}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~athletics_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_athletics" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_athletics_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d6}} {{flat=@{athletics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_wd_roll}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~athletics_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_athletics" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_athletics_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d4}} {{flat=@{athletics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_wd_roll}!cs2 + (0)[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~athletics_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_athletics" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_athletics_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d4-2}} {{flat=@{athletics_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~athletics_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_athletics" value="Athletics">
|
||
<input type="hidden" name="attr_athletics_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_athletics_roll" value="d4">
|
||
<input type="hidden" name="attr_athletics_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_athletics_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_athletics_code" value="d4-2">
|
||
<input type="hidden" name="attr_athletics_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_athletics_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_athletics_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=@{athletics_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{athletics_roll}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{athletics_roll}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{athletics_roll}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{athletics_roll}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{athletics_roll}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{athletics_roll}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{athletics_roll}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{athletics_roll}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{athletics_global_wd_roll} @{athletics_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_athletics" value="@{athletics_roll_body} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_wd_roll}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~athletics)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_agi" data-i18n="agi-u">Agi</span></div><span name="attr_rename_athletics">Athletics</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_battle" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--battle">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_battle" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_battle" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_battle" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_battle" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_battle" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_battle" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_battle" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_battle_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_battle_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_battle" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_battle_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d12}} {{flat=@{battle_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_wd_roll}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~battle_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_battle" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_battle_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d10}} {{flat=@{battle_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_wd_roll}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~battle_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_battle" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_battle_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d8}} {{flat=@{battle_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_wd_roll}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~battle_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_battle" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_battle_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d6}} {{flat=@{battle_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_wd_roll}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~battle_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_battle" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_battle_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d4}} {{flat=@{battle_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_wd_roll}!cs2 + (0)[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~battle_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_battle" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_battle_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d4-2}} {{flat=@{battle_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~battle_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_battle" value="Battle">
|
||
<input type="hidden" name="attr_battle_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_battle_roll" value="d4">
|
||
<input type="hidden" name="attr_battle_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_battle_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_battle_code" value="d4-2">
|
||
<input type="hidden" name="attr_battle_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_battle_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_battle_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=@{battle_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{battle_roll}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{battle_roll}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{battle_roll}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{battle_roll}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{battle_roll}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{battle_roll}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{battle_roll}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{battle_roll}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{battle_global_wd_roll} @{battle_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_battle" value="@{battle_roll_body} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_wd_roll}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~battle)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_battle">Battle</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_boating" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--boating">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_boating" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_boating" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_boating" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_boating" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_boating" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_boating" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_boating" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_boating_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_boating_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_boating" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_boating_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d12}} {{flat=@{boating_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_wd_roll}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~boating_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_boating" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_boating_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d10}} {{flat=@{boating_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_wd_roll}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~boating_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_boating" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_boating_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d8}} {{flat=@{boating_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_wd_roll}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~boating_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_boating" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_boating_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d6}} {{flat=@{boating_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_wd_roll}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~boating_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_boating" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_boating_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d4}} {{flat=@{boating_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_wd_roll}!cs2 + (0)[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~boating_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_boating" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_boating_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d4-2}} {{flat=@{boating_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~boating_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_boating" value="Boating">
|
||
<input type="hidden" name="attr_boating_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_boating_roll" value="d4">
|
||
<input type="hidden" name="attr_boating_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_boating_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_boating_code" value="d4-2">
|
||
<input type="hidden" name="attr_boating_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_boating_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_boating_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=@{boating_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{boating_roll}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{boating_roll}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{boating_roll}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{boating_roll}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{boating_roll}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{boating_roll}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{boating_roll}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{boating_roll}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{boating_global_wd_roll} @{boating_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_boating" value="@{boating_roll_body} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_wd_roll}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~boating)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_agi" data-i18n="agi-u">Agi</span></div><span name="attr_rename_boating">Boating</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_common_knowledge" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--common_knowledge">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_common_knowledge" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_common_knowledge" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_common_knowledge" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_common_knowledge" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_common_knowledge" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_common_knowledge" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_common_knowledge" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_common_knowledge_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_common_knowledge_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_common_knowledge" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_common_knowledge_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d12}} {{flat=@{common_knowledge_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_wd_roll}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~common_knowledge_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_common_knowledge" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_common_knowledge_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d10}} {{flat=@{common_knowledge_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_wd_roll}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~common_knowledge_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_common_knowledge" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_common_knowledge_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d8}} {{flat=@{common_knowledge_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_wd_roll}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~common_knowledge_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_common_knowledge" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_common_knowledge_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d6}} {{flat=@{common_knowledge_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_wd_roll}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~common_knowledge_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_common_knowledge" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_common_knowledge_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d4}} {{flat=@{common_knowledge_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_wd_roll}!cs2 + (0)[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~common_knowledge_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_common_knowledge" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_common_knowledge_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d4-2}} {{flat=@{common_knowledge_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~common_knowledge_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_common_knowledge" value="Common Knowl.">
|
||
<input type="hidden" name="attr_common_knowledge_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_common_knowledge_roll" value="d4">
|
||
<input type="hidden" name="attr_common_knowledge_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_common_knowledge_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_common_knowledge_code" value="d4-2">
|
||
<input type="hidden" name="attr_common_knowledge_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_common_knowledge_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_common_knowledge_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=@{common_knowledge_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{common_knowledge_roll}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{common_knowledge_roll}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{common_knowledge_roll}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{common_knowledge_roll}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{common_knowledge_roll}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{common_knowledge_roll}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{common_knowledge_roll}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{common_knowledge_roll}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{common_knowledge_global_wd_roll} @{common_knowledge_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_common_knowledge" value="@{common_knowledge_roll_body} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_wd_roll}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~common_knowledge)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_common_knowledge">Common Knowl.</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_driving" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--driving">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_driving" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_driving" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_driving" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_driving" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_driving" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_driving" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_driving" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_driving_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_driving_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_driving" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_driving_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d12}} {{flat=@{driving_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_wd_roll}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~driving_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_driving" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_driving_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d10}} {{flat=@{driving_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_wd_roll}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~driving_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_driving" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_driving_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d8}} {{flat=@{driving_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_wd_roll}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~driving_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_driving" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_driving_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d6}} {{flat=@{driving_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_wd_roll}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~driving_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_driving" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_driving_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d4}} {{flat=@{driving_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_wd_roll}!cs2 + (0)[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~driving_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_driving" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_driving_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d4-2}} {{flat=@{driving_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~driving_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_driving" value="Driving">
|
||
<input type="hidden" name="attr_driving_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_driving_roll" value="d4">
|
||
<input type="hidden" name="attr_driving_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_driving_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_driving_code" value="d4-2">
|
||
<input type="hidden" name="attr_driving_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_driving_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_driving_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=@{driving_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{driving_roll}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{driving_roll}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{driving_roll}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{driving_roll}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{driving_roll}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{driving_roll}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{driving_roll}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{driving_roll}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{driving_global_wd_roll} @{driving_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_driving" value="@{driving_roll_body} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_wd_roll}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~driving)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_agi" data-i18n="agi-u">Agi</span></div><span name="attr_rename_driving">Driving</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_electronics" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--electronics">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_electronics" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_electronics" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_electronics" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_electronics" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_electronics" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_electronics" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_electronics" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_electronics_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_electronics_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_electronics" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_electronics_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d12}} {{flat=@{electronics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_wd_roll}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~electronics_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_electronics" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_electronics_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d10}} {{flat=@{electronics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_wd_roll}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~electronics_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_electronics" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_electronics_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d8}} {{flat=@{electronics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_wd_roll}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~electronics_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_electronics" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_electronics_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d6}} {{flat=@{electronics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_wd_roll}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~electronics_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_electronics" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_electronics_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d4}} {{flat=@{electronics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_wd_roll}!cs2 + (0)[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~electronics_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_electronics" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_electronics_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d4-2}} {{flat=@{electronics_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~electronics_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_electronics" value="Electronics">
|
||
<input type="hidden" name="attr_electronics_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_electronics_roll" value="d4">
|
||
<input type="hidden" name="attr_electronics_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_electronics_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_electronics_code" value="d4-2">
|
||
<input type="hidden" name="attr_electronics_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_electronics_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_electronics_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=@{electronics_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{electronics_roll}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{electronics_roll}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{electronics_roll}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{electronics_roll}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{electronics_roll}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{electronics_roll}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{electronics_roll}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{electronics_roll}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{electronics_global_wd_roll} @{electronics_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_electronics" value="@{electronics_roll_body} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_wd_roll}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~electronics)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_electronics">Electronics</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_faith">
|
||
<div class="sheet-skills__skill sheet-skills__skill--faith">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_faith" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_faith" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_faith" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_faith" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_faith" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_faith" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_faith" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_faith_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_faith_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_faith" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_faith_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d12}} {{flat=@{faith_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_wd_roll}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~faith_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_faith" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_faith_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d10}} {{flat=@{faith_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_wd_roll}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~faith_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_faith" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_faith_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d8}} {{flat=@{faith_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_wd_roll}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~faith_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_faith" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_faith_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d6}} {{flat=@{faith_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_wd_roll}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~faith_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_faith" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_faith_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d4}} {{flat=@{faith_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_wd_roll}!cs2 + (0)[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~faith_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_faith" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_faith_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d4-2}} {{flat=@{faith_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~faith_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_faith" value="Faith">
|
||
<input type="hidden" name="attr_faith_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_faith_roll" value="d4">
|
||
<input type="hidden" name="attr_faith_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_faith_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_faith_code" value="d4-2">
|
||
<input type="hidden" name="attr_faith_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_faith_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_faith_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=@{faith_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{faith_roll}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{faith_roll}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{faith_roll}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{faith_roll}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{faith_roll}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{faith_roll}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{faith_roll}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{faith_roll}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{faith_global_wd_roll} @{faith_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_faith" value="@{faith_roll_body} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_wd_roll}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~faith)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_spi" data-i18n="spi-u">Spi</span></div><span name="attr_rename_faith">Faith</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_fighting" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--fighting">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_fighting" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_fighting" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_fighting" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_fighting" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_fighting" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_fighting" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_fighting" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_fighting_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_fighting_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_fighting" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_fighting_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d12}} {{flat=@{fighting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_wd_roll}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~fighting_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_fighting" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_fighting_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d10}} {{flat=@{fighting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_wd_roll}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~fighting_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_fighting" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_fighting_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d8}} {{flat=@{fighting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_wd_roll}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~fighting_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_fighting" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_fighting_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d6}} {{flat=@{fighting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_wd_roll}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~fighting_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_fighting" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_fighting_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d4}} {{flat=@{fighting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_wd_roll}!cs2 + (0)[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~fighting_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_fighting" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_fighting_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d4-2}} {{flat=@{fighting_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~fighting_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_fighting" value="Fighting">
|
||
<input type="hidden" name="attr_fighting_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_fighting_roll" value="d4">
|
||
<input type="hidden" name="attr_fighting_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_fighting_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_fighting_code" value="d4-2">
|
||
<input type="hidden" name="attr_fighting_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_fighting_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_fighting_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=@{fighting_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{fighting_roll}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{fighting_roll}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{fighting_roll}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{fighting_roll}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{fighting_roll}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{fighting_roll}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{fighting_roll}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{fighting_roll}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{fighting_global_wd_roll} @{fighting_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_fighting" value="@{fighting_roll_body} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_wd_roll}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~fighting)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_agi" data-i18n="agi-u">Agi</span></div><span name="attr_rename_fighting">Fighting</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_focus">
|
||
<div class="sheet-skills__skill sheet-skills__skill--focus">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_focus" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_focus" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_focus" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_focus" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_focus" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_focus" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_focus" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_focus_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_focus_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_focus" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_focus_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d12}} {{flat=@{focus_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_wd_roll}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~focus_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_focus" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_focus_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d10}} {{flat=@{focus_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_wd_roll}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~focus_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_focus" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_focus_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d8}} {{flat=@{focus_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_wd_roll}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~focus_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_focus" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_focus_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d6}} {{flat=@{focus_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_wd_roll}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~focus_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_focus" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_focus_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d4}} {{flat=@{focus_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_wd_roll}!cs2 + (0)[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~focus_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_focus" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_focus_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d4-2}} {{flat=@{focus_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~focus_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_focus" value="Focus">
|
||
<input type="hidden" name="attr_focus_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_focus_roll" value="d4">
|
||
<input type="hidden" name="attr_focus_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_focus_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_focus_code" value="d4-2">
|
||
<input type="hidden" name="attr_focus_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_focus_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_focus_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=@{focus_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{focus_roll}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{focus_roll}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{focus_roll}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{focus_roll}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{focus_roll}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{focus_roll}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{focus_roll}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{focus_roll}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{focus_global_wd_roll} @{focus_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_focus" value="@{focus_roll_body} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_wd_roll}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~focus)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_spi" data-i18n="spi-u">Spi</span></div><span name="attr_rename_focus">Focus</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_gambling" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--gambling">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_gambling" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_gambling" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_gambling" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_gambling" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_gambling" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_gambling" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_gambling" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_gambling_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_gambling_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_gambling" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_gambling_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d12}} {{flat=@{gambling_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_wd_roll}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~gambling_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_gambling" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_gambling_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d10}} {{flat=@{gambling_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_wd_roll}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~gambling_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_gambling" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_gambling_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d8}} {{flat=@{gambling_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_wd_roll}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~gambling_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_gambling" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_gambling_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d6}} {{flat=@{gambling_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_wd_roll}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~gambling_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_gambling" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_gambling_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d4}} {{flat=@{gambling_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_wd_roll}!cs2 + (0)[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~gambling_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_gambling" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_gambling_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d4-2}} {{flat=@{gambling_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~gambling_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_gambling" value="Gambling">
|
||
<input type="hidden" name="attr_gambling_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_gambling_roll" value="d4">
|
||
<input type="hidden" name="attr_gambling_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_gambling_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_gambling_code" value="d4-2">
|
||
<input type="hidden" name="attr_gambling_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_gambling_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_gambling_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=@{gambling_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{gambling_roll}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{gambling_roll}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{gambling_roll}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{gambling_roll}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{gambling_roll}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{gambling_roll}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{gambling_roll}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{gambling_roll}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{gambling_global_wd_roll} @{gambling_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_gambling" value="@{gambling_roll_body} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_wd_roll}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~gambling)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_gambling">Gambling</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_hacking" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--hacking">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_hacking" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_hacking" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_hacking" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_hacking" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_hacking" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_hacking" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_hacking" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_hacking_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_hacking_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_hacking" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_hacking_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d12}} {{flat=@{hacking_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_wd_roll}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~hacking_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_hacking" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_hacking_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d10}} {{flat=@{hacking_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_wd_roll}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~hacking_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_hacking" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_hacking_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d8}} {{flat=@{hacking_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_wd_roll}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~hacking_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_hacking" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_hacking_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d6}} {{flat=@{hacking_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_wd_roll}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~hacking_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_hacking" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_hacking_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d4}} {{flat=@{hacking_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_wd_roll}!cs2 + (0)[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~hacking_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_hacking" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_hacking_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d4-2}} {{flat=@{hacking_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~hacking_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_hacking" value="Hacking">
|
||
<input type="hidden" name="attr_hacking_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_hacking_roll" value="d4">
|
||
<input type="hidden" name="attr_hacking_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_hacking_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_hacking_code" value="d4-2">
|
||
<input type="hidden" name="attr_hacking_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_hacking_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_hacking_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=@{hacking_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{hacking_roll}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{hacking_roll}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{hacking_roll}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{hacking_roll}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{hacking_roll}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{hacking_roll}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{hacking_roll}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{hacking_roll}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{hacking_global_wd_roll} @{hacking_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_hacking" value="@{hacking_roll_body} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_wd_roll}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~hacking)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_hacking">Hacking</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_healing" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--healing">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_healing" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_healing" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_healing" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_healing" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_healing" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_healing" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_healing" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_healing_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_healing_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_healing" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_healing_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d12}} {{flat=@{healing_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_wd_roll}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~healing_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_healing" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_healing_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d10}} {{flat=@{healing_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_wd_roll}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~healing_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_healing" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_healing_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d8}} {{flat=@{healing_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_wd_roll}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~healing_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_healing" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_healing_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d6}} {{flat=@{healing_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_wd_roll}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~healing_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_healing" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_healing_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d4}} {{flat=@{healing_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_wd_roll}!cs2 + (0)[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~healing_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_healing" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_healing_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d4-2}} {{flat=@{healing_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~healing_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_healing" value="Healing">
|
||
<input type="hidden" name="attr_healing_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_healing_roll" value="d4">
|
||
<input type="hidden" name="attr_healing_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_healing_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_healing_code" value="d4-2">
|
||
<input type="hidden" name="attr_healing_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_healing_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_healing_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=@{healing_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{healing_roll}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{healing_roll}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{healing_roll}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{healing_roll}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{healing_roll}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{healing_roll}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{healing_roll}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{healing_roll}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{healing_global_wd_roll} @{healing_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_healing" value="@{healing_roll_body} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_wd_roll}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~healing)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_healing">Healing</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_intimidation" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--intimidation">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_intimidation" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_intimidation" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_intimidation" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_intimidation" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_intimidation" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_intimidation" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_intimidation" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_intimidation_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_intimidation_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_intimidation" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_intimidation_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d12}} {{flat=@{intimidation_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_wd_roll}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~intimidation_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_intimidation" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_intimidation_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d10}} {{flat=@{intimidation_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_wd_roll}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~intimidation_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_intimidation" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_intimidation_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d8}} {{flat=@{intimidation_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_wd_roll}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~intimidation_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_intimidation" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_intimidation_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d6}} {{flat=@{intimidation_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_wd_roll}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~intimidation_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_intimidation" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_intimidation_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d4}} {{flat=@{intimidation_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_wd_roll}!cs2 + (0)[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~intimidation_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_intimidation" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_intimidation_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d4-2}} {{flat=@{intimidation_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~intimidation_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_intimidation" value="Intimidation">
|
||
<input type="hidden" name="attr_intimidation_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_intimidation_roll" value="d4">
|
||
<input type="hidden" name="attr_intimidation_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_intimidation_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_intimidation_code" value="d4-2">
|
||
<input type="hidden" name="attr_intimidation_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_intimidation_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_intimidation_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=@{intimidation_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{intimidation_roll}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{intimidation_roll}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{intimidation_roll}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{intimidation_roll}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{intimidation_roll}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{intimidation_roll}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{intimidation_roll}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{intimidation_roll}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{intimidation_global_wd_roll} @{intimidation_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_intimidation" value="@{intimidation_roll_body} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_wd_roll}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~intimidation)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_spi" data-i18n="spi-u">Spi</span></div><span name="attr_rename_intimidation">Intimidation</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_language">
|
||
<div class="sheet-skills__skill sheet-skills__skill--language">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_language" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_language" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_language" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_language" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_language" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_language" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_language" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_language_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_language_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_language" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_language_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d12}} {{flat=@{language_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{language_wd}}} {{wdroll=[[ @{language_wd_roll}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~language_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_language" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_language_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d10}} {{flat=@{language_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{language_wd}}} {{wdroll=[[ @{language_wd_roll}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~language_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_language" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_language_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d8}} {{flat=@{language_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{language_wd}}} {{wdroll=[[ @{language_wd_roll}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~language_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_language" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_language_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d6}} {{flat=@{language_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{language_wd}}} {{wdroll=[[ @{language_wd_roll}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~language_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_language" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_language_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d4}} {{flat=@{language_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{language_wd}}} {{wdroll=[[ @{language_wd_roll}!cs2 + (0)[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~language_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_language" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_language_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d4-2}} {{flat=@{language_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{language_wd}}} {{wdroll=[[ @{language_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~language_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_language" value="Language">
|
||
<input type="hidden" name="attr_language_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_language_roll" value="d4">
|
||
<input type="hidden" name="attr_language_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_language_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_language_code" value="d4-2">
|
||
<input type="hidden" name="attr_language_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_language_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_language_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=@{language_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{language_roll}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{language_roll}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{language_roll}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{language_roll}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{language_roll}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{language_roll}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{language_roll}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{language_roll}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{language_global_wd_roll} @{language_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_language" value="@{language_roll_body} {{wd=@{language_wd}}} {{wdroll=[[ @{language_wd_roll}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~language)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_language">Language</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_magic" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--magic">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_magic" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_magic" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_magic" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_magic" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_magic" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_magic" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_magic" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_magic_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_magic_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_magic" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_magic_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d12}} {{flat=@{magic_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_wd_roll}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~magic_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_magic" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_magic_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d10}} {{flat=@{magic_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_wd_roll}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~magic_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_magic" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_magic_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d8}} {{flat=@{magic_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_wd_roll}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~magic_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_magic" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_magic_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d6}} {{flat=@{magic_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_wd_roll}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~magic_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_magic" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_magic_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d4}} {{flat=@{magic_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_wd_roll}!cs2 + (0)[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~magic_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_magic" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_magic_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d4-2}} {{flat=@{magic_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~magic_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_magic" value="MAGIC">
|
||
<input type="hidden" name="attr_magic_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_magic_roll" value="d4">
|
||
<input type="hidden" name="attr_magic_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_magic_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_magic_code" value="d4-2">
|
||
<input type="hidden" name="attr_magic_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_magic_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_magic_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=@{magic_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{magic_roll}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{magic_roll}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{magic_roll}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{magic_roll}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{magic_roll}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{magic_roll}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{magic_roll}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{magic_roll}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{magic_global_wd_roll} @{magic_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_magic" value="@{magic_roll_body} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_wd_roll}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~magic)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_magic">MAGIC</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_notice" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--notice">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_notice" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_notice" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_notice" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_notice" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_notice" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_notice" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_notice" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_notice_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_notice_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_notice" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_notice_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d12}} {{flat=@{notice_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_wd_roll}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~notice_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_notice" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_notice_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d10}} {{flat=@{notice_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_wd_roll}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~notice_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_notice" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_notice_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d8}} {{flat=@{notice_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_wd_roll}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~notice_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_notice" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_notice_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d6}} {{flat=@{notice_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_wd_roll}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~notice_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_notice" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_notice_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d4}} {{flat=@{notice_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_wd_roll}!cs2 + (0)[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~notice_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_notice" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_notice_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d4-2}} {{flat=@{notice_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~notice_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_notice" value="Notice">
|
||
<input type="hidden" name="attr_notice_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_notice_roll" value="d4">
|
||
<input type="hidden" name="attr_notice_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_notice_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_notice_code" value="d4-2">
|
||
<input type="hidden" name="attr_notice_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_notice_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_notice_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=@{notice_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{notice_roll}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{notice_roll}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{notice_roll}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{notice_roll}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{notice_roll}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{notice_roll}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{notice_roll}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{notice_roll}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{notice_global_wd_roll} @{notice_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_notice" value="@{notice_roll_body} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_wd_roll}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~notice)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_notice">Notice</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_occult">
|
||
<div class="sheet-skills__skill sheet-skills__skill--occult">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_occult" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_occult" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_occult" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_occult" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_occult" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_occult" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_occult" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_occult_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_occult_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_occult" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_occult_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d12}} {{flat=@{occult_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_wd_roll}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~occult_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_occult" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_occult_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d10}} {{flat=@{occult_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_wd_roll}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~occult_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_occult" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_occult_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d8}} {{flat=@{occult_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_wd_roll}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~occult_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_occult" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_occult_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d6}} {{flat=@{occult_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_wd_roll}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~occult_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_occult" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_occult_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d4}} {{flat=@{occult_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_wd_roll}!cs2 + (0)[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~occult_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_occult" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_occult_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d4-2}} {{flat=@{occult_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~occult_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_occult" value="Occult">
|
||
<input type="hidden" name="attr_occult_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_occult_roll" value="d4">
|
||
<input type="hidden" name="attr_occult_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_occult_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_occult_code" value="d4-2">
|
||
<input type="hidden" name="attr_occult_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_occult_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_occult_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=@{occult_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{occult_roll}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{occult_roll}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{occult_roll}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{occult_roll}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{occult_roll}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{occult_roll}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{occult_roll}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{occult_roll}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{occult_global_wd_roll} @{occult_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_occult" value="@{occult_roll_body} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_wd_roll}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~occult)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_occult">Occult</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_performance" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--performance">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_performance" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_performance" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_performance" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_performance" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_performance" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_performance" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_performance" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_performance_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_performance_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_performance" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_performance_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d12}} {{flat=@{performance_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_wd_roll}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~performance_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_performance" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_performance_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d10}} {{flat=@{performance_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_wd_roll}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~performance_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_performance" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_performance_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d8}} {{flat=@{performance_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_wd_roll}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~performance_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_performance" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_performance_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d6}} {{flat=@{performance_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_wd_roll}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~performance_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_performance" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_performance_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d4}} {{flat=@{performance_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_wd_roll}!cs2 + (0)[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~performance_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_performance" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_performance_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d4-2}} {{flat=@{performance_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~performance_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_performance" value="Performance">
|
||
<input type="hidden" name="attr_performance_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_performance_roll" value="d4">
|
||
<input type="hidden" name="attr_performance_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_performance_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_performance_code" value="d4-2">
|
||
<input type="hidden" name="attr_performance_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_performance_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_performance_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=@{performance_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{performance_roll}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{performance_roll}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{performance_roll}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{performance_roll}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{performance_roll}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{performance_roll}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{performance_roll}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{performance_roll}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{performance_global_wd_roll} @{performance_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_performance" value="@{performance_roll_body} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_wd_roll}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~performance)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_spi" data-i18n="spi-u">Spi</span></div><span name="attr_rename_performance">Performance</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_persuasion" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--persuasion">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_persuasion" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_persuasion" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_persuasion" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_persuasion" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_persuasion" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_persuasion" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_persuasion" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_persuasion_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_persuasion_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_persuasion" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_persuasion_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d12}} {{flat=@{persuasion_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_wd_roll}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~persuasion_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_persuasion" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_persuasion_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d10}} {{flat=@{persuasion_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_wd_roll}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~persuasion_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_persuasion" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_persuasion_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d8}} {{flat=@{persuasion_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_wd_roll}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~persuasion_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_persuasion" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_persuasion_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d6}} {{flat=@{persuasion_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_wd_roll}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~persuasion_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_persuasion" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_persuasion_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d4}} {{flat=@{persuasion_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_wd_roll}!cs2 + (0)[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~persuasion_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_persuasion" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_persuasion_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d4-2}} {{flat=@{persuasion_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~persuasion_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_persuasion" value="Persuasion">
|
||
<input type="hidden" name="attr_persuasion_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_persuasion_roll" value="d4">
|
||
<input type="hidden" name="attr_persuasion_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_persuasion_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_persuasion_code" value="d4-2">
|
||
<input type="hidden" name="attr_persuasion_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_persuasion_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_persuasion_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=@{persuasion_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{persuasion_roll}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{persuasion_roll}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{persuasion_roll}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{persuasion_roll}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{persuasion_roll}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{persuasion_roll}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{persuasion_roll}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{persuasion_roll}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{persuasion_global_wd_roll} @{persuasion_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_persuasion" value="@{persuasion_roll_body} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_wd_roll}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~persuasion)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_spi" data-i18n="spi-u">Spi</span></div><span name="attr_rename_persuasion">Persuasion</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_piloting" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--piloting">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_piloting" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_piloting" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_piloting" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_piloting" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_piloting" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_piloting" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_piloting" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_piloting_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_piloting_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_piloting" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_piloting_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d12}} {{flat=@{piloting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_wd_roll}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~piloting_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_piloting" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_piloting_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d10}} {{flat=@{piloting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_wd_roll}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~piloting_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_piloting" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_piloting_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d8}} {{flat=@{piloting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_wd_roll}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~piloting_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_piloting" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_piloting_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d6}} {{flat=@{piloting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_wd_roll}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~piloting_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_piloting" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_piloting_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d4}} {{flat=@{piloting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_wd_roll}!cs2 + (0)[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~piloting_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_piloting" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_piloting_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d4-2}} {{flat=@{piloting_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~piloting_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_piloting" value="Piloting">
|
||
<input type="hidden" name="attr_piloting_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_piloting_roll" value="d4">
|
||
<input type="hidden" name="attr_piloting_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_piloting_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_piloting_code" value="d4-2">
|
||
<input type="hidden" name="attr_piloting_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_piloting_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_piloting_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=@{piloting_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{piloting_roll}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{piloting_roll}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{piloting_roll}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{piloting_roll}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{piloting_roll}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{piloting_roll}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{piloting_roll}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{piloting_roll}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{piloting_global_wd_roll} @{piloting_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_piloting" value="@{piloting_roll_body} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_wd_roll}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~piloting)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_agi" data-i18n="agi-u">Agi</span></div><span name="attr_rename_piloting">Piloting</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_psionics">
|
||
<div class="sheet-skills__skill sheet-skills__skill--psionics">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_psionics" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_psionics" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_psionics" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_psionics" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_psionics" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_psionics" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_psionics" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_psionics_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_psionics_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_psionics" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_psionics_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d12}} {{flat=@{psionics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_wd_roll}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~psionics_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_psionics" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_psionics_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d10}} {{flat=@{psionics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_wd_roll}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~psionics_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_psionics" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_psionics_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d8}} {{flat=@{psionics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_wd_roll}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~psionics_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_psionics" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_psionics_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d6}} {{flat=@{psionics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_wd_roll}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~psionics_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_psionics" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_psionics_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d4}} {{flat=@{psionics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_wd_roll}!cs2 + (0)[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~psionics_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_psionics" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_psionics_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d4-2}} {{flat=@{psionics_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~psionics_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_psionics" value="Psionics">
|
||
<input type="hidden" name="attr_psionics_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_psionics_roll" value="d4">
|
||
<input type="hidden" name="attr_psionics_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_psionics_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_psionics_code" value="d4-2">
|
||
<input type="hidden" name="attr_psionics_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_psionics_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_psionics_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=@{psionics_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{psionics_roll}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{psionics_roll}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{psionics_roll}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{psionics_roll}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{psionics_roll}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{psionics_roll}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{psionics_roll}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{psionics_roll}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{psionics_global_wd_roll} @{psionics_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_psionics" value="@{psionics_roll_body} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_wd_roll}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~psionics)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_psionics">Psionics</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_repair" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--repair">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_repair" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_repair" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_repair" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_repair" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_repair" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_repair" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_repair" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_repair_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_repair_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_repair" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_repair_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d12}} {{flat=@{repair_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_wd_roll}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repair_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_repair" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_repair_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d10}} {{flat=@{repair_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_wd_roll}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repair_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_repair" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_repair_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d8}} {{flat=@{repair_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_wd_roll}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repair_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_repair" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_repair_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d6}} {{flat=@{repair_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_wd_roll}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repair_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_repair" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_repair_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d4}} {{flat=@{repair_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_wd_roll}!cs2 + (0)[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repair_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_repair" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_repair_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d4-2}} {{flat=@{repair_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repair_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_repair" value="Repair">
|
||
<input type="hidden" name="attr_repair_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_repair_roll" value="d4">
|
||
<input type="hidden" name="attr_repair_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_repair_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_repair_code" value="d4-2">
|
||
<input type="hidden" name="attr_repair_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_repair_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_repair_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=@{repair_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{repair_roll}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{repair_roll}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{repair_roll}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{repair_roll}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{repair_roll}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{repair_roll}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{repair_roll}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{repair_roll}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{repair_global_wd_roll} @{repair_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_repair" value="@{repair_roll_body} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_wd_roll}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repair)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_repair">Repair</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_research" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--research">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_research" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_research" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_research" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_research" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_research" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_research" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_research" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_research_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_research_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_research" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_research_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d12}} {{flat=@{research_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{research_wd}}} {{wdroll=[[ @{research_wd_roll}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~research_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_research" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_research_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d10}} {{flat=@{research_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{research_wd}}} {{wdroll=[[ @{research_wd_roll}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~research_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_research" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_research_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d8}} {{flat=@{research_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{research_wd}}} {{wdroll=[[ @{research_wd_roll}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~research_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_research" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_research_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d6}} {{flat=@{research_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{research_wd}}} {{wdroll=[[ @{research_wd_roll}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~research_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_research" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_research_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d4}} {{flat=@{research_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{research_wd}}} {{wdroll=[[ @{research_wd_roll}!cs2 + (0)[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~research_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_research" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_research_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d4-2}} {{flat=@{research_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{research_wd}}} {{wdroll=[[ @{research_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~research_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_research" value="Research">
|
||
<input type="hidden" name="attr_research_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_research_roll" value="d4">
|
||
<input type="hidden" name="attr_research_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_research_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_research_code" value="d4-2">
|
||
<input type="hidden" name="attr_research_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_research_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_research_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=@{research_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{research_roll}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{research_roll}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{research_roll}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{research_roll}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{research_roll}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{research_roll}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{research_roll}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{research_roll}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{research_global_wd_roll} @{research_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_research" value="@{research_roll_body} {{wd=@{research_wd}}} {{wdroll=[[ @{research_wd_roll}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~research)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_research">Research</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_riding" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--riding">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_riding" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_riding" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_riding" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_riding" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_riding" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_riding" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_riding" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_riding_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_riding_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_riding" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_riding_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d12}} {{flat=@{riding_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_wd_roll}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~riding_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_riding" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_riding_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d10}} {{flat=@{riding_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_wd_roll}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~riding_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_riding" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_riding_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d8}} {{flat=@{riding_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_wd_roll}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~riding_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_riding" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_riding_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d6}} {{flat=@{riding_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_wd_roll}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~riding_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_riding" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_riding_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d4}} {{flat=@{riding_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_wd_roll}!cs2 + (0)[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~riding_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_riding" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_riding_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d4-2}} {{flat=@{riding_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~riding_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_riding" value="Riding">
|
||
<input type="hidden" name="attr_riding_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_riding_roll" value="d4">
|
||
<input type="hidden" name="attr_riding_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_riding_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_riding_code" value="d4-2">
|
||
<input type="hidden" name="attr_riding_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_riding_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_riding_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=@{riding_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{riding_roll}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{riding_roll}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{riding_roll}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{riding_roll}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{riding_roll}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{riding_roll}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{riding_roll}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{riding_roll}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{riding_global_wd_roll} @{riding_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_riding" value="@{riding_roll_body} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_wd_roll}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~riding)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_agi" data-i18n="agi-u">Agi</span></div><span name="attr_rename_riding">Riding</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_science" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--science">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_science" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_science" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_science" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_science" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_science" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_science" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_science" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_science_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_science_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_science" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_science_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d12}} {{flat=@{science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{science_wd}}} {{wdroll=[[ @{science_wd_roll}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~science_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_science" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_science_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d10}} {{flat=@{science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{science_wd}}} {{wdroll=[[ @{science_wd_roll}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~science_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_science" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_science_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d8}} {{flat=@{science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{science_wd}}} {{wdroll=[[ @{science_wd_roll}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~science_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_science" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_science_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d6}} {{flat=@{science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{science_wd}}} {{wdroll=[[ @{science_wd_roll}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~science_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_science" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_science_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d4}} {{flat=@{science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{science_wd}}} {{wdroll=[[ @{science_wd_roll}!cs2 + (0)[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~science_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_science" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_science_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d4-2}} {{flat=@{science_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{science_wd}}} {{wdroll=[[ @{science_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~science_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_science" value="Science">
|
||
<input type="hidden" name="attr_science_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_science_roll" value="d4">
|
||
<input type="hidden" name="attr_science_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_science_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_science_code" value="d4-2">
|
||
<input type="hidden" name="attr_science_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_science_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_science_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=@{science_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{science_roll}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{science_roll}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{science_roll}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{science_roll}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{science_roll}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{science_roll}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{science_roll}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{science_roll}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{science_global_wd_roll} @{science_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_science" value="@{science_roll_body} {{wd=@{science_wd}}} {{wdroll=[[ @{science_wd_roll}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~science)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_science">Science</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_shooting" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--shooting">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_shooting" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_shooting" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_shooting" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_shooting" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_shooting" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_shooting" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_shooting" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_shooting_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_shooting_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_shooting" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_shooting_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d12}} {{flat=@{shooting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_wd_roll}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~shooting_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_shooting" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_shooting_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d10}} {{flat=@{shooting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_wd_roll}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~shooting_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_shooting" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_shooting_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d8}} {{flat=@{shooting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_wd_roll}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~shooting_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_shooting" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_shooting_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d6}} {{flat=@{shooting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_wd_roll}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~shooting_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_shooting" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_shooting_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d4}} {{flat=@{shooting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_wd_roll}!cs2 + (0)[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~shooting_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_shooting" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_shooting_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d4-2}} {{flat=@{shooting_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~shooting_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_shooting" value="Shooting">
|
||
<input type="hidden" name="attr_shooting_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_shooting_roll" value="d4">
|
||
<input type="hidden" name="attr_shooting_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_shooting_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_shooting_code" value="d4-2">
|
||
<input type="hidden" name="attr_shooting_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_shooting_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_shooting_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=@{shooting_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{shooting_roll}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{shooting_roll}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{shooting_roll}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{shooting_roll}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{shooting_roll}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{shooting_roll}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{shooting_roll}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{shooting_roll}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{shooting_global_wd_roll} @{shooting_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_shooting" value="@{shooting_roll_body} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_wd_roll}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~shooting)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_agi" data-i18n="agi-u">Agi</span></div><span name="attr_rename_shooting">Shooting</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_spellcasting">
|
||
<div class="sheet-skills__skill sheet-skills__skill--spellcasting">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_spellcasting" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_spellcasting" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_spellcasting" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_spellcasting" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_spellcasting" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_spellcasting" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_spellcasting" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_spellcasting_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_spellcasting_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_spellcasting" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_spellcasting_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d12}} {{flat=@{spellcasting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_wd_roll}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~spellcasting_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_spellcasting" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_spellcasting_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d10}} {{flat=@{spellcasting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_wd_roll}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~spellcasting_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_spellcasting" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_spellcasting_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d8}} {{flat=@{spellcasting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_wd_roll}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~spellcasting_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_spellcasting" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_spellcasting_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d6}} {{flat=@{spellcasting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_wd_roll}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~spellcasting_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_spellcasting" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_spellcasting_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d4}} {{flat=@{spellcasting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_wd_roll}!cs2 + (0)[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~spellcasting_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_spellcasting" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_spellcasting_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d4-2}} {{flat=@{spellcasting_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~spellcasting_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_spellcasting" value="Spellcasting">
|
||
<input type="hidden" name="attr_spellcasting_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_spellcasting_roll" value="d4">
|
||
<input type="hidden" name="attr_spellcasting_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_spellcasting_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_spellcasting_code" value="d4-2">
|
||
<input type="hidden" name="attr_spellcasting_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_spellcasting_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_spellcasting_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=@{spellcasting_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{spellcasting_roll}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{spellcasting_roll}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{spellcasting_roll}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{spellcasting_roll}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{spellcasting_roll}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{spellcasting_roll}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{spellcasting_roll}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{spellcasting_roll}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spellcasting_global_wd_roll} @{spellcasting_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_spellcasting" value="@{spellcasting_roll_body} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_wd_roll}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~spellcasting)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_spellcasting">Spellcasting</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_stealth" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--stealth">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_stealth" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_stealth" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_stealth" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_stealth" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_stealth" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_stealth" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_stealth" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_stealth_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_stealth_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_stealth" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_stealth_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d12}} {{flat=@{stealth_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_wd_roll}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~stealth_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_stealth" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_stealth_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d10}} {{flat=@{stealth_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_wd_roll}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~stealth_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_stealth" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_stealth_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d8}} {{flat=@{stealth_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_wd_roll}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~stealth_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_stealth" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_stealth_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d6}} {{flat=@{stealth_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_wd_roll}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~stealth_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_stealth" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_stealth_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d4}} {{flat=@{stealth_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_wd_roll}!cs2 + (0)[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~stealth_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_stealth" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_stealth_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d4-2}} {{flat=@{stealth_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~stealth_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_stealth" value="Stealth">
|
||
<input type="hidden" name="attr_stealth_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_stealth_roll" value="d4">
|
||
<input type="hidden" name="attr_stealth_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_stealth_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_stealth_code" value="d4-2">
|
||
<input type="hidden" name="attr_stealth_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_stealth_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_stealth_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=@{stealth_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{stealth_roll}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{stealth_roll}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{stealth_roll}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{stealth_roll}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{stealth_roll}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{stealth_roll}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{stealth_roll}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{stealth_roll}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{stealth_global_wd_roll} @{stealth_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_stealth" value="@{stealth_roll_body} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_wd_roll}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~stealth)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_agi" data-i18n="agi-u">Agi</span></div><span name="attr_rename_stealth">Stealth</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_survival" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--survival">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_survival" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_survival" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_survival" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_survival" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_survival" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_survival" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_survival" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_survival_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_survival_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_survival" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_survival_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d12}} {{flat=@{survival_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_wd_roll}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~survival_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_survival" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_survival_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d10}} {{flat=@{survival_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_wd_roll}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~survival_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_survival" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_survival_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d8}} {{flat=@{survival_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_wd_roll}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~survival_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_survival" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_survival_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d6}} {{flat=@{survival_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_wd_roll}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~survival_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_survival" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_survival_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d4}} {{flat=@{survival_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_wd_roll}!cs2 + (0)[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~survival_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_survival" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_survival_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d4-2}} {{flat=@{survival_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~survival_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_survival" value="Survival">
|
||
<input type="hidden" name="attr_survival_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_survival_roll" value="d4">
|
||
<input type="hidden" name="attr_survival_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_survival_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_survival_code" value="d4-2">
|
||
<input type="hidden" name="attr_survival_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_survival_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_survival_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=@{survival_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{survival_roll}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{survival_roll}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{survival_roll}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{survival_roll}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{survival_roll}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{survival_roll}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{survival_roll}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{survival_roll}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{survival_global_wd_roll} @{survival_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_survival" value="@{survival_roll_body} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_wd_roll}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~survival)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_survival">Survival</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_taunt" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--taunt">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_taunt" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_taunt" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_taunt" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_taunt" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_taunt" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_taunt" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_taunt" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_taunt_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_taunt_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_taunt" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_taunt_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d12}} {{flat=@{taunt_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_wd_roll}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~taunt_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_taunt" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_taunt_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d10}} {{flat=@{taunt_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_wd_roll}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~taunt_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_taunt" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_taunt_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d8}} {{flat=@{taunt_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_wd_roll}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~taunt_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_taunt" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_taunt_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d6}} {{flat=@{taunt_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_wd_roll}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~taunt_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_taunt" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_taunt_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d4}} {{flat=@{taunt_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_wd_roll}!cs2 + (0)[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~taunt_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_taunt" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_taunt_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d4-2}} {{flat=@{taunt_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~taunt_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_taunt" value="Taunt">
|
||
<input type="hidden" name="attr_taunt_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_taunt_roll" value="d4">
|
||
<input type="hidden" name="attr_taunt_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_taunt_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_taunt_code" value="d4-2">
|
||
<input type="hidden" name="attr_taunt_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_taunt_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_taunt_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=@{taunt_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{taunt_roll}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{taunt_roll}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{taunt_roll}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{taunt_roll}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{taunt_roll}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{taunt_roll}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{taunt_roll}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{taunt_roll}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{taunt_global_wd_roll} @{taunt_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_taunt" value="@{taunt_roll_body} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_wd_roll}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~taunt)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_taunt">Taunt</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_thievery" checked>
|
||
<div class="sheet-skills__skill sheet-skills__skill--thievery">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_thievery" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_thievery" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_thievery" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_thievery" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_thievery" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_thievery" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_thievery" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_thievery_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_thievery_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_thievery" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_thievery_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d12}} {{flat=@{thievery_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_wd_roll}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~thievery_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_thievery" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_thievery_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d10}} {{flat=@{thievery_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_wd_roll}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~thievery_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_thievery" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_thievery_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d8}} {{flat=@{thievery_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_wd_roll}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~thievery_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_thievery" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_thievery_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d6}} {{flat=@{thievery_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_wd_roll}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~thievery_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_thievery" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_thievery_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d4}} {{flat=@{thievery_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_wd_roll}!cs2 + (0)[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~thievery_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_thievery" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_thievery_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d4-2}} {{flat=@{thievery_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~thievery_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_thievery" value="Thievery">
|
||
<input type="hidden" name="attr_thievery_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_thievery_roll" value="d4">
|
||
<input type="hidden" name="attr_thievery_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_thievery_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_thievery_code" value="d4-2">
|
||
<input type="hidden" name="attr_thievery_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_thievery_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_thievery_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=@{thievery_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{thievery_roll}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{thievery_roll}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{thievery_roll}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{thievery_roll}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{thievery_roll}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{thievery_roll}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{thievery_roll}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{thievery_roll}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{thievery_global_wd_roll} @{thievery_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_thievery" value="@{thievery_roll_body} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_wd_roll}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~thievery)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_agi" data-i18n="agi-u">Agi</span></div><span name="attr_rename_thievery">Thievery</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_weird_science">
|
||
<div class="sheet-skills__skill sheet-skills__skill--weird_science">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_weird_science" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_weird_science" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_weird_science" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_weird_science" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_weird_science" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_weird_science" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_weird_science" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_weird_science_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_weird_science_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_weird_science" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_weird_science_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d12}} {{flat=@{weird_science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_wd_roll}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~weird_science_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_weird_science" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_weird_science_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d10}} {{flat=@{weird_science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_wd_roll}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~weird_science_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_weird_science" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_weird_science_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d8}} {{flat=@{weird_science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_wd_roll}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~weird_science_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_weird_science" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_weird_science_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d6}} {{flat=@{weird_science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_wd_roll}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~weird_science_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_weird_science" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_weird_science_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d4}} {{flat=@{weird_science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_wd_roll}!cs2 + (0)[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~weird_science_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_weird_science" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_weird_science_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d4-2}} {{flat=@{weird_science_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~weird_science_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_weird_science" value="Weird Science">
|
||
<input type="hidden" name="attr_weird_science_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_weird_science_roll" value="d4">
|
||
<input type="hidden" name="attr_weird_science_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_weird_science_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_weird_science_code" value="d4-2">
|
||
<input type="hidden" name="attr_weird_science_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_weird_science_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_weird_science_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=@{weird_science_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{weird_science_roll}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{weird_science_roll}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{weird_science_roll}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{weird_science_roll}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{weird_science_roll}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{weird_science_roll}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{weird_science_roll}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{weird_science_roll}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{weird_science_global_wd_roll} @{weird_science_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_weird_science" value="@{weird_science_roll_body} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_wd_roll}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~weird_science)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_sma" data-i18n="sma-u">Sma</span></div><span name="attr_rename_weird_science">Weird Science</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_custom_skill_1">
|
||
<div class="sheet-skills__skill sheet-skills__skill--custom_skill_1">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_custom_skill_1" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_custom_skill_1" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_custom_skill_1" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_custom_skill_1" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_custom_skill_1" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_custom_skill_1" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_custom_skill_1" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_custom_skill_1_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_custom_skill_1_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_custom_skill_1" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_1_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d12}} {{flat=@{custom_skill_1_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_1_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_custom_skill_1" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_1_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d10}} {{flat=@{custom_skill_1_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_1_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_custom_skill_1" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_1_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d8}} {{flat=@{custom_skill_1_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_1_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_custom_skill_1" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_1_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d6}} {{flat=@{custom_skill_1_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_1_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_custom_skill_1" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_1_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d4}} {{flat=@{custom_skill_1_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_1_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_custom_skill_1" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_1_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d4-2}} {{flat=@{custom_skill_1_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_1_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_custom_skill_1" value="Custom Skill 1">
|
||
<input type="hidden" name="attr_custom_skill_1_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_custom_skill_1_roll" value="d4">
|
||
<input type="hidden" name="attr_custom_skill_1_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_custom_skill_1_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_custom_skill_1_code" value="d4-2">
|
||
<input type="hidden" name="attr_custom_skill_1_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_1_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_1_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=@{custom_skill_1_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{custom_skill_1_roll}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{custom_skill_1_roll}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{custom_skill_1_roll}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{custom_skill_1_roll}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{custom_skill_1_roll}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{custom_skill_1_roll}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{custom_skill_1_roll}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{custom_skill_1_roll}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_1_global_wd_roll} @{custom_skill_1_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_custom_skill_1" value="@{custom_skill_1_roll_body} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_wd_roll}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_1)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_custom" data-i18n="custom-u">Custom</span></div><span name="attr_rename_custom_skill_1">Custom Skill 1</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_custom_skill_2">
|
||
<div class="sheet-skills__skill sheet-skills__skill--custom_skill_2">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_custom_skill_2" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_custom_skill_2" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_custom_skill_2" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_custom_skill_2" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_custom_skill_2" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_custom_skill_2" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_custom_skill_2" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_custom_skill_2_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_custom_skill_2_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_custom_skill_2" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_2_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d12}} {{flat=@{custom_skill_2_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_2_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_custom_skill_2" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_2_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d10}} {{flat=@{custom_skill_2_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_2_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_custom_skill_2" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_2_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d8}} {{flat=@{custom_skill_2_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_2_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_custom_skill_2" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_2_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d6}} {{flat=@{custom_skill_2_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_2_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_custom_skill_2" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_2_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d4}} {{flat=@{custom_skill_2_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_2_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_custom_skill_2" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_2_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d4-2}} {{flat=@{custom_skill_2_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_2_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_custom_skill_2" value="Custom Skill 2">
|
||
<input type="hidden" name="attr_custom_skill_2_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_custom_skill_2_roll" value="d4">
|
||
<input type="hidden" name="attr_custom_skill_2_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_custom_skill_2_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_custom_skill_2_code" value="d4-2">
|
||
<input type="hidden" name="attr_custom_skill_2_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_2_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_2_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=@{custom_skill_2_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{custom_skill_2_roll}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{custom_skill_2_roll}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{custom_skill_2_roll}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{custom_skill_2_roll}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{custom_skill_2_roll}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{custom_skill_2_roll}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{custom_skill_2_roll}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{custom_skill_2_roll}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_2_global_wd_roll} @{custom_skill_2_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_custom_skill_2" value="@{custom_skill_2_roll_body} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_wd_roll}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_custom" data-i18n="custom-u">Custom</span></div><span name="attr_rename_custom_skill_2">Custom Skill 2</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_custom_skill_3">
|
||
<div class="sheet-skills__skill sheet-skills__skill--custom_skill_3">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_custom_skill_3" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_custom_skill_3" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_custom_skill_3" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_custom_skill_3" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_custom_skill_3" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_custom_skill_3" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_custom_skill_3" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_custom_skill_3_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_custom_skill_3_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_custom_skill_3" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_3_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d12}} {{flat=@{custom_skill_3_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_3_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_custom_skill_3" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_3_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d10}} {{flat=@{custom_skill_3_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_3_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_custom_skill_3" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_3_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d8}} {{flat=@{custom_skill_3_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_3_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_custom_skill_3" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_3_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d6}} {{flat=@{custom_skill_3_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_3_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_custom_skill_3" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_3_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d4}} {{flat=@{custom_skill_3_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_3_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_custom_skill_3" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_3_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d4-2}} {{flat=@{custom_skill_3_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_3_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_custom_skill_3" value="Custom Skill 3">
|
||
<input type="hidden" name="attr_custom_skill_3_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_custom_skill_3_roll" value="d4">
|
||
<input type="hidden" name="attr_custom_skill_3_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_custom_skill_3_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_custom_skill_3_code" value="d4-2">
|
||
<input type="hidden" name="attr_custom_skill_3_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_3_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_3_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=@{custom_skill_3_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{custom_skill_3_roll}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{custom_skill_3_roll}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{custom_skill_3_roll}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{custom_skill_3_roll}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{custom_skill_3_roll}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{custom_skill_3_roll}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{custom_skill_3_roll}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{custom_skill_3_roll}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_3_global_wd_roll} @{custom_skill_3_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_custom_skill_3" value="@{custom_skill_3_roll_body} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_wd_roll}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_3)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_custom" data-i18n="custom-u">Custom</span></div><span name="attr_rename_custom_skill_3">Custom Skill 3</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_custom_skill_4">
|
||
<div class="sheet-skills__skill sheet-skills__skill--custom_skill_4">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_custom_skill_4" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_custom_skill_4" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_custom_skill_4" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_custom_skill_4" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_custom_skill_4" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_custom_skill_4" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_custom_skill_4" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_custom_skill_4_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_custom_skill_4_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_custom_skill_4" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_4_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d12}} {{flat=@{custom_skill_4_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_4_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_custom_skill_4" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_4_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d10}} {{flat=@{custom_skill_4_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_4_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_custom_skill_4" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_4_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d8}} {{flat=@{custom_skill_4_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_4_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_custom_skill_4" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_4_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d6}} {{flat=@{custom_skill_4_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_4_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_custom_skill_4" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_4_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d4}} {{flat=@{custom_skill_4_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_4_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_custom_skill_4" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_4_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d4-2}} {{flat=@{custom_skill_4_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_4_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_custom_skill_4" value="Custom Skill 4">
|
||
<input type="hidden" name="attr_custom_skill_4_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_custom_skill_4_roll" value="d4">
|
||
<input type="hidden" name="attr_custom_skill_4_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_custom_skill_4_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_custom_skill_4_code" value="d4-2">
|
||
<input type="hidden" name="attr_custom_skill_4_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_4_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_4_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=@{custom_skill_4_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{custom_skill_4_roll}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{custom_skill_4_roll}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{custom_skill_4_roll}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{custom_skill_4_roll}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{custom_skill_4_roll}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{custom_skill_4_roll}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{custom_skill_4_roll}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{custom_skill_4_roll}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_4_global_wd_roll} @{custom_skill_4_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_custom_skill_4" value="@{custom_skill_4_roll_body} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_wd_roll}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_custom" data-i18n="custom-u">Custom</span></div><span name="attr_rename_custom_skill_4">Custom Skill 4</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_custom_skill_5">
|
||
<div class="sheet-skills__skill sheet-skills__skill--custom_skill_5">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_custom_skill_5" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_custom_skill_5" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_custom_skill_5" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_custom_skill_5" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_custom_skill_5" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_custom_skill_5" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_custom_skill_5" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_custom_skill_5_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_custom_skill_5_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_custom_skill_5" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_5_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d12}} {{flat=@{custom_skill_5_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_5_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_custom_skill_5" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_5_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d10}} {{flat=@{custom_skill_5_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_5_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_custom_skill_5" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_5_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d8}} {{flat=@{custom_skill_5_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_5_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_custom_skill_5" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_5_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d6}} {{flat=@{custom_skill_5_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_5_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_custom_skill_5" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_5_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d4}} {{flat=@{custom_skill_5_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_5_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_custom_skill_5" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_5_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d4-2}} {{flat=@{custom_skill_5_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_5_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_custom_skill_5" value="Custom Skill 5">
|
||
<input type="hidden" name="attr_custom_skill_5_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_custom_skill_5_roll" value="d4">
|
||
<input type="hidden" name="attr_custom_skill_5_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_custom_skill_5_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_custom_skill_5_code" value="d4-2">
|
||
<input type="hidden" name="attr_custom_skill_5_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_5_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_5_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=@{custom_skill_5_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{custom_skill_5_roll}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{custom_skill_5_roll}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{custom_skill_5_roll}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{custom_skill_5_roll}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{custom_skill_5_roll}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{custom_skill_5_roll}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{custom_skill_5_roll}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{custom_skill_5_roll}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_5_global_wd_roll} @{custom_skill_5_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_custom_skill_5" value="@{custom_skill_5_roll_body} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_wd_roll}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_5)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_custom" data-i18n="custom-u">Custom</span></div><span name="attr_rename_custom_skill_5">Custom Skill 5</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_skill_custom_skill_6">
|
||
<div class="sheet-skills__skill sheet-skills__skill--custom_skill_6">
|
||
<div class="sheet-skills__color-marker">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_custom_skill_6" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_custom_skill_6" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_custom_skill_6" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_custom_skill_6" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_custom_skill_6" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_custom_skill_6" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_custom_skill_6" value="gray">
|
||
</div>
|
||
</div>
|
||
<input class="sheet-skills__wd" type="text" name="attr_custom_skill_6_wd" placeholder="WD" data-i18n-placeholder="skill-track-wd-placeholder-u">
|
||
<input class="sheet-skills__mod" type="text" name="attr_custom_skill_6_mod" placeholder="MOD" data-i18n-placeholder="skill-track-mod-placeholder-u">
|
||
<div class="sheet-skills__plus">+</div>
|
||
<div class="sheet-skills__track">
|
||
<input class="sheet-radio-track sheet-d12" type="radio" name="attr_custom_skill_6" value="d12" label="12" data-i18n-label="skill-track-die-label-d12">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_6_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d12}} {{flat=@{custom_skill_6_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_6_12)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d12 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d10" type="radio" name="attr_custom_skill_6" value="d10" label="10" data-i18n-label="skill-track-die-label-d10">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_6_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d10}} {{flat=@{custom_skill_6_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_6_10)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d10 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d8" type="radio" name="attr_custom_skill_6" value="d8" label="8" data-i18n-label="skill-track-die-label-d8">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_6_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d8}} {{flat=@{custom_skill_6_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_6_8)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d8 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d6" type="radio" name="attr_custom_skill_6" value="d6" label="6" data-i18n-label="skill-track-die-label-d6">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_6_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d6}} {{flat=@{custom_skill_6_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_6_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d6 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4" type="radio" name="attr_custom_skill_6" value="d4" label="4" data-i18n-label="skill-track-die-label-d4">
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_6_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d4}} {{flat=@{custom_skill_6_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_wd_roll}!cs2 + (0)[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_6_4)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input class="sheet-radio-track sheet-d4-2" type="radio" name="attr_custom_skill_6" value="d4-2" label="4-2" data-i18n-label="skill-track-die-label-d4-2" checked>
|
||
<button class="sheet-skills__step-button" type="roll" name="roll_custom_skill_6_2" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + ?{@{query_rate_of_fire}|1}} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d4-2}} {{flat=@{custom_skill_6_mod}@{adjust_untrained}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_wd_roll}!cs2 + (-2@{adjust_untrained})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_6_2)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--top"><span data-i18n="roll-tooltip-prefix">Roll </span><span>d4-2 (</span><span data-i18n="roll-tooltip-suffix">RoF </span><span>1-8)</span></div>
|
||
</button>
|
||
<input type="hidden" name="attr_rename_custom_skill_6" value="Custom Skill 6">
|
||
<input type="hidden" name="attr_custom_skill_6_untrained_mod" value="-2@{adjust_untrained}">
|
||
<input type="hidden" name="attr_custom_skill_6_roll" value="d4">
|
||
<input type="hidden" name="attr_custom_skill_6_wd_roll" value="d6">
|
||
<input type="hidden" name="attr_custom_skill_6_extra_wd_roll" value="-10000">
|
||
<input type="hidden" name="attr_custom_skill_6_code" value="d4-2">
|
||
<input type="hidden" name="attr_custom_skill_6_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_6_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_custom_skill_6_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=@{custom_skill_6_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{custom_skill_6_roll}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{custom_skill_6_roll}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{custom_skill_6_roll}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{custom_skill_6_roll}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{custom_skill_6_roll}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{custom_skill_6_roll}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{custom_skill_6_roll}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{custom_skill_6_roll}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_6_global_wd_roll} @{custom_skill_6_global_bonus_wd_roll}">
|
||
<button class="sheet-skills__button" type="roll" name="roll_custom_skill_6" value="@{custom_skill_6_roll_body} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_wd_roll}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~custom_skill_6)}}">
|
||
<div class="sheet-tooltip sheet-tooltip--left"><span name="attr_rename_custom" data-i18n="custom-u">Custom</span></div><span name="attr_rename_custom_skill_6">Custom Skill 6</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-notebook">
|
||
<textarea name="attr_notebook" placeholder=" " spellcheck="false"></textarea>
|
||
</div>
|
||
<div class="sheet-advancements">
|
||
<div class="sheet-advancements__item">
|
||
<input class="sheet-align-left" type="text" name="attr_chargen_edge_1" placeholder="Novice" data-i18n-placeholder="advancements-novice-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<input class="sheet-align-left" type="text" name="attr_chargen_edge_2" placeholder="Novice" data-i18n-placeholder="advancements-novice-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<input class="sheet-align-left" type="text" name="attr_chargen_edge_3" placeholder="Novice" data-i18n-placeholder="advancements-novice-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<input class="sheet-align-left" type="text" name="attr_chargen_edge_4" placeholder="Novice" data-i18n-placeholder="advancements-novice-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<input class="sheet-align-left" type="text" name="attr_chargen_edge_5" placeholder="Novice" data-i18n-placeholder="advancements-novice-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-n">N</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_1" placeholder="Novice" data-i18n-placeholder="advancements-novice-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-n">N</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_2" placeholder="Novice" data-i18n-placeholder="advancements-novice-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-n">N</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_3" placeholder="Novice" data-i18n-placeholder="advancements-novice-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-s">S</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_4" placeholder="Seasoned" data-i18n-placeholder="advancements-seasoned-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-s">S</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_5" placeholder="Seasoned" data-i18n-placeholder="advancements-seasoned-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-s">S</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_6" placeholder="Seasoned" data-i18n-placeholder="advancements-seasoned-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-s">S</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_7" placeholder="Seasoned" data-i18n-placeholder="advancements-seasoned-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-v">V</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_8" placeholder="Veteran" data-i18n-placeholder="advancements-veteran-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-v">V</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_9" placeholder="Veteran" data-i18n-placeholder="advancements-veteran-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-v">V</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_10" placeholder="Veteran" data-i18n-placeholder="advancements-veteran-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-v">V</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_11" placeholder="Veteran" data-i18n-placeholder="advancements-veteran-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-h">H</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_12" placeholder="Heroic" data-i18n-placeholder="advancements-heroic-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-h">H</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_13" placeholder="Heroic" data-i18n-placeholder="advancements-heroic-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-h">H</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_14" placeholder="Heroic" data-i18n-placeholder="advancements-heroic-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-h">H</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_15" placeholder="Heroic" data-i18n-placeholder="advancements-heroic-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-l">L</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_16" placeholder="Legendary" data-i18n-placeholder="advancements-legendary-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-l">L</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_17" placeholder="Legendary" data-i18n-placeholder="advancements-legendary-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-l">L</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_18" placeholder="Legendary" data-i18n-placeholder="advancements-legendary-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-l">L</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_19" placeholder="Legendary" data-i18n-placeholder="advancements-legendary-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-l">L</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_20" placeholder="Legendary" data-i18n-placeholder="advancements-legendary-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-l">L</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_21" placeholder="Legendary" data-i18n-placeholder="advancements-legendary-placeholder" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-advancements__item">
|
||
<div class="sheet-advancements__rank"><span data-i18n="advancements-rank-l">L</span>
|
||
</div>
|
||
<input class="sheet-align-left" type="text" name="attr_advancement_22" placeholder="Legendary" data-i18n-placeholder="advancements-legendary-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-settings">
|
||
<input class="sheet-settings__page-tab sheet-settings__page-tab--styles" type="radio" name="attr_settings_pages" value="styles" label="Styles" data-i18n-label="settings-tab-styles" checked>
|
||
<input class="sheet-settings__page-tab sheet-settings__page-tab--setup" type="radio" name="attr_settings_pages" value="setup" label="Setup" data-i18n-label="settings-tab-setup">
|
||
<input class="sheet-settings__page-tab sheet-settings__page-tab--blocks" type="radio" name="attr_settings_pages" value="blocks" label="Blocks" data-i18n-label="settings-tab-blocks">
|
||
<input class="sheet-settings__page-tab sheet-settings__page-tab--skills" type="radio" name="attr_settings_pages" value="skills" label="Skills" data-i18n-label="settings-tab-skills">
|
||
<input class="sheet-settings__page-tab sheet-settings__page-tab--help" type="radio" name="attr_settings_pages" value="help" label="Help" data-i18n-label="settings-tab-help">
|
||
<div class="sheet-settings__page sheet-settings__page--styles">
|
||
<label class="sheet-settings__item"><span data-i18n="settings-style-background-grid">Background Grid</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_style_grid" checked>
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-style-dark-labels">Dark Labels</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_style_dark_labels">
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-style-roboto-font">Roboto Font (Off: Helvetica Neue)</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_style_roboto" checked>
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-style-rounded-corners">Rounded Corners</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_style_corners" checked>
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-style-skill-die-numbers">Skill Die Numbers</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_die_numbers" checked>
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-style-transitions">Transitions</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_style_transitions" checked>
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-style-transition-delays">Transition Delays</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_style_delays" checked>
|
||
</label>
|
||
</div>
|
||
<div class="sheet-settings__page sheet-settings__page--setup">
|
||
<label class="sheet-settings__item"><span data-i18n="settings-function-augmentation-markers">Augmentation Markers</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_augmentation_markers" checked>
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-rule-augmentation-strain">Augmentation Strain (SciFi Companion)</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_strain">
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-function-explode-run-die">Explode Run Die</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_run_explode">
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-function-halve-untrained-penalty">Halve Untrained Penalty (-1)</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_halve_untrained">
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-function-roll-description-inputs">List Roll Description Inputs</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_description_input_visibility" checked>
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-function-roll-injection-inputs">List Roll Injection Inputs</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_injection_input_visibility">
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-rule-no-power-points">No Power Points (SWADE 140)</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_pp">
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-function-running-ignores-wounds">Running Ignores Wounds</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_run_wounds">
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-function-running-applies-fatigue">Running Applies Fatigue</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_run_fatigue">
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-function-silhouette-markers">Silhouette Markers</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_silhouette_markers" checked>
|
||
</label>
|
||
<label class="sheet-settings__item"><span data-i18n="settings-function-skill-markers">Skill Markers</span>
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_markers" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input sheet-settings__item--textarea"><span data-i18n="settings-custom-button-1-label">Custom Button #1</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_custom_button_1" placeholder="UnShake/Detox/etc." data-i18n-placeholder="settings-custom-buttons-placeholder" value="UnShake" spellcheck="false">
|
||
<input class="sheet-checkbox sheet-settings__textarea-toggle" type="checkbox" name="attr_toggle_custom_button_1">
|
||
<textarea name="attr_custom_button_1_macro" spellcheck="false">@{gm_roll} &{template:TraitRoll} {{header=@{name} ^{rolls} @{rename_spirit}}} {{trait=@{rename_spirit}}} {{traitdie=@{spirit}}} {{flat=@{spirit_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{spirit_roll}!cs2 @{spirit_mod} - @{fatigue_mod} - @{wound_mod} + ?{@{query_modifier}|0} ]]}} {{wd=@{spirit_wd}}} {{wdroll=[[ @{spirit_wd_roll}!cs2 @{spirit_mod} - @{fatigue_mod} - @{wound_mod} + ?{@{query_modifier}|0} ]]}} @{spirit_global_wd_roll} @{spirit_global_bonus_wd_roll}</textarea>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input sheet-settings__item--textarea"><span data-i18n="settings-custom-button-2-label">Custom Button #2</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_custom_button_2" placeholder="UnShake/Detox/etc." data-i18n-placeholder="settings-custom-buttons-placeholder" value="Button #2" spellcheck="false">
|
||
<input class="sheet-checkbox sheet-settings__textarea-toggle" type="checkbox" name="attr_toggle_custom_button_2">
|
||
<textarea name="attr_custom_button_2_macro" spellcheck="false">@{gm_roll} &{template:TraitRoll} {{header=@{name} ^{rolls} @{rename_spirit}}} {{trait=@{rename_spirit}}} {{traitdie=@{spirit}}} {{flat=@{spirit_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{spirit_roll}!cs2 @{spirit_mod} - @{fatigue_mod} - @{wound_mod} + ?{@{query_modifier}|0} ]]}} {{wd=@{spirit_wd}}} {{wdroll=[[ @{spirit_wd_roll}!cs2 @{spirit_mod} - @{fatigue_mod} - @{wound_mod} + ?{@{query_modifier}|0} ]]}} @{spirit_global_wd_roll} @{spirit_global_bonus_wd_roll}</textarea>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input sheet-settings__item--textarea"><span data-i18n="settings-custom-button-3-label">Custom Button #3</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_custom_button_3" placeholder="UnShake/Detox/etc." data-i18n-placeholder="settings-custom-buttons-placeholder" value="Button #3" spellcheck="false">
|
||
<input class="sheet-checkbox sheet-settings__textarea-toggle" type="checkbox" name="attr_toggle_custom_button_3">
|
||
<textarea name="attr_custom_button_3_macro" spellcheck="false">@{gm_roll} &{template:TraitRoll} {{header=@{name} ^{rolls} @{rename_spirit}}} {{trait=@{rename_spirit}}} {{traitdie=@{spirit}}} {{flat=@{spirit_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ @{spirit_roll}!cs2 @{spirit_mod} - @{fatigue_mod} - @{wound_mod} + ?{@{query_modifier}|0} ]]}} {{wd=@{spirit_wd}}} {{wdroll=[[ @{spirit_wd_roll}!cs2 @{spirit_mod} - @{fatigue_mod} - @{wound_mod} + ?{@{query_modifier}|0} ]]}} @{spirit_global_wd_roll} @{spirit_global_bonus_wd_roll}</textarea>
|
||
</label>
|
||
</div>
|
||
<div class="sheet-settings__page sheet-settings__page--blocks">
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-abilities-label">Abilities</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_abilities" placeholder="Abilities" data-i18n-placeholder="abilities" value="Abilities" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_abilities_block">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-allies-label">Allies</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_allies" placeholder="Allies" data-i18n-placeholder="allies" value="Allies" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_allies_block">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-ammunition-label">Ammunition</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_ammunition" placeholder="Ammunition" data-i18n-placeholder="ammunition" value="Ammunition" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_ammunition_block" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-ammunition-container-1">Ammo #1</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_ammunition_container_1" placeholder="Ammo #1" data-i18n-placeholder="settings-ammunition-container-1" value="Ammo #1" spellcheck="false"><span>p</span>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-ammunition-container-2">Ammo #2</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_ammunition_container_2" placeholder="Ammo #2" data-i18n-placeholder="settings-ammunition-container-2" value="Ammo #2" spellcheck="false"><span>p</span>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-ammunition-container-3">Ammo #3</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_ammunition_container_3" placeholder="Ammo #3" data-i18n-placeholder="settings-ammunition-container-3" value="Ammo #3" spellcheck="false"><span>p</span>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-apparel-label">Apparel</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_apparel" placeholder="Apparel" data-i18n-placeholder="apparel" value="Apparel" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_apparel_block" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-augmentations-label">Augmentations</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_augmentations" placeholder="Augmentations" data-i18n-placeholder="augmentations" value="Augmentations" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_augmentations_block" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-engrams-label">Engrams</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_engrams" placeholder="Engrams" data-i18n-placeholder="engrams" value="Engrams" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_engrams_block" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-integrity-label">Integrity</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_integrity" placeholder="Integrity" data-i18n-placeholder="integrity" value="Integrity" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_integrity_block" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-powerarmors-label">Power Armors</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_powerarmors" placeholder="Power Armors" data-i18n-placeholder="powerarmors" value="Power Armors" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_powerarmors_block">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-power-energy-label">Power/Energy/Mana</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_power" placeholder="Power" data-i18n-placeholder="power" value="Power" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_power_block" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-powers-spells-label">Powers/Spells</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_powers" placeholder="Powers" data-i18n-placeholder="powers" value="Powers" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_powers_block">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-quick-notes-label">Quick Notes</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_quick_notes" placeholder="Quick Notes" data-i18n-placeholder="quick-notes" value="Quick Notes" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_quick_notes_block" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-vehicles-label">Vehicles</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_vehicles" placeholder="Vehicles" data-i18n-placeholder="vehicles" value="Vehicles" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_vehicles_block">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-walkers-label">Walkers</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_walkers" placeholder="Walkers" data-i18n-placeholder="walkers" value="Walkers" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_walkers_block">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="settings-weapons-label">Weapons</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_block_weapons" placeholder="Weapons" data-i18n-placeholder="weapons" value="Weapons" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_weapons_block" checked>
|
||
</label>
|
||
</div>
|
||
<div class="sheet-settings__page sheet-settings__page--skills">
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="battle">Battle</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_battle" placeholder="Battle" data-i18n-placeholder="battle" value="Battle" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_battle" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="boating">Boating</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_boating" placeholder="Boating" data-i18n-placeholder="boating" value="Boating" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_boating" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="driving">Driving</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_driving" placeholder="Driving" data-i18n-placeholder="driving" value="Driving" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_driving" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="electronics">Electronics</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_electronics" placeholder="Electronics" data-i18n-placeholder="electronics" value="Electronics" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_electronics" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="faith">Faith</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_faith" placeholder="Faith" data-i18n-placeholder="faith" value="Faith" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_faith">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="focus">Focus</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_focus" placeholder="Focus" data-i18n-placeholder="focus" value="Focus" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_focus">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="gambling">Gambling</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_gambling" placeholder="Gambling" data-i18n-placeholder="gambling" value="Gambling" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_gambling" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="hacking">Hacking</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_hacking" placeholder="Hacking" data-i18n-placeholder="hacking" value="Hacking" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_hacking" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="healing">Healing</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_healing" placeholder="Healing" data-i18n-placeholder="healing" value="Healing" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_healing" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="language">Language</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_language" placeholder="Language" data-i18n-placeholder="language" value="Language" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_language">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="magic">MAGIC</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_magic" placeholder="MAGIC" data-i18n-placeholder="magic" value="MAGIC" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_magic" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="occult">Occult</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_occult" placeholder="Occult" data-i18n-placeholder="occult" value="Occult" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_occult">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="performance">Performance</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_performance" placeholder="Performance" data-i18n-placeholder="performance" value="Performance" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_performance" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="piloting">Piloting</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_piloting" placeholder="Piloting" data-i18n-placeholder="piloting" value="Piloting" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_piloting" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="psionics">Psionics</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_psionics" placeholder="Psionics" data-i18n-placeholder="psionics" value="Psionics" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_psionics">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="repair">Repair</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_repair" placeholder="Repair" data-i18n-placeholder="repair" value="Repair" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_repair" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="research">Research</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_research" placeholder="Research" data-i18n-placeholder="research" value="Research" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_research" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="riding">Riding</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_riding" placeholder="Riding" data-i18n-placeholder="riding" value="Riding" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_riding" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="science">Science</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_science" placeholder="Science" data-i18n-placeholder="science" value="Science" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_science" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="spellcasting">Spellcasting</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_spellcasting" placeholder="Spellcasting" data-i18n-placeholder="spellcasting" value="Spellcasting" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_spellcasting">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="survival">Survival</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_survival" placeholder="Survival" data-i18n-placeholder="survival" value="Survival" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_survival" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="taunt">Taunt</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_taunt" placeholder="Taunt" data-i18n-placeholder="taunt" value="Taunt" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_taunt" checked>
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="weird-science">Weird Science</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_weird_science" placeholder="Weird Science" data-i18n-placeholder="weird-science" value="Weird Science" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_weird_science">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="custom-skill-1">Custom Skill 1</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_custom_skill_1" placeholder="Custom Skill 1" data-i18n-placeholder="custom-skill-1" value="Custom Skill 1" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_custom_skill_1">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="custom-skill-2">Custom Skill 2</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_custom_skill_2" placeholder="Custom Skill 2" data-i18n-placeholder="custom-skill-2" value="Custom Skill 2" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_custom_skill_2">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="custom-skill-3">Custom Skill 3</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_custom_skill_3" placeholder="Custom Skill 3" data-i18n-placeholder="custom-skill-3" value="Custom Skill 3" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_custom_skill_3">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="custom-skill-4">Custom Skill 4</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_custom_skill_4" placeholder="Custom Skill 4" data-i18n-placeholder="custom-skill-4" value="Custom Skill 4" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_custom_skill_4">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="custom-skill-5">Custom Skill 5</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_custom_skill_5" placeholder="Custom Skill 5" data-i18n-placeholder="custom-skill-5" value="Custom Skill 5" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_custom_skill_5">
|
||
</label>
|
||
<label class="sheet-settings__item sheet-settings__item--text-input"><span data-i18n="custom-skill-6">Custom Skill 6</span>
|
||
<input class="sheet-align-left" type="text" name="attr_rename_custom_skill_6" placeholder="Custom Skill 6" data-i18n-placeholder="custom-skill-6" value="Custom Skill 6" spellcheck="false">
|
||
<input class="sheet-checkbox" type="checkbox" name="attr_toggle_skill_custom_skill_6">
|
||
</label>
|
||
</div>
|
||
<div class="sheet-settings__page sheet-settings__page--help">
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-ammunition">Ammunition</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-ammunition-description">You can keep track of up to three named "magazines" in the Ammunition block. The buttons allow you to quickly add to or subtract from the values. You can save a value with [S] and restore it with [R].</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-armor-and-notes">Armor & Notes</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-armor-and-notes-description">Enter your Armor ratings for the corresponding limbs. They are not self-calculating since there are too many factors; this is more convenient. You can add notes for Resistances, circumstance modifiers, or relevant augmentations such as subdermal armor to keep things in one place.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-attribute-reference">Attribute Reference</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-attribute-reference-description">The attributes of this sheet follow a simple naming pattern and can be easily derived from their labels. Just remove any dots or special characters, expand abbreviations, convert to lowercase, and replace whitespaces with underscores (_). Adjacent attributes are appended with hyphens as well. So "Agility" becomes @{agility}, @{agility_mod}, @{agility_wd}, @{agility_extra_wd} (for extras only), and @{agility_natural}. "Tough." becomes @{toughness} and Armor is referenced with @{armor_head|_torso|_arms|_legs}. English only!</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-weapon-damage-rolls">Damage Rolls</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-weapon-damage-rolls-description">You can enable damage rolls for list items by clicking the damage label. This will disable editing. Note that the dice codes must be valid, but you can use "Str" or "Agi" (etc.) as shorthands to reference attributes. The parser is not smart, however, so please also refer to the Roll20 Dice Reference.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-edges-and-hindrances">Edges & Hindrances</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-edges-and-hindrances-description">Manage your Edges and Hindrances here. They follow a horizontal masonry layout to save space and remain visible for convenience. The width is automatically adjusted once you press enter and you can cycle through colored labels to indicate Rank, type, and more. Sorting is wonky though.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-extra-sheet">Extra Sheet</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-extra-sheet-description">For non-player characters, you can change the layout to a more compact alternative with the switch right above the sheet. This version lacks many features but is primed for Extras without Wild Die. Of course, you can add Wild Dice if needed. Edit Traits by clicking on their die, opening a small menu, and roll with the label. Hovering reveals buttons for direct die rolls. Add skills by clicking the framed pencil icon in the header. Lists work as usual.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-helper-buttons">Helper Buttons</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-helper-buttons-description">The buttons above the skill section provide selected actions and convenience functions. The dice roller input is parsed, so you can write codes like "Sma+2d6". You may also use references such as @{athletics} or macros, but beware that the parser is not smart. Hidden rolls are sent only to the GM. The toggles can enable/disable additional roll queries for the whole sheet.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-hexagon-fields">Hexagon Fields</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-hexagon-fields-description">Your attributes and secondary statistics. They either accept dice codes (d4 to d12) or integers. Positive modifiers are automatically prefixed. Hovering reveals additional fields that are otherwise invisible until relevant. You can leave them empty to use defaults, such as a d6 as Wild Die. The Wild Die can be disabled with "n/a". The labels act as roll buttons.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-list-item-options">List Item Options</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-list-item-options-description">Interactive list items, such as weapons and powers, come with options. When the item is folded out, you can access them via the gear icon. Typical options include toggles for buttons and fields, but some also allow to override the Wild Die and more. Mind that the inputs are <i>not</i> validated; do not enter nonsense!</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-raise-damage">Raise Damage</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-raise-damage-description">There is no general function or field to apply raise damage since this modifier is too flexible. But nothing can stop you from entering "d6!" when prompted for a damage modifier. You could also add "2d4!+2" or whatever may apply in your case. Do not forget to add the exclamation mark after the die or the roll will not explode.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-rate-of-fire">Rate of Fire (Multiple Dice)</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-rate-of-fire-description">To roll multiple skill dice, you have two options. If you lock the skills, you can click directly on the desired die bubble, always prompting you to enter the Rate of Fire. Alternatively, you can toggle the [Query RoF] helper button, enabling the feature for the whole sheet.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-roll-injections">Roll Injections</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-roll-injections-description"><div><p>When you enable the option under Setup, you can append and toggle custom code to list item rolls. Mind that the inputs are <i>not</i> validated; do not enter nonsense! Following is a collection of useful template hooks.</p><ul><li><b>{{header}}</b>Header content like "X rolls Y"</li><li><b>{{description}}</b>Italic text shown below the header</li><li><b>{{reroll}}</b>Link of the reroll button</li><li><b>{{damageroll}}</b>Link of the damage button</li><li><b>{{source_label}}</b>Label for the source, e.g. "Weapon"</li><li><b>{{source}}</b>Content of the source, e.g. "Pistol"</li><li><b>{{trait}}</b>Name of the Trait rolled</li><li><b>{{traitdie}}</b>Die of the Trait rolled</li><li><b>{{flat}}</b>Modifier of the Trait rolled</li><li><b>{{wd}}</b>Wild Die of the Trait rolled</li><li><b>{{commander}}</b>Commander of an ally</li><li><b>{{modifier}}</b>Queried modifier for the roll</li><li><b>{{rof}}</b>Rate of Fire as inline roll, e.g. [[ 1 ]]</li><li><b>{{wounds}}</b>Wound penalty applied to the roll</li><li><b>{{fatigue}}</b>Fatigue penalty applied to the roll</li><li><b>{{custom#_label}}</b>[1-3] Label for freeform content</li><li><b>{{custom#}}</b>[1-3] Freeform content</li><li><b>{{wdroll}}</b>Inline roll of the Wild Die (> -1001)</li><li><b>{{traitroll#}}</b>[1-8] Inline roll(s) of the Trait(s)</li></ul></div></div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-silhouette">Silhouette</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-silhouette-description">Choose your silhouette; it looks fancy! You can set color markers all over the silhouette for any purpose, indicating augmentations or injuries or whatever you like.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-skill-tracks">Skill Tracks</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-skill-tracks-description">Enter your skill die by clicking on the corresponding bubble (d4-2 to d12). The skill name will darken once you become trained and acts as roll button. You can enter a modifier and custom Wild Die or leave these fields empty to use defaults; the Wild Die can be disabled with "n/a". Positive modifiers are automatically prefixed. On the far right, you can set a color marker for any purpose.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-track-rolls">Track Rolls</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-track-rolls-description">When you lock the skill tracks with the icon in the top-right corner above the color marker column, you can click on the bubbles to roll the corresponding die independently. This is useful for effects that dynamically alter your skill die, such as <i>boost/lower trait</i>.</div>
|
||
</div>
|
||
<div class="sheet-settings__item sheet-settings__item--help"><span data-i18n="settings-help-vehicles-and-more">Vehicles & More</span>
|
||
<input class="sheet-toggle sheet-toggle--spoiler" type="checkbox">
|
||
<div class="sheet-bottom" data-i18n="settings-help-vehicles-and-more-description">You can enable blocks for vehicles and other vessels in the Blocks tab under Settings. The silhouette of vehicles can be cycled through by clicking; the switch can take a moment. Both blocks can display weapons by adding a number to the corresponding attribute (0-10).</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-section sheet-section--footer">
|
||
<div class="sheet-left">
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_abilities_block">
|
||
<div class="sheet-block sheet-abilities">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-apparel__name" name="attr_rename_block_abilities" data-i18n="abilities">Abilities</span></div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_abilities_visibility_toggle" checked>
|
||
<fieldset class="repeating_abilities">
|
||
<div class="sheet-repitem sheet-repitem--full-field"><span name="attr_ability">[Ability] Description</span>
|
||
<textarea name="attr_ability" placeholder="Ability: Description" data-i18n-placeholder="ability-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_weapons_block" checked>
|
||
<div class="sheet-block sheet-weapons">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-weapons__name" name="attr_rename_block_weapons" data-i18n="weapons">Weapons</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-weapons__damage">
|
||
<label class="sheet-damage-roll-toggle-label" title="Toggle Damage Rolls" data-i18n-title="toggle-damage-rolls-title">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_weapons_damage_roll_toggle"><span class="sheet-icon">;</span><span data-i18n="weapons-damage">Damage</span>
|
||
</label>
|
||
</div>
|
||
<div class="sheet-weapons__range" data-i18n="weapons-range">Range</div>
|
||
<div class="sheet-weapons__ap" data-i18n="weapons-ap">AP</div>
|
||
<div class="sheet-weapons__rof" data-i18n="weapons-rof">ROF</div>
|
||
<div class="sheet-weapons__shots" data-i18n="weapons-shots">Shots</div>
|
||
<div class="sheet-weapons__weight" data-i18n="weapons-weight">WGT</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_weapons_visibility_toggle" checked>
|
||
<input class="sheet-damage-roll-toggle sheet-hidden" type="checkbox" name="attr_weapons_damage_roll_toggle">
|
||
<input class="sheet-toggle-description-input sheet-hidden" type="checkbox" name="attr_toggle_description_input_visibility" checked>
|
||
<input class="sheet-toggle-injection-input sheet-hidden" type="checkbox" name="attr_toggle_injection_input_visibility">
|
||
<fieldset class="repeating_weapons">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-hidden sheet-toggle sheet-toggle--list-roll" type="checkbox" name="attr_roll_button_toggle">
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--wildcard" type="roll" name="roll_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_weapons_skill)}} {{damageroll=[t](~repeating_weapons_weapon_damage)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--extra" type="roll" name="roll_extra_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_extra_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_weapons_skill)}} {{damageroll=[t](~repeating_weapons_weapon_damage)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<input class="sheet-align-left sheet-weapons__name sheet-stretch" type="text" name="attr_weapon_name" placeholder="Weapon (Ammo)" data-i18n-placeholder="weapons-name-placeholder" spellcheck="false">
|
||
<div class="sheet-damage-button-overlay">
|
||
<input type="hidden" name="attr_weapon_damage_roll" value="0">
|
||
<button class="sheet-button sheet-weapons__damage-button" type="roll" name="roll_weapon_damage" value="@{gm_roll} &{template:DamageRoll} {{header=@{name} ^{rolls} ^{damage}}} {{code=@{weapon_damage}}} {{source_label=^{weapon}}} {{source=@{weapon_name}}} {{rof=[[ 0 + @{rof_override} ]]}} {{modifier=?{@{query_damage_modifier}}}} {{range=@{weapon_range}}} {{ap=@{weapon_ap}}} {{trapping=@{weapon_trapping}}} {{roll1=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll2=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll3=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll4=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll5=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll6=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll7=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll8=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{reroll=[r](~repeating_weapons_weapon_damage)}}"></button>
|
||
<input class="sheet-weapons__damage" type="text" name="attr_weapon_damage" placeholder="STR+d6" data-i18n-placeholder="weapons-damage-placeholder" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-weapons__range" type="text" name="attr_weapon_range" placeholder="Range/Melee" data-i18n-placeholder="weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-weapons__ap" type="text" name="attr_weapon_ap" placeholder="0" spellcheck="false">
|
||
<input class="sheet-weapons__rof" type="text" name="attr_weapon_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-weapons__shots" type="text" name="attr_weapon_shots" placeholder="6" spellcheck="false">
|
||
<input class="sheet-weapons__weight" type="text" name="attr_weapon_weight" placeholder="4" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_weapon_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_trapping_toggle" checked>
|
||
<div class="sheet-repitem__label" data-i18n="trapping">Trapping</div>
|
||
<input class="sheet-align-left sheet-weapons__trapping" type="text" name="attr_weapon_trapping" placeholder="Piercing/etc." data-i18n-placeholder="weapons-trapping-placeholder" spellcheck="false">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_weapon_notes" placeholder="Notes, Tags, Requirements, etc." data-i18n-placeholder="weapons-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--settings" type="checkbox" name="attr_weapon_settings_toggle">
|
||
<div class="sheet-repitem__settings">
|
||
<div class="sheet-repitem__settings-content">
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-description">
|
||
<input type="hidden" name="attr_roll_description">
|
||
<input type="checkbox" name="attr_roll_description_toggle"><span data-i18n="roll-description">Description</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_description_input" placeholder="Narrative or functional description below the header in the Roll Template. Leave empty to disable." data-i18n-placeholder="roll-description-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-injection">
|
||
<input type="hidden" name="attr_roll_injection">
|
||
<input type="checkbox" name="attr_roll_injection_toggle"><span data-i18n="roll-injection">Roll Injection</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_injection_input" placeholder="{{source_label=}} {{source=}} {{custom3_label=}} {{custom3=}} {{rof=[[ 1 ]]}} {{traitroll8=}}" data-i18n-placeholder="roll-injection-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="checkbox" name="attr_trapping_toggle" checked><span data-i18n="trapping">Trapping</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_skill_wd" value="@{shooting_wd}">
|
||
<input type="hidden" name="attr_skill_mod" value="@{shooting_mod}">
|
||
<input type="hidden" name="attr_skill_untrained_mod" value="@{shooting_untrained_mod}">
|
||
<input type="hidden" name="attr_skill_roll" value="@{shooting_roll}">
|
||
<input type="hidden" name="attr_skill_wd_roll" value="@{shooting_wd_roll}">
|
||
<input type="hidden" name="attr_skill_extra_wd_roll" value="@{shooting_wd_roll}">
|
||
<input type="hidden" name="attr_skill_code" value="@{shooting_code}">
|
||
<input type="hidden" name="attr_skill_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{rof_override} ]]}} {{header=@{name} ^{rolls} @{skill_name}}} {{trait=@{skill_name}}} {{source_label=^{weapon}}} {{source=@{weapon_name}}} {{traitdie=@{skill_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{bonus=@{skill_bonus}}} {{traitroll1=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{skill_global_wd_roll} @{skill_global_bonus_wd_roll}">
|
||
<input type="checkbox" name="attr_roll_button_toggle"><span data-i18n="roll-button">Roll Button</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_skill_name" placeholder="Shooting" data-i18n-placeholder="weapons-skill-placeholder" value="Shooting" spellcheck="false">
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_skill_bonus" placeholder="+0">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_rof_override" value="?{@{query_rate_of_fire}|@{weapon_rof}}">
|
||
<input type="checkbox" name="attr_rof_override_toggle" checked><span data-i18n="query-rof">Query RoF</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_wd_override" value="">
|
||
<input type="checkbox" name="attr_wd_override_toggle"><span data-i18n="wild-die-override">WD Override</span>
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_wd_override_die" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle" title="Exploding Damage Dice On/Off" data-i18n-title="ace-damage-title">
|
||
<input type="hidden" name="attr_explode_damage" value="!">
|
||
<input type="checkbox" name="attr_explode_damage_toggle" checked><span data-i18n="ace-damage">Ace Damage</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--special sheet-toggle--weight" type="checkbox" name="attr_weapon_weight_toggle" checked title="Weight On/Off" data-i18n-title="weapons-weight-toggle-title">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_weapon_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_weapon_note_box" placeholder="Notes" data-i18n-placeholder="weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"><span class="sheet-label" data-i18n="weapons-total-weight">Total Weight: </span><span class="sheet-label sheet-label--weight" name="attr_carry_weight_weapons">0.0</span></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_apparel_block" checked>
|
||
<div class="sheet-block sheet-apparel">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-apparel__name" name="attr_rename_block_apparel" data-i18n="apparel">Apparel</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-apparel__armor" data-i18n="apparel-armor">Armor</div>
|
||
<div class="sheet-apparel__tags" data-i18n="apparel-properties">Properties</div>
|
||
<div class="sheet-apparel__weight" data-i18n="apparel-weight">WGT</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_apparel_visibility_toggle" checked>
|
||
<fieldset class="repeating_apparel">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-apparel__name sheet-stretch" type="text" name="attr_apparel_name" placeholder="Apparel" data-i18n-placeholder="apparel-name-placeholder" spellcheck="false">
|
||
<input class="sheet-apparel__armor" type="text" name="attr_apparel_armor" placeholder="0" spellcheck="false">
|
||
<input class="sheet-align-left sheet-apparel__tags" type="text" name="attr_apparel_tags" placeholder="Protection/Resistance/Tags" data-i18n-placeholder="apparel-properties-placeholder" spellcheck="false">
|
||
<input class="sheet-apparel__weight" type="text" name="attr_apparel_weight" placeholder="WGT" data-i18n-placeholder="apparel-weight-placeholder" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_apparel_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_apparel_notes" placeholder="Notes, Tags, Trappings, Requirements, etc." data-i18n-placeholder="apparel-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--special sheet-toggle--weight" type="checkbox" name="attr_apparel_weight_toggle" checked title="Weight On/Off" data-i18n-title="apparel-weight-toggle-title">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_apparel_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_apparel_note_box" placeholder="Notes" data-i18n-placeholder="apparel-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"><span class="sheet-label" data-i18n="apparel-total-weight">Total Weight: </span><span class="sheet-label sheet-label--weight" name="attr_carry_weight_apparel">0.0</span></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_integrity_block" checked>
|
||
<div class="sheet-integrity sheet-block">
|
||
<div class="sheet-integrity__status">
|
||
<div class="sheet-integrity__loss-effects">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_discord"><span class="sheet-integrity__discord" name="attr_rename_discord" data-i18n="integrity-discord">Discord</span>
|
||
<input class="sheet-hidden" type="checkbox" name="attr_psychosis"><span class="sheet-integrity__psychosis" name="attr_rename_psychosis" data-i18n="integrity-psychosis">Psychosis</span>
|
||
<input class="sheet-hidden" type="checkbox" name="attr_seizures"><span class="sheet-integrity__seizures" name="attr_rename_seizures" data-i18n="integrity-seizures">Seizures</span>
|
||
<input class="sheet-hidden" type="checkbox" name="attr_depersonalization"><span class="sheet-integrity__depersonalization" name="attr_rename_depersonalization" data-i18n="integrity-depersonalization">Depersonalization</span>
|
||
</div>
|
||
<div class="sheet-integrity__progress">
|
||
<input class="sheet-integrity__bar-width" type="hidden" name="attr_integrity_bar_size" value="80" readonly>
|
||
<div class="sheet-integrity__progress-fill"></div>
|
||
<div class="sheet-integrity__marker sheet-integrity__marker--70"></div>
|
||
<div class="sheet-integrity__marker sheet-integrity__marker--60"></div>
|
||
<div class="sheet-integrity__marker sheet-integrity__marker--50"></div>
|
||
<div class="sheet-integrity__marker sheet-integrity__marker--40"></div>
|
||
<div class="sheet-integrity__marker sheet-integrity__marker--30"></div>
|
||
<div class="sheet-integrity__marker sheet-integrity__marker--20"></div>
|
||
<div class="sheet-integrity__marker sheet-integrity__marker--10"></div>
|
||
</div>
|
||
<div class="sheet-integrity__loss-effects">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_dissonance"><span class="sheet-integrity__dissonance" name="attr_rename_dissonance" data-i18n="integrity-dissonance">Dissonance</span>
|
||
<input class="sheet-hidden" type="checkbox" name="attr_alienation"><span class="sheet-integrity__alienation" name="attr_rename_alienation" data-i18n="integrity-alienation">Alienation</span>
|
||
<input class="sheet-hidden" type="checkbox" name="attr_derealization"><span class="sheet-integrity__derealization" name="attr_rename_derealization" data-i18n="integrity-derealization">Derealization</span>
|
||
<input class="sheet-hidden" type="checkbox" name="attr_ego_death"><span class="sheet-integrity__egodeath" name="attr_rename_ego_death" data-i18n="integrity-ego-death">Ego Death</span>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-integrity__hexfields">
|
||
<div class="sheet-container"><span class="sheet-hex sheet-hex--64 sheet-hexfield__input" name="attr_integrity">80.0</span>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--integrity-maximum">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_integrity_maximum" placeholder="0" value="80" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--left"><span data-i18n="integrity-maximum">Max</span></div>
|
||
</div>
|
||
<div class="sheet-hexfield sheet-hide-until-needed sheet-hexfield-gray sheet-hexfield--integrity-mod">
|
||
<input class="sheet-hex sheet-hex--36 sheet-hexfield__input" type="text" name="attr_integrity_mod" placeholder="0" value="" spellcheck="false">
|
||
<div class="sheet-hexfield__label sheet-hexfield__label--right"><span data-i18n="integrity-mod">Mod</span></div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-large-label"><span name="attr_rename_block_integrity" data-i18n="integrity">Integrity</span></div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-toggle--strain" type="checkbox" name="attr_toggle_strain">
|
||
<input class="sheet-hidden sheet-toggle-augmentation-markers" type="checkbox" name="attr_toggle_augmentation_markers" checked>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_augmentations_block" checked>
|
||
<div class="sheet-block sheet-augmentations">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-augmentations__name" name="attr_rename_block_augmentations" data-i18n="augmentations">Augmentations</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-augmentations__grade" data-i18n="augmentations-grade">Grade</div>
|
||
<div class="sheet-augmentations__power" data-i18n="augmentations-power">Power</div>
|
||
<div class="sheet-augmentations__slots" data-i18n="augmentations-slots">Slots</div>
|
||
<div class="sheet-augmentations__loss"><span class="sheet-a" data-i18n="augmentations-loss">Loss</span><span class="sheet-b" data-i18n="augmentations-strain">Strain</span></div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_augmentations_visibility_toggle" checked>
|
||
<fieldset class="repeating_augmentations">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-augmentations__name sheet-stretch" type="text" name="attr_augmentation_name" placeholder="[Advanced/Superior] Augmentation [Level] (Upgrades)" data-i18n-placeholder="augmentations-name-placeholder" spellcheck="false">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_augmentation-color" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_augmentation-color" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_augmentation-color" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_augmentation-color" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_augmentation-color" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_augmentation-color" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_augmentation-color" value="gray">
|
||
</div>
|
||
<input class="sheet-augmentations__grade" type="text" name="attr_augmentation_grade" placeholder="Iron" data-i18n-placeholder="augmentations-grade-placeholder" spellcheck="false">
|
||
<input class="sheet-augmentations__power" type="text" name="attr_augmentation_power" placeholder="0" spellcheck="false">
|
||
<input class="sheet-augmentations__slots" type="text" name="attr_augmentation_slots" placeholder="0" spellcheck="false">
|
||
<input class="sheet-augmentations__loss" type="text" name="attr_augmentation_loss" placeholder="4.0" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_augmentation_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_multiplier_toggle" checked>
|
||
<div class="sheet-repitem__label" data-i18n="multiplier">Multiplier</div>
|
||
<input class="sheet-augmentations__multiplier" type="text" name="attr_augmentation_multiplier" value="1.0" placeholder="1.0">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_augmentation_notes" placeholder="Effect/Description" data-i18n-placeholder="augmentations-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--settings" type="checkbox" name="attr_settings_toggle">
|
||
<div class="sheet-repitem__settings">
|
||
<div class="sheet-repitem__settings-content">
|
||
<label class="sheet-label-toggle">
|
||
<input type="checkbox" name="attr_multiplier_toggle" checked><span data-i18n="multiplier">Multiplier</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--special sheet-toggle--loss" type="checkbox" name="attr_augmentation_loss_toggle" checked title="Loss/Strain On/Off" data-i18n-title="augmentations-toggle-title">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_augmentation_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_augmentation_note_box" placeholder="Notes" data-i18n-placeholder="augmentations-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"><span class="sheet-label sheet-a" data-i18n="augmentations-total-loss">Total Loss: </span><span class="sheet-label sheet-b" data-i18n="augmentations-total-strain">Total Strain: </span><span class="sheet-label sheet-label--loss" name="attr_augmentations_total_loss">0.0</span></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_engrams_block" checked>
|
||
<div class="sheet-block sheet-engrams">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-engrams__name" name="attr_rename_block_engrams" data-i18n="engrams">Engrams</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-engrams__penalty" data-i18n="engrams-penalty">Penalty</div>
|
||
<div class="sheet-engrams__description" data-i18n="engrams-description">Description</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_engrams_visibility_toggle" checked>
|
||
<input class="sheet-toggle-description-input sheet-hidden" type="checkbox" name="attr_toggle_description_input_visibility" checked>
|
||
<input class="sheet-toggle-injection-input sheet-hidden" type="checkbox" name="attr_toggle_injection_input_visibility">
|
||
<fieldset class="repeating_engrams">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-hidden sheet-toggle sheet-toggle--list-roll" type="checkbox" name="attr_roll_button_toggle">
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--wildcard" type="roll" name="roll_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_engrams_skill)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--extra" type="roll" name="roll_extra_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_extra_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_engrams_skill)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<input class="sheet-align-left sheet-engrams__name sheet-stretch" type="text" name="attr_engram_name" placeholder="Engram" data-i18n-placeholder="engrams-name-placeholder" spellcheck="false">
|
||
<input class="sheet-engrams__penalty" type="text" name="attr_engram_penalty" placeholder="-1" spellcheck="false">
|
||
<input class="sheet-align-left sheet-engrams__description" type="text" name="attr_engram_description" placeholder="e.g. entangle (SWADE 161) power but resisted by Smarts" data-i18n-placeholder="engrams-description-placeholder" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_engram_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_engram_notes" placeholder="Effect/Description" data-i18n-placeholder="engrams-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--settings" type="checkbox" name="attr_engram_settings_toggle">
|
||
<div class="sheet-repitem__settings">
|
||
<div class="sheet-repitem__settings-content">
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-description">
|
||
<input type="hidden" name="attr_roll_description">
|
||
<input type="checkbox" name="attr_roll_description_toggle"><span data-i18n="roll-description">Description</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_description_input" placeholder="Narrative or functional description below the header in the Roll Template. Leave empty to disable." data-i18n-placeholder="roll-description-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-injection">
|
||
<input type="hidden" name="attr_roll_injection">
|
||
<input type="checkbox" name="attr_roll_injection_toggle"><span data-i18n="roll-injection">Roll Injection</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_injection_input" placeholder="{{source_label=}} {{source=}} {{custom3_label=}} {{custom3=}} {{rof=[[ 1 ]]}} {{traitroll8=}}" data-i18n-placeholder="roll-injection-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_skill_wd" value="@{hacking_wd}">
|
||
<input type="hidden" name="attr_skill_mod" value="@{hacking_mod}">
|
||
<input type="hidden" name="attr_skill_untrained_mod" value="@{hacking_untrained_mod}">
|
||
<input type="hidden" name="attr_skill_roll" value="@{hacking_roll}">
|
||
<input type="hidden" name="attr_skill_wd_roll" value="@{hacking_wd_roll}">
|
||
<input type="hidden" name="attr_skill_extra_wd_roll" value="@{hacking_wd_roll}">
|
||
<input type="hidden" name="attr_skill_code" value="@{hacking_code}">
|
||
<input type="hidden" name="attr_skill_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{rof_override} ]]}} {{header=@{name} ^{rolls} @{skill_name}}} {{trait=@{skill_name}}} {{source_label=^{source}}} {{source=@{engram_name}}} {{traitdie=@{skill_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{bonus=@{skill_bonus}}} {{traitroll1=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{skill_global_wd_roll} @{skill_global_bonus_wd_roll}">
|
||
<input type="checkbox" name="attr_roll_button_toggle"><span data-i18n="roll-button">Roll Button</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_skill_name" placeholder="Hacking" data-i18n-placeholder="engrams-skill-placeholder" value="Hacking" spellcheck="false">
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_skill_bonus" placeholder="+0">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_rof_override" value="1">
|
||
<input type="checkbox" name="attr_rof_override_toggle"><span data-i18n="query-rof">Query RoF</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_wd_override" value="">
|
||
<input type="checkbox" name="attr_wd_override_toggle"><span data-i18n="wild-die-override">WD Override</span>
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_wd_override_die" value="" spellcheck="false">
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_engram_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_engram_note_box" placeholder="Notes" data-i18n-placeholder="engrams-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-toggle--pp" type="checkbox" name="attr_toggle_pp">
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_powers_block">
|
||
<div class="sheet-block sheet-powers">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-powers__name" name="attr_rename_block_powers" data-i18n="powers">Powers</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-powers__damage">
|
||
<label class="sheet-damage-roll-toggle-label" title="Toggle Damage Rolls" data-i18n-title="toggle-damage-rolls-title">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_powers_damage_roll_toggle"><span class="sheet-icon">;</span><span data-i18n="powers-damage">Damage</span>
|
||
</label>
|
||
</div>
|
||
<div class="sheet-powers__range" data-i18n="powers-range">Range</div>
|
||
<div class="sheet-powers__ap" data-i18n="powers-ap">AP</div>
|
||
<div class="sheet-powers__pp sheet-a" data-i18n="powers-pp">PP</div>
|
||
<div class="sheet-powers__penalty sheet-b" data-i18n="powers-penalty">Penalty</div>
|
||
<div class="sheet-powers__duration" data-i18n="powers-duration">Duration</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_powers_visibility_toggle" checked>
|
||
<input class="sheet-damage-roll-toggle sheet-hidden" type="checkbox" name="attr_powers_damage_roll_toggle">
|
||
<input class="sheet-toggle-description-input sheet-hidden" type="checkbox" name="attr_toggle_description_input_visibility" checked>
|
||
<input class="sheet-toggle-injection-input sheet-hidden" type="checkbox" name="attr_toggle_injection_input_visibility">
|
||
<fieldset class="repeating_powers">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-hidden sheet-toggle sheet-toggle--list-roll" type="checkbox" name="attr_roll_button_toggle">
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--wildcard" type="roll" name="roll_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_powers_skill)}} {{damageroll=[t](~repeating_powers_power_damage)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--extra" type="roll" name="roll_extra_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_extra_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_powers_skill)}} {{damageroll=[t](~repeating_powers_power_damage)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<input class="sheet-align-left sheet-powers__name sheet-stretch" type="text" name="attr_power_name" placeholder="Power" data-i18n-placeholder="powers-name-placeholder" spellcheck="false">
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_damage_input_toggle" checked>
|
||
<div class="sheet-damage-button-overlay">
|
||
<input type="hidden" name="attr_power_damage_roll" value="0">
|
||
<button type="roll" name="roll_power_damage" value="@{gm_roll} &{template:DamageRoll} {{header=@{name} ^{rolls} ^{damage}}} {{code=@{power_damage}}} {{source_label=^{source}}} {{source=@{power_name}}} {{rof=[[ 0 + @{rof_override} ]]}} {{modifier=?{@{query_damage_modifier}}}} {{range=@{power_range}}} {{ap=@{power_ap}}} {{trapping=@{power_trapping}}} {{roll1=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll2=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll3=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll4=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll5=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll6=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll7=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll8=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{reroll=[r](~repeating_powers_power_damage)}}"></button>
|
||
<input class="sheet-powers__damage" type="text" name="attr_power_damage" placeholder="3d6" data-i18n-placeholder="powers-damage-placeholder" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-powers__range" type="text" name="attr_power_range" placeholder="Range/Melee" data-i18n-placeholder="powers-range-placeholder" spellcheck="false">
|
||
<input class="sheet-powers__ap" type="text" name="attr_power_ap" placeholder="0" spellcheck="false">
|
||
<input class="sheet-a sheet-powers__pp" type="text" name="attr_power_pp" placeholder="2" data-i18n-placeholder="powers-pp-placeholder" spellcheck="false">
|
||
<input class="sheet-b sheet-powers__penalty" type="text" name="attr_power_penalty" placeholder="-1" spellcheck="false">
|
||
<input class="sheet-powers__duration" type="text" name="attr_power_duration" placeholder="Duration" data-i18n-placeholder="powers-duration-placeholder" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_power_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_trapping_toggle" checked>
|
||
<div class="sheet-repitem__label" data-i18n="trapping">Trapping</div>
|
||
<input class="sheet-align-left sheet-powers__trapping" type="text" name="attr_power_trapping" placeholder="Fire, Light, etc." data-i18n-placeholder="powers-trapping-placeholder" spellcheck="false">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_power_notes" placeholder="Effect/Description" data-i18n-placeholder="powers-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--settings" type="checkbox" name="attr_power_settings_toggle">
|
||
<div class="sheet-repitem__settings">
|
||
<div class="sheet-repitem__settings-content">
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-description">
|
||
<input type="hidden" name="attr_roll_description">
|
||
<input type="checkbox" name="attr_roll_description_toggle"><span data-i18n="roll-description">Description</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_description_input" placeholder="Narrative or functional description below the header in the Roll Template. Leave empty to disable." data-i18n-placeholder="roll-description-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-injection">
|
||
<input type="hidden" name="attr_roll_injection">
|
||
<input type="checkbox" name="attr_roll_injection_toggle"><span data-i18n="roll-injection">Roll Injection</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_injection_input" placeholder="{{source_label=}} {{source=}} {{custom3_label=}} {{custom3=}} {{rof=[[ 1 ]]}} {{traitroll8=}}" data-i18n-placeholder="roll-injection-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="checkbox" name="attr_damage_input_toggle" checked><span data-i18n="damage">Damage</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="checkbox" name="attr_trapping_toggle" checked><span data-i18n="trapping">Trapping</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_skill_wd" value="@{spellcasting_wd}">
|
||
<input type="hidden" name="attr_skill_mod" value="@{spellcasting_mod}">
|
||
<input type="hidden" name="attr_skill_untrained_mod" value="@{spellcasting_untrained_mod}">
|
||
<input type="hidden" name="attr_skill_roll" value="@{spellcasting_roll}">
|
||
<input type="hidden" name="attr_skill_wd_roll" value="@{spellcasting_wd_roll}">
|
||
<input type="hidden" name="attr_skill_extra_wd_roll" value="@{spellcasting_wd_roll}">
|
||
<input type="hidden" name="attr_skill_code" value="@{spellcasting_code}">
|
||
<input type="hidden" name="attr_skill_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{rof_override} ]]}} {{header=@{name} ^{rolls} @{skill_name}}} {{trait=@{skill_name}}} {{source_label=^{power}}} {{source=@{power_name}}} {{traitdie=@{skill_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{bonus=@{skill_bonus}}} {{traitroll1=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{skill_global_wd_roll} @{skill_global_bonus_wd_roll}">
|
||
<input type="checkbox" name="attr_roll_button_toggle"><span data-i18n="roll-button">Roll Button</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_skill_name" placeholder="Spellcasting" data-i18n-placeholder="powers-skill-placeholder" value="Spellcasting" spellcheck="false">
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_skill_bonus" placeholder="+0">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_rof_override" value="1">
|
||
<input type="checkbox" name="attr_rof_override_toggle"><span data-i18n="query-rof">Query RoF</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_wd_override" value="">
|
||
<input type="checkbox" name="attr_wd_override_toggle"><span data-i18n="wild-die-override">WD Override</span>
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_wd_override_die" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle" title="Exploding Damage Dice On/Off" data-i18n-title="ace-damage-title">
|
||
<input type="hidden" name="attr_explode_damage" value="!">
|
||
<input type="checkbox" name="attr_explode_damage_toggle" checked><span data-i18n="ace-damage">Ace Damage</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_power_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_power_note_box" placeholder="Notes" data-i18n-placeholder="powers-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_vehicles_block">
|
||
<div class="sheet-block sheet-vehicles">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-vehicles__name" name="attr_rename_block_vehicles" data-i18n="vehicles">Vehicles</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-vehicles__size" data-i18n="vehicles-size">Size</div>
|
||
<div class="sheet-vehicles__handling" data-i18n="vehicles-handling">Handling</div>
|
||
<div class="sheet-vehicles__speed" data-i18n="vehicles-speed">Speed</div>
|
||
<div class="sheet-vehicles__toughness" data-i18n="vehicles-toughness">Tough.</div>
|
||
<div class="sheet-vehicles__crew" data-i18n="vehicles-crew">Crew</div>
|
||
<div class="sheet-vehicles__weapons" data-i18n="vehicles-weapons">Weap.</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_vehicles_visibility_toggle" checked>
|
||
<fieldset class="repeating_vehicles">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-vehicles__name sheet-stretch" type="text" name="attr_vehicle_name" placeholder="Vehicle Type" data-i18n-placeholder="vehicles-name-placeholder" spellcheck="false">
|
||
<input class="sheet-vehicles__size" type="text" name="attr_vehicle_size" placeholder="3" spellcheck="false">
|
||
<input class="sheet-vehicles__handling" type="text" name="attr_vehicle_handling" placeholder="0" spellcheck="false">
|
||
<input class="sheet-vehicles__speed" type="text" name="attr_vehicle_speed" placeholder="80" spellcheck="false">
|
||
<input class="sheet-vehicles__toughness" type="text" name="attr_vehicle_toughness" placeholder="4 (0)" data-i18n-placeholder="vehicles-toughness-placeholder" spellcheck="false">
|
||
<input class="sheet-vehicles__crew" type="text" name="attr_vehicle_crew" placeholder="1+3" data-i18n-placeholder="vehicles-crew-placeholder" spellcheck="false">
|
||
<input class="sheet-vehicles__weapons" type="text" name="attr_vehicle_weapons_count" placeholder="0" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_notes_toggle">
|
||
<div class="sheet-repitem__frame">
|
||
<input class="sheet-hidden sheet-repitem__frame-silhouette-control" type="hidden" name="attr_vehicle_silhouette" value="0">
|
||
<div class="sheet-repitem__frame-silhouette">
|
||
<input class="sheet-repitem__frame-silhouette-button" type="checkbox" name="attr_vehicle_silhouette_cycle">
|
||
</div>
|
||
<div class="sheet-repitem__frame-build">
|
||
<textarea name="attr_vehicle_build" placeholder="Chassis | Modifications, Notes, etc." data-i18n-placeholder="vehicles-build-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-repitem__weapons-control" type="hidden" name="attr_vehicle_weapons_count" value="0">
|
||
<div class="sheet-repitem__weapons">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-repitem__weapons-name" data-i18n="sublist-weapons-name">Weapon</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-ap-damage">AP Damage</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-he-damage">HE Damage</div>
|
||
<div class="sheet-repitem__weapons-range" data-i18n="sublist-weapons-range">Range</div>
|
||
<div class="sheet-repitem__weapons-rof" data-i18n="sublist-weapons-rof">ROF</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--1">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_1_name" placeholder="Weapon #1" data-i18n-placeholder="sublist-weapons-name-placeholder-1" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_1_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_1_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_1">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_1" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_1_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_1_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--2">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_2_name" placeholder="Weapon #2" data-i18n-placeholder="sublist-weapons-name-placeholder-2" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_2_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_2_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_2">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_2" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_2_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_2_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--3">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_3_name" placeholder="Weapon #3" data-i18n-placeholder="sublist-weapons-name-placeholder-3" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_3_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_3_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_3">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_3" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_3_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_3_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--4">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_4_name" placeholder="Weapon #4" data-i18n-placeholder="sublist-weapons-name-placeholder-4" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_4_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_4_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_4">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_4" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_4_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_4_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--5">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_5_name" placeholder="Weapon #5" data-i18n-placeholder="sublist-weapons-name-placeholder-5" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_5_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_5_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_5">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_5" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_5_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_5_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--6">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_6_name" placeholder="Weapon #6" data-i18n-placeholder="sublist-weapons-name-placeholder-6" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_6_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_6_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_6">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_6" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_6_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_6_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--7">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_7_name" placeholder="Weapon #7" data-i18n-placeholder="sublist-weapons-name-placeholder-7" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_7_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_7_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_7">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_7" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_7_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_7_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--8">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_8_name" placeholder="Weapon #8" data-i18n-placeholder="sublist-weapons-name-placeholder-8" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_8_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_8_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_8">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_8" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_8_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_8_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--9">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_9_name" placeholder="Weapon #9" data-i18n-placeholder="sublist-weapons-name-placeholder-9" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_9_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_9_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_9">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_9" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_9_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_9_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--10">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_10_name" placeholder="Weapon #10" data-i18n-placeholder="sublist-weapons-name-placeholder-10" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_10_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_10_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_10">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_10" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_10_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_10_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_walkers_block">
|
||
<div class="sheet-block sheet-walkers">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-walkers__name" name="attr_rename_block_walkers" data-i18n="walkers">Walkers</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-walkers__size" data-i18n="walkers-size">Size</div>
|
||
<div class="sheet-walkers__pace" data-i18n="walkers-pace">Pace</div>
|
||
<div class="sheet-walkers__strength" data-i18n="walkers-strength">Strength</div>
|
||
<div class="sheet-walkers__toughness" data-i18n="walkers-toughness">Tough.</div>
|
||
<div class="sheet-walkers__mods" data-i18n="walkers-mods">Mods</div>
|
||
<div class="sheet-walkers__crew" data-i18n="walkers-crew">Crew</div>
|
||
<div class="sheet-walkers__weapons" data-i18n="walkers-weapons">Weap.</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_walkers_visibility_toggle" checked>
|
||
<fieldset class="repeating_walkers">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-walkers__name sheet-stretch" type="text" name="attr_walker_name" placeholder="Walker Type" data-i18n-placeholder="walkers-name-placeholder" spellcheck="false">
|
||
<input class="sheet-walkers__size" type="text" name="attr_walker_size" placeholder="1" spellcheck="false">
|
||
<input class="sheet-walkers__pace" type="text" name="attr_walker_pace" placeholder="6" spellcheck="false">
|
||
<input class="sheet-walkers__strength" type="text" name="attr_walker_strength" placeholder="d12+4" spellcheck="false">
|
||
<input class="sheet-walkers__toughness" type="text" name="attr_walker_toughness" placeholder="20 (5)" data-i18n-placeholder="walkers-toughness-placeholder" spellcheck="false">
|
||
<input class="sheet-walkers__mods" type="text" name="attr_walker_mods" placeholder="0/20" data-i18n-placeholder="walkers-mods-placeholder" spellcheck="false">
|
||
<input class="sheet-walkers__crew" type="text" name="attr_walker_crew" placeholder="1" spellcheck="false">
|
||
<input class="sheet-walkers__weapons" type="text" name="attr_walker_weapons_count" placeholder="0" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_walker_notes_toggle">
|
||
<div class="sheet-repitem__frame">
|
||
<div class="sheet-repitem__frame-silhouette"></div>
|
||
<div class="sheet-repitem__frame-build">
|
||
<textarea name="attr_walker_build" placeholder="Chassis | Modifications, Notes, etc." data-i18n-placeholder="walkers-build-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-repitem__weapons-control" type="hidden" name="attr_walker_weapons_count" value="0">
|
||
<div class="sheet-repitem__weapons">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-repitem__weapons-name" data-i18n="sublist-weapons-name">Weapon</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-ap-damage">AP Damage</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-he-damage">HE Damage</div>
|
||
<div class="sheet-repitem__weapons-range" data-i18n="sublist-weapons-range">Range</div>
|
||
<div class="sheet-repitem__weapons-rof" data-i18n="sublist-weapons-rof">ROF</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--1">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_1_name" placeholder="Weapon #1" data-i18n-placeholder="sublist-weapons-name-placeholder-1" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_1_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_1_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_1">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_1" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_1_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_1_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--2">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_2_name" placeholder="Weapon #2" data-i18n-placeholder="sublist-weapons-name-placeholder-2" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_2_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_2_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_2">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_2" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_2_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_2_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--3">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_3_name" placeholder="Weapon #3" data-i18n-placeholder="sublist-weapons-name-placeholder-3" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_3_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_3_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_3">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_3" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_3_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_3_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--4">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_4_name" placeholder="Weapon #4" data-i18n-placeholder="sublist-weapons-name-placeholder-4" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_4_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_4_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_4">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_4" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_4_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_4_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--5">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_5_name" placeholder="Weapon #5" data-i18n-placeholder="sublist-weapons-name-placeholder-5" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_5_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_5_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_5">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_5" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_5_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_5_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--6">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_6_name" placeholder="Weapon #6" data-i18n-placeholder="sublist-weapons-name-placeholder-6" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_6_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_6_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_6">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_6" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_6_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_6_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--7">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_7_name" placeholder="Weapon #7" data-i18n-placeholder="sublist-weapons-name-placeholder-7" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_7_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_7_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_7">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_7" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_7_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_7_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--8">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_8_name" placeholder="Weapon #8" data-i18n-placeholder="sublist-weapons-name-placeholder-8" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_8_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_8_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_8">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_8" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_8_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_8_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--9">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_9_name" placeholder="Weapon #9" data-i18n-placeholder="sublist-weapons-name-placeholder-9" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_9_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_9_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_9">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_9" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_9_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_9_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--10">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_10_name" placeholder="Weapon #10" data-i18n-placeholder="sublist-weapons-name-placeholder-10" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_10_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_10_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_10">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_10" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_10_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_10_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_powerarmors_block">
|
||
<div class="sheet-block sheet-powerarmors">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-powerarmors__name" name="attr_rename_block_powerarmors" data-i18n="powerarmors">Power Armors</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-powerarmors__size" data-i18n="powerarmors-size">Size</div>
|
||
<div class="sheet-powerarmors__armor" data-i18n="powerarmors-armor">Armor</div>
|
||
<div class="sheet-powerarmors__pace" data-i18n="powerarmors-pace">Pace</div>
|
||
<div class="sheet-powerarmors__mods" data-i18n="powerarmors-mods">Mods</div>
|
||
<div class="sheet-powerarmors__weight" data-i18n="powerarmors-weight">Weight</div>
|
||
<div class="sheet-powerarmors__weapons" data-i18n="powerarmors-weapons">Weap.</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_powerarmors_visibility_toggle" checked>
|
||
<fieldset class="repeating_powerarmors">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-powerarmors__name sheet-stretch" type="text" name="attr_powerarmor_name" placeholder="Power Armor Type" data-i18n-placeholder="powerarmors-name-placeholder" spellcheck="false">
|
||
<input class="sheet-powerarmors__size" type="text" name="attr_powerarmor_size" placeholder="1" spellcheck="false">
|
||
<input class="sheet-powerarmors__armor" type="text" name="attr_powerarmor_armor" placeholder="8" spellcheck="false">
|
||
<input class="sheet-powerarmors__pace" type="text" name="attr_powerarmor_pace" placeholder="8" spellcheck="false">
|
||
<input class="sheet-powerarmors__mods" type="text" name="attr_powerarmor_mods" placeholder="0/5" data-i18n-placeholder="powerarmors-mods-placeholder" spellcheck="false">
|
||
<input class="sheet-powerarmors__weight" type="text" name="attr_powerarmor_weight" placeholder="500" data-i18n-placeholder="powerarmors-weight-placeholder" spellcheck="false">
|
||
<input class="sheet-powerarmors__weapons" type="text" name="attr_powerarmor_weapons_count" placeholder="0" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_powerarmor_notes_toggle">
|
||
<div class="sheet-repitem__frame">
|
||
<div class="sheet-repitem__frame-silhouette"></div>
|
||
<div class="sheet-repitem__frame-build">
|
||
<textarea name="attr_powerarmor_build" placeholder="Chassis | Modifications, Notes, etc." data-i18n-placeholder="powerarmors-build-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-repitem__weapons-control" type="hidden" name="attr_powerarmor_weapons_count" value="0">
|
||
<div class="sheet-repitem__weapons">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-repitem__weapons-name" data-i18n="sublist-weapons-name">Weapon</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-ap-damage">AP Damage</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-he-damage">HE Damage</div>
|
||
<div class="sheet-repitem__weapons-range" data-i18n="sublist-weapons-range">Range</div>
|
||
<div class="sheet-repitem__weapons-rof" data-i18n="sublist-weapons-rof">ROF</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--1">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_1_name" placeholder="Weapon #1" data-i18n-placeholder="sublist-weapons-name-placeholder-1" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_1_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_1_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_1">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_1" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_1_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_1_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--2">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_2_name" placeholder="Weapon #2" data-i18n-placeholder="sublist-weapons-name-placeholder-2" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_2_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_2_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_2">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_2" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_2_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_2_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--3">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_3_name" placeholder="Weapon #3" data-i18n-placeholder="sublist-weapons-name-placeholder-3" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_3_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_3_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_3">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_3" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_3_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_3_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--4">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_4_name" placeholder="Weapon #4" data-i18n-placeholder="sublist-weapons-name-placeholder-4" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_4_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_4_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_4">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_4" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_4_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_4_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--5">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_5_name" placeholder="Weapon #5" data-i18n-placeholder="sublist-weapons-name-placeholder-5" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_5_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_5_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_5">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_5" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_5_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_5_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--6">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_6_name" placeholder="Weapon #6" data-i18n-placeholder="sublist-weapons-name-placeholder-6" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_6_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_6_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_6">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_6" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_6_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_6_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--7">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_7_name" placeholder="Weapon #7" data-i18n-placeholder="sublist-weapons-name-placeholder-7" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_7_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_7_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_7">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_7" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_7_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_7_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--8">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_8_name" placeholder="Weapon #8" data-i18n-placeholder="sublist-weapons-name-placeholder-8" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_8_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_8_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_8">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_8" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_8_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_8_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--9">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_9_name" placeholder="Weapon #9" data-i18n-placeholder="sublist-weapons-name-placeholder-9" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_9_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_9_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_9">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_9" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_9_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_9_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--10">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_10_name" placeholder="Weapon #10" data-i18n-placeholder="sublist-weapons-name-placeholder-10" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_10_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_10_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_10">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_10" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_10_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_10_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_allies_block">
|
||
<div class="sheet-block sheet-allies">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-allies__name" name="attr_rename_block_allies" data-i18n="allies">Allies</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-allies__pace" data-i18n="pace">Pace</div>
|
||
<div class="sheet-allies__parry" data-i18n="parry">Parry</div>
|
||
<div class="sheet-allies__toughness" data-i18n="toughness">Tough.</div>
|
||
<div class="sheet-allies__size" data-i18n="size">Size</div>
|
||
<div class="sheet-allies__exp" data-i18n="exp">EXP</div>
|
||
<div class="sheet-allies__level" data-i18n="level">Level</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_allies_visibility_toggle" checked>
|
||
<fieldset class="repeating_allies">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-allies__name sheet-stretch" type="text" name="attr_ally_name" placeholder="Name" data-i18n-placeholder="allies-name-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__pace" type="text" name="attr_ally_pace" placeholder="6" spellcheck="false">
|
||
<input class="sheet-allies__parry" type="text" name="attr_ally_parry" placeholder="4" spellcheck="false">
|
||
<input class="sheet-allies__toughness" type="text" name="attr_ally_toughness" placeholder="4" spellcheck="false">
|
||
<input class="sheet-allies__size" type="text" name="attr_ally_size" placeholder="0" spellcheck="false">
|
||
<input class="sheet-allies__exp" type="text" name="attr_ally_exp" placeholder="0" spellcheck="false">
|
||
<input class="sheet-allies__level" type="text" name="attr_ally_level" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_ally_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_ally_note_box" placeholder="Notes" data-i18n-placeholder="allies-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_ally_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-left">
|
||
<button type="roll" name="roll_ally_roll_2" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d4-2}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_2)}}"><span data-i18n="die-button-number-2">2</span></button>
|
||
<button type="roll" name="roll_ally_roll_4" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d4}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_4)}}"><span data-i18n="die-button-number-4">4</span></button>
|
||
<button type="roll" name="roll_ally_roll_6" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d6}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_6)}}"><span data-i18n="die-button-number-6">6</span></button>
|
||
<button type="roll" name="roll_ally_roll_8" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d8}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_8)}}"><span data-i18n="die-button-number-8">8</span></button>
|
||
<button type="roll" name="roll_ally_roll_10" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d10}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_10)}}"><span data-i18n="die-button-number-10">10</span></button>
|
||
<button type="roll" name="roll_ally_roll_12" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d12}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_12)}}"><span data-i18n="die-button-number-12">12</span></button>
|
||
<div class="sheet-allies__health-field sheet-allies__health-field--wounds">
|
||
<input type="text" name="attr_ally_note_wounds" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-allies__health-field sheet-allies__health-field--fatigue">
|
||
<input type="text" name="attr_ally_note_fatigue" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-right">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--1" type="text" name="attr_ally_note_field_1" placeholder="Note #1" data-i18n-placeholder="allies-note-field-1-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--2" type="text" name="attr_ally_note_field_2" placeholder="Note #2" data-i18n-placeholder="allies-note-field-2-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--3" type="text" name="attr_ally_note_field_3" placeholder="Note #3" data-i18n-placeholder="allies-note-field-3-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--4" type="text" name="attr_ally_note_field_4" placeholder="Note #4" data-i18n-placeholder="allies-note-field-4-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--5" type="text" name="attr_ally_note_field_5" placeholder="Note #5" data-i18n-placeholder="allies-note-field-5-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--6" type="text" name="attr_ally_note_field_6" placeholder="Note #6" data-i18n-placeholder="allies-note-field-6-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--7" type="text" name="attr_ally_note_field_7" placeholder="Note #7" data-i18n-placeholder="allies-note-field-7-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--8" type="text" name="attr_ally_note_field_8" placeholder="Note #8" data-i18n-placeholder="allies-note-field-8-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--9" type="text" name="attr_ally_note_field_9" placeholder="Note #9" data-i18n-placeholder="allies-note-field-9-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--10" type="text" name="attr_ally_note_field_10" placeholder="Note #10" data-i18n-placeholder="allies-note-field-10-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--11" type="text" name="attr_ally_note_field_11" placeholder="Note #11" data-i18n-placeholder="allies-note-field-11-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--12" type="text" name="attr_ally_note_field_12" placeholder="Note #12" data-i18n-placeholder="allies-note-field-12-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--13" type="text" name="attr_ally_note_field_13" placeholder="Note #13" data-i18n-placeholder="allies-note-field-13-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--14" type="text" name="attr_ally_note_field_14" placeholder="Note #14" data-i18n-placeholder="allies-note-field-14-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--15" type="text" name="attr_ally_note_field_15" placeholder="Note #15" data-i18n-placeholder="allies-note-field-15-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--16" type="text" name="attr_ally_note_field_16" placeholder="Note #16" data-i18n-placeholder="allies-note-field-16-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--17" type="text" name="attr_ally_note_field_17" placeholder="Note #17" data-i18n-placeholder="allies-note-field-17-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--18" type="text" name="attr_ally_note_field_18" placeholder="Note #18" data-i18n-placeholder="allies-note-field-18-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--19" type="text" name="attr_ally_note_field_19" placeholder="Note #19" data-i18n-placeholder="allies-note-field-19-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--20" type="text" name="attr_ally_note_field_20" placeholder="Note #20" data-i18n-placeholder="allies-note-field-20-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-right">
|
||
<input class="sheet-hidden sheet-toggle sheet-toggle-block" type="checkbox" name="attr_toggle_ammunition_block" checked>
|
||
<div class="sheet-ammunition">
|
||
<div class="sheet-header"><span class="sheet-header__title" name="attr_rename_block_ammunition" data-i18n="ammunition">Ammunition</span></div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_ammunition_visibility_toggle" checked>
|
||
<div class="sheet-ammunition__content">
|
||
<div class="sheet-ammunition__container sheet-ammunition__container--1">
|
||
<input type="radio" name="attr_ammunition_select" value="ammunition_container_1" checked><span name="attr_ammunition_container_1_max">0</span>
|
||
<input type="text" name="attr_ammunition_container_1"><span name="attr_rename_ammunition_container_1">Ammo #1</span>
|
||
</div>
|
||
<div class="sheet-ammunition__container sheet-ammunition__container--1">
|
||
<input type="radio" name="attr_ammunition_select" value="ammunition_container_2"><span name="attr_ammunition_container_2_max">0</span>
|
||
<input type="text" name="attr_ammunition_container_2"><span name="attr_rename_ammunition_container_2">Ammo #2</span>
|
||
</div>
|
||
<div class="sheet-ammunition__container sheet-ammunition__container--1">
|
||
<input type="radio" name="attr_ammunition_select" value="ammunition_container_3"><span name="attr_ammunition_container_3_max">0</span>
|
||
<input type="text" name="attr_ammunition_container_3"><span name="attr_rename_ammunition_container_3">Ammo #3</span>
|
||
</div>
|
||
<div class="sheet-ammunition__buttons">
|
||
<div class="sheet-top">
|
||
<button type="action" name="act_ammunition_+1">+1</button>
|
||
<button type="action" name="act_ammunition_+3">+3</button>
|
||
<button type="action" name="act_ammunition_+5">+5</button>
|
||
<button type="action" name="act_ammunition_+10">+10</button>
|
||
<button type="action" name="act_ammunition_set" data-i18n="ammunition-set">S</button>
|
||
</div>
|
||
<div class="sheet-bottom">
|
||
<button type="action" name="act_ammunition_-1">−1</button>
|
||
<button type="action" name="act_ammunition_-3">−3</button>
|
||
<button type="action" name="act_ammunition_-5">−5</button>
|
||
<button type="action" name="act_ammunition_-10">−10</button>
|
||
<button type="action" name="act_ammunition_reset" data-i18n="ammunition-reset">R</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle-block" type="checkbox" name="attr_toggle_quick_notes_block" checked>
|
||
<div class="sheet-quick-notes">
|
||
<div class="sheet-header"><span class="sheet-header__title" name="attr_rename_block_quick_notes" data-i18n="quick-notes">Quick Notes</span></div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_quick_notes_visibility_toggle" checked>
|
||
<div class="sheet-quick-notes__content"><span name="attr_quick_notes"></span>
|
||
<textarea name="attr_quick_notes" spellcheck="false"></textarea>
|
||
</div>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<div class="sheet-encumbrance">
|
||
<div class="sheet-encumbrance__container">
|
||
<div class="sheet-label" data-i18n="weapons">Weapons</div>
|
||
<div class="sheet-encumbrance__content"><span name="attr_carry_weight_weapons">0.0</span></div>
|
||
</div>
|
||
<div class="sheet-encumbrance__container">
|
||
<div class="sheet-label" data-i18n="apparel">Apparel</div>
|
||
<div class="sheet-encumbrance__content"><span name="attr_carry_weight_apparel">0.0</span></div>
|
||
</div>
|
||
<div class="sheet-encumbrance__container">
|
||
<div class="sheet-label" data-i18n="inventory">Inventory</div>
|
||
<div class="sheet-encumbrance__content"><span name="attr_carry_weight_inventory">0.0</span></div>
|
||
</div>
|
||
<div class="sheet-encumbrance__container sheet-encumbrance__container--summary">
|
||
<div class="sheet-label" data-i18n="carried-weight-total">Total Carried Weight</div>
|
||
<div class="sheet-encumbrance__content sheet-encumbrance__content--summary">
|
||
<input type="text" name="attr_carry_weight_maximum" placeholder="20" value="20">
|
||
<div>/</div><span name="attr_carry_weight">0.0</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-inventory">
|
||
<div class="sheet-header"><span class="sheet-header__title" name="attr_rename_block_inventory" data-i18n="inventory">Inventory</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-inventory__amount">#</div>
|
||
<div class="sheet-inventory__multi"></div>
|
||
<div class="sheet-inventory__weight" data-i18n="inventory-weight-u">WGT</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_inventory_visibility_toggle" checked>
|
||
<fieldset class="repeating_inventory">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-inventory__name sheet-stretch" type="text" name="attr_inventory_name" placeholder="Item" data-i18n-placeholder="inventory-name-placeholder" spellcheck="false">
|
||
<input class="sheet-inventory__amount" type="text" name="attr_inventory_amount" placeholder="0" value="1" spellcheck="false">
|
||
<div class="sheet-inventory__multi">×</div>
|
||
<input class="sheet-inventory__weight" type="text" name="attr_inventory_weight" placeholder="WGT" data-i18n-placeholder="inventory-weight-placeholder-u" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_inventory_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_inventory_notes" placeholder="About this item..." data-i18n-placeholder="inventory-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--special sheet-toggle--weight" type="checkbox" name="attr_inventory_weight_toggle" checked title="Weight On/Off" data-i18n-title="inventory-weight-toggle-title">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_inventory_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_inventory_note_box" placeholder="Notes" data-i18n-placeholder="inventory-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"><span class="sheet-label" data-i18n="inventory-total-weight">Total Weight: </span><span class="sheet-label sheet-label--weight" name="attr_carry_weight_inventory">0.0</span></div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-extra">
|
||
<div class="sheet-meta sheet-extra-meta">
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--name" type="text" name="attr_name" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_name" data-i18n="name">Name</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--size" type="text" name="attr_size" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_size" data-i18n="size">Size</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--height" type="text" name="attr_height" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_height" data-i18n="_height">Height</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--weight" type="text" name="attr_weight" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_weight" data-i18n="weight">Weight</span></div>
|
||
</div>
|
||
<div class="sheet-meta-field">
|
||
<input class="sheet-meta-field__input sheet-meta-field__input--bennies" type="text" name="attr_bennies" placeholder=" " spellcheck="false">
|
||
<div class="sheet-label"><span name="attr_rename_label_bennies" data-i18n="bennies">Bennies</span></div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-buttons">
|
||
<div class="sheet-dice-roller">
|
||
<input type="hidden" name="attr_dice_roller_code" value="0">
|
||
<input type="hidden" name="attr_dice_roller_template" value="{{rof=[[ 0 + ?{@{query_rate_of_fire}|1} ]]}} {{roll1=[[ @{dice_roller_code} ]]}} {{roll2=[[ @{dice_roller_code} ]]}} {{roll3=[[ @{dice_roller_code} ]]}} {{roll4=[[ @{dice_roller_code} ]]}} {{roll5=[[ @{dice_roller_code} ]]}} {{roll6=[[ @{dice_roller_code} ]]}} {{roll7=[[ @{dice_roller_code} ]]}} {{roll8=[[ @{dice_roller_code} ]]}}">
|
||
<input class="sheet-dice-roller__input" type="text" name="attr_dice_roller_input" placeholder="2d6!+2" data-i18n-placeholder="dice-roller-code-placeholder">
|
||
<button type="roll" name="roll_dice_roller_damage" value="@{gm_roll} &{template:DamageRoll} {{header=@{name} ^{rolls} ^{damage}}} {{code=@{dice_roller_input}}} @{dice_roller_template} {{reroll=[r](~dice_roller_damage)}}"><span data-i18n="dice-roller-damage">Damage</span></button>
|
||
<button type="roll" name="roll_dice_roller_hidden" value="/w gm &{template:DiceRoller} {{header=@{name} ^{rolls} @{dice_roller_input}}} @{dice_roller_template} {{reroll=[r](~dice_roller_hidden)}}"><span data-i18n="dice-roller-hidden">Hidden</span></button>
|
||
<button type="roll" name="roll_dice_roller_open" value="&{template:DiceRoller} {{header=@{name} ^{rolls} @{dice_roller_input}}} @{dice_roller_template} {{reroll=[r](~dice_roller_open)}}"><span data-i18n="dice-roller-roll">Roll</span></button>
|
||
</div>
|
||
<div class="sheet-run-roller">
|
||
<input type="hidden" name="attr_run_wounds" value="@{wound_mod}">
|
||
<input type="hidden" name="attr_run_fatigue" value="0">
|
||
<input type="hidden" name="attr_run_code" value="@{run_roll}">
|
||
<button type="roll" name="roll_run" value="@{gm_roll} &{template:RunRoll} {{header=@{name} ^{runs-ellipsis} [[ @{run_code} + @{pace} - @{run_wounds} - @{run_fatigue} + ?{@{query_modifier}|0} ]]^{exclamation-mark}}} {{content=^{run} (@{pace} + @{run_code}) + ^{mod} (?{@{query_modifier}|0}) - ^{penalty} ([[ @{run_wounds} + @{run_fatigue} ]])}}"><span data-i18n="dice-roller-run">Run</span></button>
|
||
</div>
|
||
<div class="sheet-raise-calculator">
|
||
<button type="roll" name="roll_raise_calculator" value="@{gm_roll} &{template:InfoBox} {{content=^{roll-of} (?{@{query_roll_result}}) ^{vs-tn} (?{@{query_target_number}|4}) = [[ floor((?{@{query_roll_result}} - ?{@{query_target_number}|4}) / 4) ]] ^{raises}}}"><span data-i18n="raise-calculator">Raise Calculator</span></button>
|
||
</div>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_query_global_rof" value="1">
|
||
<input type="checkbox" name="attr_toggle_global_rof"><span data-i18n="query-rof">Query RoF</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_query_global_wd" value="-10000-d20">
|
||
<input type="checkbox" name="attr_toggle_global_wd"><span data-i18n="query-wd">Query WD</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_query_global_bonus_wd" value="-10000-d20">
|
||
<input type="checkbox" name="attr_toggle_global_bonus_wd"><span data-i18n="bonus-wd">Bonus WD</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="checkbox" name="attr_gm_roll" value="/w gm"><span data-i18n="gm-roll">GM Roll</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_toggle_custom_button_1">
|
||
<div class="sheet-custom-button">
|
||
<button type="roll" name="roll_custom_button_1" value="@{custom_button_1_macro}"><span name="attr_rename_custom_button_1">UnShake</span></button>
|
||
</div>
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_toggle_custom_button_2">
|
||
<div class="sheet-custom-button">
|
||
<button type="roll" name="roll_custom_button_2" value="@{custom_button_2_macro}"><span name="attr_rename_custom_button_2">Button #2</span></button>
|
||
</div>
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_toggle_custom_button_3">
|
||
<div class="sheet-custom-button">
|
||
<button type="roll" name="roll_custom_button_3" value="@{custom_button_3_macro}"><span name="attr_rename_custom_button_3">Button #3</span></button>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-block sheet-extra-attributes">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__title"><span data-i18n="attributes">Attributes</span></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_simple_attributes_visibility_toggle" checked>
|
||
<div class="sheet-container">
|
||
<div class="sheet-simple-trait sheet-simple-trait--attribute">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_agility">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_agility" value="@{agility_roll_body} {{wd=@{agility_wd}}} {{wdroll=[[ @{agility_extra_wd_roll}!cs2 + (@{agility_untrained_mod})[Untrained] + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_agility)}}"><span name="attr_rename_agility">Agility</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_agility_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_agility}}} {{trait=@{rename_agility}}} {{traitdie=d4}} {{flat=@{agility_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{agility_global_wd_roll} @{agility_global_bonus_wd_roll} {{wd=@{agility_wd}}} {{wdroll=[[ @{agility_extra_wd_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_agility_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_agility_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_agility}}} {{trait=@{rename_agility}}} {{traitdie=d6}} {{flat=@{agility_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{agility_global_wd_roll} @{agility_global_bonus_wd_roll} {{wd=@{agility_wd}}} {{wdroll=[[ @{agility_extra_wd_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_agility_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_agility_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_agility}}} {{trait=@{rename_agility}}} {{traitdie=d8}} {{flat=@{agility_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{agility_global_wd_roll} @{agility_global_bonus_wd_roll} {{wd=@{agility_wd}}} {{wdroll=[[ @{agility_extra_wd_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_agility_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_agility_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_agility}}} {{trait=@{rename_agility}}} {{traitdie=d10}} {{flat=@{agility_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{agility_global_wd_roll} @{agility_global_bonus_wd_roll} {{wd=@{agility_wd}}} {{wdroll=[[ @{agility_extra_wd_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_agility_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_agility_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_agility}}} {{trait=@{rename_agility}}} {{traitdie=d12}} {{flat=@{agility_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{agility_global_wd_roll} @{agility_global_bonus_wd_roll} {{wd=@{agility_wd}}} {{wdroll=[[ @{agility_extra_wd_roll}!cs2 + (@{agility_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_agility_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_agility_full_code">d4</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_agility" placeholder="d4" value="d4" spellcheck="false">
|
||
<input type="text" name="attr_agility_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_agility_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-simple-trait sheet-simple-trait--attribute">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_smarts">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_smarts" value="@{smarts_roll_body} {{wd=@{smarts_wd}}} {{wdroll=[[ @{smarts_extra_wd_roll}!cs2 + (@{smarts_untrained_mod})[Untrained] + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_smarts)}}"><span name="attr_rename_smarts">Smarts</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_smarts_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_smarts}}} {{trait=@{rename_smarts}}} {{traitdie=d4}} {{flat=@{smarts_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{smarts_global_wd_roll} @{smarts_global_bonus_wd_roll} {{wd=@{smarts_wd}}} {{wdroll=[[ @{smarts_extra_wd_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_smarts_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_smarts_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_smarts}}} {{trait=@{rename_smarts}}} {{traitdie=d6}} {{flat=@{smarts_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{smarts_global_wd_roll} @{smarts_global_bonus_wd_roll} {{wd=@{smarts_wd}}} {{wdroll=[[ @{smarts_extra_wd_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_smarts_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_smarts_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_smarts}}} {{trait=@{rename_smarts}}} {{traitdie=d8}} {{flat=@{smarts_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{smarts_global_wd_roll} @{smarts_global_bonus_wd_roll} {{wd=@{smarts_wd}}} {{wdroll=[[ @{smarts_extra_wd_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_smarts_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_smarts_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_smarts}}} {{trait=@{rename_smarts}}} {{traitdie=d10}} {{flat=@{smarts_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{smarts_global_wd_roll} @{smarts_global_bonus_wd_roll} {{wd=@{smarts_wd}}} {{wdroll=[[ @{smarts_extra_wd_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_smarts_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_smarts_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_smarts}}} {{trait=@{rename_smarts}}} {{traitdie=d12}} {{flat=@{smarts_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{smarts_global_wd_roll} @{smarts_global_bonus_wd_roll} {{wd=@{smarts_wd}}} {{wdroll=[[ @{smarts_extra_wd_roll}!cs2 + (@{smarts_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_smarts_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_smarts_full_code">d4</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_smarts" placeholder="d4" value="d4" spellcheck="false">
|
||
<input type="text" name="attr_smarts_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_smarts_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-simple-trait sheet-simple-trait--attribute">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_spirit">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_spirit" value="@{spirit_roll_body} {{wd=@{spirit_wd}}} {{wdroll=[[ @{spirit_extra_wd_roll}!cs2 + (@{spirit_untrained_mod})[Untrained] + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spirit)}}"><span name="attr_rename_spirit">Spirit</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_spirit_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spirit}}} {{trait=@{rename_spirit}}} {{traitdie=d4}} {{flat=@{spirit_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spirit_global_wd_roll} @{spirit_global_bonus_wd_roll} {{wd=@{spirit_wd}}} {{wdroll=[[ @{spirit_extra_wd_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spirit_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_spirit_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spirit}}} {{trait=@{rename_spirit}}} {{traitdie=d6}} {{flat=@{spirit_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spirit_global_wd_roll} @{spirit_global_bonus_wd_roll} {{wd=@{spirit_wd}}} {{wdroll=[[ @{spirit_extra_wd_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spirit_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_spirit_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spirit}}} {{trait=@{rename_spirit}}} {{traitdie=d8}} {{flat=@{spirit_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spirit_global_wd_roll} @{spirit_global_bonus_wd_roll} {{wd=@{spirit_wd}}} {{wdroll=[[ @{spirit_extra_wd_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spirit_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_spirit_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spirit}}} {{trait=@{rename_spirit}}} {{traitdie=d10}} {{flat=@{spirit_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spirit_global_wd_roll} @{spirit_global_bonus_wd_roll} {{wd=@{spirit_wd}}} {{wdroll=[[ @{spirit_extra_wd_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spirit_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_spirit_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spirit}}} {{trait=@{rename_spirit}}} {{traitdie=d12}} {{flat=@{spirit_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spirit_global_wd_roll} @{spirit_global_bonus_wd_roll} {{wd=@{spirit_wd}}} {{wdroll=[[ @{spirit_extra_wd_roll}!cs2 + (@{spirit_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spirit_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_spirit_full_code">d4</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_spirit" placeholder="d4" value="d4" spellcheck="false">
|
||
<input type="text" name="attr_spirit_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_spirit_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-simple-trait sheet-simple-trait--attribute">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_strength">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_strength" value="@{strength_roll_body} {{wd=@{strength_wd}}} {{wdroll=[[ @{strength_extra_wd_roll}!cs2 + (@{strength_untrained_mod})[Untrained] + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_strength)}}"><span name="attr_rename_strength">Strength</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_strength_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_strength}}} {{trait=@{rename_strength}}} {{traitdie=d4}} {{flat=@{strength_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{strength_global_wd_roll} @{strength_global_bonus_wd_roll} {{wd=@{strength_wd}}} {{wdroll=[[ @{strength_extra_wd_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_strength_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_strength_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_strength}}} {{trait=@{rename_strength}}} {{traitdie=d6}} {{flat=@{strength_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{strength_global_wd_roll} @{strength_global_bonus_wd_roll} {{wd=@{strength_wd}}} {{wdroll=[[ @{strength_extra_wd_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_strength_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_strength_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_strength}}} {{trait=@{rename_strength}}} {{traitdie=d8}} {{flat=@{strength_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{strength_global_wd_roll} @{strength_global_bonus_wd_roll} {{wd=@{strength_wd}}} {{wdroll=[[ @{strength_extra_wd_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_strength_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_strength_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_strength}}} {{trait=@{rename_strength}}} {{traitdie=d10}} {{flat=@{strength_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{strength_global_wd_roll} @{strength_global_bonus_wd_roll} {{wd=@{strength_wd}}} {{wdroll=[[ @{strength_extra_wd_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_strength_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_strength_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_strength}}} {{trait=@{rename_strength}}} {{traitdie=d12}} {{flat=@{strength_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{strength_global_wd_roll} @{strength_global_bonus_wd_roll} {{wd=@{strength_wd}}} {{wdroll=[[ @{strength_extra_wd_roll}!cs2 + (@{strength_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_strength_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_strength_full_code">d4</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_strength" placeholder="d4" value="d4" spellcheck="false">
|
||
<input type="text" name="attr_strength_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_strength_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-simple-trait sheet-simple-trait--attribute">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_vigor">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_vigor" value="@{vigor_roll_body} {{wd=@{vigor_wd}}} {{wdroll=[[ @{vigor_extra_wd_roll}!cs2 + (@{vigor_untrained_mod})[Untrained] + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_vigor)}}"><span name="attr_rename_vigor">Vigor</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_vigor_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_vigor}}} {{trait=@{rename_vigor}}} {{traitdie=d4}} {{flat=@{vigor_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{vigor_global_wd_roll} @{vigor_global_bonus_wd_roll} {{wd=@{vigor_wd}}} {{wdroll=[[ @{vigor_extra_wd_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_vigor_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_vigor_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_vigor}}} {{trait=@{rename_vigor}}} {{traitdie=d6}} {{flat=@{vigor_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{vigor_global_wd_roll} @{vigor_global_bonus_wd_roll} {{wd=@{vigor_wd}}} {{wdroll=[[ @{vigor_extra_wd_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_vigor_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_vigor_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_vigor}}} {{trait=@{rename_vigor}}} {{traitdie=d8}} {{flat=@{vigor_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{vigor_global_wd_roll} @{vigor_global_bonus_wd_roll} {{wd=@{vigor_wd}}} {{wdroll=[[ @{vigor_extra_wd_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_vigor_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_vigor_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_vigor}}} {{trait=@{rename_vigor}}} {{traitdie=d10}} {{flat=@{vigor_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{vigor_global_wd_roll} @{vigor_global_bonus_wd_roll} {{wd=@{vigor_wd}}} {{wdroll=[[ @{vigor_extra_wd_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_vigor_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_vigor_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_vigor}}} {{trait=@{rename_vigor}}} {{traitdie=d12}} {{flat=@{vigor_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{vigor_global_wd_roll} @{vigor_global_bonus_wd_roll} {{wd=@{vigor_wd}}} {{wdroll=[[ @{vigor_extra_wd_roll}!cs2 + (@{vigor_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_vigor_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_vigor_full_code">d4</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_vigor" placeholder="d4" value="d4" spellcheck="false">
|
||
<input type="text" name="attr_vigor_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_vigor_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-block sheet-extra-skills">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__title"><span data-i18n="skills">Skills</span></div>
|
||
</div>
|
||
<input class="sheet-extra-skills__selection-toggle" type="checkbox" name="attr_simple_skill_selection_toggle">
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_simple_skills_visibility_toggle" checked>
|
||
<div class="sheet-container">
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_academics"><span name="attr_rename_academics">Academics</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_academics">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_academics">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_academics" value="@{academics_roll_body} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_extra_wd_roll}!cs2 + (@{academics_untrained_mod})[Untrained] + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_academics)}}"><span name="attr_rename_academics">Academics</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_academics_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d4}} {{flat=@{academics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{academics_global_wd_roll} @{academics_global_bonus_wd_roll} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_extra_wd_roll}!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_academics_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_academics_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d6}} {{flat=@{academics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{academics_global_wd_roll} @{academics_global_bonus_wd_roll} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_extra_wd_roll}!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_academics_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_academics_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d8}} {{flat=@{academics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{academics_global_wd_roll} @{academics_global_bonus_wd_roll} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_extra_wd_roll}!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_academics_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_academics_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d10}} {{flat=@{academics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{academics_global_wd_roll} @{academics_global_bonus_wd_roll} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_extra_wd_roll}!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_academics_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_academics_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_academics}}} {{trait=@{rename_academics}}} {{traitdie=d12}} {{flat=@{academics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{academics_global_wd_roll} @{academics_global_bonus_wd_roll} {{wd=@{academics_wd}}} {{wdroll=[[ @{academics_extra_wd_roll}!cs2 + (@{academics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_academics_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_academics_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_academics" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_academics_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_academics_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_athletics" checked><span name="attr_rename_athletics">Athletics</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_athletics" checked>
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_athletics">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_athletics" value="@{athletics_roll_body} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_extra_wd_roll}!cs2 + (@{athletics_untrained_mod})[Untrained] + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_athletics)}}"><span name="attr_rename_athletics">Athletics</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_athletics_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d4}} {{flat=@{athletics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{athletics_global_wd_roll} @{athletics_global_bonus_wd_roll} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_extra_wd_roll}!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_athletics_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_athletics_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d6}} {{flat=@{athletics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{athletics_global_wd_roll} @{athletics_global_bonus_wd_roll} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_extra_wd_roll}!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_athletics_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_athletics_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d8}} {{flat=@{athletics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{athletics_global_wd_roll} @{athletics_global_bonus_wd_roll} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_extra_wd_roll}!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_athletics_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_athletics_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d10}} {{flat=@{athletics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{athletics_global_wd_roll} @{athletics_global_bonus_wd_roll} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_extra_wd_roll}!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_athletics_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_athletics_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_athletics}}} {{trait=@{rename_athletics}}} {{traitdie=d12}} {{flat=@{athletics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{athletics_global_wd_roll} @{athletics_global_bonus_wd_roll} {{wd=@{athletics_wd}}} {{wdroll=[[ @{athletics_extra_wd_roll}!cs2 + (@{athletics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_athletics_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_athletics_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_athletics" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_athletics_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_athletics_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_battle"><span name="attr_rename_battle">Battle</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_battle">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_battle">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_battle" value="@{battle_roll_body} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_extra_wd_roll}!cs2 + (@{battle_untrained_mod})[Untrained] + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_battle)}}"><span name="attr_rename_battle">Battle</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_battle_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d4}} {{flat=@{battle_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{battle_global_wd_roll} @{battle_global_bonus_wd_roll} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_extra_wd_roll}!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_battle_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_battle_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d6}} {{flat=@{battle_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{battle_global_wd_roll} @{battle_global_bonus_wd_roll} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_extra_wd_roll}!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_battle_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_battle_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d8}} {{flat=@{battle_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{battle_global_wd_roll} @{battle_global_bonus_wd_roll} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_extra_wd_roll}!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_battle_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_battle_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d10}} {{flat=@{battle_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{battle_global_wd_roll} @{battle_global_bonus_wd_roll} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_extra_wd_roll}!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_battle_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_battle_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_battle}}} {{trait=@{rename_battle}}} {{traitdie=d12}} {{flat=@{battle_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{battle_global_wd_roll} @{battle_global_bonus_wd_roll} {{wd=@{battle_wd}}} {{wdroll=[[ @{battle_extra_wd_roll}!cs2 + (@{battle_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_battle_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_battle_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_battle" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_battle_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_battle_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_boating"><span name="attr_rename_boating">Boating</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_boating">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_boating">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_boating" value="@{boating_roll_body} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_extra_wd_roll}!cs2 + (@{boating_untrained_mod})[Untrained] + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_boating)}}"><span name="attr_rename_boating">Boating</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_boating_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d4}} {{flat=@{boating_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{boating_global_wd_roll} @{boating_global_bonus_wd_roll} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_extra_wd_roll}!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_boating_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_boating_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d6}} {{flat=@{boating_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{boating_global_wd_roll} @{boating_global_bonus_wd_roll} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_extra_wd_roll}!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_boating_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_boating_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d8}} {{flat=@{boating_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{boating_global_wd_roll} @{boating_global_bonus_wd_roll} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_extra_wd_roll}!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_boating_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_boating_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d10}} {{flat=@{boating_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{boating_global_wd_roll} @{boating_global_bonus_wd_roll} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_extra_wd_roll}!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_boating_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_boating_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_boating}}} {{trait=@{rename_boating}}} {{traitdie=d12}} {{flat=@{boating_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{boating_global_wd_roll} @{boating_global_bonus_wd_roll} {{wd=@{boating_wd}}} {{wdroll=[[ @{boating_extra_wd_roll}!cs2 + (@{boating_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_boating_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_boating_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_boating" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_boating_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_boating_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_driving"><span name="attr_rename_driving">Driving</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_driving">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_driving">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_driving" value="@{driving_roll_body} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_extra_wd_roll}!cs2 + (@{driving_untrained_mod})[Untrained] + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_driving)}}"><span name="attr_rename_driving">Driving</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_driving_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d4}} {{flat=@{driving_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{driving_global_wd_roll} @{driving_global_bonus_wd_roll} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_extra_wd_roll}!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_driving_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_driving_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d6}} {{flat=@{driving_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{driving_global_wd_roll} @{driving_global_bonus_wd_roll} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_extra_wd_roll}!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_driving_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_driving_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d8}} {{flat=@{driving_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{driving_global_wd_roll} @{driving_global_bonus_wd_roll} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_extra_wd_roll}!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_driving_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_driving_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d10}} {{flat=@{driving_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{driving_global_wd_roll} @{driving_global_bonus_wd_roll} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_extra_wd_roll}!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_driving_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_driving_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_driving}}} {{trait=@{rename_driving}}} {{traitdie=d12}} {{flat=@{driving_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{driving_global_wd_roll} @{driving_global_bonus_wd_roll} {{wd=@{driving_wd}}} {{wdroll=[[ @{driving_extra_wd_roll}!cs2 + (@{driving_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_driving_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_driving_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_driving" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_driving_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_driving_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_common_knowledge"><span name="attr_rename_common_knowledge">Common Knowl.</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_common_knowledge">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_common_knowledge">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_common_knowledge" value="@{common_knowledge_roll_body} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_extra_wd_roll}!cs2 + (@{common_knowledge_untrained_mod})[Untrained] + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_common_knowledge)}}"><span name="attr_rename_common_knowledge">Common Knowl.</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_common_knowledge_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d4}} {{flat=@{common_knowledge_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{common_knowledge_global_wd_roll} @{common_knowledge_global_bonus_wd_roll} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_extra_wd_roll}!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_common_knowledge_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_common_knowledge_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d6}} {{flat=@{common_knowledge_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{common_knowledge_global_wd_roll} @{common_knowledge_global_bonus_wd_roll} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_extra_wd_roll}!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_common_knowledge_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_common_knowledge_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d8}} {{flat=@{common_knowledge_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{common_knowledge_global_wd_roll} @{common_knowledge_global_bonus_wd_roll} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_extra_wd_roll}!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_common_knowledge_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_common_knowledge_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d10}} {{flat=@{common_knowledge_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{common_knowledge_global_wd_roll} @{common_knowledge_global_bonus_wd_roll} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_extra_wd_roll}!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_common_knowledge_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_common_knowledge_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_common_knowledge}}} {{trait=@{rename_common_knowledge}}} {{traitdie=d12}} {{flat=@{common_knowledge_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{common_knowledge_global_wd_roll} @{common_knowledge_global_bonus_wd_roll} {{wd=@{common_knowledge_wd}}} {{wdroll=[[ @{common_knowledge_extra_wd_roll}!cs2 + (@{common_knowledge_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_common_knowledge_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_common_knowledge_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_common_knowledge" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_common_knowledge_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_common_knowledge_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_electronics"><span name="attr_rename_electronics">Electronics</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_electronics">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_electronics">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_electronics" value="@{electronics_roll_body} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_extra_wd_roll}!cs2 + (@{electronics_untrained_mod})[Untrained] + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_electronics)}}"><span name="attr_rename_electronics">Electronics</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_electronics_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d4}} {{flat=@{electronics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{electronics_global_wd_roll} @{electronics_global_bonus_wd_roll} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_extra_wd_roll}!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_electronics_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_electronics_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d6}} {{flat=@{electronics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{electronics_global_wd_roll} @{electronics_global_bonus_wd_roll} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_extra_wd_roll}!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_electronics_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_electronics_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d8}} {{flat=@{electronics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{electronics_global_wd_roll} @{electronics_global_bonus_wd_roll} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_extra_wd_roll}!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_electronics_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_electronics_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d10}} {{flat=@{electronics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{electronics_global_wd_roll} @{electronics_global_bonus_wd_roll} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_extra_wd_roll}!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_electronics_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_electronics_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_electronics}}} {{trait=@{rename_electronics}}} {{traitdie=d12}} {{flat=@{electronics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{electronics_global_wd_roll} @{electronics_global_bonus_wd_roll} {{wd=@{electronics_wd}}} {{wdroll=[[ @{electronics_extra_wd_roll}!cs2 + (@{electronics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_electronics_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_electronics_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_electronics" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_electronics_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_electronics_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_faith"><span name="attr_rename_faith">Faith</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_faith">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_faith">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_faith" value="@{faith_roll_body} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_extra_wd_roll}!cs2 + (@{faith_untrained_mod})[Untrained] + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_faith)}}"><span name="attr_rename_faith">Faith</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_faith_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d4}} {{flat=@{faith_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{faith_global_wd_roll} @{faith_global_bonus_wd_roll} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_extra_wd_roll}!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_faith_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_faith_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d6}} {{flat=@{faith_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{faith_global_wd_roll} @{faith_global_bonus_wd_roll} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_extra_wd_roll}!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_faith_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_faith_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d8}} {{flat=@{faith_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{faith_global_wd_roll} @{faith_global_bonus_wd_roll} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_extra_wd_roll}!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_faith_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_faith_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d10}} {{flat=@{faith_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{faith_global_wd_roll} @{faith_global_bonus_wd_roll} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_extra_wd_roll}!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_faith_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_faith_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_faith}}} {{trait=@{rename_faith}}} {{traitdie=d12}} {{flat=@{faith_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{faith_global_wd_roll} @{faith_global_bonus_wd_roll} {{wd=@{faith_wd}}} {{wdroll=[[ @{faith_extra_wd_roll}!cs2 + (@{faith_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_faith_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_faith_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_faith" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_faith_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_faith_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_fighting"><span name="attr_rename_fighting">Fighting</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_fighting">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_fighting">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_fighting" value="@{fighting_roll_body} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_extra_wd_roll}!cs2 + (@{fighting_untrained_mod})[Untrained] + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_fighting)}}"><span name="attr_rename_fighting">Fighting</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_fighting_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d4}} {{flat=@{fighting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{fighting_global_wd_roll} @{fighting_global_bonus_wd_roll} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_extra_wd_roll}!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_fighting_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_fighting_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d6}} {{flat=@{fighting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{fighting_global_wd_roll} @{fighting_global_bonus_wd_roll} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_extra_wd_roll}!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_fighting_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_fighting_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d8}} {{flat=@{fighting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{fighting_global_wd_roll} @{fighting_global_bonus_wd_roll} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_extra_wd_roll}!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_fighting_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_fighting_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d10}} {{flat=@{fighting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{fighting_global_wd_roll} @{fighting_global_bonus_wd_roll} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_extra_wd_roll}!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_fighting_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_fighting_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_fighting}}} {{trait=@{rename_fighting}}} {{traitdie=d12}} {{flat=@{fighting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{fighting_global_wd_roll} @{fighting_global_bonus_wd_roll} {{wd=@{fighting_wd}}} {{wdroll=[[ @{fighting_extra_wd_roll}!cs2 + (@{fighting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_fighting_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_fighting_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_fighting" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_fighting_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_fighting_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_focus"><span name="attr_rename_focus">Focus</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_focus">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_focus">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_focus" value="@{focus_roll_body} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_extra_wd_roll}!cs2 + (@{focus_untrained_mod})[Untrained] + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_focus)}}"><span name="attr_rename_focus">Focus</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_focus_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d4}} {{flat=@{focus_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{focus_global_wd_roll} @{focus_global_bonus_wd_roll} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_extra_wd_roll}!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_focus_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_focus_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d6}} {{flat=@{focus_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{focus_global_wd_roll} @{focus_global_bonus_wd_roll} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_extra_wd_roll}!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_focus_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_focus_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d8}} {{flat=@{focus_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{focus_global_wd_roll} @{focus_global_bonus_wd_roll} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_extra_wd_roll}!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_focus_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_focus_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d10}} {{flat=@{focus_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{focus_global_wd_roll} @{focus_global_bonus_wd_roll} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_extra_wd_roll}!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_focus_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_focus_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_focus}}} {{trait=@{rename_focus}}} {{traitdie=d12}} {{flat=@{focus_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{focus_global_wd_roll} @{focus_global_bonus_wd_roll} {{wd=@{focus_wd}}} {{wdroll=[[ @{focus_extra_wd_roll}!cs2 + (@{focus_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_focus_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_focus_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_focus" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_focus_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_focus_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_gambling"><span name="attr_rename_gambling">Gambling</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_gambling">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_gambling">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_gambling" value="@{gambling_roll_body} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_extra_wd_roll}!cs2 + (@{gambling_untrained_mod})[Untrained] + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_gambling)}}"><span name="attr_rename_gambling">Gambling</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_gambling_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d4}} {{flat=@{gambling_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{gambling_global_wd_roll} @{gambling_global_bonus_wd_roll} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_extra_wd_roll}!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_gambling_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_gambling_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d6}} {{flat=@{gambling_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{gambling_global_wd_roll} @{gambling_global_bonus_wd_roll} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_extra_wd_roll}!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_gambling_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_gambling_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d8}} {{flat=@{gambling_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{gambling_global_wd_roll} @{gambling_global_bonus_wd_roll} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_extra_wd_roll}!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_gambling_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_gambling_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d10}} {{flat=@{gambling_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{gambling_global_wd_roll} @{gambling_global_bonus_wd_roll} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_extra_wd_roll}!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_gambling_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_gambling_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_gambling}}} {{trait=@{rename_gambling}}} {{traitdie=d12}} {{flat=@{gambling_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{gambling_global_wd_roll} @{gambling_global_bonus_wd_roll} {{wd=@{gambling_wd}}} {{wdroll=[[ @{gambling_extra_wd_roll}!cs2 + (@{gambling_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_gambling_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_gambling_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_gambling" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_gambling_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_gambling_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_hacking"><span name="attr_rename_hacking">Hacking</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_hacking">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_hacking">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_hacking" value="@{hacking_roll_body} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_extra_wd_roll}!cs2 + (@{hacking_untrained_mod})[Untrained] + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_hacking)}}"><span name="attr_rename_hacking">Hacking</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_hacking_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d4}} {{flat=@{hacking_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{hacking_global_wd_roll} @{hacking_global_bonus_wd_roll} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_extra_wd_roll}!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_hacking_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_hacking_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d6}} {{flat=@{hacking_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{hacking_global_wd_roll} @{hacking_global_bonus_wd_roll} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_extra_wd_roll}!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_hacking_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_hacking_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d8}} {{flat=@{hacking_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{hacking_global_wd_roll} @{hacking_global_bonus_wd_roll} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_extra_wd_roll}!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_hacking_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_hacking_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d10}} {{flat=@{hacking_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{hacking_global_wd_roll} @{hacking_global_bonus_wd_roll} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_extra_wd_roll}!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_hacking_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_hacking_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_hacking}}} {{trait=@{rename_hacking}}} {{traitdie=d12}} {{flat=@{hacking_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{hacking_global_wd_roll} @{hacking_global_bonus_wd_roll} {{wd=@{hacking_wd}}} {{wdroll=[[ @{hacking_extra_wd_roll}!cs2 + (@{hacking_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_hacking_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_hacking_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_hacking" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_hacking_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_hacking_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_healing"><span name="attr_rename_healing">Healing</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_healing">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_healing">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_healing" value="@{healing_roll_body} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_extra_wd_roll}!cs2 + (@{healing_untrained_mod})[Untrained] + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_healing)}}"><span name="attr_rename_healing">Healing</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_healing_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d4}} {{flat=@{healing_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{healing_global_wd_roll} @{healing_global_bonus_wd_roll} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_extra_wd_roll}!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_healing_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_healing_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d6}} {{flat=@{healing_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{healing_global_wd_roll} @{healing_global_bonus_wd_roll} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_extra_wd_roll}!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_healing_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_healing_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d8}} {{flat=@{healing_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{healing_global_wd_roll} @{healing_global_bonus_wd_roll} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_extra_wd_roll}!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_healing_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_healing_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d10}} {{flat=@{healing_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{healing_global_wd_roll} @{healing_global_bonus_wd_roll} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_extra_wd_roll}!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_healing_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_healing_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_healing}}} {{trait=@{rename_healing}}} {{traitdie=d12}} {{flat=@{healing_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{healing_global_wd_roll} @{healing_global_bonus_wd_roll} {{wd=@{healing_wd}}} {{wdroll=[[ @{healing_extra_wd_roll}!cs2 + (@{healing_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_healing_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_healing_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_healing" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_healing_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_healing_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_intimidation"><span name="attr_rename_intimidation">Intimidation</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_intimidation">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_intimidation">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_intimidation" value="@{intimidation_roll_body} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_extra_wd_roll}!cs2 + (@{intimidation_untrained_mod})[Untrained] + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_intimidation)}}"><span name="attr_rename_intimidation">Intimidation</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_intimidation_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d4}} {{flat=@{intimidation_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{intimidation_global_wd_roll} @{intimidation_global_bonus_wd_roll} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_extra_wd_roll}!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_intimidation_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_intimidation_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d6}} {{flat=@{intimidation_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{intimidation_global_wd_roll} @{intimidation_global_bonus_wd_roll} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_extra_wd_roll}!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_intimidation_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_intimidation_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d8}} {{flat=@{intimidation_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{intimidation_global_wd_roll} @{intimidation_global_bonus_wd_roll} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_extra_wd_roll}!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_intimidation_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_intimidation_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d10}} {{flat=@{intimidation_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{intimidation_global_wd_roll} @{intimidation_global_bonus_wd_roll} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_extra_wd_roll}!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_intimidation_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_intimidation_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_intimidation}}} {{trait=@{rename_intimidation}}} {{traitdie=d12}} {{flat=@{intimidation_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{intimidation_global_wd_roll} @{intimidation_global_bonus_wd_roll} {{wd=@{intimidation_wd}}} {{wdroll=[[ @{intimidation_extra_wd_roll}!cs2 + (@{intimidation_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_intimidation_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_intimidation_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_intimidation" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_intimidation_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_intimidation_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_language"><span name="attr_rename_language">Language</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_language">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_language">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_language" value="@{language_roll_body} {{wd=@{language_wd}}} {{wdroll=[[ @{language_extra_wd_roll}!cs2 + (@{language_untrained_mod})[Untrained] + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_language)}}"><span name="attr_rename_language">Language</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_language_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d4}} {{flat=@{language_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{language_global_wd_roll} @{language_global_bonus_wd_roll} {{wd=@{language_wd}}} {{wdroll=[[ @{language_extra_wd_roll}!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_language_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_language_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d6}} {{flat=@{language_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{language_global_wd_roll} @{language_global_bonus_wd_roll} {{wd=@{language_wd}}} {{wdroll=[[ @{language_extra_wd_roll}!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_language_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_language_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d8}} {{flat=@{language_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{language_global_wd_roll} @{language_global_bonus_wd_roll} {{wd=@{language_wd}}} {{wdroll=[[ @{language_extra_wd_roll}!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_language_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_language_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d10}} {{flat=@{language_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{language_global_wd_roll} @{language_global_bonus_wd_roll} {{wd=@{language_wd}}} {{wdroll=[[ @{language_extra_wd_roll}!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_language_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_language_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_language}}} {{trait=@{rename_language}}} {{traitdie=d12}} {{flat=@{language_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{language_global_wd_roll} @{language_global_bonus_wd_roll} {{wd=@{language_wd}}} {{wdroll=[[ @{language_extra_wd_roll}!cs2 + (@{language_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_language_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_language_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_language" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_language_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_language_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_magic"><span name="attr_rename_magic">MAGIC</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_magic">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_magic">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_magic" value="@{magic_roll_body} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_extra_wd_roll}!cs2 + (@{magic_untrained_mod})[Untrained] + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_magic)}}"><span name="attr_rename_magic">MAGIC</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_magic_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d4}} {{flat=@{magic_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{magic_global_wd_roll} @{magic_global_bonus_wd_roll} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_extra_wd_roll}!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_magic_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_magic_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d6}} {{flat=@{magic_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{magic_global_wd_roll} @{magic_global_bonus_wd_roll} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_extra_wd_roll}!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_magic_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_magic_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d8}} {{flat=@{magic_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{magic_global_wd_roll} @{magic_global_bonus_wd_roll} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_extra_wd_roll}!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_magic_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_magic_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d10}} {{flat=@{magic_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{magic_global_wd_roll} @{magic_global_bonus_wd_roll} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_extra_wd_roll}!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_magic_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_magic_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_magic}}} {{trait=@{rename_magic}}} {{traitdie=d12}} {{flat=@{magic_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{magic_global_wd_roll} @{magic_global_bonus_wd_roll} {{wd=@{magic_wd}}} {{wdroll=[[ @{magic_extra_wd_roll}!cs2 + (@{magic_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_magic_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_magic_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_magic" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_magic_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_magic_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_notice" checked><span name="attr_rename_notice">Notice</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_notice" checked>
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_notice">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_notice" value="@{notice_roll_body} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_extra_wd_roll}!cs2 + (@{notice_untrained_mod})[Untrained] + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_notice)}}"><span name="attr_rename_notice">Notice</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_notice_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d4}} {{flat=@{notice_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{notice_global_wd_roll} @{notice_global_bonus_wd_roll} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_extra_wd_roll}!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_notice_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_notice_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d6}} {{flat=@{notice_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{notice_global_wd_roll} @{notice_global_bonus_wd_roll} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_extra_wd_roll}!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_notice_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_notice_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d8}} {{flat=@{notice_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{notice_global_wd_roll} @{notice_global_bonus_wd_roll} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_extra_wd_roll}!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_notice_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_notice_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d10}} {{flat=@{notice_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{notice_global_wd_roll} @{notice_global_bonus_wd_roll} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_extra_wd_roll}!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_notice_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_notice_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_notice}}} {{trait=@{rename_notice}}} {{traitdie=d12}} {{flat=@{notice_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{notice_global_wd_roll} @{notice_global_bonus_wd_roll} {{wd=@{notice_wd}}} {{wdroll=[[ @{notice_extra_wd_roll}!cs2 + (@{notice_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_notice_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_notice_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_notice" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_notice_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_notice_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_occult"><span name="attr_rename_occult">Occult</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_occult">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_occult">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_occult" value="@{occult_roll_body} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_extra_wd_roll}!cs2 + (@{occult_untrained_mod})[Untrained] + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_occult)}}"><span name="attr_rename_occult">Occult</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_occult_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d4}} {{flat=@{occult_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{occult_global_wd_roll} @{occult_global_bonus_wd_roll} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_extra_wd_roll}!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_occult_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_occult_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d6}} {{flat=@{occult_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{occult_global_wd_roll} @{occult_global_bonus_wd_roll} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_extra_wd_roll}!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_occult_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_occult_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d8}} {{flat=@{occult_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{occult_global_wd_roll} @{occult_global_bonus_wd_roll} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_extra_wd_roll}!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_occult_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_occult_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d10}} {{flat=@{occult_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{occult_global_wd_roll} @{occult_global_bonus_wd_roll} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_extra_wd_roll}!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_occult_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_occult_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_occult}}} {{trait=@{rename_occult}}} {{traitdie=d12}} {{flat=@{occult_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{occult_global_wd_roll} @{occult_global_bonus_wd_roll} {{wd=@{occult_wd}}} {{wdroll=[[ @{occult_extra_wd_roll}!cs2 + (@{occult_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_occult_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_occult_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_occult" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_occult_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_occult_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_performance"><span name="attr_rename_performance">Performance</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_performance">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_performance">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_performance" value="@{performance_roll_body} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_extra_wd_roll}!cs2 + (@{performance_untrained_mod})[Untrained] + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_performance)}}"><span name="attr_rename_performance">Performance</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_performance_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d4}} {{flat=@{performance_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{performance_global_wd_roll} @{performance_global_bonus_wd_roll} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_extra_wd_roll}!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_performance_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_performance_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d6}} {{flat=@{performance_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{performance_global_wd_roll} @{performance_global_bonus_wd_roll} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_extra_wd_roll}!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_performance_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_performance_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d8}} {{flat=@{performance_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{performance_global_wd_roll} @{performance_global_bonus_wd_roll} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_extra_wd_roll}!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_performance_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_performance_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d10}} {{flat=@{performance_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{performance_global_wd_roll} @{performance_global_bonus_wd_roll} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_extra_wd_roll}!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_performance_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_performance_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_performance}}} {{trait=@{rename_performance}}} {{traitdie=d12}} {{flat=@{performance_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{performance_global_wd_roll} @{performance_global_bonus_wd_roll} {{wd=@{performance_wd}}} {{wdroll=[[ @{performance_extra_wd_roll}!cs2 + (@{performance_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_performance_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_performance_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_performance" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_performance_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_performance_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_persuasion" checked><span name="attr_rename_persuasion">Persuasion</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_persuasion" checked>
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_persuasion">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_persuasion" value="@{persuasion_roll_body} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_extra_wd_roll}!cs2 + (@{persuasion_untrained_mod})[Untrained] + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_persuasion)}}"><span name="attr_rename_persuasion">Persuasion</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_persuasion_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d4}} {{flat=@{persuasion_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{persuasion_global_wd_roll} @{persuasion_global_bonus_wd_roll} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_extra_wd_roll}!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_persuasion_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_persuasion_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d6}} {{flat=@{persuasion_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{persuasion_global_wd_roll} @{persuasion_global_bonus_wd_roll} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_extra_wd_roll}!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_persuasion_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_persuasion_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d8}} {{flat=@{persuasion_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{persuasion_global_wd_roll} @{persuasion_global_bonus_wd_roll} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_extra_wd_roll}!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_persuasion_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_persuasion_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d10}} {{flat=@{persuasion_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{persuasion_global_wd_roll} @{persuasion_global_bonus_wd_roll} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_extra_wd_roll}!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_persuasion_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_persuasion_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_persuasion}}} {{trait=@{rename_persuasion}}} {{traitdie=d12}} {{flat=@{persuasion_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{persuasion_global_wd_roll} @{persuasion_global_bonus_wd_roll} {{wd=@{persuasion_wd}}} {{wdroll=[[ @{persuasion_extra_wd_roll}!cs2 + (@{persuasion_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_persuasion_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_persuasion_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_persuasion" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_persuasion_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_persuasion_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_piloting"><span name="attr_rename_piloting">Piloting</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_piloting">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_piloting">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_piloting" value="@{piloting_roll_body} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_extra_wd_roll}!cs2 + (@{piloting_untrained_mod})[Untrained] + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_piloting)}}"><span name="attr_rename_piloting">Piloting</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_piloting_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d4}} {{flat=@{piloting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{piloting_global_wd_roll} @{piloting_global_bonus_wd_roll} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_extra_wd_roll}!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_piloting_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_piloting_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d6}} {{flat=@{piloting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{piloting_global_wd_roll} @{piloting_global_bonus_wd_roll} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_extra_wd_roll}!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_piloting_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_piloting_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d8}} {{flat=@{piloting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{piloting_global_wd_roll} @{piloting_global_bonus_wd_roll} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_extra_wd_roll}!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_piloting_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_piloting_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d10}} {{flat=@{piloting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{piloting_global_wd_roll} @{piloting_global_bonus_wd_roll} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_extra_wd_roll}!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_piloting_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_piloting_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_piloting}}} {{trait=@{rename_piloting}}} {{traitdie=d12}} {{flat=@{piloting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{piloting_global_wd_roll} @{piloting_global_bonus_wd_roll} {{wd=@{piloting_wd}}} {{wdroll=[[ @{piloting_extra_wd_roll}!cs2 + (@{piloting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_piloting_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_piloting_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_piloting" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_piloting_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_piloting_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_psionics"><span name="attr_rename_psionics">Psionics</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_psionics">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_psionics">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_psionics" value="@{psionics_roll_body} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_extra_wd_roll}!cs2 + (@{psionics_untrained_mod})[Untrained] + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_psionics)}}"><span name="attr_rename_psionics">Psionics</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_psionics_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d4}} {{flat=@{psionics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{psionics_global_wd_roll} @{psionics_global_bonus_wd_roll} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_extra_wd_roll}!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_psionics_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_psionics_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d6}} {{flat=@{psionics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{psionics_global_wd_roll} @{psionics_global_bonus_wd_roll} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_extra_wd_roll}!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_psionics_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_psionics_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d8}} {{flat=@{psionics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{psionics_global_wd_roll} @{psionics_global_bonus_wd_roll} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_extra_wd_roll}!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_psionics_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_psionics_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d10}} {{flat=@{psionics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{psionics_global_wd_roll} @{psionics_global_bonus_wd_roll} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_extra_wd_roll}!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_psionics_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_psionics_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_psionics}}} {{trait=@{rename_psionics}}} {{traitdie=d12}} {{flat=@{psionics_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{psionics_global_wd_roll} @{psionics_global_bonus_wd_roll} {{wd=@{psionics_wd}}} {{wdroll=[[ @{psionics_extra_wd_roll}!cs2 + (@{psionics_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_psionics_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_psionics_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_psionics" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_psionics_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_psionics_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_repair"><span name="attr_rename_repair">Repair</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_repair">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_repair">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_repair" value="@{repair_roll_body} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_extra_wd_roll}!cs2 + (@{repair_untrained_mod})[Untrained] + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_repair)}}"><span name="attr_rename_repair">Repair</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_repair_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d4}} {{flat=@{repair_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{repair_global_wd_roll} @{repair_global_bonus_wd_roll} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_extra_wd_roll}!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_repair_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_repair_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d6}} {{flat=@{repair_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{repair_global_wd_roll} @{repair_global_bonus_wd_roll} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_extra_wd_roll}!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_repair_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_repair_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d8}} {{flat=@{repair_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{repair_global_wd_roll} @{repair_global_bonus_wd_roll} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_extra_wd_roll}!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_repair_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_repair_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d10}} {{flat=@{repair_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{repair_global_wd_roll} @{repair_global_bonus_wd_roll} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_extra_wd_roll}!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_repair_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_repair_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_repair}}} {{trait=@{rename_repair}}} {{traitdie=d12}} {{flat=@{repair_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{repair_global_wd_roll} @{repair_global_bonus_wd_roll} {{wd=@{repair_wd}}} {{wdroll=[[ @{repair_extra_wd_roll}!cs2 + (@{repair_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_repair_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_repair_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_repair" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_repair_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_repair_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_research"><span name="attr_rename_research">Research</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_research">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_research">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_research" value="@{research_roll_body} {{wd=@{research_wd}}} {{wdroll=[[ @{research_extra_wd_roll}!cs2 + (@{research_untrained_mod})[Untrained] + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_research)}}"><span name="attr_rename_research">Research</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_research_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d4}} {{flat=@{research_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{research_global_wd_roll} @{research_global_bonus_wd_roll} {{wd=@{research_wd}}} {{wdroll=[[ @{research_extra_wd_roll}!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_research_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_research_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d6}} {{flat=@{research_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{research_global_wd_roll} @{research_global_bonus_wd_roll} {{wd=@{research_wd}}} {{wdroll=[[ @{research_extra_wd_roll}!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_research_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_research_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d8}} {{flat=@{research_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{research_global_wd_roll} @{research_global_bonus_wd_roll} {{wd=@{research_wd}}} {{wdroll=[[ @{research_extra_wd_roll}!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_research_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_research_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d10}} {{flat=@{research_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{research_global_wd_roll} @{research_global_bonus_wd_roll} {{wd=@{research_wd}}} {{wdroll=[[ @{research_extra_wd_roll}!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_research_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_research_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_research}}} {{trait=@{rename_research}}} {{traitdie=d12}} {{flat=@{research_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{research_global_wd_roll} @{research_global_bonus_wd_roll} {{wd=@{research_wd}}} {{wdroll=[[ @{research_extra_wd_roll}!cs2 + (@{research_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_research_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_research_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_research" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_research_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_research_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_riding"><span name="attr_rename_riding">Riding</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_riding">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_riding">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_riding" value="@{riding_roll_body} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_extra_wd_roll}!cs2 + (@{riding_untrained_mod})[Untrained] + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_riding)}}"><span name="attr_rename_riding">Riding</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_riding_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d4}} {{flat=@{riding_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{riding_global_wd_roll} @{riding_global_bonus_wd_roll} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_extra_wd_roll}!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_riding_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_riding_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d6}} {{flat=@{riding_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{riding_global_wd_roll} @{riding_global_bonus_wd_roll} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_extra_wd_roll}!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_riding_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_riding_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d8}} {{flat=@{riding_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{riding_global_wd_roll} @{riding_global_bonus_wd_roll} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_extra_wd_roll}!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_riding_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_riding_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d10}} {{flat=@{riding_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{riding_global_wd_roll} @{riding_global_bonus_wd_roll} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_extra_wd_roll}!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_riding_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_riding_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_riding}}} {{trait=@{rename_riding}}} {{traitdie=d12}} {{flat=@{riding_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{riding_global_wd_roll} @{riding_global_bonus_wd_roll} {{wd=@{riding_wd}}} {{wdroll=[[ @{riding_extra_wd_roll}!cs2 + (@{riding_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_riding_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_riding_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_riding" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_riding_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_riding_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_science"><span name="attr_rename_science">Science</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_science">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_science">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_science" value="@{science_roll_body} {{wd=@{science_wd}}} {{wdroll=[[ @{science_extra_wd_roll}!cs2 + (@{science_untrained_mod})[Untrained] + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_science)}}"><span name="attr_rename_science">Science</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_science_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d4}} {{flat=@{science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{science_global_wd_roll} @{science_global_bonus_wd_roll} {{wd=@{science_wd}}} {{wdroll=[[ @{science_extra_wd_roll}!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_science_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_science_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d6}} {{flat=@{science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{science_global_wd_roll} @{science_global_bonus_wd_roll} {{wd=@{science_wd}}} {{wdroll=[[ @{science_extra_wd_roll}!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_science_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_science_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d8}} {{flat=@{science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{science_global_wd_roll} @{science_global_bonus_wd_roll} {{wd=@{science_wd}}} {{wdroll=[[ @{science_extra_wd_roll}!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_science_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_science_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d10}} {{flat=@{science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{science_global_wd_roll} @{science_global_bonus_wd_roll} {{wd=@{science_wd}}} {{wdroll=[[ @{science_extra_wd_roll}!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_science_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_science_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_science}}} {{trait=@{rename_science}}} {{traitdie=d12}} {{flat=@{science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{science_global_wd_roll} @{science_global_bonus_wd_roll} {{wd=@{science_wd}}} {{wdroll=[[ @{science_extra_wd_roll}!cs2 + (@{science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_science_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_science_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_science" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_science_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_science_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_shooting"><span name="attr_rename_shooting">Shooting</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_shooting">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_shooting">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_shooting" value="@{shooting_roll_body} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_extra_wd_roll}!cs2 + (@{shooting_untrained_mod})[Untrained] + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_shooting)}}"><span name="attr_rename_shooting">Shooting</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_shooting_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d4}} {{flat=@{shooting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{shooting_global_wd_roll} @{shooting_global_bonus_wd_roll} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_extra_wd_roll}!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_shooting_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_shooting_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d6}} {{flat=@{shooting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{shooting_global_wd_roll} @{shooting_global_bonus_wd_roll} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_extra_wd_roll}!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_shooting_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_shooting_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d8}} {{flat=@{shooting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{shooting_global_wd_roll} @{shooting_global_bonus_wd_roll} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_extra_wd_roll}!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_shooting_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_shooting_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d10}} {{flat=@{shooting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{shooting_global_wd_roll} @{shooting_global_bonus_wd_roll} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_extra_wd_roll}!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_shooting_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_shooting_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_shooting}}} {{trait=@{rename_shooting}}} {{traitdie=d12}} {{flat=@{shooting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{shooting_global_wd_roll} @{shooting_global_bonus_wd_roll} {{wd=@{shooting_wd}}} {{wdroll=[[ @{shooting_extra_wd_roll}!cs2 + (@{shooting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_shooting_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_shooting_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_shooting" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_shooting_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_shooting_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_spellcasting"><span name="attr_rename_spellcasting">Spellcasting</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_spellcasting">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_spellcasting">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_spellcasting" value="@{spellcasting_roll_body} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_extra_wd_roll}!cs2 + (@{spellcasting_untrained_mod})[Untrained] + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spellcasting)}}"><span name="attr_rename_spellcasting">Spellcasting</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_spellcasting_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d4}} {{flat=@{spellcasting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spellcasting_global_wd_roll} @{spellcasting_global_bonus_wd_roll} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_extra_wd_roll}!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spellcasting_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_spellcasting_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d6}} {{flat=@{spellcasting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spellcasting_global_wd_roll} @{spellcasting_global_bonus_wd_roll} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_extra_wd_roll}!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spellcasting_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_spellcasting_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d8}} {{flat=@{spellcasting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spellcasting_global_wd_roll} @{spellcasting_global_bonus_wd_roll} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_extra_wd_roll}!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spellcasting_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_spellcasting_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d10}} {{flat=@{spellcasting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spellcasting_global_wd_roll} @{spellcasting_global_bonus_wd_roll} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_extra_wd_roll}!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spellcasting_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_spellcasting_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_spellcasting}}} {{trait=@{rename_spellcasting}}} {{traitdie=d12}} {{flat=@{spellcasting_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{spellcasting_global_wd_roll} @{spellcasting_global_bonus_wd_roll} {{wd=@{spellcasting_wd}}} {{wdroll=[[ @{spellcasting_extra_wd_roll}!cs2 + (@{spellcasting_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_spellcasting_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_spellcasting_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_spellcasting" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_spellcasting_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_spellcasting_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_stealth" checked><span name="attr_rename_stealth">Stealth</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_stealth" checked>
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_stealth">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_stealth" value="@{stealth_roll_body} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_extra_wd_roll}!cs2 + (@{stealth_untrained_mod})[Untrained] + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_stealth)}}"><span name="attr_rename_stealth">Stealth</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_stealth_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d4}} {{flat=@{stealth_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{stealth_global_wd_roll} @{stealth_global_bonus_wd_roll} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_extra_wd_roll}!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_stealth_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_stealth_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d6}} {{flat=@{stealth_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{stealth_global_wd_roll} @{stealth_global_bonus_wd_roll} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_extra_wd_roll}!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_stealth_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_stealth_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d8}} {{flat=@{stealth_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{stealth_global_wd_roll} @{stealth_global_bonus_wd_roll} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_extra_wd_roll}!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_stealth_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_stealth_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d10}} {{flat=@{stealth_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{stealth_global_wd_roll} @{stealth_global_bonus_wd_roll} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_extra_wd_roll}!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_stealth_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_stealth_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_stealth}}} {{trait=@{rename_stealth}}} {{traitdie=d12}} {{flat=@{stealth_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{stealth_global_wd_roll} @{stealth_global_bonus_wd_roll} {{wd=@{stealth_wd}}} {{wdroll=[[ @{stealth_extra_wd_roll}!cs2 + (@{stealth_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_stealth_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_stealth_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_stealth" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_stealth_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_stealth_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_survival"><span name="attr_rename_survival">Survival</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_survival">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_survival">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_survival" value="@{survival_roll_body} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_extra_wd_roll}!cs2 + (@{survival_untrained_mod})[Untrained] + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_survival)}}"><span name="attr_rename_survival">Survival</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_survival_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d4}} {{flat=@{survival_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{survival_global_wd_roll} @{survival_global_bonus_wd_roll} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_extra_wd_roll}!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_survival_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_survival_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d6}} {{flat=@{survival_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{survival_global_wd_roll} @{survival_global_bonus_wd_roll} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_extra_wd_roll}!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_survival_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_survival_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d8}} {{flat=@{survival_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{survival_global_wd_roll} @{survival_global_bonus_wd_roll} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_extra_wd_roll}!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_survival_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_survival_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d10}} {{flat=@{survival_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{survival_global_wd_roll} @{survival_global_bonus_wd_roll} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_extra_wd_roll}!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_survival_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_survival_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_survival}}} {{trait=@{rename_survival}}} {{traitdie=d12}} {{flat=@{survival_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{survival_global_wd_roll} @{survival_global_bonus_wd_roll} {{wd=@{survival_wd}}} {{wdroll=[[ @{survival_extra_wd_roll}!cs2 + (@{survival_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_survival_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_survival_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_survival" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_survival_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_survival_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_taunt"><span name="attr_rename_taunt">Taunt</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_taunt">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_taunt">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_taunt" value="@{taunt_roll_body} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_extra_wd_roll}!cs2 + (@{taunt_untrained_mod})[Untrained] + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_taunt)}}"><span name="attr_rename_taunt">Taunt</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_taunt_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d4}} {{flat=@{taunt_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{taunt_global_wd_roll} @{taunt_global_bonus_wd_roll} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_extra_wd_roll}!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_taunt_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_taunt_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d6}} {{flat=@{taunt_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{taunt_global_wd_roll} @{taunt_global_bonus_wd_roll} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_extra_wd_roll}!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_taunt_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_taunt_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d8}} {{flat=@{taunt_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{taunt_global_wd_roll} @{taunt_global_bonus_wd_roll} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_extra_wd_roll}!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_taunt_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_taunt_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d10}} {{flat=@{taunt_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{taunt_global_wd_roll} @{taunt_global_bonus_wd_roll} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_extra_wd_roll}!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_taunt_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_taunt_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_taunt}}} {{trait=@{rename_taunt}}} {{traitdie=d12}} {{flat=@{taunt_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{taunt_global_wd_roll} @{taunt_global_bonus_wd_roll} {{wd=@{taunt_wd}}} {{wdroll=[[ @{taunt_extra_wd_roll}!cs2 + (@{taunt_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_taunt_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_taunt_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_taunt" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_taunt_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_taunt_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_thievery"><span name="attr_rename_thievery">Thievery</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_thievery">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_thievery">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_thievery" value="@{thievery_roll_body} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_extra_wd_roll}!cs2 + (@{thievery_untrained_mod})[Untrained] + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_thievery)}}"><span name="attr_rename_thievery">Thievery</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_thievery_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d4}} {{flat=@{thievery_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{thievery_global_wd_roll} @{thievery_global_bonus_wd_roll} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_extra_wd_roll}!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_thievery_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_thievery_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d6}} {{flat=@{thievery_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{thievery_global_wd_roll} @{thievery_global_bonus_wd_roll} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_extra_wd_roll}!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_thievery_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_thievery_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d8}} {{flat=@{thievery_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{thievery_global_wd_roll} @{thievery_global_bonus_wd_roll} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_extra_wd_roll}!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_thievery_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_thievery_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d10}} {{flat=@{thievery_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{thievery_global_wd_roll} @{thievery_global_bonus_wd_roll} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_extra_wd_roll}!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_thievery_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_thievery_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_thievery}}} {{trait=@{rename_thievery}}} {{traitdie=d12}} {{flat=@{thievery_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{thievery_global_wd_roll} @{thievery_global_bonus_wd_roll} {{wd=@{thievery_wd}}} {{wdroll=[[ @{thievery_extra_wd_roll}!cs2 + (@{thievery_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_thievery_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_thievery_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_thievery" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_thievery_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_thievery_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_weird_science"><span name="attr_rename_weird_science">Weird Science</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_weird_science">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_weird_science">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_weird_science" value="@{weird_science_roll_body} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_extra_wd_roll}!cs2 + (@{weird_science_untrained_mod})[Untrained] + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_weird_science)}}"><span name="attr_rename_weird_science">Weird Science</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_weird_science_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d4}} {{flat=@{weird_science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{weird_science_global_wd_roll} @{weird_science_global_bonus_wd_roll} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_extra_wd_roll}!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_weird_science_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_weird_science_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d6}} {{flat=@{weird_science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{weird_science_global_wd_roll} @{weird_science_global_bonus_wd_roll} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_extra_wd_roll}!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_weird_science_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_weird_science_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d8}} {{flat=@{weird_science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{weird_science_global_wd_roll} @{weird_science_global_bonus_wd_roll} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_extra_wd_roll}!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_weird_science_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_weird_science_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d10}} {{flat=@{weird_science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{weird_science_global_wd_roll} @{weird_science_global_bonus_wd_roll} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_extra_wd_roll}!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_weird_science_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_weird_science_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_weird_science}}} {{trait=@{rename_weird_science}}} {{traitdie=d12}} {{flat=@{weird_science_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{weird_science_global_wd_roll} @{weird_science_global_bonus_wd_roll} {{wd=@{weird_science_wd}}} {{wdroll=[[ @{weird_science_extra_wd_roll}!cs2 + (@{weird_science_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_weird_science_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_weird_science_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_weird_science" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_weird_science_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_weird_science_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_1"><span name="attr_rename_custom_skill_1">Custom Skill 1</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_1">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_custom_skill_1">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_custom_skill_1" value="@{custom_skill_1_roll_body} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_extra_wd_roll}!cs2 + (@{custom_skill_1_untrained_mod})[Untrained] + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_1)}}"><span name="attr_rename_custom_skill_1">Custom Skill 1</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_1_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d4}} {{flat=@{custom_skill_1_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_1_global_wd_roll} @{custom_skill_1_global_bonus_wd_roll} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_extra_wd_roll}!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_1_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_1_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d6}} {{flat=@{custom_skill_1_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_1_global_wd_roll} @{custom_skill_1_global_bonus_wd_roll} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_extra_wd_roll}!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_1_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_1_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d8}} {{flat=@{custom_skill_1_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_1_global_wd_roll} @{custom_skill_1_global_bonus_wd_roll} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_extra_wd_roll}!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_1_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_1_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d10}} {{flat=@{custom_skill_1_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_1_global_wd_roll} @{custom_skill_1_global_bonus_wd_roll} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_extra_wd_roll}!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_1_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_1_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_1}}} {{trait=@{rename_custom_skill_1}}} {{traitdie=d12}} {{flat=@{custom_skill_1_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_1_global_wd_roll} @{custom_skill_1_global_bonus_wd_roll} {{wd=@{custom_skill_1_wd}}} {{wdroll=[[ @{custom_skill_1_extra_wd_roll}!cs2 + (@{custom_skill_1_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_1_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_custom_skill_1_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_custom_skill_1" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_1_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_1_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_2"><span name="attr_rename_custom_skill_2">Custom Skill 2</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_2">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_custom_skill_2">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_custom_skill_2" value="@{custom_skill_2_roll_body} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_extra_wd_roll}!cs2 + (@{custom_skill_2_untrained_mod})[Untrained] + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_2)}}"><span name="attr_rename_custom_skill_2">Custom Skill 2</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_2_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d4}} {{flat=@{custom_skill_2_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_2_global_wd_roll} @{custom_skill_2_global_bonus_wd_roll} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_extra_wd_roll}!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_2_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_2_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d6}} {{flat=@{custom_skill_2_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_2_global_wd_roll} @{custom_skill_2_global_bonus_wd_roll} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_extra_wd_roll}!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_2_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_2_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d8}} {{flat=@{custom_skill_2_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_2_global_wd_roll} @{custom_skill_2_global_bonus_wd_roll} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_extra_wd_roll}!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_2_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_2_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d10}} {{flat=@{custom_skill_2_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_2_global_wd_roll} @{custom_skill_2_global_bonus_wd_roll} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_extra_wd_roll}!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_2_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_2_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_2}}} {{trait=@{rename_custom_skill_2}}} {{traitdie=d12}} {{flat=@{custom_skill_2_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_2_global_wd_roll} @{custom_skill_2_global_bonus_wd_roll} {{wd=@{custom_skill_2_wd}}} {{wdroll=[[ @{custom_skill_2_extra_wd_roll}!cs2 + (@{custom_skill_2_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_2_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_custom_skill_2_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_custom_skill_2" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_2_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_2_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_3"><span name="attr_rename_custom_skill_3">Custom Skill 3</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_3">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_custom_skill_3">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_custom_skill_3" value="@{custom_skill_3_roll_body} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_extra_wd_roll}!cs2 + (@{custom_skill_3_untrained_mod})[Untrained] + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_3)}}"><span name="attr_rename_custom_skill_3">Custom Skill 3</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_3_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d4}} {{flat=@{custom_skill_3_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_3_global_wd_roll} @{custom_skill_3_global_bonus_wd_roll} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_extra_wd_roll}!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_3_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_3_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d6}} {{flat=@{custom_skill_3_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_3_global_wd_roll} @{custom_skill_3_global_bonus_wd_roll} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_extra_wd_roll}!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_3_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_3_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d8}} {{flat=@{custom_skill_3_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_3_global_wd_roll} @{custom_skill_3_global_bonus_wd_roll} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_extra_wd_roll}!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_3_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_3_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d10}} {{flat=@{custom_skill_3_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_3_global_wd_roll} @{custom_skill_3_global_bonus_wd_roll} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_extra_wd_roll}!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_3_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_3_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_3}}} {{trait=@{rename_custom_skill_3}}} {{traitdie=d12}} {{flat=@{custom_skill_3_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_3_global_wd_roll} @{custom_skill_3_global_bonus_wd_roll} {{wd=@{custom_skill_3_wd}}} {{wdroll=[[ @{custom_skill_3_extra_wd_roll}!cs2 + (@{custom_skill_3_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_3_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_custom_skill_3_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_custom_skill_3" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_3_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_3_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_4"><span name="attr_rename_custom_skill_4">Custom Skill 4</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_4">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_custom_skill_4">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_custom_skill_4" value="@{custom_skill_4_roll_body} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_extra_wd_roll}!cs2 + (@{custom_skill_4_untrained_mod})[Untrained] + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_4)}}"><span name="attr_rename_custom_skill_4">Custom Skill 4</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_4_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d4}} {{flat=@{custom_skill_4_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_4_global_wd_roll} @{custom_skill_4_global_bonus_wd_roll} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_extra_wd_roll}!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_4_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_4_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d6}} {{flat=@{custom_skill_4_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_4_global_wd_roll} @{custom_skill_4_global_bonus_wd_roll} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_extra_wd_roll}!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_4_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_4_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d8}} {{flat=@{custom_skill_4_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_4_global_wd_roll} @{custom_skill_4_global_bonus_wd_roll} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_extra_wd_roll}!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_4_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_4_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d10}} {{flat=@{custom_skill_4_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_4_global_wd_roll} @{custom_skill_4_global_bonus_wd_roll} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_extra_wd_roll}!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_4_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_4_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_4}}} {{trait=@{rename_custom_skill_4}}} {{traitdie=d12}} {{flat=@{custom_skill_4_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_4_global_wd_roll} @{custom_skill_4_global_bonus_wd_roll} {{wd=@{custom_skill_4_wd}}} {{wdroll=[[ @{custom_skill_4_extra_wd_roll}!cs2 + (@{custom_skill_4_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_4_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_custom_skill_4_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_custom_skill_4" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_4_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_4_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_5"><span name="attr_rename_custom_skill_5">Custom Skill 5</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_5">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_custom_skill_5">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_custom_skill_5" value="@{custom_skill_5_roll_body} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_extra_wd_roll}!cs2 + (@{custom_skill_5_untrained_mod})[Untrained] + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_5)}}"><span name="attr_rename_custom_skill_5">Custom Skill 5</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_5_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d4}} {{flat=@{custom_skill_5_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_5_global_wd_roll} @{custom_skill_5_global_bonus_wd_roll} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_extra_wd_roll}!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_5_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_5_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d6}} {{flat=@{custom_skill_5_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_5_global_wd_roll} @{custom_skill_5_global_bonus_wd_roll} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_extra_wd_roll}!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_5_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_5_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d8}} {{flat=@{custom_skill_5_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_5_global_wd_roll} @{custom_skill_5_global_bonus_wd_roll} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_extra_wd_roll}!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_5_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_5_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d10}} {{flat=@{custom_skill_5_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_5_global_wd_roll} @{custom_skill_5_global_bonus_wd_roll} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_extra_wd_roll}!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_5_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_5_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_5}}} {{trait=@{rename_custom_skill_5}}} {{traitdie=d12}} {{flat=@{custom_skill_5_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_5_global_wd_roll} @{custom_skill_5_global_bonus_wd_roll} {{wd=@{custom_skill_5_wd}}} {{wdroll=[[ @{custom_skill_5_extra_wd_roll}!cs2 + (@{custom_skill_5_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_5_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_custom_skill_5_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_custom_skill_5" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_5_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_5_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_6"><span name="attr_rename_custom_skill_6">Custom Skill 6</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_custom_skill_6">
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_custom_skill_6">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_custom_skill_6" value="@{custom_skill_6_roll_body} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_extra_wd_roll}!cs2 + (@{custom_skill_6_untrained_mod})[Untrained] + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_6)}}"><span name="attr_rename_custom_skill_6">Custom Skill 6</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_6_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d4}} {{flat=@{custom_skill_6_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_6_global_wd_roll} @{custom_skill_6_global_bonus_wd_roll} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_extra_wd_roll}!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_6_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_6_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d6}} {{flat=@{custom_skill_6_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_6_global_wd_roll} @{custom_skill_6_global_bonus_wd_roll} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_extra_wd_roll}!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_6_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_6_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d8}} {{flat=@{custom_skill_6_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_6_global_wd_roll} @{custom_skill_6_global_bonus_wd_roll} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_extra_wd_roll}!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_6_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_6_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d10}} {{flat=@{custom_skill_6_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_6_global_wd_roll} @{custom_skill_6_global_bonus_wd_roll} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_extra_wd_roll}!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_6_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_custom_skill_6_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_custom_skill_6}}} {{trait=@{rename_custom_skill_6}}} {{traitdie=d12}} {{flat=@{custom_skill_6_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{custom_skill_6_global_wd_roll} @{custom_skill_6_global_bonus_wd_roll} {{wd=@{custom_skill_6_wd}}} {{wdroll=[[ @{custom_skill_6_extra_wd_roll}!cs2 + (@{custom_skill_6_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_custom_skill_6_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_custom_skill_6_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_custom_skill_6" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_6_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_custom_skill_6_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<label class="sheet-extra-skills__toggle-label">
|
||
<input class="sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_unskilled" checked><span name="attr_rename_unskilled">Unskilled</span>
|
||
</label>
|
||
<input class="sheet-hidden sheet-extra-skills__toggle" type="checkbox" name="attr_extra_skill_toggle_unskilled" checked>
|
||
<div class="sheet-simple-trait sheet-simple-trait--skill">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_unskilled">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_unskilled" value="@{unskilled_roll_body} {{wd=@{unskilled_wd}}} {{wdroll=[[ @{unskilled_extra_wd_roll}!cs2 + (@{unskilled_untrained_mod})[Untrained] + (@{unskilled_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_unskilled)}}"><span data-i18n="unskilled">Unskilled</span>
|
||
</button><span class="sheet-simple-trait__label" name="attr_unskilled_full_code">d4-2</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_unskilled" placeholder="d4" value="d4-2" spellcheck="false">
|
||
<input type="text" name="attr_unskilled_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_unskilled_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-block sheet-block sheet-extra-secondary">
|
||
<div class="sheet-header"><span class="sheet-header__title" data-i18n="armor-and-statistics">Armor & Statistics</span></div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_simple_secondary_visibility_toggle" checked>
|
||
<div class="sheet-container">
|
||
<div class="sheet-extra-secondary__field">
|
||
<input class="sheet-extra-secondary__input" type="text" name="attr_pace" placeholder="6" spellcheck="false">
|
||
<div class="sheet-label"><span data-i18n="pace">Pace</span></div>
|
||
</div>
|
||
<div class="sheet-extra-secondary__field">
|
||
<input class="sheet-extra-secondary__input" type="text" name="attr_run" placeholder="d6" spellcheck="false">
|
||
<div class="sheet-label"><span data-i18n="run">Run</span></div>
|
||
</div>
|
||
<div class="sheet-extra-secondary__field">
|
||
<input class="sheet-extra-secondary__input" type="text" name="attr_parry" placeholder="2" spellcheck="false">
|
||
<div class="sheet-label"><span data-i18n="parry">Parry</span></div>
|
||
</div>
|
||
<div class="sheet-extra-secondary__field">
|
||
<input class="sheet-extra-secondary__input" type="text" name="attr_toughness" placeholder="4" spellcheck="false">
|
||
<div class="sheet-label"><span data-i18n="toughness">Tough.</span></div>
|
||
</div>
|
||
<div class="sheet-divider"></div>
|
||
<div class="sheet-extra-secondary__field">
|
||
<input class="sheet-extra-secondary__input" type="text" name="attr_armor_head" placeholder="0" spellcheck="false">
|
||
<div class="sheet-label"><span data-i18n="armor-head">Head</span></div>
|
||
</div>
|
||
<div class="sheet-extra-secondary__field">
|
||
<input class="sheet-extra-secondary__input" type="text" name="attr_armor_torso" placeholder="0" spellcheck="false">
|
||
<div class="sheet-label"><span data-i18n="armor-torso">Torso</span></div>
|
||
</div>
|
||
<div class="sheet-extra-secondary__field">
|
||
<input class="sheet-extra-secondary__input" type="text" name="attr_armor_arms" placeholder="0" spellcheck="false">
|
||
<div class="sheet-label"><span data-i18n="armor-arms">Arms</span></div>
|
||
</div>
|
||
<div class="sheet-extra-secondary__field">
|
||
<input class="sheet-extra-secondary__input" type="text" name="attr_armor_legs" placeholder="0" spellcheck="false">
|
||
<div class="sheet-label"><span data-i18n="armor-legs">Legs</span></div>
|
||
</div>
|
||
<div class="sheet-divider"></div>
|
||
<div class="sheet-extra-secondary__field">
|
||
<input class="sheet-extra-secondary__input" type="text" name="attr_wound_mod" placeholder="0" spellcheck="false">
|
||
<div class="sheet-label"><span data-i18n="extra-wounds">WDS</span></div>
|
||
</div>
|
||
<div class="sheet-extra-secondary__field">
|
||
<input class="sheet-extra-secondary__input" type="text" name="attr_fatigue_mod" placeholder="0" spellcheck="false">
|
||
<div class="sheet-label"><span data-i18n="extra-fatigue">FTG</span></div>
|
||
</div>
|
||
<div class="sheet-simple-trait sheet-simple-trait--attribute">
|
||
<input class="sheet-simple-trait__expand" type="checkbox" name="attr_expand_simple_soak">
|
||
<div class="sheet-background"></div>
|
||
<button class="sheet-simple-trait__roll" type="roll" name="roll_simple_soak" value="@{soak_roll_body} {{wd=@{soak_wd}}} {{wdroll=[[ @{soak_extra_wd_roll}!cs2 + (@{soak_untrained_mod})[Untrained] + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_soak)}}"><span data-i18n="soak">Soak</span>
|
||
</button>
|
||
<div class="sheet-simple-trait__buttons">
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_soak_4" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_soak}}} {{trait=@{rename_soak}}} {{traitdie=d4}} {{flat=@{soak_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d4!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d4!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d4!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d4!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d4!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d4!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d4!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d4!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{soak_global_wd_roll} @{soak_global_bonus_wd_roll} {{wd=@{soak_wd}}} {{wdroll=[[ @{soak_extra_wd_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_soak_4)}}">d4</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_soak_6" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_soak}}} {{trait=@{rename_soak}}} {{traitdie=d6}} {{flat=@{soak_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d6!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d6!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d6!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d6!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d6!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d6!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d6!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d6!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{soak_global_wd_roll} @{soak_global_bonus_wd_roll} {{wd=@{soak_wd}}} {{wdroll=[[ @{soak_extra_wd_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_soak_6)}}">d6</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_soak_8" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_soak}}} {{trait=@{rename_soak}}} {{traitdie=d8}} {{flat=@{soak_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d8!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d8!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d8!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d8!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d8!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d8!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d8!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d8!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{soak_global_wd_roll} @{soak_global_bonus_wd_roll} {{wd=@{soak_wd}}} {{wdroll=[[ @{soak_extra_wd_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_soak_8)}}">d8</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_soak_10" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_soak}}} {{trait=@{rename_soak}}} {{traitdie=d10}} {{flat=@{soak_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d10!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d10!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d10!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d10!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d10!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d10!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d10!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d10!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{soak_global_wd_roll} @{soak_global_bonus_wd_roll} {{wd=@{soak_wd}}} {{wdroll=[[ @{soak_extra_wd_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_soak_10)}}">d10</button>
|
||
<button class="sheet-simple-trait__custom-roll" type="roll" name="roll_simple_soak_12" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{query_global_rof} ]]}} {{header=@{name} ^{rolls} @{rename_soak}}} {{trait=@{rename_soak}}} {{traitdie=d12}} {{flat=@{soak_mod}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{traitroll1=[[ 1d12!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ 1d12!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ 1d12!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ 1d12!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ 1d12!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ 1d12!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ 1d12!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ 1d12!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{soak_global_wd_roll} @{soak_global_bonus_wd_roll} {{wd=@{soak_wd}}} {{wdroll=[[ @{soak_extra_wd_roll}!cs2 + (@{soak_mod}+0)[Flat] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~simple_soak_12)}}">d12</button>
|
||
</div><span class="sheet-simple-trait__label" name="attr_soak_full_code">d4</span>
|
||
<div class="sheet-simple-trait__inputs">
|
||
<input type="text" name="attr_soak" placeholder="d4" value="d4" spellcheck="false">
|
||
<input type="text" name="attr_soak_mod" placeholder="+/−" data-i18n-placeholder="extra-trait-mod-placeholder" spellcheck="false">
|
||
<input type="text" name="attr_soak_wd" placeholder="WD" data-i18n-placeholder="extra-trait-wd-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle-block" type="checkbox" name="attr_toggle_quick_notes_block" checked>
|
||
<div class="sheet-block sheet-quick-notes">
|
||
<div class="sheet-header"><span class="sheet-header__title" name="attr_rename_block_quick_notes" data-i18n="quick-notes">Quick Notes</span></div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_simple_quick_notes_visibility_toggle" checked>
|
||
<div class="sheet-quick-notes__content"><span name="attr_quick_notes"></span>
|
||
<textarea name="attr_quick_notes" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_features_block" checked>
|
||
<div class="sheet-features">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__title" data-i18n="edges-and-hindrances">Edges & Hindrances</div>
|
||
</div>
|
||
<fieldset class="repeating_features">
|
||
<div class="sheet-repitem">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--novice" type="radio" name="attr_feature_rank" value="novice" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--seasoned" type="radio" name="attr_feature_rank" value="seasoned">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--veteran" type="radio" name="attr_feature_rank" value="veteran">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--heroic" type="radio" name="attr_feature_rank" value="heroic">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--legendary" type="radio" name="attr_feature_rank" value="legendary">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--augmentation" type="radio" name="attr_feature_rank" value="augmentation">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--dot" type="radio" name="attr_feature_rank" value="dot">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--hindrance" type="radio" name="attr_feature_rank" value="hindrance">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--disabled" type="radio" name="attr_feature_rank" value="disabled">
|
||
<div class="sheet-features__inner-background"></div><span name="attr_feature_name">New Edge/Hindrance</span>
|
||
<input class="sheet-align-left sheet-features__name" type="text" name="attr_feature_name" placeholder="New" data-i18n-placeholder="feature-name-new" spellcheck="false">
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_abilities_block">
|
||
<div class="sheet-block sheet-abilities">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-apparel__name" name="attr_rename_block_abilities" data-i18n="abilities">Abilities</span></div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_abilities_visibility_toggle" checked>
|
||
<fieldset class="repeating_abilities">
|
||
<div class="sheet-repitem sheet-repitem--full-field"><span name="attr_ability">[Ability] Description</span>
|
||
<textarea name="attr_ability" placeholder="Ability: Description" data-i18n-placeholder="ability-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_weapons_block" checked>
|
||
<div class="sheet-block sheet-weapons">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-weapons__name" name="attr_rename_block_weapons" data-i18n="weapons">Weapons</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-weapons__damage">
|
||
<label class="sheet-damage-roll-toggle-label" title="Toggle Damage Rolls" data-i18n-title="toggle-damage-rolls-title">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_weapons_damage_roll_toggle"><span class="sheet-icon">;</span><span data-i18n="weapons-damage">Damage</span>
|
||
</label>
|
||
</div>
|
||
<div class="sheet-weapons__range" data-i18n="weapons-range">Range</div>
|
||
<div class="sheet-weapons__ap" data-i18n="weapons-ap">AP</div>
|
||
<div class="sheet-weapons__rof" data-i18n="weapons-rof">ROF</div>
|
||
<div class="sheet-weapons__shots" data-i18n="weapons-shots">Shots</div>
|
||
<div class="sheet-weapons__weight" data-i18n="weapons-weight">WGT</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_weapons_visibility_toggle" checked>
|
||
<input class="sheet-damage-roll-toggle sheet-hidden" type="checkbox" name="attr_weapons_damage_roll_toggle">
|
||
<input class="sheet-toggle-description-input sheet-hidden" type="checkbox" name="attr_toggle_description_input_visibility" checked>
|
||
<input class="sheet-toggle-injection-input sheet-hidden" type="checkbox" name="attr_toggle_injection_input_visibility">
|
||
<fieldset class="repeating_weapons">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-hidden sheet-toggle sheet-toggle--list-roll" type="checkbox" name="attr_roll_button_toggle">
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--wildcard" type="roll" name="roll_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_weapons_skill)}} {{damageroll=[t](~repeating_weapons_weapon_damage)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--extra" type="roll" name="roll_extra_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_extra_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_weapons_skill)}} {{damageroll=[t](~repeating_weapons_weapon_damage)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<input class="sheet-align-left sheet-weapons__name sheet-stretch" type="text" name="attr_weapon_name" placeholder="Weapon (Ammo)" data-i18n-placeholder="weapons-name-placeholder" spellcheck="false">
|
||
<div class="sheet-damage-button-overlay">
|
||
<input type="hidden" name="attr_weapon_damage_roll" value="0">
|
||
<button class="sheet-button sheet-weapons__damage-button" type="roll" name="roll_weapon_damage" value="@{gm_roll} &{template:DamageRoll} {{header=@{name} ^{rolls} ^{damage}}} {{code=@{weapon_damage}}} {{source_label=^{weapon}}} {{source=@{weapon_name}}} {{rof=[[ 0 + @{rof_override} ]]}} {{modifier=?{@{query_damage_modifier}}}} {{range=@{weapon_range}}} {{ap=@{weapon_ap}}} {{trapping=@{weapon_trapping}}} {{roll1=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll2=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll3=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll4=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll5=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll6=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll7=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll8=[[ @{weapon_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{reroll=[r](~repeating_weapons_weapon_damage)}}"></button>
|
||
<input class="sheet-weapons__damage" type="text" name="attr_weapon_damage" placeholder="STR+d6" data-i18n-placeholder="weapons-damage-placeholder" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-weapons__range" type="text" name="attr_weapon_range" placeholder="Range/Melee" data-i18n-placeholder="weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-weapons__ap" type="text" name="attr_weapon_ap" placeholder="0" spellcheck="false">
|
||
<input class="sheet-weapons__rof" type="text" name="attr_weapon_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-weapons__shots" type="text" name="attr_weapon_shots" placeholder="6" spellcheck="false">
|
||
<input class="sheet-weapons__weight" type="text" name="attr_weapon_weight" placeholder="4" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_weapon_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_trapping_toggle" checked>
|
||
<div class="sheet-repitem__label" data-i18n="trapping">Trapping</div>
|
||
<input class="sheet-align-left sheet-weapons__trapping" type="text" name="attr_weapon_trapping" placeholder="Piercing/etc." data-i18n-placeholder="weapons-trapping-placeholder" spellcheck="false">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_weapon_notes" placeholder="Notes, Tags, Requirements, etc." data-i18n-placeholder="weapons-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--settings" type="checkbox" name="attr_weapon_settings_toggle">
|
||
<div class="sheet-repitem__settings">
|
||
<div class="sheet-repitem__settings-content">
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-description">
|
||
<input type="hidden" name="attr_roll_description">
|
||
<input type="checkbox" name="attr_roll_description_toggle"><span data-i18n="roll-description">Description</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_description_input" placeholder="Narrative or functional description below the header in the Roll Template. Leave empty to disable." data-i18n-placeholder="roll-description-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-injection">
|
||
<input type="hidden" name="attr_roll_injection">
|
||
<input type="checkbox" name="attr_roll_injection_toggle"><span data-i18n="roll-injection">Roll Injection</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_injection_input" placeholder="{{source_label=}} {{source=}} {{custom3_label=}} {{custom3=}} {{rof=[[ 1 ]]}} {{traitroll8=}}" data-i18n-placeholder="roll-injection-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="checkbox" name="attr_trapping_toggle" checked><span data-i18n="trapping">Trapping</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_skill_wd" value="@{shooting_wd}">
|
||
<input type="hidden" name="attr_skill_mod" value="@{shooting_mod}">
|
||
<input type="hidden" name="attr_skill_untrained_mod" value="@{shooting_untrained_mod}">
|
||
<input type="hidden" name="attr_skill_roll" value="@{shooting_roll}">
|
||
<input type="hidden" name="attr_skill_wd_roll" value="@{shooting_wd_roll}">
|
||
<input type="hidden" name="attr_skill_extra_wd_roll" value="@{shooting_wd_roll}">
|
||
<input type="hidden" name="attr_skill_code" value="@{shooting_code}">
|
||
<input type="hidden" name="attr_skill_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{rof_override} ]]}} {{header=@{name} ^{rolls} @{skill_name}}} {{trait=@{skill_name}}} {{source_label=^{weapon}}} {{source=@{weapon_name}}} {{traitdie=@{skill_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{bonus=@{skill_bonus}}} {{traitroll1=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{skill_global_wd_roll} @{skill_global_bonus_wd_roll}">
|
||
<input type="checkbox" name="attr_roll_button_toggle"><span data-i18n="roll-button">Roll Button</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_skill_name" placeholder="Shooting" data-i18n-placeholder="weapons-skill-placeholder" value="Shooting" spellcheck="false">
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_skill_bonus" placeholder="+0">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_rof_override" value="?{@{query_rate_of_fire}|@{weapon_rof}}">
|
||
<input type="checkbox" name="attr_rof_override_toggle" checked><span data-i18n="query-rof">Query RoF</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_wd_override" value="">
|
||
<input type="checkbox" name="attr_wd_override_toggle"><span data-i18n="wild-die-override">WD Override</span>
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_wd_override_die" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle" title="Exploding Damage Dice On/Off" data-i18n-title="ace-damage-title">
|
||
<input type="hidden" name="attr_explode_damage" value="!">
|
||
<input type="checkbox" name="attr_explode_damage_toggle" checked><span data-i18n="ace-damage">Ace Damage</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--special sheet-toggle--weight" type="checkbox" name="attr_weapon_weight_toggle" checked title="Weight On/Off" data-i18n-title="weapons-weight-toggle-title">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_weapon_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_weapon_note_box" placeholder="Notes" data-i18n-placeholder="weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"><span class="sheet-label" data-i18n="weapons-total-weight">Total Weight: </span><span class="sheet-label sheet-label--weight" name="attr_carry_weight_weapons">0.0</span></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_apparel_block" checked>
|
||
<div class="sheet-block sheet-apparel">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-apparel__name" name="attr_rename_block_apparel" data-i18n="apparel">Apparel</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-apparel__armor" data-i18n="apparel-armor">Armor</div>
|
||
<div class="sheet-apparel__tags" data-i18n="apparel-properties">Properties</div>
|
||
<div class="sheet-apparel__weight" data-i18n="apparel-weight">WGT</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_apparel_visibility_toggle" checked>
|
||
<fieldset class="repeating_apparel">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-apparel__name sheet-stretch" type="text" name="attr_apparel_name" placeholder="Apparel" data-i18n-placeholder="apparel-name-placeholder" spellcheck="false">
|
||
<input class="sheet-apparel__armor" type="text" name="attr_apparel_armor" placeholder="0" spellcheck="false">
|
||
<input class="sheet-align-left sheet-apparel__tags" type="text" name="attr_apparel_tags" placeholder="Protection/Resistance/Tags" data-i18n-placeholder="apparel-properties-placeholder" spellcheck="false">
|
||
<input class="sheet-apparel__weight" type="text" name="attr_apparel_weight" placeholder="WGT" data-i18n-placeholder="apparel-weight-placeholder" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_apparel_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_apparel_notes" placeholder="Notes, Tags, Trappings, Requirements, etc." data-i18n-placeholder="apparel-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--special sheet-toggle--weight" type="checkbox" name="attr_apparel_weight_toggle" checked title="Weight On/Off" data-i18n-title="apparel-weight-toggle-title">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_apparel_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_apparel_note_box" placeholder="Notes" data-i18n-placeholder="apparel-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"><span class="sheet-label" data-i18n="apparel-total-weight">Total Weight: </span><span class="sheet-label sheet-label--weight" name="attr_carry_weight_apparel">0.0</span></div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-toggle--strain" type="checkbox" name="attr_toggle_strain">
|
||
<input class="sheet-hidden sheet-toggle-augmentation-markers" type="checkbox" name="attr_toggle_augmentation_markers" checked>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_augmentations_block" checked>
|
||
<div class="sheet-block sheet-augmentations">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-augmentations__name" name="attr_rename_block_augmentations" data-i18n="augmentations">Augmentations</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-augmentations__grade" data-i18n="augmentations-grade">Grade</div>
|
||
<div class="sheet-augmentations__power" data-i18n="augmentations-power">Power</div>
|
||
<div class="sheet-augmentations__slots" data-i18n="augmentations-slots">Slots</div>
|
||
<div class="sheet-augmentations__loss"><span class="sheet-a" data-i18n="augmentations-loss">Loss</span><span class="sheet-b" data-i18n="augmentations-strain">Strain</span></div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_augmentations_visibility_toggle" checked>
|
||
<fieldset class="repeating_augmentations">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-augmentations__name sheet-stretch" type="text" name="attr_augmentation_name" placeholder="[Advanced/Superior] Augmentation [Level] (Upgrades)" data-i18n-placeholder="augmentations-name-placeholder" spellcheck="false">
|
||
<div class="sheet-color-cycle">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--none" type="radio" name="attr_color_marker_augmentation-color" value="none" checked>
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--red" type="radio" name="attr_color_marker_augmentation-color" value="red">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--yellow" type="radio" name="attr_color_marker_augmentation-color" value="yellow">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--blue" type="radio" name="attr_color_marker_augmentation-color" value="blue">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--green" type="radio" name="attr_color_marker_augmentation-color" value="green">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--purple" type="radio" name="attr_color_marker_augmentation-color" value="purple">
|
||
<input class="sheet-color-cycle__radio sheet-color-cycle__radio--gray" type="radio" name="attr_color_marker_augmentation-color" value="gray">
|
||
</div>
|
||
<input class="sheet-augmentations__grade" type="text" name="attr_augmentation_grade" placeholder="Iron" data-i18n-placeholder="augmentations-grade-placeholder" spellcheck="false">
|
||
<input class="sheet-augmentations__power" type="text" name="attr_augmentation_power" placeholder="0" spellcheck="false">
|
||
<input class="sheet-augmentations__slots" type="text" name="attr_augmentation_slots" placeholder="0" spellcheck="false">
|
||
<input class="sheet-augmentations__loss" type="text" name="attr_augmentation_loss" placeholder="4.0" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_augmentation_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_multiplier_toggle" checked>
|
||
<div class="sheet-repitem__label" data-i18n="multiplier">Multiplier</div>
|
||
<input class="sheet-augmentations__multiplier" type="text" name="attr_augmentation_multiplier" value="1.0" placeholder="1.0">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_augmentation_notes" placeholder="Effect/Description" data-i18n-placeholder="augmentations-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--settings" type="checkbox" name="attr_settings_toggle">
|
||
<div class="sheet-repitem__settings">
|
||
<div class="sheet-repitem__settings-content">
|
||
<label class="sheet-label-toggle">
|
||
<input type="checkbox" name="attr_multiplier_toggle" checked><span data-i18n="multiplier">Multiplier</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--special sheet-toggle--loss" type="checkbox" name="attr_augmentation_loss_toggle" checked title="Loss/Strain On/Off" data-i18n-title="augmentations-toggle-title">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_augmentation_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_augmentation_note_box" placeholder="Notes" data-i18n-placeholder="augmentations-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"><span class="sheet-label sheet-a" data-i18n="augmentations-total-loss">Total Loss: </span><span class="sheet-label sheet-b" data-i18n="augmentations-total-strain">Total Strain: </span><span class="sheet-label sheet-label--loss" name="attr_augmentations_total_loss">0.0</span></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_engrams_block" checked>
|
||
<div class="sheet-block sheet-engrams">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-engrams__name" name="attr_rename_block_engrams" data-i18n="engrams">Engrams</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-engrams__penalty" data-i18n="engrams-penalty">Penalty</div>
|
||
<div class="sheet-engrams__description" data-i18n="engrams-description">Description</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_engrams_visibility_toggle" checked>
|
||
<input class="sheet-toggle-description-input sheet-hidden" type="checkbox" name="attr_toggle_description_input_visibility" checked>
|
||
<input class="sheet-toggle-injection-input sheet-hidden" type="checkbox" name="attr_toggle_injection_input_visibility">
|
||
<fieldset class="repeating_engrams">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-hidden sheet-toggle sheet-toggle--list-roll" type="checkbox" name="attr_roll_button_toggle">
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--wildcard" type="roll" name="roll_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_engrams_skill)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--extra" type="roll" name="roll_extra_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_extra_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_engrams_skill)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<input class="sheet-align-left sheet-engrams__name sheet-stretch" type="text" name="attr_engram_name" placeholder="Engram" data-i18n-placeholder="engrams-name-placeholder" spellcheck="false">
|
||
<input class="sheet-engrams__penalty" type="text" name="attr_engram_penalty" placeholder="-1" spellcheck="false">
|
||
<input class="sheet-align-left sheet-engrams__description" type="text" name="attr_engram_description" placeholder="e.g. entangle (SWADE 161) power but resisted by Smarts" data-i18n-placeholder="engrams-description-placeholder" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_engram_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_engram_notes" placeholder="Effect/Description" data-i18n-placeholder="engrams-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--settings" type="checkbox" name="attr_engram_settings_toggle">
|
||
<div class="sheet-repitem__settings">
|
||
<div class="sheet-repitem__settings-content">
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-description">
|
||
<input type="hidden" name="attr_roll_description">
|
||
<input type="checkbox" name="attr_roll_description_toggle"><span data-i18n="roll-description">Description</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_description_input" placeholder="Narrative or functional description below the header in the Roll Template. Leave empty to disable." data-i18n-placeholder="roll-description-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-injection">
|
||
<input type="hidden" name="attr_roll_injection">
|
||
<input type="checkbox" name="attr_roll_injection_toggle"><span data-i18n="roll-injection">Roll Injection</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_injection_input" placeholder="{{source_label=}} {{source=}} {{custom3_label=}} {{custom3=}} {{rof=[[ 1 ]]}} {{traitroll8=}}" data-i18n-placeholder="roll-injection-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_skill_wd" value="@{hacking_wd}">
|
||
<input type="hidden" name="attr_skill_mod" value="@{hacking_mod}">
|
||
<input type="hidden" name="attr_skill_untrained_mod" value="@{hacking_untrained_mod}">
|
||
<input type="hidden" name="attr_skill_roll" value="@{hacking_roll}">
|
||
<input type="hidden" name="attr_skill_wd_roll" value="@{hacking_wd_roll}">
|
||
<input type="hidden" name="attr_skill_extra_wd_roll" value="@{hacking_wd_roll}">
|
||
<input type="hidden" name="attr_skill_code" value="@{hacking_code}">
|
||
<input type="hidden" name="attr_skill_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{rof_override} ]]}} {{header=@{name} ^{rolls} @{skill_name}}} {{trait=@{skill_name}}} {{source_label=^{source}}} {{source=@{engram_name}}} {{traitdie=@{skill_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{bonus=@{skill_bonus}}} {{traitroll1=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{skill_global_wd_roll} @{skill_global_bonus_wd_roll}">
|
||
<input type="checkbox" name="attr_roll_button_toggle"><span data-i18n="roll-button">Roll Button</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_skill_name" placeholder="Hacking" data-i18n-placeholder="engrams-skill-placeholder" value="Hacking" spellcheck="false">
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_skill_bonus" placeholder="+0">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_rof_override" value="1">
|
||
<input type="checkbox" name="attr_rof_override_toggle"><span data-i18n="query-rof">Query RoF</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_wd_override" value="">
|
||
<input type="checkbox" name="attr_wd_override_toggle"><span data-i18n="wild-die-override">WD Override</span>
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_wd_override_die" value="" spellcheck="false">
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_engram_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_engram_note_box" placeholder="Notes" data-i18n-placeholder="engrams-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-toggle--pp" type="checkbox" name="attr_toggle_pp">
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_powers_block">
|
||
<div class="sheet-block sheet-powers">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-powers__name" name="attr_rename_block_powers" data-i18n="powers">Powers</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-powers__damage">
|
||
<label class="sheet-damage-roll-toggle-label" title="Toggle Damage Rolls" data-i18n-title="toggle-damage-rolls-title">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_powers_damage_roll_toggle"><span class="sheet-icon">;</span><span data-i18n="powers-damage">Damage</span>
|
||
</label>
|
||
</div>
|
||
<div class="sheet-powers__range" data-i18n="powers-range">Range</div>
|
||
<div class="sheet-powers__ap" data-i18n="powers-ap">AP</div>
|
||
<div class="sheet-powers__pp sheet-a" data-i18n="powers-pp">PP</div>
|
||
<div class="sheet-powers__penalty sheet-b" data-i18n="powers-penalty">Penalty</div>
|
||
<div class="sheet-powers__duration" data-i18n="powers-duration">Duration</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_powers_visibility_toggle" checked>
|
||
<input class="sheet-damage-roll-toggle sheet-hidden" type="checkbox" name="attr_powers_damage_roll_toggle">
|
||
<input class="sheet-toggle-description-input sheet-hidden" type="checkbox" name="attr_toggle_description_input_visibility" checked>
|
||
<input class="sheet-toggle-injection-input sheet-hidden" type="checkbox" name="attr_toggle_injection_input_visibility">
|
||
<fieldset class="repeating_powers">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-hidden sheet-toggle sheet-toggle--list-roll" type="checkbox" name="attr_roll_button_toggle">
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--wildcard" type="roll" name="roll_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_powers_skill)}} {{damageroll=[t](~repeating_powers_power_damage)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<button class="sheet-repitem__skill-roll sheet-repitem__skill-roll--extra" type="roll" name="roll_extra_skill" value="@{skill_roll_body} {{wd=@{skill_wd}}} {{wdroll=[[ @{skill_extra_wd_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{wd_override} {{reroll=[r](~repeating_powers_skill)}} {{damageroll=[t](~repeating_powers_power_damage)}} {{description=@{roll_description}}} @{roll_injection}">9</button>
|
||
<input class="sheet-align-left sheet-powers__name sheet-stretch" type="text" name="attr_power_name" placeholder="Power" data-i18n-placeholder="powers-name-placeholder" spellcheck="false">
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_damage_input_toggle" checked>
|
||
<div class="sheet-damage-button-overlay">
|
||
<input type="hidden" name="attr_power_damage_roll" value="0">
|
||
<button type="roll" name="roll_power_damage" value="@{gm_roll} &{template:DamageRoll} {{header=@{name} ^{rolls} ^{damage}}} {{code=@{power_damage}}} {{source_label=^{source}}} {{source=@{power_name}}} {{rof=[[ 0 + @{rof_override} ]]}} {{modifier=?{@{query_damage_modifier}}}} {{range=@{power_range}}} {{ap=@{power_ap}}} {{trapping=@{power_trapping}}} {{roll1=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll2=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll3=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll4=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll5=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll6=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll7=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{roll8=[[ @{power_damage_roll} + (?{@{query_damage_modifier}}+0) ]]}} {{reroll=[r](~repeating_powers_power_damage)}}"></button>
|
||
<input class="sheet-powers__damage" type="text" name="attr_power_damage" placeholder="3d6" data-i18n-placeholder="powers-damage-placeholder" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-powers__range" type="text" name="attr_power_range" placeholder="Range/Melee" data-i18n-placeholder="powers-range-placeholder" spellcheck="false">
|
||
<input class="sheet-powers__ap" type="text" name="attr_power_ap" placeholder="0" spellcheck="false">
|
||
<input class="sheet-a sheet-powers__pp" type="text" name="attr_power_pp" placeholder="2" data-i18n-placeholder="powers-pp-placeholder" spellcheck="false">
|
||
<input class="sheet-b sheet-powers__penalty" type="text" name="attr_power_penalty" placeholder="-1" spellcheck="false">
|
||
<input class="sheet-powers__duration" type="text" name="attr_power_duration" placeholder="Duration" data-i18n-placeholder="powers-duration-placeholder" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_power_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<input class="sheet-hidden sheet-toggle" type="checkbox" name="attr_trapping_toggle" checked>
|
||
<div class="sheet-repitem__label" data-i18n="trapping">Trapping</div>
|
||
<input class="sheet-align-left sheet-powers__trapping" type="text" name="attr_power_trapping" placeholder="Fire, Light, etc." data-i18n-placeholder="powers-trapping-placeholder" spellcheck="false">
|
||
<div class="sheet-repitem__label" data-i18n="notes">Notes</div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_power_notes" placeholder="Effect/Description" data-i18n-placeholder="powers-notes-placeholder" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--settings" type="checkbox" name="attr_power_settings_toggle">
|
||
<div class="sheet-repitem__settings">
|
||
<div class="sheet-repitem__settings-content">
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-description">
|
||
<input type="hidden" name="attr_roll_description">
|
||
<input type="checkbox" name="attr_roll_description_toggle"><span data-i18n="roll-description">Description</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_description_input" placeholder="Narrative or functional description below the header in the Roll Template. Leave empty to disable." data-i18n-placeholder="roll-description-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle sheet-label-toggle--full-row sheet-roll-injection">
|
||
<input type="hidden" name="attr_roll_injection">
|
||
<input type="checkbox" name="attr_roll_injection_toggle"><span data-i18n="roll-injection">Roll Injection</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_roll_injection_input" placeholder="{{source_label=}} {{source=}} {{custom3_label=}} {{custom3=}} {{rof=[[ 1 ]]}} {{traitroll8=}}" data-i18n-placeholder="roll-injection-placeholder" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="checkbox" name="attr_damage_input_toggle" checked><span data-i18n="damage">Damage</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="checkbox" name="attr_trapping_toggle" checked><span data-i18n="trapping">Trapping</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_skill_wd" value="@{spellcasting_wd}">
|
||
<input type="hidden" name="attr_skill_mod" value="@{spellcasting_mod}">
|
||
<input type="hidden" name="attr_skill_untrained_mod" value="@{spellcasting_untrained_mod}">
|
||
<input type="hidden" name="attr_skill_roll" value="@{spellcasting_roll}">
|
||
<input type="hidden" name="attr_skill_wd_roll" value="@{spellcasting_wd_roll}">
|
||
<input type="hidden" name="attr_skill_extra_wd_roll" value="@{spellcasting_wd_roll}">
|
||
<input type="hidden" name="attr_skill_code" value="@{spellcasting_code}">
|
||
<input type="hidden" name="attr_skill_global_wd_roll" value="{{global_wd=@{query_global_wd}}} {{global_wdroll=[[ @{query_global_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_global_bonus_wd_roll" value="{{bonus_wd=@{query_global_bonus_wd}}} {{bonus_wdroll=[[ @{query_global_bonus_wd}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}}">
|
||
<input type="hidden" name="attr_skill_roll_body" value="@{gm_roll} &{template:TraitRoll} {{rof=[[ 0 + @{rof_override} ]]}} {{header=@{name} ^{rolls} @{skill_name}}} {{trait=@{skill_name}}} {{source_label=^{power}}} {{source=@{power_name}}} {{traitdie=@{skill_code}}} {{wounds=[[ @{wound_mod} ]]}} {{fatigue=[[ @{fatigue_mod} ]]}} {{modifier=?{@{query_modifier}|0}}} {{bonus=@{skill_bonus}}} {{traitroll1=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ @{skill_roll}!cs2 + (@{skill_untrained_mod})[Untrained] + (@{skill_mod}+0)[Flat] + (@{skill_bonus}+0)[Bonus] - (@{fatigue_mod})[Fatigue] - (@{wound_mod})[Wounds] + (?{@{query_modifier}|0})[Modifier] ]]}} @{skill_global_wd_roll} @{skill_global_bonus_wd_roll}">
|
||
<input type="checkbox" name="attr_roll_button_toggle"><span data-i18n="roll-button">Roll Button</span>
|
||
<input class="sheet-label-toggle__input" type="text" name="attr_skill_name" placeholder="Spellcasting" data-i18n-placeholder="powers-skill-placeholder" value="Spellcasting" spellcheck="false">
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_skill_bonus" placeholder="+0">
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_rof_override" value="1">
|
||
<input type="checkbox" name="attr_rof_override_toggle"><span data-i18n="query-rof">Query RoF</span>
|
||
</label>
|
||
<label class="sheet-label-toggle">
|
||
<input type="hidden" name="attr_wd_override" value="">
|
||
<input type="checkbox" name="attr_wd_override_toggle"><span data-i18n="wild-die-override">WD Override</span>
|
||
<input class="sheet-label-toggle__input sheet-label-toggle__input--tiny" type="text" name="attr_wd_override_die" value="" spellcheck="false">
|
||
</label>
|
||
<label class="sheet-label-toggle" title="Exploding Damage Dice On/Off" data-i18n-title="ace-damage-title">
|
||
<input type="hidden" name="attr_explode_damage" value="!">
|
||
<input type="checkbox" name="attr_explode_damage_toggle" checked><span data-i18n="ace-damage">Ace Damage</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_power_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_power_note_box" placeholder="Notes" data-i18n-placeholder="powers-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_vehicles_block">
|
||
<div class="sheet-block sheet-vehicles">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-vehicles__name" name="attr_rename_block_vehicles" data-i18n="vehicles">Vehicles</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-vehicles__size" data-i18n="vehicles-size">Size</div>
|
||
<div class="sheet-vehicles__handling" data-i18n="vehicles-handling">Handling</div>
|
||
<div class="sheet-vehicles__speed" data-i18n="vehicles-speed">Speed</div>
|
||
<div class="sheet-vehicles__toughness" data-i18n="vehicles-toughness">Tough.</div>
|
||
<div class="sheet-vehicles__crew" data-i18n="vehicles-crew">Crew</div>
|
||
<div class="sheet-vehicles__weapons" data-i18n="vehicles-weapons">Weap.</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_vehicles_visibility_toggle" checked>
|
||
<fieldset class="repeating_vehicles">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-vehicles__name sheet-stretch" type="text" name="attr_vehicle_name" placeholder="Vehicle Type" data-i18n-placeholder="vehicles-name-placeholder" spellcheck="false">
|
||
<input class="sheet-vehicles__size" type="text" name="attr_vehicle_size" placeholder="3" spellcheck="false">
|
||
<input class="sheet-vehicles__handling" type="text" name="attr_vehicle_handling" placeholder="0" spellcheck="false">
|
||
<input class="sheet-vehicles__speed" type="text" name="attr_vehicle_speed" placeholder="80" spellcheck="false">
|
||
<input class="sheet-vehicles__toughness" type="text" name="attr_vehicle_toughness" placeholder="4 (0)" data-i18n-placeholder="vehicles-toughness-placeholder" spellcheck="false">
|
||
<input class="sheet-vehicles__crew" type="text" name="attr_vehicle_crew" placeholder="1+3" data-i18n-placeholder="vehicles-crew-placeholder" spellcheck="false">
|
||
<input class="sheet-vehicles__weapons" type="text" name="attr_vehicle_weapons_count" placeholder="0" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_notes_toggle">
|
||
<div class="sheet-repitem__frame">
|
||
<input class="sheet-hidden sheet-repitem__frame-silhouette-control" type="hidden" name="attr_vehicle_silhouette" value="0">
|
||
<div class="sheet-repitem__frame-silhouette">
|
||
<input class="sheet-repitem__frame-silhouette-button" type="checkbox" name="attr_vehicle_silhouette_cycle">
|
||
</div>
|
||
<div class="sheet-repitem__frame-build">
|
||
<textarea name="attr_vehicle_build" placeholder="Chassis | Modifications, Notes, etc." data-i18n-placeholder="vehicles-build-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-repitem__weapons-control" type="hidden" name="attr_vehicle_weapons_count" value="0">
|
||
<div class="sheet-repitem__weapons">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-repitem__weapons-name" data-i18n="sublist-weapons-name">Weapon</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-ap-damage">AP Damage</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-he-damage">HE Damage</div>
|
||
<div class="sheet-repitem__weapons-range" data-i18n="sublist-weapons-range">Range</div>
|
||
<div class="sheet-repitem__weapons-rof" data-i18n="sublist-weapons-rof">ROF</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--1">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_1_name" placeholder="Weapon #1" data-i18n-placeholder="sublist-weapons-name-placeholder-1" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_1_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_1_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_1">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_1" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_1_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_1_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--2">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_2_name" placeholder="Weapon #2" data-i18n-placeholder="sublist-weapons-name-placeholder-2" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_2_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_2_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_2">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_2" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_2_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_2_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--3">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_3_name" placeholder="Weapon #3" data-i18n-placeholder="sublist-weapons-name-placeholder-3" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_3_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_3_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_3">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_3" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_3_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_3_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--4">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_4_name" placeholder="Weapon #4" data-i18n-placeholder="sublist-weapons-name-placeholder-4" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_4_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_4_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_4">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_4" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_4_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_4_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--5">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_5_name" placeholder="Weapon #5" data-i18n-placeholder="sublist-weapons-name-placeholder-5" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_5_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_5_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_5">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_5" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_5_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_5_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--6">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_6_name" placeholder="Weapon #6" data-i18n-placeholder="sublist-weapons-name-placeholder-6" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_6_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_6_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_6">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_6" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_6_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_6_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--7">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_7_name" placeholder="Weapon #7" data-i18n-placeholder="sublist-weapons-name-placeholder-7" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_7_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_7_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_7">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_7" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_7_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_7_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--8">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_8_name" placeholder="Weapon #8" data-i18n-placeholder="sublist-weapons-name-placeholder-8" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_8_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_8_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_8">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_8" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_8_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_8_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--9">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_9_name" placeholder="Weapon #9" data-i18n-placeholder="sublist-weapons-name-placeholder-9" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_9_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_9_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_9">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_9" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_9_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_9_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--10">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_10_name" placeholder="Weapon #10" data-i18n-placeholder="sublist-weapons-name-placeholder-10" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_10_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_10_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_10">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_10" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_10_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_10_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_walkers_block">
|
||
<div class="sheet-block sheet-walkers">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-walkers__name" name="attr_rename_block_walkers" data-i18n="walkers">Walkers</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-walkers__size" data-i18n="walkers-size">Size</div>
|
||
<div class="sheet-walkers__pace" data-i18n="walkers-pace">Pace</div>
|
||
<div class="sheet-walkers__strength" data-i18n="walkers-strength">Strength</div>
|
||
<div class="sheet-walkers__toughness" data-i18n="walkers-toughness">Tough.</div>
|
||
<div class="sheet-walkers__mods" data-i18n="walkers-mods">Mods</div>
|
||
<div class="sheet-walkers__crew" data-i18n="walkers-crew">Crew</div>
|
||
<div class="sheet-walkers__weapons" data-i18n="walkers-weapons">Weap.</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_walkers_visibility_toggle" checked>
|
||
<fieldset class="repeating_walkers">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-walkers__name sheet-stretch" type="text" name="attr_walker_name" placeholder="Walker Type" data-i18n-placeholder="walkers-name-placeholder" spellcheck="false">
|
||
<input class="sheet-walkers__size" type="text" name="attr_walker_size" placeholder="1" spellcheck="false">
|
||
<input class="sheet-walkers__pace" type="text" name="attr_walker_pace" placeholder="6" spellcheck="false">
|
||
<input class="sheet-walkers__strength" type="text" name="attr_walker_strength" placeholder="d12+4" spellcheck="false">
|
||
<input class="sheet-walkers__toughness" type="text" name="attr_walker_toughness" placeholder="20 (5)" data-i18n-placeholder="walkers-toughness-placeholder" spellcheck="false">
|
||
<input class="sheet-walkers__mods" type="text" name="attr_walker_mods" placeholder="0/20" data-i18n-placeholder="walkers-mods-placeholder" spellcheck="false">
|
||
<input class="sheet-walkers__crew" type="text" name="attr_walker_crew" placeholder="1" spellcheck="false">
|
||
<input class="sheet-walkers__weapons" type="text" name="attr_walker_weapons_count" placeholder="0" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_walker_notes_toggle">
|
||
<div class="sheet-repitem__frame">
|
||
<div class="sheet-repitem__frame-silhouette"></div>
|
||
<div class="sheet-repitem__frame-build">
|
||
<textarea name="attr_walker_build" placeholder="Chassis | Modifications, Notes, etc." data-i18n-placeholder="walkers-build-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-repitem__weapons-control" type="hidden" name="attr_walker_weapons_count" value="0">
|
||
<div class="sheet-repitem__weapons">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-repitem__weapons-name" data-i18n="sublist-weapons-name">Weapon</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-ap-damage">AP Damage</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-he-damage">HE Damage</div>
|
||
<div class="sheet-repitem__weapons-range" data-i18n="sublist-weapons-range">Range</div>
|
||
<div class="sheet-repitem__weapons-rof" data-i18n="sublist-weapons-rof">ROF</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--1">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_1_name" placeholder="Weapon #1" data-i18n-placeholder="sublist-weapons-name-placeholder-1" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_1_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_1_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_1">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_1" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_1_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_1_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--2">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_2_name" placeholder="Weapon #2" data-i18n-placeholder="sublist-weapons-name-placeholder-2" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_2_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_2_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_2">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_2" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_2_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_2_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--3">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_3_name" placeholder="Weapon #3" data-i18n-placeholder="sublist-weapons-name-placeholder-3" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_3_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_3_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_3">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_3" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_3_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_3_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--4">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_4_name" placeholder="Weapon #4" data-i18n-placeholder="sublist-weapons-name-placeholder-4" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_4_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_4_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_4">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_4" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_4_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_4_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--5">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_5_name" placeholder="Weapon #5" data-i18n-placeholder="sublist-weapons-name-placeholder-5" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_5_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_5_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_5">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_5" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_5_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_5_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--6">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_6_name" placeholder="Weapon #6" data-i18n-placeholder="sublist-weapons-name-placeholder-6" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_6_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_6_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_6">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_6" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_6_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_6_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--7">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_7_name" placeholder="Weapon #7" data-i18n-placeholder="sublist-weapons-name-placeholder-7" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_7_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_7_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_7">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_7" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_7_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_7_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--8">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_8_name" placeholder="Weapon #8" data-i18n-placeholder="sublist-weapons-name-placeholder-8" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_8_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_8_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_8">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_8" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_8_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_8_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--9">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_9_name" placeholder="Weapon #9" data-i18n-placeholder="sublist-weapons-name-placeholder-9" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_9_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_9_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_9">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_9" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_9_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_9_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--10">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_10_name" placeholder="Weapon #10" data-i18n-placeholder="sublist-weapons-name-placeholder-10" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_10_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_10_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_10">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_10" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_10_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_10_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_powerarmors_block">
|
||
<div class="sheet-block sheet-powerarmors">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-powerarmors__name" name="attr_rename_block_powerarmors" data-i18n="powerarmors">Power Armors</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-powerarmors__size" data-i18n="powerarmors-size">Size</div>
|
||
<div class="sheet-powerarmors__armor" data-i18n="powerarmors-armor">Armor</div>
|
||
<div class="sheet-powerarmors__pace" data-i18n="powerarmors-pace">Pace</div>
|
||
<div class="sheet-powerarmors__mods" data-i18n="powerarmors-mods">Mods</div>
|
||
<div class="sheet-powerarmors__weight" data-i18n="powerarmors-weight">Weight</div>
|
||
<div class="sheet-powerarmors__weapons" data-i18n="powerarmors-weapons">Weap.</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_powerarmors_visibility_toggle" checked>
|
||
<fieldset class="repeating_powerarmors">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-powerarmors__name sheet-stretch" type="text" name="attr_powerarmor_name" placeholder="Power Armor Type" data-i18n-placeholder="powerarmors-name-placeholder" spellcheck="false">
|
||
<input class="sheet-powerarmors__size" type="text" name="attr_powerarmor_size" placeholder="1" spellcheck="false">
|
||
<input class="sheet-powerarmors__armor" type="text" name="attr_powerarmor_armor" placeholder="8" spellcheck="false">
|
||
<input class="sheet-powerarmors__pace" type="text" name="attr_powerarmor_pace" placeholder="8" spellcheck="false">
|
||
<input class="sheet-powerarmors__mods" type="text" name="attr_powerarmor_mods" placeholder="0/5" data-i18n-placeholder="powerarmors-mods-placeholder" spellcheck="false">
|
||
<input class="sheet-powerarmors__weight" type="text" name="attr_powerarmor_weight" placeholder="500" data-i18n-placeholder="powerarmors-weight-placeholder" spellcheck="false">
|
||
<input class="sheet-powerarmors__weapons" type="text" name="attr_powerarmor_weapons_count" placeholder="0" spellcheck="false">
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_powerarmor_notes_toggle">
|
||
<div class="sheet-repitem__frame">
|
||
<div class="sheet-repitem__frame-silhouette"></div>
|
||
<div class="sheet-repitem__frame-build">
|
||
<textarea name="attr_powerarmor_build" placeholder="Chassis | Modifications, Notes, etc." data-i18n-placeholder="powerarmors-build-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-hidden sheet-repitem__weapons-control" type="hidden" name="attr_powerarmor_weapons_count" value="0">
|
||
<div class="sheet-repitem__weapons">
|
||
<div class="sheet-header">
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-repitem__weapons-name" data-i18n="sublist-weapons-name">Weapon</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-ap-damage">AP Damage</div>
|
||
<div class="sheet-repitem__weapons-damage" data-i18n="sublist-weapons-he-damage">HE Damage</div>
|
||
<div class="sheet-repitem__weapons-range" data-i18n="sublist-weapons-range">Range</div>
|
||
<div class="sheet-repitem__weapons-rof" data-i18n="sublist-weapons-rof">ROF</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--1">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_1_name" placeholder="Weapon #1" data-i18n-placeholder="sublist-weapons-name-placeholder-1" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_1_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_1_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_1_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_1">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_1" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_1_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_1_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--2">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_2_name" placeholder="Weapon #2" data-i18n-placeholder="sublist-weapons-name-placeholder-2" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_2_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_2_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_2_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_2">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_2" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_2_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_2_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--3">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_3_name" placeholder="Weapon #3" data-i18n-placeholder="sublist-weapons-name-placeholder-3" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_3_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_3_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_3_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_3">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_3" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_3_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_3_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--4">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_4_name" placeholder="Weapon #4" data-i18n-placeholder="sublist-weapons-name-placeholder-4" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_4_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_4_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_4_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_4">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_4" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_4_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_4_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--5">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_5_name" placeholder="Weapon #5" data-i18n-placeholder="sublist-weapons-name-placeholder-5" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_5_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_5_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_5_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_5">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_5" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_5_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_5_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--6">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_6_name" placeholder="Weapon #6" data-i18n-placeholder="sublist-weapons-name-placeholder-6" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_6_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_6_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_6_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_6">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_6" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_6_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_6_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--7">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_7_name" placeholder="Weapon #7" data-i18n-placeholder="sublist-weapons-name-placeholder-7" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_7_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_7_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_7_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_7">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_7" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_7_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_7_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--8">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_8_name" placeholder="Weapon #8" data-i18n-placeholder="sublist-weapons-name-placeholder-8" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_8_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_8_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_8_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_8">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_8" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_8_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_8_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--9">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_9_name" placeholder="Weapon #9" data-i18n-placeholder="sublist-weapons-name-placeholder-9" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_9_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_9_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_9_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_9">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_9" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_9_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_9_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-repitem__subitem sheet-repitem__subitem--10">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-repitem__weapons-name sheet-stretch" type="text" name="attr_vehicle_weapon_10_name" placeholder="Weapon #10" data-i18n-placeholder="sublist-weapons-name-placeholder-10" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_ap_damage" placeholder="3d10, AP 8" data-i18n-placeholder="sublist-weapons-ap-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-damage" type="text" name="attr_vehicle_weapon_10_he_damage" placeholder="3d8, AP 4, MBT" data-i18n-placeholder="sublist-weapons-he-damage-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-range" type="text" name="attr_vehicle_weapon_10_range" placeholder="50/100/200" data-i18n-placeholder="sublist-weapons-range-placeholder" spellcheck="false">
|
||
<input class="sheet-repitem__weapons-rof" type="text" name="attr_vehicle_weapon_10_rof" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_vehicle_weapon_note_box_toggle_10">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_vehicle_weapon_note_box_10" placeholder="Notes" data-i18n-placeholder="sublist-weapons-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_vehicle_weapon_10_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-repitem__note-label"><span data-i18n="sublist-weapons-notes-label">Notes:</span></div>
|
||
<input class="sheet-align-left sheet-repitem__note sheet-stretch" type="text" name="attr_vehicle_weapon_10_notes" placeholder="Notes, Tags, Trappings, etc." data-i18n-placeholder="sublist-weapons-notes-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--block" type="checkbox" name="attr_toggle_allies_block">
|
||
<div class="sheet-block sheet-allies">
|
||
<div class="sheet-header"><span class="sheet-header__title sheet-allies__name" name="attr_rename_block_allies" data-i18n="allies">Allies</span>
|
||
<div class="sheet-header__labels">
|
||
<div class="sheet-allies__pace" data-i18n="pace">Pace</div>
|
||
<div class="sheet-allies__parry" data-i18n="parry">Parry</div>
|
||
<div class="sheet-allies__toughness" data-i18n="toughness">Tough.</div>
|
||
<div class="sheet-allies__size" data-i18n="size">Size</div>
|
||
<div class="sheet-allies__exp" data-i18n="exp">EXP</div>
|
||
<div class="sheet-allies__level" data-i18n="level">Level</div>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--visibility" type="checkbox" name="attr_allies_visibility_toggle" checked>
|
||
<fieldset class="repeating_allies">
|
||
<div class="sheet-repitem">
|
||
<div class="sheet-repitem__primary">
|
||
<input class="sheet-align-left sheet-allies__name sheet-stretch" type="text" name="attr_ally_name" placeholder="Name" data-i18n-placeholder="allies-name-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__pace" type="text" name="attr_ally_pace" placeholder="6" spellcheck="false">
|
||
<input class="sheet-allies__parry" type="text" name="attr_ally_parry" placeholder="4" spellcheck="false">
|
||
<input class="sheet-allies__toughness" type="text" name="attr_ally_toughness" placeholder="4" spellcheck="false">
|
||
<input class="sheet-allies__size" type="text" name="attr_ally_size" placeholder="0" spellcheck="false">
|
||
<input class="sheet-allies__exp" type="text" name="attr_ally_exp" placeholder="0" spellcheck="false">
|
||
<input class="sheet-allies__level" type="text" name="attr_ally_level" placeholder="1" spellcheck="false">
|
||
<input class="sheet-toggle sheet-toggle--note-box" type="checkbox" name="attr_ally_note_box_toggle">
|
||
<div class="sheet-repitem__note-box">
|
||
<textarea name="attr_ally_note_box" placeholder="Notes" data-i18n-placeholder="allies-note-box-placeholder" spellcheck="false"></textarea>
|
||
</div>
|
||
</div>
|
||
<input class="sheet-toggle sheet-toggle--arrow" type="checkbox" name="attr_ally_notes_toggle">
|
||
<div class="sheet-repitem__secondary">
|
||
<div class="sheet-left">
|
||
<button type="roll" name="roll_ally_roll_2" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d4-2}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - -2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_2)}}"><span data-i18n="die-button-number-2">2</span></button>
|
||
<button type="roll" name="roll_ally_roll_4" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d4}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d4!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_4)}}"><span data-i18n="die-button-number-4">4</span></button>
|
||
<button type="roll" name="roll_ally_roll_6" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d6}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d6!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_6)}}"><span data-i18n="die-button-number-6">6</span></button>
|
||
<button type="roll" name="roll_ally_roll_8" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d8}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d8!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_8)}}"><span data-i18n="die-button-number-8">8</span></button>
|
||
<button type="roll" name="roll_ally_roll_10" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d10}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d10!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_10)}}"><span data-i18n="die-button-number-10">10</span></button>
|
||
<button type="roll" name="roll_ally_roll_12" value="@{gm_roll} &{template:TraitRoll} {{header=[^{ally}] @{ally_name} ^{rolls}: d12}} {{commander=@{name}}} {{rof=[[ ?{@{query_rate_of_fire}|1} ]]}} {{modifier=?{@{query_modifier}|0}}} {{wd=?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}}} {{traitroll1=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll2=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll3=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll4=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll5=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll6=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll7=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{traitroll8=[[ d12!cs2 + (?{@{query_modifier}|0})[Modifier] ]]}} {{wdroll=[[ ?{@{query_wild_die}|@{none},-10000|d4|d6|d8|d10|d12}!cs2 - + (?{@{query_modifier}|0})[Modifier] ]]}} {{reroll=[r](~repeating_allies_ally_roll_12)}}"><span data-i18n="die-button-number-12">12</span></button>
|
||
<div class="sheet-allies__health-field sheet-allies__health-field--wounds">
|
||
<input type="text" name="attr_ally_note_wounds" spellcheck="false">
|
||
</div>
|
||
<div class="sheet-allies__health-field sheet-allies__health-field--fatigue">
|
||
<input type="text" name="attr_ally_note_fatigue" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
<div class="sheet-right">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--1" type="text" name="attr_ally_note_field_1" placeholder="Note #1" data-i18n-placeholder="allies-note-field-1-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--2" type="text" name="attr_ally_note_field_2" placeholder="Note #2" data-i18n-placeholder="allies-note-field-2-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--3" type="text" name="attr_ally_note_field_3" placeholder="Note #3" data-i18n-placeholder="allies-note-field-3-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--4" type="text" name="attr_ally_note_field_4" placeholder="Note #4" data-i18n-placeholder="allies-note-field-4-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--5" type="text" name="attr_ally_note_field_5" placeholder="Note #5" data-i18n-placeholder="allies-note-field-5-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--6" type="text" name="attr_ally_note_field_6" placeholder="Note #6" data-i18n-placeholder="allies-note-field-6-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--7" type="text" name="attr_ally_note_field_7" placeholder="Note #7" data-i18n-placeholder="allies-note-field-7-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--8" type="text" name="attr_ally_note_field_8" placeholder="Note #8" data-i18n-placeholder="allies-note-field-8-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--9" type="text" name="attr_ally_note_field_9" placeholder="Note #9" data-i18n-placeholder="allies-note-field-9-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--10" type="text" name="attr_ally_note_field_10" placeholder="Note #10" data-i18n-placeholder="allies-note-field-10-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--11" type="text" name="attr_ally_note_field_11" placeholder="Note #11" data-i18n-placeholder="allies-note-field-11-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--12" type="text" name="attr_ally_note_field_12" placeholder="Note #12" data-i18n-placeholder="allies-note-field-12-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--13" type="text" name="attr_ally_note_field_13" placeholder="Note #13" data-i18n-placeholder="allies-note-field-13-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--14" type="text" name="attr_ally_note_field_14" placeholder="Note #14" data-i18n-placeholder="allies-note-field-14-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--15" type="text" name="attr_ally_note_field_15" placeholder="Note #15" data-i18n-placeholder="allies-note-field-15-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--16" type="text" name="attr_ally_note_field_16" placeholder="Note #16" data-i18n-placeholder="allies-note-field-16-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--17" type="text" name="attr_ally_note_field_17" placeholder="Note #17" data-i18n-placeholder="allies-note-field-17-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--18" type="text" name="attr_ally_note_field_18" placeholder="Note #18" data-i18n-placeholder="allies-note-field-18-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--19" type="text" name="attr_ally_note_field_19" placeholder="Note #19" data-i18n-placeholder="allies-note-field-19-placeholder" spellcheck="false">
|
||
<input class="sheet-allies__note-field sheet-allies__note-field--20" type="text" name="attr_ally_note_field_20" placeholder="Note #20" data-i18n-placeholder="allies-note-field-20-placeholder" spellcheck="false">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<div class="sheet-footer"></div>
|
||
</div>
|
||
<div class="sheet-block sheet-extra-settings">
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_quick_notes_block" checked><span name="attr_rename_block_quick_notes" data-i18n="quick-notes">Quick Notes</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_features_block" checked><span data-i18n="edges-and-hindrances">Edges & Hindrances</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_abilities_block"><span name="attr_rename_block_abilities" data-i18n="abilities">Abilities</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_weapons_block" checked><span name="attr_rename_block_weapons" data-i18n="weapons">Weapons</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_apparel_block" checked><span name="attr_rename_block_apparel" data-i18n="apparel">Apparel</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_augmentations_block" checked><span name="attr_rename_block_augmentations" data-i18n="augmentations">Augmentations</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_engrams_block" checked><span name="attr_rename_block_engrams" data-i18n="engrams">Engrams</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_powerarmors_block"><span name="attr_rename_block_powerarmor" data-i18n="powerarmors">Power Armors</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_powers_block"><span name="attr_rename_block_powers" data-i18n="powers">Powers</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_vehicles_block"><span name="attr_rename_block_vehicles" data-i18n="vehicles">Vehicles</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_walkers_block"><span name="attr_rename_block_walkers" data-i18n="walkers">Walkers</span>
|
||
</label>
|
||
<label class="sheet-extra-settings__item">
|
||
<input class="sheet-hidden" type="checkbox" name="attr_toggle_allies_block"><span name="attr_rename_block_allies" data-i18n="allies">Allies</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<rolltemplate class="sheet-rolltemplate-TraitRoll">
|
||
<div class="sheet-rolltemplate">
|
||
<div class="sheet-rolltemplate__header">{{header}}</div>{{#description}}
|
||
<div class="sheet-rolltemplate__description">{{description}}</div>{{/description}}
|
||
<div class="sheet-rolltemplate__content">{{#reroll}}
|
||
<div class="sheet-rolltemplate__reroll" title="Reroll" data-i18n-title="rolltemplate-reroll-title">
|
||
<div class="sheet-rolltemplate__button">{{reroll}}</div>
|
||
</div>{{/reroll}}{{#damageroll}}
|
||
<div class="sheet-rolltemplate__roll-damage" title="Roll Damage" data-i18n-title="rolltemplate-damage-title">
|
||
<div class="sheet-rolltemplate__button">{{damageroll}}</div>
|
||
</div>{{/damageroll}}{{#source_label}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left">{{source_label}}</div>
|
||
<div class="sheet-right">{{source}}</div>
|
||
</div>{{/source_label}}{{#traitdie}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left">{{trait}}</div>
|
||
<div class="sheet-right"><span>{{traitdie}} </span>{{#flat}}<span>({{flat}})</span>{{/flat}}
|
||
</div>
|
||
</div>{{/traitdie}}{{#rollLess() global_wdroll 0}}{{#wd}}{{#rollGreater() wdroll -1000}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-wild-die">Wild Die</div>
|
||
<div class="sheet-right">{{wd}}</div>
|
||
</div>{{/rollGreater() wdroll -1000}}{{/wd}}{{/rollLess() global_wdroll 0}}{{#rollGreater() global_wdroll -1000}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-wild-die">Wild Die</div>
|
||
<div class="sheet-right">{{global_wd}}</div>
|
||
</div>{{/rollGreater() global_wdroll -1000}}{{#rollGreater() bonus_wdroll -1000}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-bonus-wild-die">Bonus Wild Die</div>
|
||
<div class="sheet-right">{{bonus_wd}}</div>
|
||
</div>{{/rollGreater() bonus_wdroll -1000}}{{#commander}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-commander">Commander</div>
|
||
<div class="sheet-right">{{commander}}</div>
|
||
</div>{{/commander}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-modifier">Modifier</div>
|
||
<div class="sheet-right">{{modifier}}{{#bonus}} ({{bonus}}){{/bonus}}</div>
|
||
</div>{{#rollGreater() rof 1}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-dice-rof">Dice/RoF</div>
|
||
<div class="sheet-right">{{rof}}</div>
|
||
</div>{{/rollGreater() rof 1}}{{#rollGreater() wounds 0}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-wound-penalty">Wound Penalty</div>
|
||
<div class="sheet-right">{{wounds}}</div>
|
||
</div>{{/rollGreater() wounds 0}}{{#rollGreater() fatigue 0}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-fatigue">Fatigue</div>
|
||
<div class="sheet-right">{{fatigue}}</div>
|
||
</div>{{/rollGreater() fatigue 0}}{{#custom1_label}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left">{{custom1_label}}</div>
|
||
<div class="sheet-right">{{custom1}}</div>
|
||
</div>{{/custom1_label}}{{#custom2_label}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left">{{custom2_label}}</div>
|
||
<div class="sheet-right">{{custom2}}</div>
|
||
</div>{{/custom2_label}}{{#custom3_label}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left">{{custom3_label}}</div>
|
||
<div class="sheet-right">{{custom3}}</div>
|
||
</div>{{/custom3_label}}
|
||
</div>
|
||
<div class="sheet-rolltemplate__dice">
|
||
<div class="sheet-left">
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--1">{{traitroll1}}
|
||
</div>{{#rollGreater() rof 1}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--2">{{traitroll2}}
|
||
</div>{{/rollGreater() rof 1}}{{#rollGreater() rof 2}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--3">{{traitroll3}}
|
||
</div>{{/rollGreater() rof 2}}{{#rollGreater() rof 3}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--4">{{traitroll4}}
|
||
</div>{{/rollGreater() rof 3}}{{#rollGreater() rof 4}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--5">{{traitroll5}}
|
||
</div>{{/rollGreater() rof 4}}{{#rollGreater() rof 5}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--6">{{traitroll6}}
|
||
</div>{{/rollGreater() rof 5}}{{#rollGreater() rof 6}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--7">{{traitroll7}}
|
||
</div>{{/rollGreater() rof 6}}{{#rollGreater() rof 7}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--8">{{traitroll8}}
|
||
</div>{{/rollGreater() rof 7}}
|
||
</div>
|
||
<div class="sheet-right">{{#rollLess() global_wdroll -100}}{{#rollGreater() wdroll -1000}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--wd">{{wdroll}}
|
||
</div>{{/rollGreater() wdroll -1000}}{{/rollLess() global_wdroll -100}}{{#rollGreater() global_wdroll -1000}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--wd">{{global_wdroll}}
|
||
</div>{{/rollGreater() global_wdroll -1000}}{{#rollGreater() bonus_wdroll -1000}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--wd">{{bonus_wdroll}}
|
||
</div>{{/rollGreater() bonus_wdroll -1000}}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</rolltemplate>
|
||
<rolltemplate class="sheet-rolltemplate-DiceRoller">
|
||
<div class="sheet-rolltemplate">
|
||
<div class="sheet-rolltemplate__header">{{header}}</div>
|
||
<div class="sheet-rolltemplate__content">
|
||
<div class="sheet-rolltemplate__reroll" title="Reroll" data-i18n-title="rolltemplate-reroll-title">
|
||
<div class="sheet-rolltemplate__button">{{reroll}}</div>
|
||
</div>
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-dice-rof">Dice/RoF</div>
|
||
<div class="sheet-right">{{rof}}</div>
|
||
</div>
|
||
</div>
|
||
<div class="sheet-rolltemplate__dice">
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--1">{{roll1}}
|
||
</div>{{#rollGreater() rof 1}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--2">{{roll2}}
|
||
</div>{{/rollGreater() rof 1}}{{#rollGreater() rof 2}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--3">{{roll3}}
|
||
</div>{{/rollGreater() rof 2}}{{#rollGreater() rof 3}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--4">{{roll4}}
|
||
</div>{{/rollGreater() rof 3}}{{#rollGreater() rof 4}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--5">{{roll5}}
|
||
</div>{{/rollGreater() rof 4}}{{#rollGreater() rof 5}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--6">{{roll6}}
|
||
</div>{{/rollGreater() rof 5}}{{#rollGreater() rof 6}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--7">{{roll7}}
|
||
</div>{{/rollGreater() rof 6}}{{#rollGreater() rof 7}}
|
||
<div class="sheet-rolltemplate__roll sheet-rolltemplate__roll--8">{{roll8}}
|
||
</div>{{/rollGreater() rof 7}}
|
||
</div>
|
||
</div>
|
||
</rolltemplate>
|
||
<rolltemplate class="sheet-rolltemplate-RunRoll">
|
||
<div class="sheet-rolltemplate">
|
||
<div class="sheet-rolltemplate__header">{{header}}</div>
|
||
<div class="sheet-rolltemplate__content">{{content}}</div>
|
||
</div>
|
||
</rolltemplate>
|
||
<rolltemplate class="sheet-rolltemplate-InfoBox">
|
||
<div class="sheet-rolltemplate">
|
||
<div class="sheet-rolltemplate__content">{{content}}</div>
|
||
</div>
|
||
</rolltemplate>
|
||
<rolltemplate class="sheet-rolltemplate-DamageRoll">
|
||
<div class="sheet-rolltemplate">
|
||
<div class="sheet-rolltemplate__header">{{header}}</div>{{#description}}
|
||
<div class="sheet-rolltemplate__description">{{description}}</div>{{/description}}
|
||
<div class="sheet-rolltemplate__content">{{#reroll}}
|
||
<div class="sheet-rolltemplate__reroll" title="Reroll" data-i18n-title="rolltemplate-reroll-title">
|
||
<div class="sheet-rolltemplate__button">{{reroll}}</div>
|
||
</div>{{/reroll}}{{#source_label}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left">{{source_label}}</div>
|
||
<div class="sheet-right">{{source}}</div>
|
||
</div>{{/source_label}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-damage">Damage</div>
|
||
<div class="sheet-right">{{code}}</div>
|
||
</div>{{#modifier}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-damage-modifier">Damage Modifier</div>
|
||
<div class="sheet-right">{{modifier}}</div>
|
||
</div>{{/modifier}}{{#ap}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-armor-piercing">Armor Piercing</div>
|
||
<div class="sheet-right">{{ap}}</div>
|
||
</div>{{/ap}}{{#rollGreater() rof 1}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-hits-rof">Hits/RoF</div>
|
||
<div class="sheet-right">{{rof}}</div>
|
||
</div>{{/rollGreater() rof 1}}{{#range}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-range">Range</div>
|
||
<div class="sheet-right">{{range}}</div>
|
||
</div>{{/range}}{{#trapping}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left" data-i18n="rolltemplate-trapping">Trapping</div>
|
||
<div class="sheet-right">{{trapping}}</div>
|
||
</div>{{/trapping}}{{#custom1_label}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left">{{custom1_label}}</div>
|
||
<div class="sheet-right">{{custom1}}</div>
|
||
</div>{{/custom1_label}}{{#custom2_label}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left">{{custom2_label}}</div>
|
||
<div class="sheet-right">{{custom2}}</div>
|
||
</div>{{/custom2_label}}{{#custom3_label}}
|
||
<div class="sheet-rolltemplate__content-row">
|
||
<div class="sheet-left">{{custom3_label}}</div>
|
||
<div class="sheet-right">{{custom3}}</div>
|
||
</div>{{/custom3_label}}
|
||
</div>
|
||
<div class="sheet-rolltemplate__dice sheet-rolltemplate__dice--damage">
|
||
<div class="sheet-rolltemplate__damage-roll">{{roll1}}
|
||
</div>{{#rollGreater() rof 1}}
|
||
<div class="sheet-rolltemplate__damage-roll">{{roll2}}
|
||
</div>{{/rollGreater() rof 1}}{{#rollGreater() rof 2}}
|
||
<div class="sheet-rolltemplate__damage-roll">{{roll3}}
|
||
</div>{{/rollGreater() rof 2}}{{#rollGreater() rof 3}}
|
||
<div class="sheet-rolltemplate__damage-roll">{{roll4}}
|
||
</div>{{/rollGreater() rof 3}}{{#rollGreater() rof 4}}
|
||
<div class="sheet-rolltemplate__damage-roll">{{roll5}}
|
||
</div>{{/rollGreater() rof 4}}{{#rollGreater() rof 5}}
|
||
<div class="sheet-rolltemplate__damage-roll">{{roll6}}
|
||
</div>{{/rollGreater() rof 5}}{{#rollGreater() rof 6}}
|
||
<div class="sheet-rolltemplate__damage-roll">{{roll7}}
|
||
</div>{{/rollGreater() rof 6}}{{#rollGreater() rof 7}}
|
||
<div class="sheet-rolltemplate__damage-roll">{{roll8}}
|
||
</div>{{/rollGreater() rof 7}}
|
||
</div>
|
||
</div>
|
||
</rolltemplate>
|
||
</div>
|
||
</body>
|
||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
||
<script>// Synchronize inputs in the browser preview (not Roll20!)
|
||
$('input[type=text]').on('change', function() {
|
||
$(`input[name=${$(this).attr('name')}]`).val($(this).val());
|
||
});
|
||
|
||
$('input[type=text]').on('change', function() {
|
||
$(`span[name=${$(this).attr('name')}]`).html($(this).val());
|
||
});
|
||
|
||
$('textarea').on('change', function() {
|
||
$(`span[name=${$(this).attr('name')}]`).html($(this).val());
|
||
});
|
||
|
||
$('input[type=checkbox]').on('change', function() {
|
||
$(`input[name=${$(this).attr('name')}]`).prop('checked', $(this).prop('checked'));
|
||
});
|
||
|
||
</script>
|
||
</html>
|
||
|
||
|
||
|
||
|