mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-02 21:22:34 +00:00
Star Wars Saga Edition
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
Star Wars Saga Edition Character Sheet
|
||||
=======================
|
||||
Welcome to my rendition of the Star Wars Saga Edition Character sheet.
|
||||
My goal is to make this all encompassing for the current and any House Rules which may come up.
|
||||
|
||||
As this is a work in progress, please excuse the fact this is not completed.
|
||||
|
||||
TO DO
|
||||
============
|
||||
* List out all Skills with modifiers and rolls
|
||||
* Use repeating function to include weapons and attacks having the user choose which Ability Mod and damage for pre-filled rolls
|
||||
* Make it prettier with CSS (incorporate logos, etc)
|
||||
|
||||
Suggestions
|
||||
============
|
||||
Please send me a message if you have any suggestions.
|
||||
@@ -0,0 +1,3 @@
|
||||
.charsheet div.defenseMod {
|
||||
width: 60px;
|
||||
}
|
||||
@@ -0,0 +1,275 @@
|
||||
<div class="sheet-3colrow">
|
||||
|
||||
<div class="sheet-col">
|
||||
<label>Gender:</label><input type="text" name="attr_gender"/>
|
||||
<label>Class:</label><input type="text" name="attr_rank" />
|
||||
<table style="text-align: center; width: 100%;" border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td><label>Age:</label><input type="number" name="attr_age" /></td>
|
||||
<td><label>Height:</label><input type="number" name="attr_height" /></td>
|
||||
<td><label>Weight:</label><input type="number" name="attr_weight"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="sheet-col">
|
||||
<label>Species:</label><input type="text" name="attr_species" />
|
||||
<label>Level:</label><input type="number" name="attr_level" /> <input type="number" name="attr_halfLevel" value="[[floor(@{level}/2)]]" disabled="true" />
|
||||
</div>
|
||||
|
||||
<div class="sheet-col">
|
||||
<label>Background:</label><input type="text" name="attr_background" />
|
||||
<label>Destiny:</label><input type="text" name="attr_destiny" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<hr/>
|
||||
<div class="sheet-2colrow">
|
||||
<div class="sheet-col">
|
||||
|
||||
<h3 style="margin-bottom: 10px;">Attributes</h3>
|
||||
|
||||
<table style="text-align: center; width: 100%;" border="0" cellpadding="1" cellspacing="1">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: center;">STR</td>
|
||||
<td><input type="number" name="attr_STR" value="8" /></td>
|
||||
<td><input type="number" name="attr_StrMod" value="[[floor(@{STR}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_STR' value='/roll 1d20 + @{StrMod}'></button></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">DEX</td>
|
||||
<td><input type="number" name="attr_DEX" value="8" /></td>
|
||||
<td><input type="number" name="attr_DEXMod" value="[[floor(@{DEX}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_DEX' value='/roll 1d20 + @{DEXMod}'></button></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">CON</td>
|
||||
<td><input type="number" name="attr_CON" value="8" /></td>
|
||||
<td><input type="number" name="attr_CONMod" value="[[floor(@{CON}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_CON' value='/roll 1d20 + @{CONMod}'></button></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">INT</td>
|
||||
<td><input type="number" name="attr_INT" value="8" /></td>
|
||||
<td><input type="number" name="attr_INTMod" value="[[floor(@{INT}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_INT' value='/roll 1d20 + @{INTMod}'></button></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">WIS</td>
|
||||
<td><input type="number" name="attr_WIS" value="8" /></td>
|
||||
<td><input type="number" name="attr_WISMod" value="[[floor(@{WIS}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_WIS' value='/roll 1d20 + @{WISMod}'></button></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">CHA</td>
|
||||
<td><input type="number" name="attr_CHA" value="8" /></td>
|
||||
<td><input type="number" name="attr_CHAMod" value="[[floor(@{CHA}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_CHA' value='/roll 1d20 + @{CHAMod}'></button></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="sheet-col">
|
||||
<label>Condition</label>
|
||||
<select name="attr_CT" style="width: 80px">
|
||||
<option value="0">Normal</option>
|
||||
<option value="-1">-1</option>
|
||||
<option value="-2">-2</option>
|
||||
<option value="-5">-5</option>
|
||||
<option value="-10">-10</option>
|
||||
<option value="-10">Helpless</option>
|
||||
</select></br>
|
||||
<label>HP:</label> <input type="number" name="attr_HP" value="0" /> / <input type="number" name="attr_HP_max" value="0" />
|
||||
|
||||
<h3 style="margin-bottom: 10px;">Defenses</h3>
|
||||
<table style="text-align: center; width: 100%;" border="0" cellpadding="1" cellspacing="1">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Total</th>
|
||||
<th>Level / Armor</th>
|
||||
<th>Class</th>
|
||||
<th>Mod</th>
|
||||
<th>Misc</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: center;">Reflex</td>
|
||||
<td><input type="number" name="attr_Reflex" value="10+@{RefMod}+@{RefLevel}+@{RefClass}+@{RefMisc}+[[@{CT}]]" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_RefLevel" value="0" /></td>
|
||||
<td><input type="number" name="attr_RefClass" value="0" /></td>
|
||||
<td><div class="defenseMod"> <select name="attr_RefMod" style="width: 60px">
|
||||
<option value="@{StrMod}">STR</option>
|
||||
<option value="@{DEXMod}" selected>DEX</option>
|
||||
<option value="@{ConMod}">CON</option>
|
||||
<option value="@{IntMod}">INT</option>
|
||||
<option value="@{WisMod}">WIS</option>
|
||||
<option value="@{ChaMod}">CHA</option>
|
||||
</select></div></td>
|
||||
<td><input type="number" name="attr_RefMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Fortitude</td>
|
||||
<td><input type="number" name="attr_Fortitude" value="10+@{FortMod}+@{FortLevel}+@{FortClass}+@{FortMisc}+[[@{CT}]]" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_FortLevel" value="0" /></td>
|
||||
<td><input type="number" name="attr_FortClass" value="0" /></td>
|
||||
<td><div class="defenseMod"> <select name="attr_FortMod" style="width: 60px">
|
||||
<option value="@{StrMod}">STR</option>
|
||||
<option value="@{DEXMod}">DEX</option>
|
||||
<option value="@{ConMod}" selected>CON</option>
|
||||
<option value="@{IntMod}">INT</option>
|
||||
<option value="@{WisMod}">WIS</option>
|
||||
<option value="@{ChaMod}">CHA</option>
|
||||
</select><div></td>
|
||||
<td><input type="number" name="attr_FortMisc" value="0" /></td>
|
||||
</tr>
|
||||
<td style="text-align: center;">Will</td>
|
||||
<td><input type="number" name="attr_Will" value="10+@{WillMod}+@{WillLevel}+@{WillClass}+@{WillMisc}+[[@{CT}]]" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_WillLevel" value="0" /></td>
|
||||
<td><input type="number" name="attr_WillClass" value="0" /></td>
|
||||
<td><div class="defenseMod"> <select name="attr_WillMod">
|
||||
<option value="@{StrMod}">STR</option>
|
||||
<option value="@{DEXMod}">DEX</option>
|
||||
<option value="@{ConMod}">CON</option>
|
||||
<option value="@{IntMod}">INT</option>
|
||||
<option value="@{WisMod}" selected>WIS</option>
|
||||
<option value="@{ChaMod}">CHA</option>
|
||||
</select></div></td>
|
||||
<td><input type="number" name="attr_WillMisc" value="0" /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
<div class="sheet-col">
|
||||
<h3>Skills</h3>
|
||||
<table style="text-align: center; width: 100%;" border="0" cellpadding="1" cellspacing="1">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th></th>
|
||||
<th>Total</th>
|
||||
<th>Mod</th>
|
||||
<th>Training</th>
|
||||
<th>Focus</th>
|
||||
<th>Misc</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,275 @@
|
||||
<div class="sheet-3colrow">
|
||||
|
||||
<div class="sheet-col">
|
||||
<label>Gender:</label><input type="text" name="attr_gender"/>
|
||||
<label>Class:</label><input type="text" name="attr_rank" />
|
||||
<table style="text-align: center; width: 100%;" border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td><label>Age:</label><input type="number" name="attr_age" /></td>
|
||||
<td><label>Height:</label><input type="number" name="attr_height" /></td>
|
||||
<td><label>Weight:</label><input type="number" name="attr_weight"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="sheet-col">
|
||||
<label>Species:</label><input type="text" name="attr_species" />
|
||||
<label>Level:</label><input type="number" name="attr_level" /> <input type="number" name="attr_halfLevel" value="[[floor(@{level}/2)]]" disabled="true" />
|
||||
</div>
|
||||
|
||||
<div class="sheet-col">
|
||||
<label>Background:</label><input type="text" name="attr_background" />
|
||||
<label>Destiny:</label><input type="text" name="attr_destiny" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<hr/>
|
||||
<div class="sheet-2colrow">
|
||||
<div class="sheet-col">
|
||||
|
||||
<h3 style="margin-bottom: 10px;">Attributes</h3>
|
||||
|
||||
<table style="text-align: center; width: 100%;" border="0" cellpadding="1" cellspacing="1">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: center;">STR</td>
|
||||
<td><input type="number" name="attr_STR" value="8" /></td>
|
||||
<td><input type="number" name="attr_StrMod" value="[[floor(@{STR}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_STR' value='/roll 1d20 + @{StrMod}'></button></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">DEX</td>
|
||||
<td><input type="number" name="attr_DEX" value="8" /></td>
|
||||
<td><input type="number" name="attr_DEXMod" value="[[floor(@{DEX}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_DEX' value='/roll 1d20 + @{DEXMod}'></button></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">CON</td>
|
||||
<td><input type="number" name="attr_CON" value="8" /></td>
|
||||
<td><input type="number" name="attr_CONMod" value="[[floor(@{CON}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_CON' value='/roll 1d20 + @{CONMod}'></button></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">INT</td>
|
||||
<td><input type="number" name="attr_INT" value="8" /></td>
|
||||
<td><input type="number" name="attr_INTMod" value="[[floor(@{INT}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_INT' value='/roll 1d20 + @{INTMod}'></button></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">WIS</td>
|
||||
<td><input type="number" name="attr_WIS" value="8" /></td>
|
||||
<td><input type="number" name="attr_WISMod" value="[[floor(@{WIS}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_WIS' value='/roll 1d20 + @{WISMod}'></button></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">CHA</td>
|
||||
<td><input type="number" name="attr_CHA" value="8" /></td>
|
||||
<td><input type="number" name="attr_CHAMod" value="[[floor(@{CHA}/2-5)]]" disabled="true" /></td>
|
||||
<td><button type='roll' name='roll_CHA' value='/roll 1d20 + @{CHAMod}'></button></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="sheet-col">
|
||||
<label>Condition</label>
|
||||
<select name="attr_CT" style="width: 80px">
|
||||
<option value="0">Normal</option>
|
||||
<option value="-1">-1</option>
|
||||
<option value="-2">-2</option>
|
||||
<option value="-5">-5</option>
|
||||
<option value="-10">-10</option>
|
||||
<option value="-10">Helpless</option>
|
||||
</select></br>
|
||||
<label>HP:</label> <input type="number" name="attr_HP" value="0" /> / <input type="number" name="attr_HP_max" value="0" />
|
||||
|
||||
<h3 style="margin-bottom: 10px;">Defenses</h3>
|
||||
<table style="text-align: center; width: 100%;" border="0" cellpadding="1" cellspacing="1">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Total</th>
|
||||
<th>Level / Armor</th>
|
||||
<th>Class</th>
|
||||
<th>Mod</th>
|
||||
<th>Misc</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: center;">Reflex</td>
|
||||
<td><input type="number" name="attr_Reflex" value="10+@{RefMod}+@{RefLevel}+@{RefClass}+@{RefMisc}+[[@{CT}]]" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_RefLevel" value="0" /></td>
|
||||
<td><input type="number" name="attr_RefClass" value="0" /></td>
|
||||
<td><div class="defenseMod"> <select name="attr_RefMod" style="width: 60px">
|
||||
<option value="@{StrMod}">STR</option>
|
||||
<option value="@{DEXMod}" selected>DEX</option>
|
||||
<option value="@{ConMod}">CON</option>
|
||||
<option value="@{IntMod}">INT</option>
|
||||
<option value="@{WisMod}">WIS</option>
|
||||
<option value="@{ChaMod}">CHA</option>
|
||||
</select></div></td>
|
||||
<td><input type="number" name="attr_RefMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Fortitude</td>
|
||||
<td><input type="number" name="attr_Fortitude" value="10+@{FortMod}+@{FortLevel}+@{FortClass}+@{FortMisc}+[[@{CT}]]" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_FortLevel" value="0" /></td>
|
||||
<td><input type="number" name="attr_FortClass" value="0" /></td>
|
||||
<td><div class="defenseMod"> <select name="attr_FortMod" style="width: 60px">
|
||||
<option value="@{StrMod}">STR</option>
|
||||
<option value="@{DEXMod}">DEX</option>
|
||||
<option value="@{ConMod}" selected>CON</option>
|
||||
<option value="@{IntMod}">INT</option>
|
||||
<option value="@{WisMod}">WIS</option>
|
||||
<option value="@{ChaMod}">CHA</option>
|
||||
</select><div></td>
|
||||
<td><input type="number" name="attr_FortMisc" value="0" /></td>
|
||||
</tr>
|
||||
<td style="text-align: center;">Will</td>
|
||||
<td><input type="number" name="attr_Will" value="10+@{WillMod}+@{WillLevel}+@{WillClass}+@{WillMisc}+[[@{CT}]]" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_WillLevel" value="0" /></td>
|
||||
<td><input type="number" name="attr_WillClass" value="0" /></td>
|
||||
<td><div class="defenseMod"> <select name="attr_WillMod">
|
||||
<option value="@{StrMod}">STR</option>
|
||||
<option value="@{DEXMod}">DEX</option>
|
||||
<option value="@{ConMod}">CON</option>
|
||||
<option value="@{IntMod}">INT</option>
|
||||
<option value="@{WisMod}" selected>WIS</option>
|
||||
<option value="@{ChaMod}">CHA</option>
|
||||
</select></div></td>
|
||||
<td><input type="number" name="attr_WillMisc" value="0" /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
<div class="sheet-col">
|
||||
<h3>Skills</h3>
|
||||
<table style="text-align: center; width: 100%;" border="0" cellpadding="1" cellspacing="1">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th></th>
|
||||
<th>Total</th>
|
||||
<th>Mod</th>
|
||||
<th>Training</th>
|
||||
<th>Focus</th>
|
||||
<th>Misc</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;">Acrobatics</td>
|
||||
<td><button type='roll' name='roll_Acrobatics' value='/roll 1d20 + @{Acrobatics}'></button></td>
|
||||
<td><input type="number" name="attr_Acrobatics" value="@{halfLevel}+@{AcrobaticsMod}+@{AcrobaticsTrain}+@{AcrobaticsFocus}+@{AcrobaticsMisc}+@{CT}" disabled="true" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMod" value="@{DexMod}" disabled="true" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsTrain" /></td>
|
||||
<td><input type="checkbox" value="5" name="attr_AcrobaticsFocus" /></td>
|
||||
<td><input type="number" name="attr_AcrobaticsMisc" value="0" /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user