Continue working on the MVP sheet
This commit is contained in:
parent
e5c1cfec97
commit
191d03baaf
4 changed files with 68 additions and 1 deletions
|
|
@ -1,9 +1,39 @@
|
||||||
{
|
{
|
||||||
|
"dotdungeon.CharacterSheet": "PC Sheet",
|
||||||
"stat.title": "Stats",
|
"stat.title": "Stats",
|
||||||
"stat.build": "Build",
|
"stat.build": "Build",
|
||||||
"stat.meta": "Meta",
|
"stat.meta": "Meta",
|
||||||
"stat.presence": "Presence",
|
"stat.presence": "Presence",
|
||||||
"stat.hands": "Hands",
|
"stat.hands": "Hands",
|
||||||
"stat.tilt": "Tilt",
|
"stat.tilt": "Tilt",
|
||||||
"stat.rng": "RNG"
|
"stat.rng": "RNG",
|
||||||
|
|
||||||
|
"skills.header": "Skills",
|
||||||
|
"skills.build": "Build",
|
||||||
|
"skill.defense": "Defense",
|
||||||
|
"skill.magic": "Magic",
|
||||||
|
"skill.melee": "Melee",
|
||||||
|
"skill.platforming": "Platforming",
|
||||||
|
"skill.strength": "Strength",
|
||||||
|
|
||||||
|
"skills.meta": "Meta",
|
||||||
|
"skill.alchemy": "Alchemy",
|
||||||
|
"skill.arcanum": "Arcanum",
|
||||||
|
"skill.dreams": "Dreams",
|
||||||
|
"skill.lore": "Lore",
|
||||||
|
"skill.navigation": "Navigation",
|
||||||
|
|
||||||
|
"skills.presence": "Presence",
|
||||||
|
"skill.animal_handling": "Animal Handling",
|
||||||
|
"skill.perception": "Perception",
|
||||||
|
"skill.sneak": "Sneak",
|
||||||
|
"skill.speech": "Speech",
|
||||||
|
"skill.vibes": "Vibes",
|
||||||
|
|
||||||
|
"skills.hands": "Hands",
|
||||||
|
"skill.accuracy": "Accuracy",
|
||||||
|
"skill.crafting": "Crafting",
|
||||||
|
"skill.engineering": "Engineering",
|
||||||
|
"skill.explosives": "Explosives",
|
||||||
|
"skill.piloting": "Piloting"
|
||||||
}
|
}
|
||||||
|
|
@ -10,6 +10,7 @@ export async function preloadHandlebarsTemplates() {
|
||||||
const partials = [
|
const partials = [
|
||||||
"actors/char-sheet-mvp/partials/dice_choice.hbs",
|
"actors/char-sheet-mvp/partials/dice_choice.hbs",
|
||||||
"actors/char-sheet-mvp/partials/stat.hbs",
|
"actors/char-sheet-mvp/partials/stat.hbs",
|
||||||
|
"actors/char-sheet-mvp/partials/skill.hbs",
|
||||||
];
|
];
|
||||||
|
|
||||||
const paths = {};
|
const paths = {};
|
||||||
|
|
|
||||||
9
templates/actors/char-sheet-mvp/partials/skill.hbs
Normal file
9
templates/actors/char-sheet-mvp/partials/skill.hbs
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
<div class="skill">
|
||||||
|
<label>{{localize (concat "skill." name)}}</label>
|
||||||
|
<select>
|
||||||
|
<option value="">Untrained</option>
|
||||||
|
<option value="locked">Locked</option>
|
||||||
|
<option value="+2">Trained (+2)</option>
|
||||||
|
<option value="+4">Expert (+4)</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
@ -6,4 +6,31 @@
|
||||||
{{> dotdungeon.stat stat="hands" }}
|
{{> dotdungeon.stat stat="hands" }}
|
||||||
{{> dotdungeon.stat stat="tilt" }}
|
{{> dotdungeon.stat stat="tilt" }}
|
||||||
{{> dotdungeon.stat stat="rng" }}
|
{{> dotdungeon.stat stat="rng" }}
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<h2>{{localize "skills.header"}}</h2>
|
||||||
|
<h3>{{localize "skills.build"}}</h3>
|
||||||
|
{{> dotdungeon.skill name="defense" }}
|
||||||
|
{{> dotdungeon.skill name="magic" }}
|
||||||
|
{{> dotdungeon.skill name="melee" }}
|
||||||
|
{{> dotdungeon.skill name="platforming" }}
|
||||||
|
{{> dotdungeon.skill name="strength" }}
|
||||||
|
<h3>{{localize "skills.meta"}}</h3>
|
||||||
|
{{> dotdungeon.skill name="alchemy" }}
|
||||||
|
{{> dotdungeon.skill name="arcanum" }}
|
||||||
|
{{> dotdungeon.skill name="dreams" }}
|
||||||
|
{{> dotdungeon.skill name="lore" }}
|
||||||
|
{{> dotdungeon.skill name="navigation" }}
|
||||||
|
<h3>{{localize "skills.presence"}}</h3>
|
||||||
|
{{> dotdungeon.skill name="animal_handling" }}
|
||||||
|
{{> dotdungeon.skill name="perception" }}
|
||||||
|
{{> dotdungeon.skill name="sneak" }}
|
||||||
|
{{> dotdungeon.skill name="speech" }}
|
||||||
|
{{> dotdungeon.skill name="vibes" }}
|
||||||
|
<h3>{{localize "skills.hands"}}</h3>
|
||||||
|
{{> dotdungeon.skill name="accuracy" }}
|
||||||
|
{{> dotdungeon.skill name="crafting" }}
|
||||||
|
{{> dotdungeon.skill name="engineering" }}
|
||||||
|
{{> dotdungeon.skill name="explosives" }}
|
||||||
|
{{> dotdungeon.skill name="piloting" }}
|
||||||
</form>
|
</form>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue