Initial data model migration

This commit is contained in:
2026-01-06 22:56:57 +01:00
parent 05ca6e1763
commit 001f0cffa8
142 changed files with 6474 additions and 413 deletions

View File

@@ -0,0 +1,55 @@
<section class="{{cssClass}}" autocomplete="off">
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-header.hbs this}}
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-nav.hbs this}}
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-description.hbs this}}
<div class="tab details" data-group="primary" data-tab="details">
<ul class="item-list alternate-list">
<li class="flexrow item">
<label class="generic-label item-field-label-medium">Type </label>
<select class="status-small-label color-class-common item-field-label-long" type="text"
name="system.talenttype" value="{{system.talenttype}}" data-dtype="String">
{{selectOptions @root.config.optionsTypeTalent selected=system.talenttype valueAttr="key" labelAttr="label"}}
</select>
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-medium">Utilisation </label>
<select class="status-small-label color-class-common item-field-label-long" type="text"
name="system.utilisation" value="{{system.utilisation}}" data-dtype="String">
{{selectOptions @root.config.optionsUseTalent selected=system.utilisation valueAttr="key" labelAttr="label"}}
</select>
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">Pré-requis </label>
</li>
<li class="flexrow item">
<textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
name="system.prerequis" data-dtype="String">{{system.prerequis}}</textarea>
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">Résumé (si bonus) </label>
</li>
<li class="flexrow item">
<textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
name="system.resumebonus" data-dtype="String">{{system.resumebonus}}</textarea>
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-medium">Déja utilisé ? </label>
<input class="predilection-maitrise" type="checkbox" name="system.used" {{checked system.used}} />
</li>
{{> systems/fvtt-hawkmoon-cyd/templates/partial-automation.hbs}}
</ul>
</div>
</section>