Added character sheet but still experiencing problems with categories.

This commit is contained in:
phil 2013-07-02 23:26:56 +02:00
parent 26bcdb20c2
commit 70378c1e0c
12 changed files with 550 additions and 35 deletions

View file

@ -0,0 +1,140 @@
---
layout: ikrpg
tags: [Rules, None, None]
categories: [ Character-Sheet ]
---
<div class="sheet">
<form id="spells" class="card">
<input id="name" type="text" />
<div class="content">
<div id="spell1" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
<div id="spell2" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
<div id="spell3" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
<div id="spell4" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
<div id="spell5" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
<div id="spell6" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
<div id="spell7" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
<div id="spell8" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
<div id="spell9" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
<div id="spell10" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
<div id="spell11" class="spell">
<input type="text" class="title" />
<input type="text" class="cost" />
<input type="text" class="rng" />
<input type="text" class="aoe" />
<input type="text" class="pow" />
<input type="text" class="up" />
<input type="text" class="off" />
<textarea rows="1" class="description"></textarea>
</div>
</div>
</form>
</div>
<script type="text/javascript">
var Hero = {
"name": "Hero's name",
"spell1": { "title": "Spell 1", "cost": 0, "rng": 0, "aoe": "-", "pow": 0, "up": "NO", "off": "YES", "description": "Spell 1 description" },
"spell2": { "title": "Spell 2", "cost": 0, "rng": 0, "aoe": "-", "pow": 0, "up": "NO", "off": "YES", "description": "Spell 2 description" },
"spell3": { "title": "...", "cost": "", "rng": "", "aoe": "", "pow": "", "up": "", "off": "", "description": "..." },
"spell4": { "title": "", "cost": "", "rng": "", "aoe": "", "pow": "", "up": "", "off": "", "description": "" },
"spell5": { "title": "", "cost": "", "rng": "", "aoe": "", "pow": "", "up": "", "off": "", "description": "" },
"spell6": { "title": "", "cost": "", "rng": "", "aoe": "", "pow": "", "up": "", "off": "", "description": "" },
"spell7": { "title": "", "cost": "", "rng": "", "aoe": "", "pow": "", "up": "", "off": "", "description": "" },
"spell8": { "title": "", "cost": "", "rng": "", "aoe": "", "pow": "", "up": "", "off": "", "description": "" },
"spell9": { "title": "", "cost": "", "rng": "", "aoe": "", "pow": "", "up": "", "off": "", "description": "" },
"spell10": { "title": "", "cost": "", "rng": "", "aoe": "", "pow": "", "up": "", "off": "", "description": "" },
"spell11": { "title": "", "cost": "", "rng": "", "aoe": "", "pow": "", "up": "", "off": "", "description": "" },
};
</script>
<script type="text/javascript" src="/static/javascripts/heroic.js"></script>