This commit is contained in:
Bill
2014-05-15 14:50:50 -04:00
4 changed files with 1988 additions and 202 deletions
+12 -1
View File
@@ -1 +1,12 @@
This character sheet is building towards Spycraft 2.0, a d20 espionage game. I suspect much of it will be easily adaptable to other d20 type systems. I'm editing from the 'kitchenSink' example as I go, so there might be some clearly unused bits of sheet.
This is a character sheet for Spycraft 2.0, the espionage game system from Crafty Games.
Items are arranged on the digital sheet here somewhat differently than they are in the Crafty games sheet. This is primarily to make optimal use of repeating sections - sheet areas which have radically optional numbers of useful items are placed towards the bottom of their respective blocks, in order to minimally impact sheet flow.
Several items have roll buttons attached, primarily weapon attacks and saving throws. I did not deem this worthwhile for the skills area, however, since Spycraft skills are so complex that even auto-calculating them wouldn't be that terribly useful. I was tempted to try dividing up the skills more, giving each stat-modifier its own line, and adding roll buttons to the skills, but decided against this in order to keep the information condensed. This should be trivial, if time consuming, for anyone who thinks that functionality would be helpful to do down the road to do themselves, however.
If anyone should want to make modifications to this sheet, for their own use or for distribution, please take my permission as having been given.
Created by Bill Katt
Last updated: May 15, 2014.
-1
View File
@@ -1 +0,0 @@
This is a simple example character sheet. It's based on a simple Savage Worlds sheet, but it's by no means complete. Shows how to use most of the basic controls available when creating a Roll20 sheet.
+166 -14
View File
@@ -1,14 +1,18 @@
.charsheet label {
display: inline-block;
width: 75px;
text-align: right;
.charsheet input.disabled {
background: #000000
}
.charsheet input {
display: inline-block;
width: 165px;
.charsheet label {
display: inline-block;
width: 110px;
text-align: left;
}
.sheet-col strong.sheet-dee {
font-size: 1.4em;
font-weight: bold;
@@ -16,20 +20,168 @@
}
.charsheet input.sheet-short {
width: 3.5em;
width: 3.5em;
}
.charsheet {
background-image: url("http://freeseamlesstextures.com/images/28-faded-parchment-background-sml.jpg");
.charsheet input.sheet-input-small {
width: 2.5em;
}
.charsheet input.sheet-input-five {
width: 5em;
}
.charsheet input.sheet-input-ten {
width: 10em;
}
.charsheet input.sheet-input-thirteen {
width: 13em;
}
.charsheet input.sheet-input-fifteen {
width: 15em;
}
.charsheet input.sheet-input-twenty {
width: 20em;
}
.charsheet input.sheet-input-long {
width: 30em;
}
.charsheet input.sheet-input-fourty {
width: 40em;
}
.charsheet input.sheet-input-maxWidth {
width: 100%;
}
.charsheet td.sheet-emptyColumn {
padding:5px;
}
.charsheet td.sheet-emptyColumnTen {
padding:10px;
}
.charsheet td.sheet-emptyRowTen {
padding:10px;
}
.charsheet td.sheet-emptyRowFive {
padding:5px;
}
.charsheet td.sheet-emptyRowFifteen {
padding:17px;
}
.charsheet td.sheet-tinyTextLeft {
font-size: 7pt;
text-align: left;
height: 20px;
}
.charsheet td.sheet-mediumTextLeft {
font-size: 9pt;
text-align: left;
height: 20px;
}
.charsheet td.sheet-tinyTextRight {
font-size: 7pt;
text-align: Right;
height: 20px;
}
.charsheet td.sheet-tinyTextCenter{
font-size: 7pt;
text-align: center;
height: 10px;
vertical-align:bottom;
}
.charsheet td.sheet-superTinyTextCenter{
font-size: 7pt;
text-align: center;
height: 10px;
vertical-align:bottom;
}
.charsheet td.sheet-smallBlackBox{
font-size: 8pt;
color:#FFFAF0;
background-color:#000000;
text-align: center;
padding-right:6px;
padding-left:6px;
}
.charsheet td.sheet-smallBlackBoxNoPad{
font-size: 8pt;
color:#FFFAF0;
background-color:#000000;
text-align: center;
}
.charsheet td.sheet-proficienciesTable {
font-size: 10pt;
}
.charsheet td.sheet-proficienciesTableHeader {
font-size: 7pt;
padding-right: 3px;
text-align: left;
}
.charsheet td.sheet-proficienciesTableMainHeader {
font-size: 10pt;
text-align: left;
font-weight:bold;
}
.charsheet td.sheet-mediumBlackBox{
font-size: 10pt;
color:#FFFAF0;
background-color:#000000;
text-align: center;
padding-right:6px;
padding-left:6px;
}
.charsheet td.sheet-largeBlackBox{
font-size: 12pt;
color:#FFFAF0;
background-color:#000000;
text-align: center;
padding-right:6px;
padding-left:6px;
}
.charsheet table td, .charsheet table th {
font-size: 1.2em;
font-weight: bold;
text-align: center;
font-size: 0.9em;
text-align: left;
padding: 0px;
}
.charsheet td.sheet-pageTwoTableTd{
vertical-align:top;
}
select.sheet-dtype {
width: 60px;
vertical-align: top;
vertical-align: center;
}
+1810 -186
View File
File diff suppressed because it is too large Load Diff