mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-05 22:52:32 +00:00
Alien The Roleplaying Game - Character Sheet visual update (#7201)
* Cosmetic update Adjusted the layout so it scales easier, changed the fonts to give it more of a thematic feel and aligned many of the offset pieces to make it neater. Made some widgets larger and easier to understand for players. * Deleted .DS_Store Removed un-needed file * Removed Images Removed unused background, header and footer images
This commit is contained in:
Vendored
BIN
Binary file not shown.
@@ -1,49 +1,66 @@
|
||||
.sheet-background-wrap {
|
||||
background-color: #000000; /* Black */
|
||||
background-image: url("https://github.com/Roll20/roll20-character-sheets/blob/master/Alien%20Roleplaying%20Game/Images/Background-Stars.jpg?raw=true");
|
||||
background-size: cover;
|
||||
@import url('https://fonts.googleapis.com/css?family=Montserrat|Graduate|Courier+Prime|Share+Tech+Mono&display=swap');
|
||||
/* ORIGINAL */
|
||||
|
||||
.sheet-background-wrap{
|
||||
background-color: black;
|
||||
padding: 5px;
|
||||
min-width: 1128px;
|
||||
}
|
||||
.sheet-header-image{
|
||||
background-image: url("https://github.com/Roll20/roll20-character-sheets/blob/master/Alien%20Roleplaying%20Game/Images/Weyland-Yutani.png?raw=true");
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
min-width: 1000px;
|
||||
padding: 5px 7px 5px 7px;
|
||||
background-size: contain;
|
||||
padding-top: 25px;
|
||||
margin-bottom: 10px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.sheet-header-image {
|
||||
background-color: #000000; /* Black */
|
||||
background-image: url("https://github.com/Roll20/roll20-character-sheets/blob/master/Alien%20Roleplaying%20Game/Images/Header-Weyland-Yutani.png?raw=true");
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
min-height: 20px;
|
||||
padding: 0px 0px 15px 0px;
|
||||
}
|
||||
|
||||
.sheet-footer-image {
|
||||
background-color: #000000; /* Black */
|
||||
background-image: url("https://github.com/Roll20/roll20-character-sheets/blob/master/Alien%20Roleplaying%20Game/Images/Footer-Wwyland-Yutani.png?raw=true");
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
min-height: 10px;
|
||||
padding: 0px 0px 5px 0px;
|
||||
.sheet-footer-text{
|
||||
display: block;
|
||||
text-align: center;
|
||||
font-family: 'Graduate';
|
||||
text-transform: uppercase;
|
||||
color: rgba(211, 211, 211, 1);
|
||||
}
|
||||
|
||||
.sheet-grid-container {
|
||||
display: grid;
|
||||
background-color: transparent;
|
||||
/* border: 1px solid rgba(211, 211, 211, 1); LightGrey */
|
||||
border: 1px solid transparent;
|
||||
border-radius: 5px;
|
||||
border: 2px solid rgba(211, 211, 211, 1); /* LightGrey */
|
||||
border-radius: 0px;
|
||||
grid-gap: 10px;
|
||||
padding: 3px 10px 3px 10px;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.sheet-contains-thirteen-columns {
|
||||
grid-template-columns: 6.75% 6.75% 6.75% 6.75% 6.75% 6.75% 6.75% 6.75% 6.75% 6.75% 6.75% 6.75% 6.75%;
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
|
||||
}
|
||||
|
||||
.sheet-contains-four-columns {
|
||||
grid-template-columns: 20% 20% auto auto;
|
||||
grid-template-columns: 20% 20% auto 25%;
|
||||
grid-gap: 0px;
|
||||
padding: 0px;
|
||||
text-align: left;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.sheet-roll-buttons{
|
||||
display: grid;
|
||||
grid-gap: 5px;
|
||||
}
|
||||
|
||||
.sheet-alpha-buttons{
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
|
||||
}
|
||||
.sheet-beta-buttons{
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
margin: 5px 0px;
|
||||
|
||||
}
|
||||
.sheet-gamma-buttons{
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
|
||||
.sheet-span-one-two {
|
||||
@@ -168,6 +185,7 @@
|
||||
border-radius: 5px;
|
||||
padding: 5px;
|
||||
line-height: 24px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.sheet-black-item {
|
||||
@@ -181,8 +199,23 @@
|
||||
|
||||
.sheet-weapon-item {
|
||||
padding: 0px;
|
||||
text-align: center;
|
||||
border: 1px solid rgba(204, 217, 207, 1);
|
||||
width: auto;
|
||||
border-radius: 0px;
|
||||
border-right: 1px dashed rgb(0, 139, 139); /* Dark Cyan #008b8b */
|
||||
}
|
||||
|
||||
.sheet-weapon-item.sheet-range{
|
||||
padding: 0px 20px;
|
||||
}
|
||||
|
||||
.sheet-weapon-item.sheet-type{
|
||||
border-right-width: 0px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* - - - - - - - - - - AUTO EXPAND TEXTAREAS - - - - - - - - - - */
|
||||
.sheet-auto-expand {
|
||||
position: relative;
|
||||
@@ -190,16 +223,18 @@
|
||||
word-wrap: break-word;
|
||||
min-height: 1em;
|
||||
border: 1px Dashed #bfbfbf;
|
||||
text-align: left;
|
||||
font-family: 'Courier Prime';
|
||||
text-align: left;
|
||||
font-size: 0.9em;
|
||||
line-height: 1em;
|
||||
padding: 2px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.sheet-auto-expand span {
|
||||
visibility: hidden;
|
||||
white-space: pre-wrap;
|
||||
white-space: pre-wrap;
|
||||
display: block;
|
||||
font-family:
|
||||
}
|
||||
|
||||
.sheet-auto-expand textarea {
|
||||
@@ -224,6 +259,7 @@
|
||||
padding: inherit;
|
||||
text-align: inherit;
|
||||
text-transform: inherit;
|
||||
|
||||
}
|
||||
|
||||
.sheet-textarea-margin-correct {
|
||||
@@ -237,10 +273,28 @@
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
.sheet-span-relationships .sheet-dotted-line,
|
||||
.sheet-span-critical-injuries .sheet-dotted-line{
|
||||
margin: 8px;
|
||||
}
|
||||
|
||||
.sheet-teal-header {
|
||||
color: rgba(204, 217, 207, 1); /* Teal Varient */
|
||||
font-family: 'Graduate', cursive;
|
||||
text-transform: uppercase;
|
||||
font-size: 10px;
|
||||
letter-spacing: .1em;
|
||||
}
|
||||
|
||||
button[type="roll"].sheet-button-skill, .sheet-medium-teal-header, .sheet-dark-teal-header{
|
||||
color: #008b8b; /* Dark Cyan #008b8b */
|
||||
font-family: 'Montserrat';
|
||||
text-transform: uppercase;
|
||||
font-size: 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
.sheet-medium-teal-header {
|
||||
color: rgba(113, 142, 135, 1); /* Medium Teal #718e87 */
|
||||
}
|
||||
@@ -250,7 +304,7 @@
|
||||
font-weight: bold;
|
||||
}
|
||||
.sheet-vertical-adjust-one {
|
||||
margin-top: 3px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.sheet-vertical-balance {
|
||||
@@ -262,12 +316,13 @@
|
||||
border: 1px solid rgba(0, 0, 0, 1); /* Black #000000 */
|
||||
border-radius: 0px 20px 20px 0px;
|
||||
float: left;
|
||||
width: 85%;
|
||||
height: 1em;
|
||||
width: 80%;
|
||||
line-height: 1em;
|
||||
margin: -14px 15% 0px -7px;
|
||||
text-align: left;
|
||||
padding: 0px 0px 0px 5px;
|
||||
|
||||
}
|
||||
|
||||
.sheet-more-curves {
|
||||
@@ -285,17 +340,26 @@
|
||||
}
|
||||
|
||||
.sheet-mini-header {
|
||||
display: block;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
font-family: 'Montserrat';
|
||||
font-size: .75em;
|
||||
line-height: .75em;
|
||||
line-height: .75em;
|
||||
}
|
||||
|
||||
.sheet-bold {
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
letter-spacing: 0px;
|
||||
}
|
||||
|
||||
.sheet-align-left {
|
||||
text-align: left;
|
||||
}
|
||||
.sheet-align-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.sheet-float-left {
|
||||
float: left;
|
||||
@@ -306,21 +370,13 @@
|
||||
float: right;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.sheet-fake-float {
|
||||
margin-right: 65%;
|
||||
.sheet-condition-title {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.sheet-fake-float-two {
|
||||
margin-right: 64%;
|
||||
}
|
||||
|
||||
.sheet-fake-float-three {
|
||||
margin-right: 57%;
|
||||
}
|
||||
|
||||
.sheet-fake-float-four {
|
||||
margin-right: 59.5%;
|
||||
.sheet-relationship-title {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.sheet-text-input {
|
||||
@@ -329,6 +385,21 @@
|
||||
background: transparent;
|
||||
border: 1px solid transparent;
|
||||
padding: 3px;
|
||||
font-family: 'Courier Prime';
|
||||
}
|
||||
|
||||
.sheet-select-input{
|
||||
color: #555;
|
||||
width: 100%;
|
||||
height: 1.95em;
|
||||
padding: 3px;
|
||||
margin-bottom: 0px;
|
||||
background: transparent;
|
||||
font-family: 'Courier Prime';
|
||||
}
|
||||
|
||||
.sheet-relationship-input{
|
||||
width: 85%;
|
||||
}
|
||||
|
||||
.sheet-seventy-seven-percent {
|
||||
@@ -351,24 +422,28 @@ input[type="number"].sheet-no-spin-input, input[type="number"].sheet-number-inpu
|
||||
}
|
||||
|
||||
input[type="number"].sheet-no-spin-input {
|
||||
font-family: 'Courier Prime';
|
||||
font-size: 1.5em;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
||||
height: 1.5em;
|
||||
width: 1.5em;
|
||||
background-color: White;
|
||||
border: 1px solid White;
|
||||
margin: -1px -2px;
|
||||
padding: 3px 0px 0px 0px;
|
||||
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
margin-top: -2px;
|
||||
margin-left: -3px;
|
||||
box-shadow: 1px 1px 7px rgba(0, 139, 139, 1), -1px -1px 7px rgba(0, 139, 139, 1), 1px 1px 10px white, -1px -1px 10px white;
|
||||
}
|
||||
|
||||
input[type="number"].sheet-number-input {
|
||||
text-align: center;
|
||||
background: transparent;
|
||||
border: 1px solid transparent;
|
||||
border: 1px solid rgb(204, 204, 204);
|
||||
padding: 3px;
|
||||
font-family: 'Courier Prime';
|
||||
}
|
||||
|
||||
input[type="number"].sheet-shorter-number {
|
||||
@@ -471,9 +546,10 @@ input.sheet-tab {
|
||||
}
|
||||
|
||||
/* CUSTOM CHECKBOXES FOR ALIEN RPG */
|
||||
|
||||
input.sheet-numbered-box {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
position: relative;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
@@ -490,16 +566,22 @@ input.sheet-numbered-box + span::before {
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
background: #f5f5f5;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
font-size: 9px;
|
||||
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
font-size: 10px;
|
||||
font-weight: bold;
|
||||
margin-left: -14px;
|
||||
margin-right: 2px;
|
||||
padding: 0px 0px 0px 0px;
|
||||
line-height: 14px;
|
||||
line-height: 16px;
|
||||
box-shadow: 0px 0px 5px #008b8b;
|
||||
}
|
||||
|
||||
input.sheet-condition + span::before {
|
||||
margin-right: 10px; /* Indent the conditions on the right-hand side */
|
||||
}
|
||||
|
||||
input.sheet-numbered-box:checked + span::before {
|
||||
color: #ffffff;
|
||||
background: #cc0000;
|
||||
@@ -550,6 +632,7 @@ input.sheet-letter-box + span::before {
|
||||
width: 28px;
|
||||
height: 14px;
|
||||
font-size: 9px;
|
||||
font-weight: bold;
|
||||
margin-left: -28px;
|
||||
margin-right: 2px;
|
||||
padding: 0px 0px 0px 0px;
|
||||
@@ -564,6 +647,10 @@ input.sheet-letter-box:checked + span::before {
|
||||
box-shadow: 0px 0px 10px #008b8b;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* WOOHOO BUTTONS */
|
||||
button[type="roll"].sheet-button-alpha:before, button[type="roll"].sheet-button-skill:before, button[type="action"].sheet-action-modifier:before {
|
||||
content: ""!important;
|
||||
@@ -573,26 +660,25 @@ button[type="roll"].sheet-button-alpha:before, button[type="roll"].sheet-button-
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
button[type="roll"].sheet-button-skill {
|
||||
color: #008b8b; /* Dark Cyan #008b8b */
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
height: 14px;
|
||||
line-height: 14px;
|
||||
width: 60%;
|
||||
margin: 1px;
|
||||
margin: 4px 1px;
|
||||
background-color: transparent;
|
||||
border: 1px solid rgb(204, 217, 207); /* Teal Varient */
|
||||
border-radius: 5px;
|
||||
background-image: none;
|
||||
display: inline;
|
||||
text-shadow: none;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
button[type="roll"].sheet-button-skill:hover {
|
||||
color: rgb(204, 217, 207); /* Teal Varient */
|
||||
background-color: rgba(0, 139, 139, 1); /* Dark Cyan #008b8b */
|
||||
border: #008b8b;
|
||||
border: 1px solid #008b8b;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
@@ -607,23 +693,22 @@ button[type="roll"].sheet-bigger-skill {
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
/* Attack button in weapon box */
|
||||
button[type="roll"].sheet-smaller-skill {
|
||||
width: 16%;
|
||||
border: 1px solid #008b8b; /* Gave it an outline as players were not realising it was a button */
|
||||
}
|
||||
|
||||
|
||||
button[type="roll"].sheet-button-alpha, button[type="roll"].sheet-button-beta, button[type="roll"].sheet-button-gamma{
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
border: 1px solid #008b8b;
|
||||
width: inherit;
|
||||
}
|
||||
|
||||
button[type="roll"].sheet-button-alpha {
|
||||
width: 16%;
|
||||
border: 1px solid #008b8b;
|
||||
}
|
||||
|
||||
button[type="roll"].sheet-button-beta {
|
||||
width: 29.5%;
|
||||
border: 1px solid #008b8b;
|
||||
}
|
||||
|
||||
button[type="roll"].sheet-button-gamma {
|
||||
width: 46%;
|
||||
border: 1px solid #008b8b;
|
||||
text-transform: lowercase; /* Exception because common usage of 1d6 is more important than consistency with theme. */
|
||||
}
|
||||
|
||||
button[type="roll"].sheet-button-skill:focus {
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<!-- Alien the Roleplaying Game v1.0 The Quick Start Rules 7/28/2019
|
||||
Alien the Roleplaying Game v1.01 The Quick Start Rules Adjustments 8/04/2019 -->
|
||||
|
||||
<!-- Alien the Roleplaying Game
|
||||
v1.0 The Quick Start Rules 7/28/2019
|
||||
v1.01 The Quick Start Rules Adjustments 8/04/2019
|
||||
v1.02 Updated some of the layout, adjusted to mirror the layout/tone of the game's character sheet and to make it a bit more understandable after play session feedback 15/08/2020
|
||||
-->
|
||||
<div class="background-wrap">
|
||||
<div class="header-image"> </div>
|
||||
<div class="grid-container contains-thirteen-columns">
|
||||
@@ -42,28 +44,28 @@
|
||||
<input type="radio" class="sheet-tab sheet-tab-three" name="attr_tab" value="3" />
|
||||
<input type="radio" class="sheet-tab sheet-tab-four" name="attr_tab" value="4" />
|
||||
<div class="tab-content tab-one-contents"> <!--TAB 1 TALENT -->
|
||||
<input type="text" name="attr_talent_one" value="" class="text-input" title="@{talent_one}" spellcheck="false" placeholder="Talent One"/>
|
||||
<input type="text" name="attr_talent_one" value="" class="text-input" title="@{talent_one}" spellcheck="false" placeholder="Talent One Name"/>
|
||||
<div class="auto-expand">
|
||||
<span name="attr_talent_one_description"></span>
|
||||
<textarea name="attr_talent_one_description" value="" placeholder="Talent One Description..." title="@{talent_one_description}" spellcheck="false" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-content tab-two-contents"> <!--TAB 2 TALENT -->
|
||||
<input type="text" name="attr_talent_two" value="" class="text-input" title="@{talent_two}" spellcheck="false" placeholder="Talent Two"/>
|
||||
<input type="text" name="attr_talent_two" value="" class="text-input" title="@{talent_two}" spellcheck="false" placeholder="Talent Two Name"/>
|
||||
<div class="auto-expand">
|
||||
<span name="attr_talent_two_description"></span>
|
||||
<textarea name="attr_talent_two_description" value="" placeholder="Talent Two Description..." title="@{talent_two_description}" spellcheck="false" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-content tab-three-contents"> <!--TAB 3 TALENT -->
|
||||
<input type="text" name="attr_talent_three" value="" class="text-input" title="@{talent_three}" spellcheck="false" placeholder="Talent Three"/>
|
||||
<input type="text" name="attr_talent_three" value="" class="text-input" title="@{talent_three}" spellcheck="false" placeholder="Talent Three Name"/>
|
||||
<div class="auto-expand">
|
||||
<span name="attr_talent_three_description"></span>
|
||||
<textarea name="attr_talent_three_description" value="" placeholder="Talent Three Description..." title="@{talent_three_description}" spellcheck="false" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-content tab-four-contents"> <!--TAB 4 TALENT -->
|
||||
<input type="text" name="attr_talent_four" value="" class="text-input" title="@{talent_four}" spellcheck="false" placeholder="Talent Four"/>
|
||||
<input type="text" name="attr_talent_four" value="" class="text-input" title="@{talent_four}" spellcheck="false" placeholder="Talent Four Name"/>
|
||||
<div class="auto-expand">
|
||||
<span name="attr_talent_four_description"></span>
|
||||
<textarea name="attr_talent_four_description" value="" placeholder="Talent Four Description..." title="@{talent_four_description}" spellcheck="false" ></textarea>
|
||||
@@ -90,10 +92,12 @@
|
||||
<div class="black-floating-header">
|
||||
<span class="teal-header">Relationships</span>
|
||||
</div>
|
||||
<div class="vertical-adjust-one">
|
||||
<input type="text" name="attr_buddy" value="" class="text-input" title="@{buddy}" spellcheck="false" placeholder="Buddy"/>
|
||||
<hr class="dotted-line">
|
||||
<input type="text" name="attr_rival" value="" class="text-input" title="@{rival}" spellcheck="false" placeholder="Rival"/>
|
||||
<div class="vertical-adjust-one align-right">
|
||||
<span class="dark-teal-header relationship-title">Buddy:</span>
|
||||
<input type="text" name="attr_buddy" value="" class="relationship-input text-input" title="@{buddy}" spellcheck="false" placeholder="None"/>
|
||||
<hr class="dotted-line"/>
|
||||
<span class="dark-teal-header relationship-title">Rival:</span>
|
||||
<input type="text" name="attr_rival" value="" class="relationship-input text-input" title="@{rival}" spellcheck="false" placeholder="None"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-item span-five-thru-nine span-relationships">
|
||||
@@ -101,16 +105,22 @@
|
||||
<span class="teal-header">Roll Buttons</span>
|
||||
</div>
|
||||
<div class="vertical-adjust-one">
|
||||
<button type="roll" class="button-skill button-alpha" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=*( 1d3 )* }} {{roll-dice=[[ round(1d6/2) ]] }}" name="one_die_three" /><span >1d3</span></button>
|
||||
<button type="roll" class="button-skill button-alpha" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=*( 1d6 )* }} {{roll-dice=[[ 1d6 ]] }}" name="one_die_six" /><span >1d6</span></button>
|
||||
<button type="roll" class="button-skill button-alpha" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=*( 2d6 )* }} {{roll-dice=[[ 2d6 ]] }}" name="two_die_six" /><span >2d6</span></button>
|
||||
<button type="roll" class="button-skill button-alpha" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=*( 3d6 )* }} {{roll-dice=[[ 3d6 ]] }}" name="three_die_six" /><span >3d6</span></button>
|
||||
<button type="roll" class="button-skill button-alpha" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=*( d66 )* }} {{roll-dice=[[ (1d6)*10 + 1d6 ]] }}" name="die_sixty_six" /><span >d66</span></button><br>
|
||||
<button type="roll" class="button-skill button-beta" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Panic Roll }} {{roll-dice=[[ 1d6 + @{stress} [ Stress ] ]] }}" name="panic" /><span >Panic</span></button>
|
||||
<button type="roll" class="button-skill button-beta" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Initiative: *Card Value* }} {{roll-dice=[[ ?{Card Number|0} &{tracker} ]] }}" name="initiative_card" /><span >Initiative: Card</span></button>
|
||||
<button type="roll" class="button-skill button-beta" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Initiative: *Dice Roll* }} {{roll-dice=[[ 2d6 &{tracker} ]] }}" name="initiative_dice" /><span >Initiative: Dice</span></button><br>
|
||||
<button type="roll" class="button-skill button-gamma" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Base Dice }} {{base-dice=[[ ?{How Many Base Dice|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }}" name="base_dice" /><span >Base Dice</span></button>
|
||||
<button type="roll" class="button-skill button-gamma" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Stress Dice }} {{stress-dice=[[ ?{How Many Stress Dice|0} ]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" name="stress_dice" /><span >Stress Dice</span></button>
|
||||
<div class="roll-buttons alpha-buttons">
|
||||
<button type="roll" class="button-skill button-alpha" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=*( 1d3 )* }} {{roll-dice=[[ round(1d6/2) ]] }}" name="one_die_three" /><span >1d3</span></button>
|
||||
<button type="roll" class="button-skill button-alpha" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=*( 1d6 )* }} {{roll-dice=[[ 1d6 ]] }}" name="one_die_six" /><span >1d6</span></button>
|
||||
<button type="roll" class="button-skill button-alpha" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=*( 2d6 )* }} {{roll-dice=[[ 2d6 ]] }}" name="two_die_six" /><span >2d6</span></button>
|
||||
<button type="roll" class="button-skill button-alpha" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=*( 3d6 )* }} {{roll-dice=[[ 3d6 ]] }}" name="three_die_six" /><span >3d6</span></button>
|
||||
<button type="roll" class="button-skill button-alpha" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=*( d66 )* }} {{roll-dice=[[ (1d6)*10 + 1d6 ]] }}" name="die_sixty_six" /><span >d66</span></button>
|
||||
</div>
|
||||
<div class="roll-buttons beta-buttons">
|
||||
<button type="roll" class="button-skill button-beta" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Panic Roll }} {{roll-dice=[[ 1d6 + @{stress} [ Stress ] ]] }}" name="panic" /><span >Panic</span></button>
|
||||
<button type="roll" class="button-skill button-beta" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Initiative: *Card Value* }} {{roll-dice=[[ ?{Card Number|0} &{tracker} ]] }}" name="initiative_card" /><span >Initiative: Card</span></button>
|
||||
<button type="roll" class="button-skill button-beta" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Initiative: *Dice Roll* }} {{roll-dice=[[ 2d6 &{tracker} ]] }}" name="initiative_dice" /><span >Initiative: Dice</span></button>
|
||||
</div>
|
||||
<div class="roll-buttons gamma-buttons">
|
||||
<button type="roll" class="button-skill button-gamma" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Base Dice }} {{base-dice=[[ ?{How Many Base Dice|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }}" name="base_dice" /><span >Base Dice</span></button>
|
||||
<button type="roll" class="button-skill button-gamma" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Stress Dice }} {{stress-dice=[[ ?{How Many Stress Dice|0} ]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" name="stress_dice" /><span >Stress Dice</span></button>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- END OF ROW 3 -->
|
||||
|
||||
@@ -140,9 +150,10 @@
|
||||
</div>
|
||||
<div class="grid-item span-six-thru-eight">
|
||||
<div class="float-left">
|
||||
<input type="number" name="attr_heavy_machinery" value="0" class="no-spin-input" title="@{heavy_machinery}" />
|
||||
<input type="number" name="attr_close_combat" value="0" class="no-spin-input" title="@{close_combat}" />
|
||||
</div>
|
||||
<button type="roll" name="heavy_machinery" class="button-skill bigger-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Heavy Machinery }} {{base-dice=[[@{strength} + @{heavy_machinery} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" >Heavy Machinery</button>
|
||||
<button type="roll" name="close_combat" class="button-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Close Combat }} {{base-dice=[[@{strength} + @{close_combat} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" >Close Combat</button>
|
||||
|
||||
</div>
|
||||
<div class="grid-item black-item">
|
||||
|
||||
@@ -186,9 +197,9 @@
|
||||
</div>
|
||||
<div class="grid-item span-five-six">
|
||||
<div class="float-left">
|
||||
<input type="number" name="attr_close_combat" value="0" class="no-spin-input" title="@{close_combat}" />
|
||||
<input type="number" name="attr_heavy_machinery" value="0" class="no-spin-input" title="@{heavy_machinery}" />
|
||||
</div>
|
||||
<button type="roll" name="close_combat" class="button-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Close Combat }} {{base-dice=[[@{strength} + @{close_combat} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" >Combat</button>
|
||||
<button type="roll" name="heavy_machinery" class="button-skill bigger-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Heavy Machinery }} {{base-dice=[[@{strength} + @{heavy_machinery} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" >Heavy Machinery</button>
|
||||
</div>
|
||||
<div class="grid-item black-item">
|
||||
<span class="teal-header bold">Strength</span>
|
||||
@@ -237,7 +248,12 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-item span-three-thru-five">
|
||||
|
||||
<div class="grid-item black-item">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="grid-item span-four-five">
|
||||
<div class="float-left">
|
||||
<input type="number" name="attr_ranged_combat" value="0" class="no-spin-input" title="@{ranged_combat}" />
|
||||
</div>
|
||||
@@ -248,12 +264,15 @@
|
||||
<input type="number" name="attr_strength" value="0" class="no-spin-input" title="@{stength}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-item span-nine-thru-eleven">
|
||||
<div class="grid-item span-nine-ten">
|
||||
<button type="roll" name="observation" class="button-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Observation }} {{base-dice=[[@{wits} + @{observation} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" >Observation</button>
|
||||
<div class="float-right">
|
||||
<input type="number" name="attr_observation" value="0" class="no-spin-input" title="@{observation}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-item black-item">
|
||||
|
||||
</div>
|
||||
<div class="grid-item span-twelve-thirteen span-radiation">
|
||||
<div class="black-floating-header">
|
||||
<span class="teal-header">Tiny Items</span>
|
||||
@@ -261,7 +280,7 @@
|
||||
<div class="vertical-adjust-one">
|
||||
<div class="auto-expand textarea-margin-correct">
|
||||
<span name="attr_tiny_items"></span>
|
||||
<textarea name="attr_tiny_items" placeholder="Little odds and ends..." title="@{tiny_items}" spellcheck="false" ></textarea>
|
||||
<textarea name="attr_tiny_items" placeholder="Odds and ends..." title="@{tiny_items}" spellcheck="false" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- END OF ROW 7 -->
|
||||
@@ -299,9 +318,9 @@
|
||||
<span class="teal-header">Critical Injuries</span>
|
||||
</div>
|
||||
<div class="vertical-adjust-one">
|
||||
<input type="text" name="attr_critical_injury_one" value="" class="text-input" title="@{critical_injury_one}" spellcheck="false" placeholder="Critical Injuries"/>
|
||||
<input type="text" name="attr_critical_injury_one" value="" class="text-input" title="@{critical_injury_one}" spellcheck="false" placeholder="Critical Injury"/>
|
||||
<hr class="dotted-line">
|
||||
<input type="text" name="attr_critical_injury_two" value="" class="text-input" title="@{critical_injury_two}" spellcheck="false" placeholder="Critical Injuries"/>
|
||||
<input type="text" name="attr_critical_injury_two" value="" class="text-input" title="@{critical_injury_two}" spellcheck="false" placeholder="Critical Injury"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-item span-four-five">
|
||||
@@ -329,20 +348,24 @@
|
||||
<input type="text" name="attr_signature_item" value="" class="text-input" title="@{signature_item}" spellcheck="false" placeholder="Signture Item"/>
|
||||
</div>
|
||||
</div> <!-- END OF ROW 9 -->
|
||||
<!-- START OF ROW 10 -->
|
||||
|
||||
<div class="grid-item span-four-thru-six"> <!-- START OF ROW 10 -->
|
||||
<div class="grid-item black-item">
|
||||
|
||||
</div>
|
||||
<div class="grid-item span-five-six">
|
||||
<div class="float-left">
|
||||
<input type="number" name="attr_medical_aid" value="0" class="no-spin-input" title="@{medical_aid}" />
|
||||
<input type="number" name="attr_command" value="0" class="no-spin-input" title="@{command}" />
|
||||
</div>
|
||||
<button type="roll" name="medical_aid" class="button-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Medical Aid }} {{base-dice=[[@{empathy} + @{medical_aid} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" >Medical Aid</button>
|
||||
<button type="roll" name="command" class="button-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Command }} {{base-dice=[[@{empathy} + @{command} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" >Command</button>
|
||||
</div>
|
||||
<div class="grid-item black-item">
|
||||
<span class="teal-header bold">Empathy</span>
|
||||
</div>
|
||||
<div class="grid-item span-eight-nine">
|
||||
<button type="roll" name="command" class="button-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Command }} {{base-dice=[[@{empathy} + @{command} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" >Command</button>
|
||||
<button type="roll" name="medical_aid" class="button-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=Medical Aid }} {{base-dice=[[@{empathy} + @{medical_aid} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }}" >Medical Aid</button>
|
||||
<div class="float-right">
|
||||
<input type="number" name="attr_command" value="0" class="no-spin-input" title="@{command}" />
|
||||
<input type="number" name="attr_medical_aid" value="0" class="no-spin-input" title="@{medical_aid}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-item span-ten-thru-thirteen span-gear">
|
||||
@@ -372,18 +395,18 @@
|
||||
<div class="black-floating-header">
|
||||
<span class="teal-header">Conditions</span>
|
||||
</div>
|
||||
<div class="vertical-adjust-one align-left">
|
||||
<span class="dark-teal-header fake-float">Starving</span>
|
||||
<input type="checkbox" name="attr_starving" value="1" class="numbered-box" title="@{starving}"/><span title="+" ></span>
|
||||
<div class="vertical-adjust-one align-right">
|
||||
<span class="dark-teal-header condition-title">Starving</span>
|
||||
<input type="checkbox" name="attr_starving" value="1" class="numbered-box condition" title="@{starving}"/><span title="+" ></span>
|
||||
<hr class="dotted-line">
|
||||
<span class="dark-teal-header fake-float-three">Dehydrated</span>
|
||||
<input type="checkbox" name="attr_dehydrated" value="1" class="numbered-box" title="@{dehydrated}"/><span title="+" ></span>
|
||||
<span class="dark-teal-header condition-title">Dehydrated</span>
|
||||
<input type="checkbox" name="attr_dehydrated" value="1" class="numbered-box condition" title="@{dehydrated}"/><span title="+" ></span>
|
||||
<hr class="dotted-line">
|
||||
<span class="dark-teal-header fake-float-four">Exhausted</span>
|
||||
<input type="checkbox" name="attr_exhausted" value="1" class="numbered-box" title="@{exhausted}"/><span title="+" ></span>
|
||||
<span class="dark-teal-header condition-title">Exhausted</span>
|
||||
<input type="checkbox" name="attr_exhausted" value="1" class="numbered-box condition" title="@{exhausted}"/><span title="+" ></span>
|
||||
<hr class="dotted-line">
|
||||
<span class="dark-teal-header fake-float-two">Freezing</span>
|
||||
<input type="checkbox" name="attr_freezing" value="1" class="numbered-box" title="@{freezing}"/><span title="+" ></span>
|
||||
<span class="dark-teal-header condition-title">Freezing</span>
|
||||
<input type="checkbox" name="attr_freezing" value="1" class="numbered-box condition" title="@{freezing}"/><span title="+" ></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-item black-item">
|
||||
@@ -433,23 +456,29 @@
|
||||
<div class="tab-content tab-alpha-contents align-left vertical-adjust-one"> <!--TAB 1 1ST WEAPON -->
|
||||
<input type="text" name="attr_weapon_one_name" value="" class="text-input seventy-seven-percent" title="@{weapon_one_name}" spellcheck="false" placeholder="Weapon One Name"/>
|
||||
<button type="roll" name="weapon_one" class="button-skill smaller-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=@{weapon_one_name} }} {{base-dice=[[@{weapon_one_skill} + @{weapon_one_bonus} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }} {{current-bonus=@{weapon_one_bonus} }} {{current-damage=@{weapon_one_damage} }} {{current-range=@{weapon_one_range} }} {{current-comment=@{weapon_one_comment} }}" >Attack</button>
|
||||
<hr class="dotted-line">
|
||||
<hr class="dotted-line"/>
|
||||
<div class="grid-container contains-four-columns">
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item bonus">
|
||||
<input type="number" name="attr_weapon_one_bonus" value="0" class="number-input" title="@{weapon_one_bonus}" />
|
||||
<span class="mini-header">Bonus</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item damage">
|
||||
<input type="number" name="attr_weapon_one_damage" value="0" class="number-input" title="@{weapon_one_damage}" />
|
||||
<span class="mini-header">Damage</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="text" name="attr_weapon_one_range" value="" class="text-input" placeholder="Medium" title="@{weapon_one_range}" />
|
||||
<div class="grid-item weapon-item range">
|
||||
<select name="attr_weapon_one_range" class="select-input" title="@{weapon_one_range}">
|
||||
<option vale="Engaged">Engaged</option>
|
||||
<option vale="Short">Short</option>
|
||||
<option vale="Medium" selected="selected">Medium</option>
|
||||
<option vale="Long">Long</option>
|
||||
<option vale="Extreme">Extreme</option>
|
||||
</select>
|
||||
<span class="mini-header">Range</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="radio" name="attr_weapon_one_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat" checked="checked"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_one_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat"/><span title="RC" ></span>
|
||||
<div class="grid-item weapon-item type">
|
||||
<input type="radio" name="attr_weapon_one_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_one_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat" checked="checked"/><span title="RC" ></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="auto-expand">
|
||||
@@ -460,23 +489,29 @@
|
||||
<div class="tab-content tab-beta-contents align-left vertical-adjust-one"> <!--TAB 2 2ND WEAPON -->
|
||||
<input type="text" name="attr_weapon_two_name" value="" class="text-input seventy-seven-percent" title="@{weapon_two_name}" spellcheck="false" placeholder="Weapon Two Name"/>
|
||||
<button type="roll" name="weapon_two" class="button-skill smaller-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=@{weapon_two_name} }} {{base-dice=[[@{weapon_two_skill} + @{weapon_two_bonus} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }} {{current-bonus=@{weapon_two_bonus} }} {{current-damage=@{weapon_two_damage} }} {{current-range=@{weapon_two_range} }} {{current-comment=@{weapon_two_comment} }}" >Attack</button>
|
||||
<hr class="dotted-line">
|
||||
<hr class="dotted-line"/>
|
||||
<div class="grid-container contains-four-columns">
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item bonus">
|
||||
<input type="number" name="attr_weapon_two_bonus" value="0" class="number-input" title="@{weapon_two_bonus}" />
|
||||
<span class="mini-header">Bonus</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item damage">
|
||||
<input type="number" name="attr_weapon_two_damage" value="0" class="number-input" title="@{weapon_two_damage}" />
|
||||
<span class="mini-header">Damage</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="text" name="attr_weapon_two_range" value="" class="text-input" placeholder="Medium" title="@{weapon_two_range}" />
|
||||
<div class="grid-item weapon-item range">
|
||||
<select name="attr_weapon_two_range" class="select-input" title="@{weapon_two_range}">
|
||||
<option vale="Engaged">Engaged</option>
|
||||
<option vale="Short">Short</option>
|
||||
<option vale="Medium" selected="selected">Medium</option>
|
||||
<option vale="Long">Long</option>
|
||||
<option vale="Extreme">Extreme</option>
|
||||
</select>
|
||||
<span class="mini-header">Range</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="radio" name="attr_weapon_two_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat" checked="checked"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_two_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat"/><span title="RC" ></span>
|
||||
<div class="grid-item weapon-item type">
|
||||
<input type="radio" name="attr_weapon_two_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_two_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat checked="checked""/><span title="RC" ></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="auto-expand">
|
||||
@@ -489,21 +524,27 @@
|
||||
<button type="roll" name="weapon_three" class="button-skill smaller-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=@{weapon_three_name} }} {{base-dice=[[@{weapon_three_skill} + @{weapon_three_bonus} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }} {{current-bonus=@{weapon_three_bonus} }} {{current-damage=@{weapon_three_damage} }} {{current-range=@{weapon_three_range} }} {{current-comment=@{weapon_three_comment} }}" >Attack</button>
|
||||
<hr class="dotted-line">
|
||||
<div class="grid-container contains-four-columns">
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item bonus">
|
||||
<input type="number" name="attr_weapon_three_bonus" value="0" class="number-input" title="@{weapon_three_bonus}" />
|
||||
<span class="mini-header">Bonus</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item damage">
|
||||
<input type="number" name="attr_weapon_three_damage" value="0" class="number-input" title="@{weapon_three_damage}" />
|
||||
<span class="mini-header">Damage</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="text" name="attr_weapon_three_range" value="" class="text-input" placeholder="Medium" title="@{weapon_three_range}" />
|
||||
<div class="grid-item weapon-item range">
|
||||
<select name="attr_weapon_three_range" class="select-input" title="@{weapon_three_range}">
|
||||
<option vale="Engaged">Engaged</option>
|
||||
<option vale="Short">Short</option>
|
||||
<option vale="Medium" selected="selected">Medium</option>
|
||||
<option vale="Long">Long</option>
|
||||
<option vale="Extreme">Extreme</option>
|
||||
</select>
|
||||
<span class="mini-header">Range</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="radio" name="attr_weapon_three_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat" checked="checked"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_three_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat"/><span title="RC" ></span>
|
||||
<div class="grid-item weapon-item type">
|
||||
<input type="radio" name="attr_weapon_three_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_three_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat" checked="checked"/><span title="RC" ></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="auto-expand">
|
||||
@@ -516,21 +557,27 @@
|
||||
<button type="roll" name="weapon_four" class="button-skill smaller-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=@{weapon_four_name} }} {{base-dice=[[@{weapon_four_skill} + @{weapon_four_bonus} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }} {{current-bonus=@{weapon_four_bonus} }} {{current-damage=@{weapon_four_damage} }} {{current-range=@{weapon_four_range} }} {{current-comment=@{weapon_four_comment} }}" >Attack</button>
|
||||
<hr class="dotted-line">
|
||||
<div class="grid-container contains-four-columns">
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item bonus">
|
||||
<input type="number" name="attr_weapon_four_bonus" value="0" class="number-input" title="@{weapon_four_bonus}" />
|
||||
<span class="mini-header">Bonus</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item damage">
|
||||
<input type="number" name="attr_weapon_four_damage" value="0" class="number-input" title="@{weapon_four_damage}" />
|
||||
<span class="mini-header">Damage</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="text" name="attr_weapon_four_range" value="" class="text-input" placeholder="Medium" title="@{weapon_four_range}" />
|
||||
<div class="grid-item weapon-item range">
|
||||
<select name="attr_weapon_four_range" class="select-input" title="@{weapon_four_range}">
|
||||
<option vale="Engaged">Engaged</option>
|
||||
<option vale="Short">Short</option>
|
||||
<option vale="Medium" selected="selected">Medium</option>
|
||||
<option vale="Long">Long</option>
|
||||
<option vale="Extreme">Extreme</option>
|
||||
</select>
|
||||
<span class="mini-header">Range</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="radio" name="attr_weapon_four_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat" checked="checked"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_four_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat"/><span title="RC" ></span>
|
||||
<div class="grid-item weapon-item type">
|
||||
<input type="radio" name="attr_weapon_four_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_four_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat" checked="checked"/><span title="RC" ></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="auto-expand">
|
||||
@@ -543,21 +590,27 @@
|
||||
<button type="roll" name="weapon_five" class="button-skill smaller-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=@{weapon_five_name} }} {{base-dice=[[@{weapon_five_skill} + @{weapon_five_bonus} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }} {{current-bonus=@{weapon_five_bonus} }} {{current-damage=@{weapon_five_damage} }} {{current-range=@{weapon_five_range} }} {{current-comment=@{weapon_five_comment} }}" >Attack</button>
|
||||
<hr class="dotted-line">
|
||||
<div class="grid-container contains-four-columns">
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item bonus">
|
||||
<input type="number" name="attr_weapon_five_bonus" value="0" class="number-input" title="@{weapon_five_bonus}" />
|
||||
<span class="mini-header">Bonus</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item damage">
|
||||
<input type="number" name="attr_weapon_five_damage" value="0" class="number-input" title="@{weapon_five_damage}" />
|
||||
<span class="mini-header">Damage</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="text" name="attr_weapon_five_range" value="" class="text-input" placeholder="Medium" title="@{weapon_five_range}" />
|
||||
<div class="grid-item weapon-item range">
|
||||
<select name="attr_weapon_five_range" class="select-input" title="@{weapon_five_range}">
|
||||
<option vale="Engaged">Engaged</option>
|
||||
<option vale="Short">Short</option>
|
||||
<option vale="Medium" selected="selected">Medium</option>
|
||||
<option vale="Long">Long</option>
|
||||
<option vale="Extreme">Extreme</option>
|
||||
</select>
|
||||
<span class="mini-header">Range</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="radio" name="attr_weapon_five_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat" checked="checked"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_five_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat"/><span title="RC" ></span>
|
||||
<div class="grid-item weapon-item type">
|
||||
<input type="radio" name="attr_weapon_five_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_five_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat" checked="checked"/><span title="RC" ></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="auto-expand">
|
||||
@@ -570,21 +623,27 @@
|
||||
<button type="roll" name="weapon_six" class="button-skill smaller-skill" value="@{secret_roll} &{template:alien} {{character-name=@{character_name} }} {{roll-name=@{weapon_six_name} }} {{base-dice=[[@{weapon_six_skill} + @{weapon_six_bonus} + ?{Modifiers|0} ]] }} {{base-roll-one=[[1d6]] }} {{base-roll-two=[[1d6]] }} {{base-roll-three=[[1d6]] }} {{base-roll-four=[[1d6]] }} {{base-roll-five=[[1d6]] }} {{base-roll-six=[[1d6]] }} {{base-roll-seven=[[1d6]] }} {{base-roll-eight=[[1d6]] }} {{base-roll-nine=[[1d6]] }} {{base-roll-ten=[[1d6]] }} {{base-roll-eleven=[[1d6]] }} {{base-roll-twelve=[[1d6]] }} {{base-roll-thirteen=[[1d6]] }} {{base-roll-fourteen=[[1d6]] }} {{base-roll-fifteen=[[1d6]] }} {{base-roll-sixteen=[[1d6]] }} {{base-roll-seventeen=[[1d6]] }} {{base-roll-eighteen=[[1d6]] }} {{stress-dice=[[@{stress}]] }} {{stress-roll-one=[[1d6]] }} {{stress-roll-two=[[1d6]] }} {{stress-roll-three=[[1d6]] }} {{stress-roll-four=[[1d6]] }} {{stress-roll-five=[[1d6]] }} {{stress-roll-six=[[1d6]] }} {{stress-roll-seven=[[1d6]] }} {{stress-roll-eight=[[1d6]] }} {{stress-roll-nine=[[1d6]] }} {{stress-roll-ten=[[1d6]] }} {{current-bonus=@{weapon_six_bonus} }} {{current-damage=@{weapon_six_damage} }} {{current-range=@{weapon_six_range} }} {{current-comment=@{weapon_six_comment} }}" >Attack</button>
|
||||
<hr class="dotted-line">
|
||||
<div class="grid-container contains-four-columns">
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item bonus">
|
||||
<input type="number" name="attr_weapon_six_bonus" value="0" class="number-input" title="@{weapon_six_bonus}" />
|
||||
<span class="mini-header">Bonus</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<div class="grid-item weapon-item damage">
|
||||
<input type="number" name="attr_weapon_six_damage" value="0" class="number-input" title="@{weapon_six_damage}" />
|
||||
<span class="mini-header">Damage</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="text" name="attr_weapon_six_range" value="" class="text-input" placeholder="Medium" title="@{weapon_six_range}" />
|
||||
<div class="grid-item weapon-item range">
|
||||
<select name="attr_weapon_six_range" class="select-input" title="@{weapon_six_range}">
|
||||
<option vale="Engaged">Engaged</option>
|
||||
<option vale="Short">Short</option>
|
||||
<option vale="Medium" selected="selected">Medium</option>
|
||||
<option vale="Long">Long</option>
|
||||
<option vale="Extreme">Extreme</option>
|
||||
</select>
|
||||
<span class="mini-header">Range</span>
|
||||
</div>
|
||||
<div class="grid-item weapon-item">
|
||||
<input type="radio" name="attr_weapon_six_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat" checked="checked"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_six_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat"/><span title="RC" ></span>
|
||||
<div class="grid-item weapon-item type">
|
||||
<input type="radio" name="attr_weapon_six_skill" value="@{strength} + @{close_combat}" class="letter-box" title="Use Close Combat"/><span title="CC" ></span>
|
||||
<input type="radio" name="attr_weapon_six_skill" value="@{agility} + @{ranged_combat}" class="letter-box" title="Use Ranged Combat" checked="checked"/><span title="RC" ></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="auto-expand">
|
||||
@@ -623,12 +682,13 @@
|
||||
</div>
|
||||
</div> <!-- END OF ROW 15 -->
|
||||
</div>
|
||||
<div class="footer-image"> </div>
|
||||
<div class="footer-image"><span class="footer-text">"Building Better Worlds"</span></div>
|
||||
<div class="box-under-the-bed"> <!-- HIDDEN DIV -->
|
||||
<input type="number" name="attr_radiation" value="0" class="" title="@{radiation}"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- ROLL TEMPLATES -->
|
||||
<rolltemplate class="sheet-rolltemplate-alien">
|
||||
<div class="template-wrap">
|
||||
@@ -1206,4 +1266,4 @@
|
||||
console.log("tab_weapon Set To: 6");
|
||||
});
|
||||
|
||||
</script>
|
||||
</script>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 254 KiB After Width: | Height: | Size: 409 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 97 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 3.1 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 5.7 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3.1 KiB |
Reference in New Issue
Block a user