mirror of
https://github.com/ikrpg/ikrpg.github.io.git
synced 2026-05-13 14:27:22 +00:00
Added another custom character sheets containing hero details.
This commit is contained in:
parent
0d5d03216a
commit
df25ce900a
7 changed files with 275 additions and 132 deletions
102
_posts/Character-Sheet/0000-01-01-Details.html
Normal file
102
_posts/Character-Sheet/0000-01-01-Details.html
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
---
|
||||
layout: ikrpg
|
||||
tags: [ Character Sheet, None, None ]
|
||||
categories: [ Character-Sheet ]
|
||||
---
|
||||
|
||||
<p>
|
||||
<a href="/portal/Character-Sheet">Back to the Character Sheet main page</a>.
|
||||
</p>
|
||||
|
||||
<h2>Usage</h2>
|
||||
<ol>
|
||||
<li><strong>Fill out</strong> the input fields of the character sheet.</li>
|
||||
<li>Click the <strong>Save sheet to URL</strong> link below the sheet.</li>
|
||||
<li><strong>Copy the URL</strong> and share it with your friends!</li>
|
||||
</ol>
|
||||
|
||||
<div class="sheet">
|
||||
<form id="details" class="card">
|
||||
<input id="name" type="text" />
|
||||
<div id="attributes">
|
||||
<input id="playerName" type="text" />
|
||||
<input id="careers" type="text" />
|
||||
<input id="sex" type="text" />
|
||||
<input id="archetype" type="text" />
|
||||
<input id="race" type="text" />
|
||||
<input id="definingCharacteristics" type="text" />
|
||||
<input id="faith" type="text" />
|
||||
<input id="weight" type="text" />
|
||||
<input id="height" type="text" />
|
||||
</div>
|
||||
<div id="injuries">
|
||||
<input id="injury1" type="text" />
|
||||
<input id="injury2" type="text" />
|
||||
<input id="injury3" type="text" />
|
||||
</div>
|
||||
<div id="beliefs">
|
||||
<input id="belief1" type="text" />
|
||||
<input id="belief2" type="text" />
|
||||
<input id="belief3" type="text" />
|
||||
</div>
|
||||
<div id="connections">
|
||||
<input id="connection1" type="text" />
|
||||
<input id="connection2" type="text" />
|
||||
<input id="connection3" type="text" />
|
||||
<input id="connection4" type="text" />
|
||||
</div>
|
||||
<div id="languages">
|
||||
<input id="language1" type="text" />
|
||||
<input id="language2" type="text" />
|
||||
<input id="language3" type="text" />
|
||||
<input id="language4" type="text" />
|
||||
<input id="language5" type="text" />
|
||||
<input id="language6" type="text" />
|
||||
<input id="language7" type="text" />
|
||||
<input id="language8" type="text" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<a href="javascript:hero.url();">Save sheet to URL</a>
|
||||
</p>
|
||||
|
||||
<p class="right">
|
||||
Thanks to XYZ for the Sheet!
|
||||
</p>
|
||||
|
||||
<script type="text/javascript" src="/static/javascripts/heroic.js"></script>
|
||||
<script type="text/javascript">
|
||||
var hero = new Heroic({
|
||||
"name": "Hero's name",
|
||||
"archetype": "Archetype",
|
||||
"race": "Race",
|
||||
"careers": "Careers",
|
||||
"playerName": "Player's Name",
|
||||
"sex":"sex",
|
||||
"definingCharacteristics": "Defining Characteristics",
|
||||
"faith": "Faith",
|
||||
"weight": "Weight",
|
||||
"height": "Height",
|
||||
"injury1": "Injury 1",
|
||||
"injury2": "Injury 2",
|
||||
"injury3": "...",
|
||||
"belief1": "Religious Belief 1",
|
||||
"belief2": "Religious Belief 2",
|
||||
"belief3": "...",
|
||||
"connection1": "Connection 1",
|
||||
"connection2": "Connection 2",
|
||||
"connection3": "...",
|
||||
"connection4": "",
|
||||
"language1": "Language 1",
|
||||
"language2": "Language 2",
|
||||
"language3": "...",
|
||||
"language4": "",
|
||||
"language5": "",
|
||||
"language6": "",
|
||||
"language7": "",
|
||||
"language8": ""
|
||||
});
|
||||
hero.bind();
|
||||
</script>
|
||||
|
|
@ -105,9 +105,11 @@ categories: [ Character-Sheet ]
|
|||
<input title="XP" id="xp" type="text" />
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<a href="javascript:hero.url();">Save sheet to URL</a>
|
||||
</p>
|
||||
|
||||
<script type="text/javascript" src="/static/javascripts/heroic.js"></script>
|
||||
<script type="text/javascript">
|
||||
var hero = new Heroic({
|
||||
|
|
@ -142,7 +144,6 @@ categories: [ Character-Sheet ]
|
|||
"arm_mod": 0,
|
||||
"cmd_mod": 0,
|
||||
"xp": 0,
|
||||
"hash": "stats",
|
||||
"r1m1": true,
|
||||
"r2m1": false,
|
||||
"r1m2": false,
|
||||
|
|
|
|||
|
|
@ -9,9 +9,9 @@ tags:
|
|||
---
|
||||
|
||||
<p>
|
||||
The character sheet is composed of the <em>Stats page</em>, the <em>Skills page</em>, the
|
||||
<em>Benefits page</em>, the <em>Abilities page</em>, the <em>Spells page</em>, the <em>Gear page</em>
|
||||
and the <em>Notes page</em>.
|
||||
Our custom character sheet is composed of the <em>Stats page</em>, the <em>Skills page</em>, the
|
||||
<em>Benefits page</em>, the <em>Abilities page</em>, the <em>Spells page</em>, the <em>Gear page</em>,
|
||||
the <em>Notes page</em> and the <em>Details page</em>.
|
||||
</p>
|
||||
|
||||
<h2>Character sheets</h2>
|
||||
|
|
@ -23,6 +23,7 @@ tags:
|
|||
<li><a href="/character-sheet/Spells">Spells</a></li>
|
||||
<li><a href="/character-sheet/Gear">Gear</a></li>
|
||||
<li><a href="/character-sheet/Notes">Notes</a></li>
|
||||
<li><a href="/character-sheet/Details">Details</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Example</h2>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue