foundryvtt-beam-saber/templates/items/class.html
Peter Varaksin d8a8291fcb GH-31 Classes exp clues
- Closes #31
- Adds Exc clues to Classes
- Adds Icons to Classes
- Removes old class_item param from Class
- Fixes html styling for all simple templates
- Fixes icon for Noble Background
2020-05-04 20:18:37 +03:00

21 lines
1.1 KiB
HTML

<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img class="profile-img" src="{{item.img}}" data-edit="img" title="{{item.name}}"/>
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeholder="Name"/></h1>
</div>
</header>
<section class="flex-vertical">
<label class="label-stripe">Description</label>
<textarea name="data.description">{{data.description}}</textarea>
<label class="label-stripe">Exp Clues</label>
<div><i>- Every time you roll a desperate action, mark xp in that action's attribute.</i></div>
<div>At the end of each session, for each item below, mark 1 xp (in your playbook or an attribute) or 2 xp if that item occurred multiple times.</div>
<div><i>- You expressed your beliefs, drives, heritage, or background.</i></div>
<div><i>- You struggled with issues from your vice or traumas during the session.</i></div>
<textarea name="data.experience_clues">{{data.experience_clues}}</textarea>
</section>
</form>