mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
fixing line endings
This commit is contained in:
+176
-176
@@ -1,177 +1,177 @@
|
||||
.charsheet label {
|
||||
display: inline-block;
|
||||
width: 75px;
|
||||
text-align: right;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
.charsheet input {
|
||||
display: inline-block;
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
.charsheet {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.charsheet select {
|
||||
width: 42px;
|
||||
}
|
||||
|
||||
/* Hide actual dot/checkbox */
|
||||
input[type="radio"],
|
||||
input[type="checkbox"]
|
||||
{
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
width:15px;
|
||||
cursor: pointer;
|
||||
z-index: 1;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
/* Styles common to fake dot and checkbox */
|
||||
input[type="radio"] + span::before,
|
||||
input[type="checkbox"] + span::before
|
||||
{
|
||||
border: solid 1px #a8a8a8;
|
||||
line-height: 14px;
|
||||
text-align: middle;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
|
||||
-moz-box-shadow: 0 0 2px #ccc;
|
||||
-webkit-box-shadow: 0 0 2px #ccc;
|
||||
box-shadow: 0 0 2px #ccc;
|
||||
|
||||
background: #f6f6f6;
|
||||
background: -moz-radial-gradient(#f6f6f6, #dfdfdf);
|
||||
background: -webkit-radial-gradient(#f6f6f6, #dfdfdf);
|
||||
background: -ms-radial-gradient(#f6f6f6, #dfdfdf);
|
||||
background: -o-radial-gradient(#f6f6f6, #dfdfdf);
|
||||
background: radial-gradient(#f6f6f6, #dfdfdf);
|
||||
}
|
||||
|
||||
/* Styles unique to fake dot (checked or left of checked) */
|
||||
input[type="radio"] + span::before
|
||||
{
|
||||
content: "•";
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
font-size: 36px;
|
||||
|
||||
-moz-border-radius: 50%;
|
||||
-webkit-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
/* Styles unique to fake checkbox (unchecked) */
|
||||
input[type="checkbox"] + span::before
|
||||
{
|
||||
position:relative;
|
||||
content: "";
|
||||
opacity: .25;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
font-size: 12px;
|
||||
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
/* Styles unique to fake checkbox (checked) */
|
||||
input[type="checkbox"]:checked + span::before
|
||||
{
|
||||
content: "?";
|
||||
color: #a00;
|
||||
|
||||
-moz-box-shadow: 0 0 2px transparent;
|
||||
-webkit-box-shadow: 0 0 2px transparent;
|
||||
box-shadow: 0 0 2px transparent;
|
||||
}
|
||||
|
||||
/* Remove dot from all radios _after_ selected one */
|
||||
input[type="radio"]:checked ~ input[type="radio"] + span::before
|
||||
{
|
||||
content: "";
|
||||
}
|
||||
|
||||
input.sheet-used+span::before
|
||||
{
|
||||
content: "?";
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
font-size: 12px;
|
||||
|
||||
-moz-border-radius: 0%;
|
||||
-webkit-border-radius: 0%;
|
||||
border-radius: 0%;
|
||||
}
|
||||
|
||||
input.sheet-zero:checked + span::before
|
||||
{
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
input.sheet-zero:hover + span::before
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
input.sheet-zero+ span::before
|
||||
{
|
||||
font-size: 12px;
|
||||
content: "?";
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
input.sheet-DP1Spec + span::before,
|
||||
input.sheet-DP2Spec + span::before,
|
||||
input.sheet-DP2Spec + span::before,
|
||||
input.sheet-DP3Spec + span::before,
|
||||
input.sheet-DP4Spec + span::before,
|
||||
input.sheet-DP5Spec + span::before
|
||||
{
|
||||
opacity: 1;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
div.sheet-DP1,
|
||||
div.sheet-DP2,
|
||||
div.sheet-DP2,
|
||||
div.sheet-DP3,
|
||||
div.sheet-DP4,
|
||||
div.sheet-DP5
|
||||
{
|
||||
display: inline;
|
||||
}
|
||||
div.sheet-DP1wSpec,
|
||||
div.sheet-DP2wSpec,
|
||||
div.sheet-DP2wSpec,
|
||||
div.sheet-DP3wSpec,
|
||||
div.sheet-DP4wSpec,
|
||||
div.sheet-DP5wSpec
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
input.sheet-DP1Spec:checked ~ div.sheet-DP1,
|
||||
input.sheet-DP2Spec:checked ~ div.sheet-DP2,
|
||||
input.sheet-DP2Spec:checked ~ div.sheet-DP2,
|
||||
input.sheet-DP3Spec:checked ~ div.sheet-DP3,
|
||||
input.sheet-DP4Spec:checked ~ div.sheet-DP4,
|
||||
input.sheet-DP5Spec:checked ~ div.sheet-DP5
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
input.sheet-DP1Spec:checked ~ div.sheet-DP1wSpec,
|
||||
input.sheet-DP2Spec:checked ~ div.sheet-DP2wSpec,
|
||||
input.sheet-DP2Spec:checked ~ div.sheet-DP2wSpec,
|
||||
input.sheet-DP3Spec:checked ~ div.sheet-DP3wSpec,
|
||||
input.sheet-DP4Spec:checked ~ div.sheet-DP4wSpec,
|
||||
input.sheet-DP5Spec:checked ~ div.sheet-DP5wSpec
|
||||
{
|
||||
display: inline;
|
||||
.charsheet label {
|
||||
display: inline-block;
|
||||
width: 75px;
|
||||
text-align: right;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
.charsheet input {
|
||||
display: inline-block;
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
.charsheet {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.charsheet select {
|
||||
width: 42px;
|
||||
}
|
||||
|
||||
/* Hide actual dot/checkbox */
|
||||
input[type="radio"],
|
||||
input[type="checkbox"]
|
||||
{
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
width:15px;
|
||||
cursor: pointer;
|
||||
z-index: 1;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
/* Styles common to fake dot and checkbox */
|
||||
input[type="radio"] + span::before,
|
||||
input[type="checkbox"] + span::before
|
||||
{
|
||||
border: solid 1px #a8a8a8;
|
||||
line-height: 14px;
|
||||
text-align: middle;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
|
||||
-moz-box-shadow: 0 0 2px #ccc;
|
||||
-webkit-box-shadow: 0 0 2px #ccc;
|
||||
box-shadow: 0 0 2px #ccc;
|
||||
|
||||
background: #f6f6f6;
|
||||
background: -moz-radial-gradient(#f6f6f6, #dfdfdf);
|
||||
background: -webkit-radial-gradient(#f6f6f6, #dfdfdf);
|
||||
background: -ms-radial-gradient(#f6f6f6, #dfdfdf);
|
||||
background: -o-radial-gradient(#f6f6f6, #dfdfdf);
|
||||
background: radial-gradient(#f6f6f6, #dfdfdf);
|
||||
}
|
||||
|
||||
/* Styles unique to fake dot (checked or left of checked) */
|
||||
input[type="radio"] + span::before
|
||||
{
|
||||
content: "•";
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
font-size: 36px;
|
||||
|
||||
-moz-border-radius: 50%;
|
||||
-webkit-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
/* Styles unique to fake checkbox (unchecked) */
|
||||
input[type="checkbox"] + span::before
|
||||
{
|
||||
position:relative;
|
||||
content: "";
|
||||
opacity: .25;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
font-size: 12px;
|
||||
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
/* Styles unique to fake checkbox (checked) */
|
||||
input[type="checkbox"]:checked + span::before
|
||||
{
|
||||
content: "?";
|
||||
color: #a00;
|
||||
|
||||
-moz-box-shadow: 0 0 2px transparent;
|
||||
-webkit-box-shadow: 0 0 2px transparent;
|
||||
box-shadow: 0 0 2px transparent;
|
||||
}
|
||||
|
||||
/* Remove dot from all radios _after_ selected one */
|
||||
input[type="radio"]:checked ~ input[type="radio"] + span::before
|
||||
{
|
||||
content: "";
|
||||
}
|
||||
|
||||
input.sheet-used+span::before
|
||||
{
|
||||
content: "?";
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
font-size: 12px;
|
||||
|
||||
-moz-border-radius: 0%;
|
||||
-webkit-border-radius: 0%;
|
||||
border-radius: 0%;
|
||||
}
|
||||
|
||||
input.sheet-zero:checked + span::before
|
||||
{
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
input.sheet-zero:hover + span::before
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
input.sheet-zero+ span::before
|
||||
{
|
||||
font-size: 12px;
|
||||
content: "?";
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
input.sheet-DP1Spec + span::before,
|
||||
input.sheet-DP2Spec + span::before,
|
||||
input.sheet-DP2Spec + span::before,
|
||||
input.sheet-DP3Spec + span::before,
|
||||
input.sheet-DP4Spec + span::before,
|
||||
input.sheet-DP5Spec + span::before
|
||||
{
|
||||
opacity: 1;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
div.sheet-DP1,
|
||||
div.sheet-DP2,
|
||||
div.sheet-DP2,
|
||||
div.sheet-DP3,
|
||||
div.sheet-DP4,
|
||||
div.sheet-DP5
|
||||
{
|
||||
display: inline;
|
||||
}
|
||||
div.sheet-DP1wSpec,
|
||||
div.sheet-DP2wSpec,
|
||||
div.sheet-DP2wSpec,
|
||||
div.sheet-DP3wSpec,
|
||||
div.sheet-DP4wSpec,
|
||||
div.sheet-DP5wSpec
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
input.sheet-DP1Spec:checked ~ div.sheet-DP1,
|
||||
input.sheet-DP2Spec:checked ~ div.sheet-DP2,
|
||||
input.sheet-DP2Spec:checked ~ div.sheet-DP2,
|
||||
input.sheet-DP3Spec:checked ~ div.sheet-DP3,
|
||||
input.sheet-DP4Spec:checked ~ div.sheet-DP4,
|
||||
input.sheet-DP5Spec:checked ~ div.sheet-DP5
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
input.sheet-DP1Spec:checked ~ div.sheet-DP1wSpec,
|
||||
input.sheet-DP2Spec:checked ~ div.sheet-DP2wSpec,
|
||||
input.sheet-DP2Spec:checked ~ div.sheet-DP2wSpec,
|
||||
input.sheet-DP3Spec:checked ~ div.sheet-DP3wSpec,
|
||||
input.sheet-DP4Spec:checked ~ div.sheet-DP4wSpec,
|
||||
input.sheet-DP5Spec:checked ~ div.sheet-DP5wSpec
|
||||
{
|
||||
display: inline;
|
||||
}
|
||||
+1897
-1897
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
||||
Character sheet for Hunter: The Reckoning, by White Wolf Publishing.
|
||||
|
||||
A big thanks goes out to Matt Zaldivar, Brian Shields and Benjamin Bandelow.
|
||||
Character sheet for Hunter: The Reckoning, by White Wolf Publishing.
|
||||
|
||||
A big thanks goes out to Matt Zaldivar, Brian Shields and Benjamin Bandelow.
|
||||
I used the exalted sheet and vampire sheet they made as a starting point and as such much, maybe most, of this code it theirs.
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"html": "Hunter.html",
|
||||
"css": "Hunter.css",
|
||||
"authors": "Viviane Silva, Fernando Netto, and some coding by Matt Zaldivar, Brian Shields and Benjamin Bandelow, for their Exalted sheet nad Vampire Sheet.",
|
||||
"roll20userid": "1335803",
|
||||
"preview": "Hunter.png",
|
||||
"instructions": "# Hunter: The Reckoning Character Sheet\r For use in the classic World of Darkness. Designed to function much like an actual paper sheet would. With the most notable exception being that you can roll Willpower directy from the sheet. Also, The Dice Pool section in the center at the bottom allow one to select an Attribute and/or Ability to roll; The Other Traits may also be seleceted in the Ability drop down. The check to the left of each die pool selection indicates that the roll has a specialty (i.e. dice will explode) All rolls from the sheet are of the from {Xd10}>Df1 or {Xd10!}>Df1 if special, where X is the number of dice and D is the difficulty. NOTE: These roll do not recognize botches. Further, the rolls will prompt the user to modify the number of dice rolled and set the difficulty. The defaults for these are 0 and 6 respectively. In the 'Edges', you put in the textbox, the name, creed and trigger of each edge, and in Virtues you just enter the number of dots you have in 'Score', and the amount you spent in 'Spent'."
|
||||
}
|
||||
{
|
||||
"html": "Hunter.html",
|
||||
"css": "Hunter.css",
|
||||
"authors": "Viviane Silva, Fernando Netto, and some coding by Matt Zaldivar, Brian Shields and Benjamin Bandelow, for their Exalted sheet nad Vampire Sheet.",
|
||||
"roll20userid": "1335803",
|
||||
"preview": "Hunter.png",
|
||||
"instructions": "# Hunter: The Reckoning Character Sheet\r For use in the classic World of Darkness. Designed to function much like an actual paper sheet would. With the most notable exception being that you can roll Willpower directy from the sheet. Also, The Dice Pool section in the center at the bottom allow one to select an Attribute and/or Ability to roll; The Other Traits may also be seleceted in the Ability drop down. The check to the left of each die pool selection indicates that the roll has a specialty (i.e. dice will explode) All rolls from the sheet are of the from {Xd10}>Df1 or {Xd10!}>Df1 if special, where X is the number of dice and D is the difficulty. NOTE: These roll do not recognize botches. Further, the rolls will prompt the user to modify the number of dice rolled and set the difficulty. The defaults for these are 0 and 6 respectively. In the 'Edges', you put in the textbox, the name, creed and trigger of each edge, and in Virtues you just enter the number of dots you have in 'Score', and the amount you spent in 'Spent'."
|
||||
}
|
||||
|
||||
+107
-107
@@ -1,108 +1,108 @@
|
||||
|
||||
.charsheet label {
|
||||
display: inline-block;
|
||||
width: 75px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.charsheet input {
|
||||
background-color: transparent;
|
||||
border-style: solid;
|
||||
border-color: black;
|
||||
border-width: 0px 0px 2px 0px;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-inputbox {
|
||||
background-color: transparent;
|
||||
border-style: solid;
|
||||
border-color: black;
|
||||
border-width: 1px 1px 1px 1px;
|
||||
}
|
||||
|
||||
.even {
|
||||
border: 1px solid black;
|
||||
background-color: #AAA;
|
||||
}
|
||||
|
||||
.odd {
|
||||
border: 1px solid black;
|
||||
background-color: #DDD;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sheet-colorred {
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
}
|
||||
.sheet_barbarianlink:hover + div{
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
background-color: gray;
|
||||
position: absolute;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.sheet_barbarianshowhide {
|
||||
overflow: hidden;
|
||||
height: 0px;
|
||||
ddisplay: none;
|
||||
}
|
||||
|
||||
.sheet-col strong.sheet-dee {
|
||||
font-size: 1.4em;
|
||||
font-weight: bold;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-short {
|
||||
width: 3.5em;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-skillsbox {
|
||||
font-size: 0.60em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.charsheet {
|
||||
background-color: white;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.charsheet table th {
|
||||
font-size: 0.8em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-statlabel-big-gray {
|
||||
background-color: gray;
|
||||
color: white;
|
||||
font-size: 0.9em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-statlabel-big {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-size: 0.9em;
|
||||
text-align: center;
|
||||
}
|
||||
.charsheet table td.sheet-statlabel {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-size: 0.7em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td {
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
select.sheet-dtype {
|
||||
width: 60px;
|
||||
vertical-align: top;
|
||||
|
||||
.charsheet label {
|
||||
display: inline-block;
|
||||
width: 75px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.charsheet input {
|
||||
background-color: transparent;
|
||||
border-style: solid;
|
||||
border-color: black;
|
||||
border-width: 0px 0px 2px 0px;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-inputbox {
|
||||
background-color: transparent;
|
||||
border-style: solid;
|
||||
border-color: black;
|
||||
border-width: 1px 1px 1px 1px;
|
||||
}
|
||||
|
||||
.even {
|
||||
border: 1px solid black;
|
||||
background-color: #AAA;
|
||||
}
|
||||
|
||||
.odd {
|
||||
border: 1px solid black;
|
||||
background-color: #DDD;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sheet-colorred {
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
}
|
||||
.sheet_barbarianlink:hover + div{
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
background-color: gray;
|
||||
position: absolute;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.sheet_barbarianshowhide {
|
||||
overflow: hidden;
|
||||
height: 0px;
|
||||
ddisplay: none;
|
||||
}
|
||||
|
||||
.sheet-col strong.sheet-dee {
|
||||
font-size: 1.4em;
|
||||
font-weight: bold;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-short {
|
||||
width: 3.5em;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-skillsbox {
|
||||
font-size: 0.60em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.charsheet {
|
||||
background-color: white;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.charsheet table th {
|
||||
font-size: 0.8em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-statlabel-big-gray {
|
||||
background-color: gray;
|
||||
color: white;
|
||||
font-size: 0.9em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-statlabel-big {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-size: 0.9em;
|
||||
text-align: center;
|
||||
}
|
||||
.charsheet table td.sheet-statlabel {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-size: 0.7em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td {
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
select.sheet-dtype {
|
||||
width: 60px;
|
||||
vertical-align: top;
|
||||
}
|
||||
+346
-346
@@ -1,346 +1,346 @@
|
||||
<!-- character -->
|
||||
<div style="float: left">
|
||||
<div style="float: left"><img src="http://i.imgur.com/hQBwOzE.png" alt="PoE" style="float: left; width:78; height:78;"></img><br></div>
|
||||
<div style="float: left; width: 30px;"> </div><div style="float: left"><input type="text" name="attr_character_name" style="width: 220px;"> <br>Name</div>
|
||||
<div style="float: left"><input type="text" name="attr_gender" style="width: 100px;"> <br>Gender</div>
|
||||
<br>
|
||||
<div style="float: left; width: 30px;"> </div><div style="float: left"><input type="number" name="attr_lvl" style="width: 50px;"> <br>Level</div>
|
||||
<br>
|
||||
</div>
|
||||
|
||||
<div style="clear:both"></div>
|
||||
<br>
|
||||
<div style="float: left">
|
||||
<!-- stats -->
|
||||
<table cellpadding="20">
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" colspan="2">Max</td>
|
||||
<td class="sheet-statlabel-big" style="color:#ff4d4d;" colspan="2">Damage<br>Taken</td>
|
||||
<td class="sheet-statlabel-big" colspan="2">Modifiers</td>
|
||||
<td class="sheet-statlabel-big" colspan="2">Total</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel" style="color:#cc0000;">Life</td>
|
||||
<td class="sheet-statlabel" style="color:#00ffff;">ES</td>
|
||||
<td class="sheet-statlabel" style="color:#cc0000;">Life</td>
|
||||
<td class="sheet-statlabel" style="color:#00ffff;">ES</td>
|
||||
<td class="sheet-statlabel" style="color:#cc0000;">Life</td>
|
||||
<td class="sheet-statlabel" style="color:#00ffff;">ES</td>
|
||||
<td class="sheet-statlabel" style="color:#cc0000;">Life</td>
|
||||
<td class="sheet-statlabel" style="color:#00ffff;">ES</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_life_max" style="height: 24px; width: 60px; color:#cc0000; background-color:#bfbfbf;" value="floor(10+(@{str})+@{life_mods})" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_es_max" style="height: 24px; width: 60px; color:#008080; background-color:#bfbfbf;" value="floor(@{es_mods})" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_life_taken" style="height: 24px; width: 60px; color:#cc0000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_es_taken" style="height: 24px; width: 60px; color:#008080;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_life_mods" style="height: 24px; width: 60px; color:#cc0000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_es_mods" style="height: 24px; width: 60px; color:#008080;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_life" style="height: 24px; width: 60px; color:#cc0000; font-weight: bold; background-color:#bfbfbf;" value="floor((@{life_max})-@{life_taken})" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_es" style="height: 24px; width: 60px; color:#008080; font-weight: bold; background-color:#bfbfbf;" value="floor((@{es_max})-@{es_taken})" disabled="true"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Stats</th><th>Base</th><th>Per lvl</th><th>Modifiers</th><th>TOTAL</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" style="color:#cc0000;">STR<br></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_strbase" style="height: 24px; width: 40px; color:#cc0000; background-color:#bfbfbf;" value="10" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_strlvl" style="height: 24px; width: 50px; color:#cc0000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_strmods" style="height: 24px; width: 50px; color:#cc0000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_str" style="height: 24px; width: 50px; color:#cc0000; font-weight: bold; background-color:#bfbfbf;" value="@{strbase}+@{strlvl}+@{strmods}" disabled="true"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" style="color:#00cc00;">DEX<br></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_dexbase" style="height: 24px; width: 40px; color:#008000; background-color:#bfbfbf;" value="10" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_dexlvl" style="height: 24px; width: 50px; color:#008000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_dexmods" style="height: 24px; width: 50px; color:#008000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_dex" style="height: 24px; width: 50px; color:#008000; font-weight: bold; background-color:#bfbfbf;" value="@{dexbase}+@{dexlvl}+@{dexmods}" disabled="true"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" style="color:#3399ff;">INT<br></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_intbase" style="height: 24px; width: 40px; color:#0066ff; background-color:#bfbfbf;" value="10" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_intlvl" style="height: 24px; width: 50px; color:#0066ff;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_intmods" style="height: 24px; width: 50px; color:#0066ff;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_int" style="height: 24px; width: 50px; color:#0066ff; font-weight: bold; background-color:#bfbfbf;" value="@{intbase}+@{intlvl}+@{intmods}" disabled="true"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table cellpadding="20">
|
||||
<tr>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" style="color:#0066ff;" colspan="2">Mana</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel">Max</td>
|
||||
<td class="sheet-statlabel">Current</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_mana_max" style="height: 24px; width: 60px; color:#0066ff;" value="2"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_mana_current" style="height: 24px; width: 60px; color:#0066ff; font-weight:bold;" value="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td>
|
||||
<table cellpadding="2">
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" colspan="2" style="color:#996633;">Armour<br>Reduction</td>
|
||||
<td class="sheet-statlabel-big" colspan="2" style="color:#cc33ff;">Elemental<br>Resistance</td>
|
||||
<td class="sheet-statlabel-big">Threshold</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel">Modifiers</td>
|
||||
<td class="sheet-statlabel">Total</td>
|
||||
<td class="sheet-statlabel">Modifiers</td>
|
||||
<td class="sheet-statlabel">Total</td>
|
||||
<td class="sheet-statlabel" coldspan="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_ar_mods" style="height: 24px; width: 50px;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_ar_total" style="height: 24px; width: 50px; font-weight: bold; color:#000000; background-color:#bfbfbf;" value="@{ar_mods}+floor((@{dex})*0.5)" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_er_mods" style="height: 24px; width: 50px;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_er_total" style="height: 24px; width: 50px; font-weight: bold; color:#000000; background-color:#bfbfbf;" value="@{er_mods}+floor((@{int})*0.5)" disabled="true"></td>
|
||||
<td coldspan="2"><input class="sheet-inputbox" type="number" name="attr_threshold" style="height: 24px; width: 60px; font-weight: bold; color:#000000;" value="10"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<td><img src="http://i.imgur.com/QGaZgj6.png" alt="Flasks" style="width:78; height:156;"></td>
|
||||
<td class="sheet-statlabel-big">Total<br>charges</td>
|
||||
<td class="sheet-statlabel-big">Affix<br>1</td>
|
||||
<td class="sheet-statlabel-big">Affix<br>2</td>
|
||||
<td class="sheet-statlabel-big">Current<br>charges</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big-gray">Flask 1</td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_flaskmax1" style="height: 24px; width: 40px;" value="10"></td>
|
||||
<td><input class="sheet-inputbox" type="text" name="flask11" style="height: 24px; width: 60px;"></td>
|
||||
<td><input class="sheet-inputbox" type="text" name="flask12" style="height: 24px; width: 60px;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_flaskcharges1" style="height: 24px; width: 40px; font-weight: bold;" value="10"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big-gray">Flask 2</td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_flaskmax2" style="height: 24px; width: 40px;" value="10"></td>
|
||||
<td><input class="sheet-inputbox" type="text" name="flask21" style="height: 24px; width: 60px;"></td>
|
||||
<td><input class="sheet-inputbox" type="text" name="flask22" style="height: 24px; width: 60px;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_flaskcharges2" style="height: 24px; width: 40px; font-weight: bold;" value="10"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellpadding="10">
|
||||
<tr>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" colspan="6" style="width: 480px; color:#e6b800;">Attacking</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel" style="font-weight: bold; color:#e6b800;">WAM</td>
|
||||
<td class="sheet-statlabel">Flat added<br>Damage</td>
|
||||
<td class="sheet-statlabel">Lower enemy<br>threshold</td>
|
||||
<td class="sheet-statlabel" style="color:#cc0000;">Life<br>leech</td>
|
||||
<td class="sheet-statlabel" style="color:#0066ff;">Mana<br>leech</td>
|
||||
<td class="sheet-statlabel">Crit<br>damage</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_wam" value="1" style="width: 80px; text-align: center; font-weight: bold;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_flatdmg" value="0" style="width: 80px; text-align: center;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_enemyth" value="0" style="width: 80px; text-align: center;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_lifeleech" value="0" style="width: 80px; text-align: center;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_manaleech" value="0" style="width: 80px; text-align: center;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_critdmg" value="0" style="width: 80px; text-align: center;"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- skills -->
|
||||
<div style="float: right;">
|
||||
<table rowspan="2">
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big">SKILLS</td>
|
||||
<td class="sheet-statlabel-big">Total</td>
|
||||
<td class="sheet-statlabel-big">Skill<br>points</td>
|
||||
<td class="sheet-statlabel-big">From<br>stats</td>
|
||||
<td class="sheet-statlabel-big">Modifiers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#cc0000">Athletics</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_athletics" style="background-color:#bfbfbf; color:#000000;" value="floor((@{athletics_stats})+@{athletics_mods}+@{athletics_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_athletics_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_athletics_stats" style="background-color:#bfbfbf;" value="floor((@{str})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_athletics_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#cc0000">Soul Endurance</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_endurance" style="background-color:#bfbfbf; color:#000000;" value="floor((@{endurance_stats})+@{endurance_mods}+@{endurance_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_endurance_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_endurance_stats" style="background-color:#bfbfbf;" value="floor((@{str})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_endurance_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#cc0000">Survival</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_survival" style="background-color:#bfbfbf; color:#000000;" value="floor((@{survival_stats})+@{survival_mods}+@{survival_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_survival_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_survival_stats" style="background-color:#bfbfbf;" value="floor((@{str})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_survival_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#008000">Stealth</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_stealth" style="background-color:#bfbfbf; color:#000000;" value="floor((@{stealth_stats})+@{stealth_mods}+@{stealth_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_stealth_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_stealth_stats" style="background-color:#bfbfbf;" value="floor((@{dex})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_stealth_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#008000">Soul Manipulation</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_manipulation" style="background-color:#bfbfbf; color:#000000;" value="floor((@{manipulation_stats})+@{manipulation_mods}+@{manipulation_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_manipulation_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_manipulation_stats" style="background-color:#bfbfbf;" value="floor((@{dex})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_manipulation_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#008000">Maneuver</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_maneuver" style="background-color:#bfbfbf; color:#000000;" value="floor((@{maneuver_stats})+@{maneuver_mods}+@{maneuver_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_maneuver_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_maneuver_stats" style="background-color:#bfbfbf;" value="floor((@{dex})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_maneuver_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#008000">Initiative</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_initiative" style="background-color:#bfbfbf; color:#000000;" value="floor((@{initiative_stats})+@{initiative_mods}+@{initiative_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_initiative_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_initiative_stats" style="background-color:#bfbfbf;" value="floor((@{dex})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_initiative_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#0066ff">Perception</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_perception" style="background-color:#bfbfbf; color:#000000;" value="floor((@{perception_stats})+@{perception_mods}+@{perception_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_perception_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_perception_stats" style="background-color:#bfbfbf;" value="floor((@{int})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_perception_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#0066ff">Lore</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_lore" style="background-color:#bfbfbf; color:#000000;" value="floor((@{lore_stats})+@{lore_mods}+@{lore_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_lore_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_lore_stats" style="background-color:#bfbfbf;" value="floor((@{int})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_lore_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#0066ff">Soulcraft</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_soulcraft" style="background-color:#bfbfbf; color:#000000;" value="floor((@{soulcraft_stats})+@{soulcraft_mods}+@{soulcraft_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_soulcraft_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_soulcraft_stats" style="background-color:#bfbfbf;" value="floor((@{int})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_soulcraft_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#000000">Intimidation</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_intimidation" style="background-color:#bfbfbf; color:#000000;" value="floor(@{intimidation_mods}+@{intimidation_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_intimidation_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_intimidation_stats" style="background-color:#bfbfbf;" value="-" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_intimidation_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#000000">Negotiation</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_negotiation" style="background-color:#bfbfbf; color:#000000;" value="floor(@{negotiation_mods}+@{negotiation_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_negotiation_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_negotiation_stats" style="background-color:#bfbfbf;" value="-" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_negotiation_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#000000">Charm</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_charm" style="background-color:#bfbfbf; color:#000000;" value="floor(@{charm_mods}+@{charm_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_charm_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_charm_stats" style="background-color:#bfbfbf;" value="-" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_charm_mods" value="0"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div><img src="http://i.imgur.com/ILVc5Ct.png" alt="PoE" style="float: left; width:78; height:78;"></img><br></div>
|
||||
<div><img src="http://i.imgur.com/5fiedkA.png" alt="PoE" style="float: left; width:78; height:78;"></img><br></div>
|
||||
<div><img src="http://i.imgur.com/go1xjto.png" alt="PoE" style="float: left; width:78; height:78;"></img><br></div>
|
||||
<div><img src="http://i.imgur.com/nTrYkME.png" alt="PoE" style="float: left; width:78; height:78;"></img><br></div>
|
||||
</div>
|
||||
|
||||
<!-- gear and soul skills -->
|
||||
<table>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<br>
|
||||
<table cellpadding="10" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" class="sheet-statlabel-big-gray" style="font-size: 1.5em; width: 450px;">Soul Skills</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="2" cols="2"></textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table cellpadding="10" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" class="sheet-statlabel-big-gray" style="font-size: 1.5em; width: 450px;">Keystones</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="2" cols="2"></textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table cellpadding="10" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" class="sheet-statlabel-big-gray" style="font-size: 1.5em; width: 450px;">Gear</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="2" cols="2"></textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table cellpadding="10" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" class="sheet-statlabel-big-gray" style="font-size: 1.5em; width: 450px;">Inventory</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="2" cols="2"></textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table cellpadding="10" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" class="sheet-statlabel-big-gray" style="font-size: 1.5em; width: 450px;">Miscellaneous</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="2" cols="2"></textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!--the end-->
|
||||
<!-- character -->
|
||||
<div style="float: left">
|
||||
<div style="float: left"><img src="http://i.imgur.com/hQBwOzE.png" alt="PoE" style="float: left; width:78; height:78;"></img><br></div>
|
||||
<div style="float: left; width: 30px;"> </div><div style="float: left"><input type="text" name="attr_character_name" style="width: 220px;"> <br>Name</div>
|
||||
<div style="float: left"><input type="text" name="attr_gender" style="width: 100px;"> <br>Gender</div>
|
||||
<br>
|
||||
<div style="float: left; width: 30px;"> </div><div style="float: left"><input type="number" name="attr_lvl" style="width: 50px;"> <br>Level</div>
|
||||
<br>
|
||||
</div>
|
||||
|
||||
<div style="clear:both"></div>
|
||||
<br>
|
||||
<div style="float: left">
|
||||
<!-- stats -->
|
||||
<table cellpadding="20">
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" colspan="2">Max</td>
|
||||
<td class="sheet-statlabel-big" style="color:#ff4d4d;" colspan="2">Damage<br>Taken</td>
|
||||
<td class="sheet-statlabel-big" colspan="2">Modifiers</td>
|
||||
<td class="sheet-statlabel-big" colspan="2">Total</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel" style="color:#cc0000;">Life</td>
|
||||
<td class="sheet-statlabel" style="color:#00ffff;">ES</td>
|
||||
<td class="sheet-statlabel" style="color:#cc0000;">Life</td>
|
||||
<td class="sheet-statlabel" style="color:#00ffff;">ES</td>
|
||||
<td class="sheet-statlabel" style="color:#cc0000;">Life</td>
|
||||
<td class="sheet-statlabel" style="color:#00ffff;">ES</td>
|
||||
<td class="sheet-statlabel" style="color:#cc0000;">Life</td>
|
||||
<td class="sheet-statlabel" style="color:#00ffff;">ES</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_life_max" style="height: 24px; width: 60px; color:#cc0000; background-color:#bfbfbf;" value="floor(10+(@{str})+@{life_mods})" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_es_max" style="height: 24px; width: 60px; color:#008080; background-color:#bfbfbf;" value="floor(@{es_mods})" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_life_taken" style="height: 24px; width: 60px; color:#cc0000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_es_taken" style="height: 24px; width: 60px; color:#008080;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_life_mods" style="height: 24px; width: 60px; color:#cc0000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_es_mods" style="height: 24px; width: 60px; color:#008080;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_life" style="height: 24px; width: 60px; color:#cc0000; font-weight: bold; background-color:#bfbfbf;" value="floor((@{life_max})-@{life_taken})" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_es" style="height: 24px; width: 60px; color:#008080; font-weight: bold; background-color:#bfbfbf;" value="floor((@{es_max})-@{es_taken})" disabled="true"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Stats</th><th>Base</th><th>Per lvl</th><th>Modifiers</th><th>TOTAL</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" style="color:#cc0000;">STR<br></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_strbase" style="height: 24px; width: 40px; color:#cc0000; background-color:#bfbfbf;" value="10" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_strlvl" style="height: 24px; width: 50px; color:#cc0000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_strmods" style="height: 24px; width: 50px; color:#cc0000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_str" style="height: 24px; width: 50px; color:#cc0000; font-weight: bold; background-color:#bfbfbf;" value="@{strbase}+@{strlvl}+@{strmods}" disabled="true"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" style="color:#00cc00;">DEX<br></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_dexbase" style="height: 24px; width: 40px; color:#008000; background-color:#bfbfbf;" value="10" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_dexlvl" style="height: 24px; width: 50px; color:#008000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_dexmods" style="height: 24px; width: 50px; color:#008000;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_dex" style="height: 24px; width: 50px; color:#008000; font-weight: bold; background-color:#bfbfbf;" value="@{dexbase}+@{dexlvl}+@{dexmods}" disabled="true"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" style="color:#3399ff;">INT<br></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_intbase" style="height: 24px; width: 40px; color:#0066ff; background-color:#bfbfbf;" value="10" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_intlvl" style="height: 24px; width: 50px; color:#0066ff;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_intmods" style="height: 24px; width: 50px; color:#0066ff;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_int" style="height: 24px; width: 50px; color:#0066ff; font-weight: bold; background-color:#bfbfbf;" value="@{intbase}+@{intlvl}+@{intmods}" disabled="true"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table cellpadding="20">
|
||||
<tr>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" style="color:#0066ff;" colspan="2">Mana</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel">Max</td>
|
||||
<td class="sheet-statlabel">Current</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_mana_max" style="height: 24px; width: 60px; color:#0066ff;" value="2"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_mana_current" style="height: 24px; width: 60px; color:#0066ff; font-weight:bold;" value="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td>
|
||||
<table cellpadding="2">
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" colspan="2" style="color:#996633;">Armour<br>Reduction</td>
|
||||
<td class="sheet-statlabel-big" colspan="2" style="color:#cc33ff;">Elemental<br>Resistance</td>
|
||||
<td class="sheet-statlabel-big">Threshold</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel">Modifiers</td>
|
||||
<td class="sheet-statlabel">Total</td>
|
||||
<td class="sheet-statlabel">Modifiers</td>
|
||||
<td class="sheet-statlabel">Total</td>
|
||||
<td class="sheet-statlabel" coldspan="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_ar_mods" style="height: 24px; width: 50px;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_ar_total" style="height: 24px; width: 50px; font-weight: bold; color:#000000; background-color:#bfbfbf;" value="@{ar_mods}+floor((@{dex})*0.5)" disabled="true"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_er_mods" style="height: 24px; width: 50px;" value="0"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_er_total" style="height: 24px; width: 50px; font-weight: bold; color:#000000; background-color:#bfbfbf;" value="@{er_mods}+floor((@{int})*0.5)" disabled="true"></td>
|
||||
<td coldspan="2"><input class="sheet-inputbox" type="number" name="attr_threshold" style="height: 24px; width: 60px; font-weight: bold; color:#000000;" value="10"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<td><img src="http://i.imgur.com/QGaZgj6.png" alt="Flasks" style="width:78; height:156;"></td>
|
||||
<td class="sheet-statlabel-big">Total<br>charges</td>
|
||||
<td class="sheet-statlabel-big">Affix<br>1</td>
|
||||
<td class="sheet-statlabel-big">Affix<br>2</td>
|
||||
<td class="sheet-statlabel-big">Current<br>charges</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big-gray">Flask 1</td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_flaskmax1" style="height: 24px; width: 40px;" value="10"></td>
|
||||
<td><input class="sheet-inputbox" type="text" name="flask11" style="height: 24px; width: 60px;"></td>
|
||||
<td><input class="sheet-inputbox" type="text" name="flask12" style="height: 24px; width: 60px;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_flaskcharges1" style="height: 24px; width: 40px; font-weight: bold;" value="10"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big-gray">Flask 2</td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_flaskmax2" style="height: 24px; width: 40px;" value="10"></td>
|
||||
<td><input class="sheet-inputbox" type="text" name="flask21" style="height: 24px; width: 60px;"></td>
|
||||
<td><input class="sheet-inputbox" type="text" name="flask22" style="height: 24px; width: 60px;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_flaskcharges2" style="height: 24px; width: 40px; font-weight: bold;" value="10"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellpadding="10">
|
||||
<tr>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big" colspan="6" style="width: 480px; color:#e6b800;">Attacking</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="sheet-statlabel" style="font-weight: bold; color:#e6b800;">WAM</td>
|
||||
<td class="sheet-statlabel">Flat added<br>Damage</td>
|
||||
<td class="sheet-statlabel">Lower enemy<br>threshold</td>
|
||||
<td class="sheet-statlabel" style="color:#cc0000;">Life<br>leech</td>
|
||||
<td class="sheet-statlabel" style="color:#0066ff;">Mana<br>leech</td>
|
||||
<td class="sheet-statlabel">Crit<br>damage</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_wam" value="1" style="width: 80px; text-align: center; font-weight: bold;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_flatdmg" value="0" style="width: 80px; text-align: center;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_enemyth" value="0" style="width: 80px; text-align: center;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_lifeleech" value="0" style="width: 80px; text-align: center;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_manaleech" value="0" style="width: 80px; text-align: center;"></td>
|
||||
<td><input class="sheet-inputbox" type="number" name="attr_critdmg" value="0" style="width: 80px; text-align: center;"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- skills -->
|
||||
<div style="float: right;">
|
||||
<table rowspan="2">
|
||||
<tr>
|
||||
<td class="sheet-statlabel-big">SKILLS</td>
|
||||
<td class="sheet-statlabel-big">Total</td>
|
||||
<td class="sheet-statlabel-big">Skill<br>points</td>
|
||||
<td class="sheet-statlabel-big">From<br>stats</td>
|
||||
<td class="sheet-statlabel-big">Modifiers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#cc0000">Athletics</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_athletics" style="background-color:#bfbfbf; color:#000000;" value="floor((@{athletics_stats})+@{athletics_mods}+@{athletics_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_athletics_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_athletics_stats" style="background-color:#bfbfbf;" value="floor((@{str})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_athletics_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#cc0000">Soul Endurance</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_endurance" style="background-color:#bfbfbf; color:#000000;" value="floor((@{endurance_stats})+@{endurance_mods}+@{endurance_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_endurance_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_endurance_stats" style="background-color:#bfbfbf;" value="floor((@{str})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_endurance_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#cc0000">Survival</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_survival" style="background-color:#bfbfbf; color:#000000;" value="floor((@{survival_stats})+@{survival_mods}+@{survival_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_survival_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_survival_stats" style="background-color:#bfbfbf;" value="floor((@{str})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_survival_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#008000">Stealth</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_stealth" style="background-color:#bfbfbf; color:#000000;" value="floor((@{stealth_stats})+@{stealth_mods}+@{stealth_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_stealth_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_stealth_stats" style="background-color:#bfbfbf;" value="floor((@{dex})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_stealth_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#008000">Soul Manipulation</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_manipulation" style="background-color:#bfbfbf; color:#000000;" value="floor((@{manipulation_stats})+@{manipulation_mods}+@{manipulation_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_manipulation_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_manipulation_stats" style="background-color:#bfbfbf;" value="floor((@{dex})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_manipulation_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#008000">Maneuver</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_maneuver" style="background-color:#bfbfbf; color:#000000;" value="floor((@{maneuver_stats})+@{maneuver_mods}+@{maneuver_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_maneuver_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_maneuver_stats" style="background-color:#bfbfbf;" value="floor((@{dex})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_maneuver_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#008000">Initiative</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_initiative" style="background-color:#bfbfbf; color:#000000;" value="floor((@{initiative_stats})+@{initiative_mods}+@{initiative_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_initiative_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_initiative_stats" style="background-color:#bfbfbf;" value="floor((@{dex})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_initiative_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#0066ff">Perception</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_perception" style="background-color:#bfbfbf; color:#000000;" value="floor((@{perception_stats})+@{perception_mods}+@{perception_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_perception_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_perception_stats" style="background-color:#bfbfbf;" value="floor((@{int})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_perception_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#0066ff">Lore</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_lore" style="background-color:#bfbfbf; color:#000000;" value="floor((@{lore_stats})+@{lore_mods}+@{lore_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_lore_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_lore_stats" style="background-color:#bfbfbf;" value="floor((@{int})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_lore_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#0066ff">Soulcraft</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_soulcraft" style="background-color:#bfbfbf; color:#000000;" value="floor((@{soulcraft_stats})+@{soulcraft_mods}+@{soulcraft_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_soulcraft_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_soulcraft_stats" style="background-color:#bfbfbf;" value="floor((@{int})/5)" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_soulcraft_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#000000">Intimidation</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_intimidation" style="background-color:#bfbfbf; color:#000000;" value="floor(@{intimidation_mods}+@{intimidation_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_intimidation_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_intimidation_stats" style="background-color:#bfbfbf;" value="-" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_intimidation_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#000000">Negotiation</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_negotiation" style="background-color:#bfbfbf; color:#000000;" value="floor(@{negotiation_mods}+@{negotiation_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_negotiation_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_negotiation_stats" style="background-color:#bfbfbf;" value="-" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_negotiation_mods" value="0"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#000000">Charm</td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_charm" style="background-color:#bfbfbf; color:#000000;" value="floor(@{charm_mods}+@{charm_points})" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_charm_points" value="0"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_charm_stats" style="background-color:#bfbfbf;" value="-" disabled="true"></td>
|
||||
<td><input class="sheet-skillsbox" type="number" name="attr_charm_mods" value="0"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div><img src="http://i.imgur.com/ILVc5Ct.png" alt="PoE" style="float: left; width:78; height:78;"></img><br></div>
|
||||
<div><img src="http://i.imgur.com/5fiedkA.png" alt="PoE" style="float: left; width:78; height:78;"></img><br></div>
|
||||
<div><img src="http://i.imgur.com/go1xjto.png" alt="PoE" style="float: left; width:78; height:78;"></img><br></div>
|
||||
<div><img src="http://i.imgur.com/nTrYkME.png" alt="PoE" style="float: left; width:78; height:78;"></img><br></div>
|
||||
</div>
|
||||
|
||||
<!-- gear and soul skills -->
|
||||
<table>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<br>
|
||||
<table cellpadding="10" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" class="sheet-statlabel-big-gray" style="font-size: 1.5em; width: 450px;">Soul Skills</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="2" cols="2"></textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table cellpadding="10" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" class="sheet-statlabel-big-gray" style="font-size: 1.5em; width: 450px;">Keystones</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="2" cols="2"></textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table cellpadding="10" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" class="sheet-statlabel-big-gray" style="font-size: 1.5em; width: 450px;">Gear</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="2" cols="2"></textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table cellpadding="10" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" class="sheet-statlabel-big-gray" style="font-size: 1.5em; width: 450px;">Inventory</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="2" cols="2"></textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table cellpadding="10" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" class="sheet-statlabel-big-gray" style="font-size: 1.5em; width: 450px;">Miscellaneous</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><textarea rows="2" cols="2"></textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!--the end-->
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"html": "path_of_paper.html",
|
||||
"css": "path_of_paper.css",
|
||||
"authors": "Juan S.",
|
||||
"roll20userid": "498547",
|
||||
"instructions": "Path of Paper, the game system created by Richard West (Angryaa)"
|
||||
{
|
||||
"html": "path_of_paper.html",
|
||||
"css": "path_of_paper.css",
|
||||
"authors": "Juan S.",
|
||||
"roll20userid": "498547",
|
||||
"instructions": "Path of Paper, the game system created by Richard West (Angryaa)"
|
||||
}
|
||||
+246
-246
@@ -1,247 +1,247 @@
|
||||
|
||||
.charsheet label {
|
||||
display: inline-block;
|
||||
width: 75px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.charsheet input {
|
||||
background-color: transparent;
|
||||
border-style: solid;
|
||||
border-color: black;
|
||||
border-width: 0px 0px 2px 0px;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-inputbox {
|
||||
background-color: transparent;
|
||||
border-style: solid;
|
||||
border-color: black;
|
||||
border-width: 1px 1px 1px 1px;
|
||||
}
|
||||
|
||||
.even {
|
||||
border: 1px solid black;
|
||||
background-color: #AAA;
|
||||
}
|
||||
|
||||
.odd {
|
||||
border: 1px solid black;
|
||||
background-color: #DDD;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sheet-colorred {
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
}
|
||||
.sheet_barbarianlink:hover + div{
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
background-color: gray;
|
||||
position: absolute;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.sheet_barbarianshowhide {
|
||||
overflow: hidden;
|
||||
height: 0px;
|
||||
ddisplay: none;
|
||||
}
|
||||
|
||||
.sheet-col strong.sheet-dee {
|
||||
font-size: 1.4em;
|
||||
font-weight: bold;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-short {
|
||||
width: 3.5em;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-skillsbox {
|
||||
font-size: .75em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet {
|
||||
background-color: white;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.charsheet table th {
|
||||
font-size: 0.8em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-statlabel-big-gray {
|
||||
background-color: gray;
|
||||
color: white;
|
||||
font-size: 0.9em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-statlabel-big {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-size: 0.9em;
|
||||
text-align: center;
|
||||
}
|
||||
.charsheet table td.sheet-statlabel {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-size: 0.7em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td {
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
select.sheet-dtype {
|
||||
width: 60px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack table {
|
||||
width: 189px;
|
||||
padding: 2px;
|
||||
border: 2px solid #5ed7c4 ;
|
||||
background-color: #1e4d43;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack th {
|
||||
color: #5ed7c4;
|
||||
padding-left: 5px;
|
||||
line-height: 1.6em;
|
||||
font-size: 1.2em;
|
||||
text-align: left;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
font-variant: normal;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack tr {
|
||||
color: #5ed7c4;
|
||||
padding-left: 5px;
|
||||
line-height: 1.6em;
|
||||
font-size: 1.2em;
|
||||
text-align: left;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
font-variant: normal;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .sheet-subheader {
|
||||
color: #5ed7c4;
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .sheet-arrow-right {
|
||||
border-top: 3px solid transparent;
|
||||
border-bottom: 3px solid transparent;
|
||||
border-left: 180px solid #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .sheet-tcat {
|
||||
font-style: normal;
|
||||
color: #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack td {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .inlinerollresult {
|
||||
background-color: #1e4d43;
|
||||
border: none;
|
||||
color: #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .inlinerollresult.fullcrit {
|
||||
color: #3FB315;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .inlinerollresult.fullfail {
|
||||
color: #B31515;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .inlinerollresult.importantroll {
|
||||
color: #4A57ED;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
.sheet-rolltemplate-check table {
|
||||
width: 189px;
|
||||
padding: 2px;
|
||||
border: 2px solid #5ed7c4 ;
|
||||
background-color: #1e4d43;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check th {
|
||||
color: #5ed7c4;
|
||||
padding-left: 5px;
|
||||
line-height: 1.6em;
|
||||
font-size: 1.2em;
|
||||
text-align: left;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
font-variant: normal;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check tr {
|
||||
color: #5ed7c4;
|
||||
padding-left: 5px;
|
||||
line-height: 1.6em;
|
||||
font-size: 1.2em;
|
||||
text-align: left;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
font-variant: normal;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .sheet-subheader {
|
||||
color: #5ed7c4;
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .sheet-arrow-right {
|
||||
border-top: 3px solid transparent;
|
||||
border-bottom: 3px solid transparent;
|
||||
border-left: 180px solid #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .sheet-tcat {
|
||||
font-style: normal;
|
||||
color: #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check td {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .inlinerollresult {
|
||||
background-color: #1e4d43;
|
||||
border: none;
|
||||
color: #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .inlinerollresult.fullcrit {
|
||||
color: #3FB315;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .inlinerollresult.fullfail {
|
||||
color: #B31515;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .inlinerollresult.importantroll {
|
||||
color: #4A57ED;
|
||||
border: none;
|
||||
|
||||
.charsheet label {
|
||||
display: inline-block;
|
||||
width: 75px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.charsheet input {
|
||||
background-color: transparent;
|
||||
border-style: solid;
|
||||
border-color: black;
|
||||
border-width: 0px 0px 2px 0px;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-inputbox {
|
||||
background-color: transparent;
|
||||
border-style: solid;
|
||||
border-color: black;
|
||||
border-width: 1px 1px 1px 1px;
|
||||
}
|
||||
|
||||
.even {
|
||||
border: 1px solid black;
|
||||
background-color: #AAA;
|
||||
}
|
||||
|
||||
.odd {
|
||||
border: 1px solid black;
|
||||
background-color: #DDD;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sheet-colorred {
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
}
|
||||
.sheet_barbarianlink:hover + div{
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
background-color: gray;
|
||||
position: absolute;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.sheet_barbarianshowhide {
|
||||
overflow: hidden;
|
||||
height: 0px;
|
||||
ddisplay: none;
|
||||
}
|
||||
|
||||
.sheet-col strong.sheet-dee {
|
||||
font-size: 1.4em;
|
||||
font-weight: bold;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.charsheet input.sheet-short {
|
||||
width: 3.5em;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-skillsbox {
|
||||
font-size: .75em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet {
|
||||
background-color: white;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.charsheet table th {
|
||||
font-size: 0.8em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-statlabel-big-gray {
|
||||
background-color: gray;
|
||||
color: white;
|
||||
font-size: 0.9em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td.sheet-statlabel-big {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-size: 0.9em;
|
||||
text-align: center;
|
||||
}
|
||||
.charsheet table td.sheet-statlabel {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-size: 0.7em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.charsheet table td {
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
select.sheet-dtype {
|
||||
width: 60px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack table {
|
||||
width: 189px;
|
||||
padding: 2px;
|
||||
border: 2px solid #5ed7c4 ;
|
||||
background-color: #1e4d43;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack th {
|
||||
color: #5ed7c4;
|
||||
padding-left: 5px;
|
||||
line-height: 1.6em;
|
||||
font-size: 1.2em;
|
||||
text-align: left;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
font-variant: normal;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack tr {
|
||||
color: #5ed7c4;
|
||||
padding-left: 5px;
|
||||
line-height: 1.6em;
|
||||
font-size: 1.2em;
|
||||
text-align: left;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
font-variant: normal;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .sheet-subheader {
|
||||
color: #5ed7c4;
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .sheet-arrow-right {
|
||||
border-top: 3px solid transparent;
|
||||
border-bottom: 3px solid transparent;
|
||||
border-left: 180px solid #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .sheet-tcat {
|
||||
font-style: normal;
|
||||
color: #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack td {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .inlinerollresult {
|
||||
background-color: #1e4d43;
|
||||
border: none;
|
||||
color: #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .inlinerollresult.fullcrit {
|
||||
color: #3FB315;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .inlinerollresult.fullfail {
|
||||
color: #B31515;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-5eAttack .inlinerollresult.importantroll {
|
||||
color: #4A57ED;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
.sheet-rolltemplate-check table {
|
||||
width: 189px;
|
||||
padding: 2px;
|
||||
border: 2px solid #5ed7c4 ;
|
||||
background-color: #1e4d43;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check th {
|
||||
color: #5ed7c4;
|
||||
padding-left: 5px;
|
||||
line-height: 1.6em;
|
||||
font-size: 1.2em;
|
||||
text-align: left;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
font-variant: normal;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check tr {
|
||||
color: #5ed7c4;
|
||||
padding-left: 5px;
|
||||
line-height: 1.6em;
|
||||
font-size: 1.2em;
|
||||
text-align: left;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
font-variant: normal;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .sheet-subheader {
|
||||
color: #5ed7c4;
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .sheet-arrow-right {
|
||||
border-top: 3px solid transparent;
|
||||
border-bottom: 3px solid transparent;
|
||||
border-left: 180px solid #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .sheet-tcat {
|
||||
font-style: normal;
|
||||
color: #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check td {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .inlinerollresult {
|
||||
background-color: #1e4d43;
|
||||
border: none;
|
||||
color: #5ed7c4;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .inlinerollresult.fullcrit {
|
||||
color: #3FB315;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .inlinerollresult.fullfail {
|
||||
color: #B31515;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-check .inlinerollresult.importantroll {
|
||||
color: #4A57ED;
|
||||
border: none;
|
||||
}
|
||||
+525
-525
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"html": "SWRRPG.html",
|
||||
"css": "SWRRPG.css",
|
||||
"authors": "trae chappell",
|
||||
"roll20userid": "826322",
|
||||
"preview": "SWRRPGscreenshot.png",
|
||||
"instructions": "You will need to fill each section for the totals to work correctly, even with zeros. When entering damage for your weapon please enter in standard roll format"
|
||||
{
|
||||
"html": "SWRRPG.html",
|
||||
"css": "SWRRPG.css",
|
||||
"authors": "trae chappell",
|
||||
"roll20userid": "826322",
|
||||
"preview": "SWRRPGscreenshot.png",
|
||||
"instructions": "You will need to fill each section for the totals to work correctly, even with zeros. When entering damage for your weapon please enter in standard roll format"
|
||||
}
|
||||
Reference in New Issue
Block a user