mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
Witch Hunter 2e Character Sheet
Submitted character sheet for Witch Hunter: The Invisible World for review.
This commit is contained in:
Executable
+18
@@ -0,0 +1,18 @@
|
||||
Welcome to the Witch Hunter: The Invisible World 2nd Edition Character Sheet!
|
||||
|
||||
Most of the content of the sheet is pretty basic. However, there are a few details that require some explaination.
|
||||
|
||||
CHECKBOXES
|
||||
Checkboxes generally turn on different conditions which can modify dice pools.
|
||||
In the Skills section (Tab 2), checkboxes are used to denote background skills. They have no other function.
|
||||
In the Combat section (Tab 3), checkboxes are either used to note Specialization in a skill or weapon. In the Conditions area, the checkboxes turn on different conditions that can modify various dice pools:
|
||||
Surprised: applies a –2 penalty to Initiative
|
||||
Exhausted: adds 1 point to the wounds attribute (this comes in handy for characters with the Nightmares flaw)
|
||||
Vanquished: when the character's wound track is exhausted, he is vanquished. This adds D1 to the Unconsciousness roll.
|
||||
Shaken: adds -1d penalty to the Fear roll button.
|
||||
|
||||
THE TOP BAR
|
||||
While most dice pools in Witch Hunter are formulaic, sometimes the GM will call for unorthodox dice pool combinations (ie. Resolve+Strength). That's where the top bar comes in. These let you create up to three "custom" dice pools. The second and third are preset for Endurance+Toughness (Unconsciousness) and Resolve+Courage (Fear) but are easily modified. Checking the checkbox denotes a specialization and reduces the success threshold from 7 to 6.
|
||||
|
||||
ORGANIZED PLAY
|
||||
This section is included for partcipants in the Witch Hunter: Revelations campaign or subsequent living campaigns based on the Witch Hunter rules. It is intended for record keeping only.
|
||||
Executable
+21
@@ -0,0 +1,21 @@
|
||||
<h1>Witch Hunter: The Invisible World (2nd edition)</h1>
|
||||
<p><b>Publisher:</b> Paradigm Concepts, Inc.
|
||||
<p><b>Character Sheet by Tom (blusponge)</b>
|
||||
<p><i>Big Thanks to the helpful contributions of Brian, without whom this sheet wouldn't be nearly as functional.</i>
|
||||
|
||||
<h4>A Note on Checkboxes</h4>
|
||||
Checkboxes are used throughout this sheet for a variety of purposes. I have tried to label all their uses, but in case there is any confusion…
|
||||
|
||||
<i>Specialization (Custom Dice Pools, Combat, Hand-to-Hand and Ranged Weapons):</i> These checkboxes indicate that the roll is specialized and reduce the threshold of success from 7+ to 6+.
|
||||
|
||||
<i>Background Skills (Skills), Literacy (Language):</i> These checkboxes are for bookkeeping reference only. They have no other function within the character sheet.
|
||||
|
||||
<i>Hidden Areas (Survivor Points, Flaw Details, Talent Details and Conditions):</i> These chackboxes hide and reveal this information, a lot of which will rarely need referencing in play. Checking the checkboxes within these sections activate bonuses and penalties provided by these conditions and are handled in the background.
|
||||
|
||||
<h4>Organized Play</h4>
|
||||
This section is provided for potential Witch Hunter: Revelations or other organized play events. This allows the player and GM to reference information from previous ARs and is for bookkeeping only.
|
||||
|
||||
<h4>Known Issues</h4>
|
||||
For some reason, the tab bars are not visible in Firefox. To date, no one has been able to figure out the cause of this issue. I suspect some sort of CSS error or inconsistency.
|
||||
|
||||
If you find any additional errors (or have suggested fixes or features) please email me at: blusponge-at-verizon-dot-com
|
||||
Executable
BIN
Binary file not shown.
|
After Width: | Height: | Size: 146 KiB |
Executable
+173
@@ -0,0 +1,173 @@
|
||||
@font-face {
|
||||
font-family: 'IM Fell English SC';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('IM FELL English SC'), local('IM_FELL_English_SC'), url(http://themes.googleusercontent.com/static/fonts/imfellenglishsc/v3/h3Tn6yWfw4b5qaLD1RWvz9gX5f6-V0DImePmAcKHNfQ.ttf) format('truetype');
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-family: 'IM Fell English SC', serif;
|
||||
}
|
||||
|
||||
/* Inputs */
|
||||
.charsheet label {
|
||||
display: inline-block;
|
||||
width: 75px;
|
||||
text-align: right;
|
||||
padding-bottom: 2px;
|
||||
margin-top: 14px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.charsheet input {
|
||||
display: inline-block;
|
||||
width: 155px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.charsheet {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.charsheet select {
|
||||
width: 42px;
|
||||
}
|
||||
|
||||
select {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
span.sheet-skill-name {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
span.sheet-skill-panel {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
line-height: 30px;
|
||||
color:#787878;
|
||||
}
|
||||
|
||||
span.sheet-skill-combat {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
div.sheet-row { margin-bottom: 2px; }
|
||||
|
||||
|
||||
/*Checkboxes*/
|
||||
input[type="checkbox"]
|
||||
{
|
||||
position: left;
|
||||
opacity: 100;
|
||||
width:15px;
|
||||
cursor: pointer;
|
||||
z-index: 1;
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
/*Sheet Tabs*/
|
||||
div.sheet-tab-content { display: none; }
|
||||
|
||||
input.sheet-tab1:checked ~ div.sheet-tab1,
|
||||
input.sheet-tab2:checked ~ div.sheet-tab2,
|
||||
input.sheet-tab3:checked ~ div.sheet-tab3,
|
||||
input.sheet-tab4:checked ~ div.sheet-tab4,
|
||||
input.sheet-tab5:checked ~ div.sheet-tab5,
|
||||
input.sheet-tab6:checked ~ div.sheet-tab6 {
|
||||
display: block;
|
||||
}
|
||||
|
||||
input.sheet-tab
|
||||
{
|
||||
width: 121px;
|
||||
height: 20px;
|
||||
position: relative;
|
||||
top: 5px;
|
||||
margin: 4px;
|
||||
cursor: pointer;
|
||||
z-index: 1;
|
||||
font-family: 'IM Fell English SC', serif;
|
||||
}
|
||||
|
||||
input.sheet-tab::before
|
||||
{
|
||||
content: attr(title);
|
||||
border: solid 2px #E8E8E8;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
background: #FFFFFF;
|
||||
width: 121px;
|
||||
height: 20px;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
input.sheet-tab:checked::before
|
||||
{
|
||||
background: #dcdcdc;
|
||||
background: -moz-linear-gradient(to top, #fcfcfc, #F0F0F0, #fcfcfc);
|
||||
background: -webkit-linear-gradient(to top, #fcfcfc, #F0F0F0, #fcfcfc);
|
||||
background: -ms-linear-gradient(to top, #fcfcfc, #F0F0F0, #fcfcfc);
|
||||
background: -o-linear-gradient(to top, #fcfcfc, #F0F0F0, #fcfcfc);
|
||||
background: linear-gradient(to top, #fcfcfc, #F0F0F0, #fcfcfc);
|
||||
border-color: #C0C0C0;
|
||||
}
|
||||
|
||||
div.sheet-tab-content
|
||||
{
|
||||
border: 0px solid #a8a8a8;
|
||||
border-top-color: #000;
|
||||
margin: 2px 0 0 5px;
|
||||
padding: 5px;
|
||||
}
|
||||
/*end Sheet Tabs*/
|
||||
|
||||
/*Hiding Sections*/
|
||||
/*Hiding Sections*/
|
||||
.charsheet .sheet-togglepanel {
|
||||
width: 95%;
|
||||
vertical-align:top;
|
||||
border: 1px
|
||||
solid black;
|
||||
background-color:#F0F0F0;
|
||||
padding-top: 6px;
|
||||
padding-bottom: 2px;
|
||||
padding-left: 6px;
|
||||
padding-right: 6px;
|
||||
}
|
||||
|
||||
|
||||
input.sheet-arrow {
|
||||
margin-top: 3px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
div.sheet-togglepanel {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input.sheet-arrow:checked ~ div.sheet-togglepanel {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sheet-newtoggel {
|
||||
border-left: 4px solid;
|
||||
color:#787878;
|
||||
padding: 8px 8px 8px 8px;
|
||||
background: #F0F0F0;
|
||||
width: 95%;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.sheet-details-togglepanel {
|
||||
text-align: justify;
|
||||
text-justify: inter-word;
|
||||
display: none;
|
||||
}
|
||||
|
||||
input.sheet-arrow:checked ~ .sheet-details-togglepanel { display: block; }
|
||||
Executable
+1929
File diff suppressed because it is too large
Load Diff
Executable
+3
@@ -0,0 +1,3 @@
|
||||
Tom Harrison (blusponge@verizon.net)
|
||||
Roll20 user id: 184912
|
||||
(with plenty of help from the community forums!)
|
||||
Executable
+8
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"html": "WH_2e.html",
|
||||
"css": "WH_2e.css",
|
||||
"authors": "Tom",
|
||||
"roll20userid": 184912,
|
||||
"preview": "WH_2e Preview.png",
|
||||
"instructions": "For use with Witch Hunter: The Invisible World (2nd edition), by Paradigm Concepts, Inc. The Skill section contains a row of customizable dice pool buttons for unusual rolls. Organized Play is a bookkeeping section for Witch Hunter: Revelations and other organized play events."
|
||||
}
|
||||
Reference in New Issue
Block a user