2020-11-14 23:24:01 +01:00
< form class = "{{cssClass}}" autocomplete = "off" >
{{!-- Sheet Header --}}
< header class = "sheet-header" >
2021-03-25 03:18:27 +01:00
< img class = "profile-img" src = "{{img}}" data-edit = "img" title = "{{name}}" / >
2020-11-14 23:24:01 +01:00
< div class = "header-fields" >
2020-12-27 19:55:51 +01:00
< div class = "flexrow" >
2021-03-25 03:18:27 +01:00
< h1 class = "charname" > < input name = "name" type = "text" value = "{{name}}" placeholder = "Name" / > < / h1 >
2020-12-27 19:55:51 +01:00
< / div >
< div class = "flexrow flex-group-center flex-actions-bar" >
< div >
2021-04-11 12:05:06 +02:00
< span class = "encaisser-direct" > < a title = "Encaisser des dommages" > < img class = "button-img" src = "icons/svg/bones.svg" alt = "Encaisser des dommages" / > < / a > < / span >
2021-01-19 23:39:35 +01:00
< span class = "gm-only remise-a-neuf" > < a title = "Remise à neuf" > < img class = "button-img" src = "icons/svg/regen.svg" alt = "Remise à neuf" / > < / a > < / span >
2020-12-27 19:55:51 +01:00
< / div >
< / div >
2020-11-14 23:24:01 +01:00
< / div >
2020-12-27 19:55:51 +01:00
< / header >
2020-11-14 23:24:01 +01:00
{{!-- Sheet Tab Navigation --}}
< nav class = "sheet-tabs tabs" data-group = "primary" >
< a class = "item" data-tab = "carac" > Caractéristiques< / a >
< a class = "item" data-tab = "competences" > Compétences< / a >
< a class = "item" data-tab = "description" > Description< / a >
< / nav >
{{!-- Sheet Body --}}
< section class = "sheet-body" >
{{!-- Carac Tab --}}
< div class = "tab items" data-group = "primary" data-tab = "carac" >
2021-11-08 14:58:06 +01:00
2020-11-14 23:24:01 +01:00
< div class = "grid grid-2col" >
< div class = "flex-group-left flexcol" >
2020-11-24 21:00:24 +01:00
< ol class = "carac-list alterne-list" >
2020-11-14 23:24:01 +01:00
{{#each data.carac as |carac key|}}
2020-11-24 21:00:24 +01:00
< li class = "competence flexrow list-item" data-attribute = "{{key}}" >
2021-03-25 03:18:27 +01:00
{{#if (eq key 'taille')}}
2020-11-14 23:24:01 +01:00
< span class = "carac-label flexrow" name = "data.carac.{{key}}.label" > {{carac.label}}< / span >
{{else}}
< span class = "carac-label flexrow" name = "data.carac.{{key}}.label" > < a
name={{key}}>{{carac.label}}< / a > < / span >
{{/if}}
< input class = "competence-value flexrow" type = "text" name = "data.carac.{{key}}.value"
value="{{carac.value}}" data-dtype="{{carac.type}}" />
< / li >
{{/each}}
< / ol >
< / div >
2021-11-08 14:58:06 +01:00
< div class = "flex-group-left flexcol" >
2020-11-24 21:00:24 +01:00
< ol class = "carac-list alterne-list" >
2021-11-08 14:58:06 +01:00
< li class = "competence flexrow list-item" >
< span class = "carac-label flexrow" name = "catEntite" > Catégorie : < / span >
< select name = "data.definition.categorieentite" value = "{{data.definition.categorieentite}}" data-dtype = "String" >
{{#select data.definition.categorieentite}}
< option value = "cauchemar" > Cauchemar< / option >
< option value = "reve" > Rêve< / option >
{{/select}}
< / select >
< / li >
< li class = "competence flexrow list-item" >
< span class = "carac-label flexrow" name = "typeEntite" > Type d'entité : < / span >
< select name = "data.definition.typeentite" value = "{{data.definition.typeentite}}" data-dtype = "String" >
{{#select data.definition.typeentite}}
< option value = "incarne" > Incarnée< / option >
< option value = "nonincarne" > Non Incarnée< / option >
{{/select}}
< / select >
< / li >
2020-11-14 23:24:01 +01:00
{{#each data.attributs as |attr key|}}
2020-11-24 21:00:24 +01:00
< li class = "competence flexrow list-item" data-attribute = "{{key}}" >
2020-11-14 23:24:01 +01:00
< span class = "carac-label flexrow" name = "data.attributs.{{key}}.label" > {{attr.label}} : < / span >
< span > < input class = "attribut-value flexrow" type = "text" name = "data.attributs.{{key}}.value"
value="{{attr.value}}" data-dtype="{{attr.type}}" />< / span >
< / li >
{{/each}}
2020-11-24 21:00:24 +01:00
< li class = "competence flexrow list-item" data-attribute = "endurance" >
2020-11-14 23:24:01 +01:00
< span class = "competence-label flexrow" name = "data.sante.endurance.label" > Endurance : < / span >
< span > < input class = "sante-value flexrow" type = "text" name = "data.sante.endurance.value"
value="{{data.sante.endurance.value}}" data-dtype="Number" />< / span > < span > / < / span >
< span > < input class = "sante-value flexrow" type = "text" name = "data.sante.endurance.max"
value="{{data.sante.endurance.max}}" data-dtype="Number" />< / span >
< / li >
< / ol >
< / div >
< / div >
< / div >
{{!-- Compétences Tab --}}
< div class = "tab competences" data-group = "primary" data-tab = "competences" >
2021-11-21 12:04:42 +01:00
2020-11-14 23:24:01 +01:00
< div class = "flexcol" >
2021-11-21 12:04:42 +01:00
2020-11-14 23:24:01 +01:00
< div class = "flex-group-left flexcol competence-column" >
2020-11-24 21:00:24 +01:00
< ol class = "item-list alterne-list" >
2021-03-25 03:18:27 +01:00
{{#each competences as |comp key|}}
2020-11-24 21:00:24 +01:00
< li class = "item flexrow list-item" data-item-id = "{{comp._id}}" >
2020-11-14 23:24:01 +01:00
< img class = "sheet-competence-img" src = "{{comp.img}}" / >
2021-01-03 19:20:35 +01:00
< span class = "competence-label" > < a > {{comp.name}}< / a > < / span >
2021-03-17 01:21:37 +01:00
< input class = "competence-value creature-carac" type = "text" compname = "{{comp.name}}"
2020-11-14 23:24:01 +01:00
value="{{comp.data.carac_value}}" data-dtype="number" />
2021-03-17 01:21:37 +01:00
< input class = "competence-value creature-niveau" type = "text" compname = "{{comp.name}}"
2020-11-14 23:24:01 +01:00
value="{{numberFormat comp.data.niveau decimals=0 sign=true}}" data-dtype="number" />
2021-03-17 01:21:37 +01:00
< input class = "competence-value creature-dommages" type = "text" compname = "{{comp.name}}"
2020-11-14 23:24:01 +01:00
value="{{numberFormat comp.data.dommages decimals=0 sign=true}}" data-dtype="number" />
< div class = "item-controls" >
< a class = "item-control item-edit" title = "Edit Item" > < i class = "fas fa-edit" > < / i > < / a >
< a class = "item-control item-delete" title = "Delete Item" > < i class = "fas fa-trash" > < / i > < / a >
< / div >
< / li >
{{/each}}
< / ol >
2021-11-21 12:04:42 +01:00
< div class = "flex-group-left flexcol competence-column" >
< ol class = "item-list alterne-list" >
{{#each possessions as |possession key|}}
< li class = "item flexrow list-item" data-item-id = "{{possession._id}}" >
< img class = "sheet-competence-img" src = "{{possession.img}}" / >
< span class = "competence-label" > {{possession.name}}< / span >
< div class = "item-controls" >
< a class = "item-control item-edit" title = "Edit Item" > < i class = "fas fa-edit" > < / i > < / a >
< a class = "item-control item-delete" title = "Delete Item" > < i class = "fas fa-trash" > < / i > < / a >
< / div >
< / li >
{{/each}}
< / ol >
2020-11-14 23:24:01 +01:00
< / div >
< / div >
< / div >
{{!-- Biography Tab --}}
< div class = "tab description" data-group = "primary" data-tab = "description" >
< div class = "form-group editor" >
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
< / div >
2021-05-04 12:19:49 +02:00
{{>"systems/foundryvtt-reve-de-dragon/templates/actor-sheet-editor-notes-mj.html"}}
2020-11-14 23:24:01 +01:00
< / div >
< / div >
< / section >
< / form >