Ajout maneuver
This commit is contained in:
parent
166f3367fb
commit
b0834469a1
10
lang/en.json
10
lang/en.json
@ -4,9 +4,11 @@
|
|||||||
"Personnage": "PC"
|
"Personnage": "PC"
|
||||||
},
|
},
|
||||||
"Item": {
|
"Item": {
|
||||||
"Trait": "Trait",
|
"trait": "Trait",
|
||||||
"Weapon": "Weapon",
|
"weapon": "Weapon",
|
||||||
"Equipment": "Equipment"
|
"equipment": "Equipment",
|
||||||
|
"maneuver": "Maneuver",
|
||||||
|
"specialization": "Specialization"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ECRY": {
|
"ECRY": {
|
||||||
@ -57,7 +59,7 @@
|
|||||||
"goldcoin": "Gold coin",
|
"goldcoin": "Gold coin",
|
||||||
"lige": "Lige",
|
"lige": "Lige",
|
||||||
"hurle": "Howl",
|
"hurle": "Howl",
|
||||||
"coin": "Coin",
|
"coin": "Penny",
|
||||||
"notes": "Notes",
|
"notes": "Notes",
|
||||||
"bio": "Bio",
|
"bio": "Bio",
|
||||||
"bionotes": "Bio&Notes",
|
"bionotes": "Bio&Notes",
|
||||||
|
@ -4,9 +4,11 @@
|
|||||||
"Personnage": "PJ"
|
"Personnage": "PJ"
|
||||||
},
|
},
|
||||||
"Item": {
|
"Item": {
|
||||||
"Trait": "Trait",
|
"trait": "Trait",
|
||||||
"Weapon": "Arme",
|
"weapon": "Arme",
|
||||||
"Equipment": "Equipement"
|
"equipment": "Equipement",
|
||||||
|
"maneuver": "Manoeuvre",
|
||||||
|
"specialization": "Spécialisation"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ECRY": {
|
"ECRY": {
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
],
|
],
|
||||||
"title": "Ecryme, le Jeu de Rôles",
|
"title": "Ecryme, le Jeu de Rôles",
|
||||||
"url": "https://www.uberwald.me/gitea/uberwald/fvtt-ecryme",
|
"url": "https://www.uberwald.me/gitea/uberwald/fvtt-ecryme",
|
||||||
"version": "11.0.7",
|
"version": "11.0.8",
|
||||||
"download": "https://www.uberwald.me/gitea/uberwald/fvtt-ecryme/archive/fvtt-ecryme-v11.0.7.zip",
|
"download": "https://www.uberwald.me/gitea/uberwald/fvtt-ecryme/archive/fvtt-ecryme-v11.0.8.zip",
|
||||||
"background": "systems/fvtt-ecryme/images/assets/ecryme_extract_panel_01.webp"
|
"background": "systems/fvtt-ecryme/images/assets/ecryme_extract_panel_01.webp"
|
||||||
}
|
}
|
@ -191,7 +191,7 @@
|
|||||||
"annency",
|
"annency",
|
||||||
"boheme",
|
"boheme",
|
||||||
"contact",
|
"contact",
|
||||||
"confrontation"
|
"maneuver"
|
||||||
],
|
],
|
||||||
"templates": {
|
"templates": {
|
||||||
"common": {
|
"common": {
|
||||||
@ -203,6 +203,11 @@
|
|||||||
"costunit": ""
|
"costunit": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"maneuver": {
|
||||||
|
"templates": [
|
||||||
|
"common"
|
||||||
|
]
|
||||||
|
},
|
||||||
"confrontation": {
|
"confrontation": {
|
||||||
"templates": [
|
"templates": [
|
||||||
"common"
|
"common"
|
||||||
|
27
templates/items/item-maneuver-sheet.hbs
Normal file
27
templates/items/item-maneuver-sheet.hbs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<form class="{{cssClass}}" autocomplete="off">
|
||||||
|
<header class="sheet-header">
|
||||||
|
<img class="item-sheet-img" src="{{img}}" data-edit="img" title="{{name}}"/>
|
||||||
|
<div class="header-fields">
|
||||||
|
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name"/></h1>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
{{> systems/fvtt-ecryme/templates/items/partial-item-nav.hbs}}
|
||||||
|
|
||||||
|
|
||||||
|
{{!-- Sheet Body --}}
|
||||||
|
<section class="sheet-body">
|
||||||
|
|
||||||
|
{{> systems/fvtt-ecryme/templates/items/partial-item-description.hbs}}
|
||||||
|
|
||||||
|
<div class="tab details" data-group="primary" data-tab="details">
|
||||||
|
|
||||||
|
<div class="tab" data-group="primary">
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
</form>
|
Loading…
Reference in New Issue
Block a user