Skip to content

Commit

Permalink
Merge pull request #2 from brunobord/character-sheet
Browse files Browse the repository at this point in the history
Character sheet
  • Loading branch information
brunobord committed Nov 13, 2016
2 parents 826aedf + 1d12981 commit 63482d3
Show file tree
Hide file tree
Showing 7 changed files with 332 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## master

* Added character sheet (english and french).

## v1.1.0

released on: 2015-03-30
Expand Down
7 changes: 7 additions & 0 deletions axe-not-axe.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,13 @@ Dungeon World and hacks, just because Hit Points and Damage dice match with it.

----

## Character sheet

* [Open this web page and print it](character.html)
* [Or use this PDF](character-sheet.pdf)

----

## Hackish hacks

Some players may want to use another main weapon. It might be a *Mace*, a
Expand Down
Binary file added character-sheet.pdf
Binary file not shown.
161 changes: 161 additions & 0 deletions character.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
<!doctype html>
<html>
<head>
<title>Character Sheet</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" type="text/css">
<link href='//fonts.googleapis.com/css?family=Metamorphous|Vollkorn:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
<style>
th.cs-label {
width: 180px;
text-align: right;
}
.cs-helptext {
font-weight: normal !important;
}
.bordered {
border: 1px solid #555;
}
.writing-line {
border-bottom: 1px solid #555;
}
.cs-background {
height: 4em;
margin: .2em;
}
@media (min-width: 768px) {
.container {
max-width: 730px;
}
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Metamorphous', cursive;
}
.footer {
margin-top: 2em;
border-top: 1px solid #777;
padding-top: .3em;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<h1 class="text-center">Your Dwarf</h1>
</div>
<hr>
<div class="row">
<div class="col-lg-4 col-xs-4">
<h4 class="text-right">Full name</h4>
</div>
<div class="col-lg-8 col-xs-8"><h4 class="writing-line">&nbsp;</h4></div>
</div>
<div class="row">
<div class="col-lg-4 col-xs-4">
<h4 class="text-right">Background</h4>
<p class="text-right text-muted">family, origin, occupation, motivations, etc.</p>
</div>
<div class="col-lg-8 col-xs-8">
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-xs-3">
<h4 class="text-right">Nemesis #1</h4>
<p class="text-right text-muted small">+1 when attacking</p>
</div>
<div class="col-lg-3 col-xs-3"><h4 class="writing-line">&nbsp;</h4></div>
<div class="col-lg-3 col-xs-3">
<h4 class="text-right">Nemesis #2</h4>
<p class="text-right text-muted small">+1 damage with</p>
</div>
<div class="col-lg-3 col-xs-3"><h4 class="writing-line">&nbsp;</h4></div>
</div>

<hr>

<div class="row">
<div class="col-lg-3 col-xs-3">
<h2 class="text-right">Axe</h2>
<p class="text-right"><small>When you hit with your Axe</small></p>
</div>
<div class="col-lg-3 col-xs-3">
<div class="well">
&nbsp;
</div>
</div>
<div class="col-lg-3 col-xs-3">
<h2 class="text-right">Not Axe</h2>
<p class="text-right"><small>For everything else</small></p>
</div>
<div class="col-lg-3 col-xs-3">
<div class="well well-large">
&nbsp;
</div>
</div>
</div>

<div class="row">
<div class="col-lg-3 col-xs-3">
<h3 class="text-right">AC</h3>
</div>
<div class="col-lg-3 col-xs-3">
<div class="well">
&nbsp;
</div>
</div>
<div class="col-lg-3 col-xs-3">
<h3 class="text-right">HP</h3>
</div>
<div class="col-lg-3 col-xs-3">
<div class="well">
&nbsp;
</div>
</div>
</div>

<hr>

<div class="row">
<div class="col-lg-7 col-xs-7">
<h3>Your Axe is</h3>
<p class="text-muted text-left">(pick two)</p>
<ul class=list-unstyled>
<li><input type="checkbox"> <strong>Sharp:</strong> +1 damages
<li><input type="checkbox"> <strong>Light:</strong> Gives +1 to your <em>Axe</em> or <em>Not Axe</em> move that imply AC malus
<li><input type="checkbox"> <strong>Famous:</strong> Gives +1 bonus when trying to influence other Dwarves who know you're holding it
<li><input type="checkbox"> <strong>Slayer:</strong> +2 damages when hitting your Nemesis
<li><input type="checkbox"> <strong>Enchanted:</strong> Glows when your Nemesis is approaching
<li><input type="checkbox"> <strong>Flying:</strong> Once per fight scene, you can perform a double attack on two ennemies simultaneously
</ul>
</div>

<div class="col-lg-5 col-xs-5">
<h3>Other Equipment</h3>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
</div>

</div>

<div class="footer">
<p class="text-right">Character sheet for <strong>Axe / Not Axe</strong>, a RPG by Bruno Bord. Public Domain.</p>
</div>

</div>


<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/2.3.2/js/bootstrap.min.js"></script>
</body>
</html>
Binary file added feuille-de-personnage.pdf
Binary file not shown.
8 changes: 6 additions & 2 deletions hache-pas-hache.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ spéciale.
Choisis deux avantages parmi :

* Acérée : +1 dommages,
* Légère: Donne un bonus de +1 aux mouvements ``Hache`` ou ``Pas Hache`` qui
auraient dû avoir un malus dû à la classe d'armure,
* Légère: Donne un bonus de +1 aux mouvements ``Hache`` ou ``Pas Hache`` qui auraient dû avoir un malus dû à la classe d'armure,
* Célèbre : Donne un bonus de +1 quand tu veux influencer un autre Nain
qui connaît l'histoire de ta hache,
* Tueuse : +2 dommages quand elle frappe ta Nemesis,
Expand Down Expand Up @@ -178,6 +177,11 @@ de vie et les points de dommages correspondent.
* [Troll](http://codex.dungeon-world.com/monster/5464836930535424)
* [Cave Troll (Troll des cavernes)](http://codex.dungeon-world.com/monster/5653164804014080)

## Feuille de personnage

* [Utilise cette page HTML et imprime-la](personnage.html)
* [Ou utilise ce PDF](feuille-de-personnage.pdf)

----

## Une bidouille bidouillante
Expand Down
154 changes: 154 additions & 0 deletions personnage.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
<!doctype html>
<html>
<head>
<title>Feuille de personnage</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" type="text/css">
<link href='//fonts.googleapis.com/css?family=Metamorphous|Vollkorn:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
<style>
th.cs-label {
width: 180px;
text-align: right;
}
.cs-helptext {
font-weight: normal !important;
}
.bordered {
border: 1px solid #555;
}
.writing-line {
border-bottom: 1px solid #555;
}
.cs-background {
height: 4em;
margin: .2em;
}
@media (min-width: 768px) {
.container {
max-width: 730px;
}
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Metamorphous', cursive;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<h1 class="text-center">Ton Nain</h1>
</div>
<hr>
<div class="row">
<div class="col-lg-4 col-xs-4">
<h4 class="text-right">Nom complet</h4>
</div>
<div class="col-lg-8 col-xs-8"><h4 class="writing-line">&nbsp;</h4></div>
</div>
<div class="row">
<div class="col-lg-4 col-xs-4">
<h4 class="text-right">Historique</h4>
<p class="text-right text-muted">famille, origine, métier, motivations, etc.</p>
</div>
<div class="col-lg-8 col-xs-8">
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-xs-3">
<h4 class="text-right">Nemesis n°1</h4>
<p class="text-right text-muted small">+1 en attaquant</p>
</div>
<div class="col-lg-3 col-xs-3"><h4 class="writing-line">&nbsp;</h4></div>
<div class="col-lg-3 col-xs-3">
<h4 class="text-right">Nemesis n°2</h4>
<p class="text-right text-muted small">+1 dégâts</p>
</div>
<div class="col-lg-3 col-xs-3"><h4 class="writing-line">&nbsp;</h4></div>
</div>

<hr>

<div class="row">
<div class="col-lg-3 col-xs-3">
<h2 class="text-right">Hache</h2>
<p class="text-right"><small>Pour frapper avec ta hache</small></p>
</div>
<div class="col-lg-3 col-xs-3">
<div class="well">
&nbsp;
</div>
</div>
<div class="col-lg-3 col-xs-3">
<h2 class="text-right">Pas&nbsp;hache</h2>
<p class="text-right"><small>Pour tout le reste</small></p>
</div>
<div class="col-lg-3 col-xs-3">
<div class="well well-large">
&nbsp;
</div>
</div>
</div>

<div class="row">
<div class="col-lg-3 col-xs-3">
<h3 class="text-right">CA</h3>
</div>
<div class="col-lg-3 col-xs-3">
<div class="well">
&nbsp;
</div>
</div>
<div class="col-lg-3 col-xs-3">
<h3 class="text-right">PV</h3>
</div>
<div class="col-lg-3 col-xs-3">
<div class="well">
&nbsp;
</div>
</div>
</div>

<hr>

<div class="row">
<div class="col-lg-7 col-xs-7">
<h3>Ta hache est</h3>
<p class="text-muted text-left">(choisis-en deux)</p>
<ul class=list-unstyled>
<li><input type="checkbox"> <strong>Acérée: </strong> +1 dommages
<li><input type="checkbox"> <strong>Légère :</strong> Donne un bonus de +1 aux mouvements <em>Hache</em> ou <em>Pas Hache</em> qui auraient dû avoir un malus dû à la classe d'armure
<li><input type="checkbox"> <strong>Célèbre :</strong> Donne un bonus de +1 quand tu veux influencer un autre Nain qui connaît l'histoire de ta hache
<li><input type="checkbox"> <strong>Tueuse :</strong> +2 dommages quand elle frappe ta Nemesis
<li><input type="checkbox"> <strong>Enchantée :</strong> Brille quand ta Nemesis approche
<li><input type="checkbox"> <strong>Virevoltante :</strong> Une fois par scène de combat, autorise à faire une double attaque (attaquer deux ennemis à la fois)
</ul>
</div>

<div class="col-lg-5 col-xs-5">
<h3>Autres Équipments</h3>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
<p class="writing-line">&nbsp;</p>
</div>

</div>

<div class="footer">
<p class="text-right">Feuille de personnage pour <strong>Hache / Pas Hache</strong>, un JdR par Bruno Bord. Domaine Public.</p>
</div>

</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/2.3.2/js/bootstrap.min.js"></script>
</body>
</html>

0 comments on commit 63482d3

Please sign in to comment.