Add effects and tabs
This commit is contained in:
+1
-51
@@ -108,57 +108,7 @@
|
||||
data-group="primary"
|
||||
data-tab="effects"
|
||||
>
|
||||
{{! Prism RPG: Armor Passive }}
|
||||
<fieldset class="armor-passive">
|
||||
<legend>{{localize "PRISMRPG.Label.armorPassive"}}</legend>
|
||||
{{formField
|
||||
systemFields.passive
|
||||
value=system.passive
|
||||
localize=true
|
||||
label="PRISMRPG.Label.passiveName"
|
||||
}}
|
||||
<label>{{localize "PRISMRPG.Label.passiveDescription"}}</label>
|
||||
{{formInput
|
||||
systemFields.passiveDescription
|
||||
enriched=enrichedPassiveDescription
|
||||
value=system.passiveDescription
|
||||
name="system.passiveDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
{{! Prism RPG: Armor Augment }}
|
||||
<fieldset class="armor-augment">
|
||||
<legend>{{localize "PRISMRPG.Label.armorAugment"}}</legend>
|
||||
{{formField
|
||||
systemFields.augment
|
||||
value=system.augment
|
||||
localize=true
|
||||
label="PRISMRPG.Label.augmentName"
|
||||
}}
|
||||
<label>{{localize "PRISMRPG.Label.augmentDescription"}}</label>
|
||||
{{formInput
|
||||
systemFields.augmentDescription
|
||||
enriched=enrichedAugmentDescription
|
||||
value=system.augmentDescription
|
||||
name="system.augmentDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
{{! Cost }}
|
||||
{{formField
|
||||
systemFields.cost
|
||||
value=system.cost
|
||||
localize=true
|
||||
label="PRISMRPG.Label.cost"
|
||||
}}
|
||||
{{formField
|
||||
systemFields.money
|
||||
value=system.money
|
||||
localize=true
|
||||
label="PRISMRPG.Label.currency"
|
||||
}}
|
||||
{{> systems/fvtt-prism-rpg/templates/partial-item-effects.hbs}}
|
||||
</div>
|
||||
|
||||
</section>
|
||||
@@ -0,0 +1,38 @@
|
||||
<section>
|
||||
<div class="header">
|
||||
<img
|
||||
class="item-img"
|
||||
src="{{item.img}}"
|
||||
data-edit="img"
|
||||
data-action="editImage"
|
||||
data-tooltip="{{item.name}}"
|
||||
/>
|
||||
{{formInput fields.name value=source.name}}
|
||||
</div>
|
||||
|
||||
{{! Navigation des onglets }}
|
||||
<nav class="sheet-tabs tabs" data-group="primary">
|
||||
<a class="item {{tabs.description.cssClass}}" data-tab="description">{{localize "PRISMRPG.Label.description"}}</a>
|
||||
<a class="item {{tabs.effects.cssClass}}" data-tab="effects">{{localize "PRISMRPG.Label.effects"}}</a>
|
||||
</nav>
|
||||
|
||||
{{! Onglet Description }}
|
||||
<div class="tab {{tabs.description.cssClass}}" data-group="primary" data-tab="description">
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Effects }}
|
||||
<div class="tab {{tabs.effects.cssClass}}" data-group="primary" data-tab="effects">
|
||||
{{> systems/fvtt-prism-rpg/templates/partial-item-effects.hbs}}
|
||||
</div>
|
||||
|
||||
</section>
|
||||
+33
-22
@@ -4,6 +4,14 @@
|
||||
{{formInput fields.name value=source.name}}
|
||||
</div>
|
||||
|
||||
{{! Navigation des onglets }}
|
||||
<nav class="sheet-tabs tabs" data-group="primary">
|
||||
<a class="item {{tabs.details.cssClass}}" data-tab="details">{{localize "PRISMRPG.Label.details"}}</a>
|
||||
<a class="item {{tabs.description.cssClass}}" data-tab="description">{{localize "PRISMRPG.Label.description"}}</a>
|
||||
</nav>
|
||||
|
||||
{{! Onglet Details }}
|
||||
<div class="tab {{tabs.details.cssClass}}" data-group="primary" data-tab="details">
|
||||
<div class="flexrow">
|
||||
<div class="align-top">
|
||||
|
||||
@@ -63,29 +71,32 @@
|
||||
}}
|
||||
{{/each}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Notes }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.notes"}}</legend>
|
||||
{{formInput
|
||||
systemFields.notes
|
||||
enriched=enrichedNotes
|
||||
value=system.notes
|
||||
name="system.notes"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
{{! Onglet Description }}
|
||||
<div class="tab {{tabs.description.cssClass}}" data-group="primary" data-tab="description">
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
{{! Description }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
{{! Notes }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.notes"}}</legend>
|
||||
{{formInput
|
||||
systemFields.notes
|
||||
enriched=enrichedNotes
|
||||
value=system.notes
|
||||
name="system.notes"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
+19
-17
@@ -24,24 +24,7 @@
|
||||
{{formField systemFields.money value=system.money localize=true}}
|
||||
|
||||
{{formField systemFields.isKit value=system.isKit localize=true label="PRISMRPG.Label.isKit"}}
|
||||
</div>
|
||||
|
||||
{{! Onglet Description }}
|
||||
<div class="tab" data-group="primary" data-tab="description">
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Effects }}
|
||||
<div class="tab" data-group="primary" data-tab="effects">
|
||||
{{#if system.isKit}}
|
||||
{{! Kit Passive }}
|
||||
<fieldset class="kit-passive">
|
||||
@@ -102,4 +85,23 @@
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
{{! Onglet Description }}
|
||||
<div class="tab" data-group="primary" data-tab="description">
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Effects }}
|
||||
<div class="tab {{tabs.effects.cssClass}}" data-group="primary" data-tab="effects">
|
||||
{{> systems/fvtt-prism-rpg/templates/partial-item-effects.hbs}}
|
||||
</div>
|
||||
|
||||
</section>
|
||||
+22
-20
@@ -150,6 +150,27 @@
|
||||
localize=true
|
||||
label="PRISMRPG.Label.level"
|
||||
}}
|
||||
|
||||
{{! Prism RPG: Miracle Augment }}
|
||||
<fieldset class="miracle-augment">
|
||||
<legend>{{localize "PRISMRPG.Label.miracleAugment"}}</legend>
|
||||
{{formField
|
||||
systemFields.augment
|
||||
value=system.augment
|
||||
localize=true
|
||||
label="PRISMRPG.Label.augmentName"
|
||||
}}
|
||||
<div class="form-group">
|
||||
<label>{{localize "PRISMRPG.Label.augmentDescription"}}</label>
|
||||
{{formInput
|
||||
systemFields.augmentDescription
|
||||
enriched=enrichedAugmentDescription
|
||||
value=system.augmentDescription
|
||||
name="system.augmentDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Description }}
|
||||
@@ -176,26 +197,7 @@
|
||||
data-group="primary"
|
||||
data-tab="effects"
|
||||
>
|
||||
{{! Prism RPG: Miracle Augment }}
|
||||
<fieldset class="miracle-augment">
|
||||
<legend>{{localize "PRISMRPG.Label.miracleAugment"}}</legend>
|
||||
{{formField
|
||||
systemFields.augment
|
||||
value=system.augment
|
||||
localize=true
|
||||
label="PRISMRPG.Label.augmentName"
|
||||
}}
|
||||
<div class="form-group">
|
||||
<label>{{localize "PRISMRPG.Label.augmentDescription"}}</label>
|
||||
{{formInput
|
||||
systemFields.augmentDescription
|
||||
enriched=enrichedAugmentDescription
|
||||
value=system.augmentDescription
|
||||
name="system.augmentDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</div>
|
||||
</fieldset>
|
||||
{{> systems/fvtt-prism-rpg/templates/partial-item-effects.hbs}}
|
||||
</div>
|
||||
|
||||
</section>
|
||||
@@ -0,0 +1,80 @@
|
||||
{{! Template pour l'onglet Effects des items - organisé par catégories }}
|
||||
<div class="effects-container">
|
||||
|
||||
{{#each effectCategories as |section sid|}}
|
||||
<div class="effect-category">
|
||||
<ul class="stat-list alternate-list">
|
||||
<li class="item flexrow list-item items-title-bg">
|
||||
<span class="item-name-label-header-long">
|
||||
<h3><label class="items-title-text">{{localize
|
||||
section.label
|
||||
}}</label></h3>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">{{localize
|
||||
"PRISMRPG.Label.source"
|
||||
}}</label>
|
||||
</span>
|
||||
<span class="item-field-label-medium">
|
||||
<label class="short-label">{{localize
|
||||
"PRISMRPG.Label.duration"
|
||||
}}</label>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a
|
||||
class="effect-control"
|
||||
data-action="create-effect"
|
||||
data-effect-type="{{section.type}}"
|
||||
title="{{localize 'DOCUMENT.Create' type="Effect"}}"
|
||||
>
|
||||
<i class="fas fa-plus"></i>
|
||||
{{localize "DOCUMENT.New" type="Effect"}}
|
||||
</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
{{#each section.effects as |effect|}}
|
||||
<li
|
||||
class="item flexrow list-item list-item-shadow"
|
||||
data-item-id="{{effect._id}}"
|
||||
data-effect-id="{{effect._id}}"
|
||||
data-parent-id="{{effect.parent.id}}"
|
||||
>
|
||||
<a
|
||||
class="item-edit item-name-img"
|
||||
data-action="effect-edit"
|
||||
title="Edit Effect"
|
||||
>
|
||||
<img class="sheet-competence-img" src="{{effect.img}}" />
|
||||
</a>
|
||||
<span class="item-name-label-long">{{effect.name}}</span>
|
||||
<span class="item-field-label-short">{{effect.sourceName}}</span>
|
||||
<span
|
||||
class="item-field-label-short"
|
||||
>{{effect.duration.label}}</span>
|
||||
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls effect-controls flexrow">
|
||||
<a
|
||||
class="effect-control item-edit"
|
||||
data-action="effect-edit"
|
||||
title="{{localize 'DOCUMENT.Update' type="Effect"}}"
|
||||
>
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a
|
||||
class="effect-control"
|
||||
data-action="effect-delete"
|
||||
title="{{localize 'DOCUMENT.Delete' type="Effect"}}"
|
||||
>
|
||||
<i class="fas fa-trash"></i>
|
||||
</a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
||||
{{/each}}
|
||||
|
||||
</div>
|
||||
+93
-69
@@ -10,82 +10,106 @@
|
||||
{{formInput fields.name value=source.name}}
|
||||
</div>
|
||||
|
||||
<div class="flexrow">
|
||||
<div class="align-top">
|
||||
{{! Navigation des onglets }}
|
||||
<nav class="sheet-tabs tabs" data-group="primary">
|
||||
<a class="item {{tabs.details.cssClass}}" data-tab="details">{{localize
|
||||
"PRISMRPG.Label.details"
|
||||
}}</a>
|
||||
<a
|
||||
class="item {{tabs.description.cssClass}}"
|
||||
data-tab="description"
|
||||
>{{localize "PRISMRPG.Label.description"}}</a>
|
||||
</nav>
|
||||
|
||||
{{! Basic Information }}
|
||||
{{formField systemFields.senses value=system.senses}}
|
||||
{{! Onglet Details }}
|
||||
<div
|
||||
class="tab {{tabs.details.cssClass}}"
|
||||
data-group="primary"
|
||||
data-tab="details"
|
||||
>
|
||||
<div class="flexrow">
|
||||
<div class="align-top">
|
||||
|
||||
{{formField systemFields.size value=system.size localize=true}}
|
||||
{{! Basic Information }}
|
||||
{{formField systemFields.senses value=system.senses}}
|
||||
|
||||
{{formField
|
||||
systemFields.ageCategory
|
||||
value=system.ageCategory
|
||||
localize=true
|
||||
{{formField systemFields.size value=system.size localize=true}}
|
||||
|
||||
{{formField
|
||||
systemFields.ageCategory
|
||||
value=system.ageCategory
|
||||
localize=true
|
||||
}}
|
||||
|
||||
{{formField systemFields.language value=system.language}}
|
||||
|
||||
</div>
|
||||
<div class="align-top">
|
||||
|
||||
{{! Racial Passive }}
|
||||
{{formField systemFields.racialPassive value=system.racialPassive}}
|
||||
|
||||
{{! Sub-race }}
|
||||
{{formField systemFields.subrace value=system.subrace}}
|
||||
|
||||
{{formField systemFields.subraceAbility value=system.subraceAbility}}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{! Racial Passive Description }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.racialPassive"}}</legend>
|
||||
{{formInput
|
||||
systemFields.racialPassiveDescription
|
||||
enriched=enrichedRacialPassiveDescription
|
||||
value=system.racialPassiveDescription
|
||||
name="system.racialPassiveDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
{{formField systemFields.language value=system.language}}
|
||||
|
||||
</div>
|
||||
<div class="align-top">
|
||||
|
||||
{{! Racial Passive }}
|
||||
{{formField systemFields.racialPassive value=system.racialPassive}}
|
||||
|
||||
{{! Sub-race }}
|
||||
{{formField systemFields.subrace value=system.subrace}}
|
||||
|
||||
{{formField systemFields.subraceAbility value=system.subraceAbility}}
|
||||
|
||||
</div>
|
||||
{{! Sub-race Ability Description }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.subraceAbility"}}</legend>
|
||||
{{formInput
|
||||
systemFields.subraceAbilityDescription
|
||||
enriched=enrichedSubraceAbilityDescription
|
||||
value=system.subraceAbilityDescription
|
||||
name="system.subraceAbilityDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Racial Passive Description }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.racialPassive"}}</legend>
|
||||
{{formInput
|
||||
systemFields.racialPassiveDescription
|
||||
enriched=enrichedRacialPassiveDescription
|
||||
value=system.racialPassiveDescription
|
||||
name="system.racialPassiveDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
{{! Onglet Description }}
|
||||
<div
|
||||
class="tab {{tabs.description.cssClass}}"
|
||||
data-group="primary"
|
||||
data-tab="description"
|
||||
>
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
{{! Sub-race Ability Description }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.subraceAbility"}}</legend>
|
||||
{{formInput
|
||||
systemFields.subraceAbilityDescription
|
||||
enriched=enrichedSubraceAbilityDescription
|
||||
value=system.subraceAbilityDescription
|
||||
name="system.subraceAbilityDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
{{! Notes }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.notes"}}</legend>
|
||||
{{formInput
|
||||
systemFields.notes
|
||||
enriched=enrichedNotes
|
||||
value=system.notes
|
||||
name="system.notes"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
{{! Description }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
{{! Notes }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.notes"}}</legend>
|
||||
{{formInput
|
||||
systemFields.notes
|
||||
enriched=enrichedNotes
|
||||
value=system.notes
|
||||
name="system.notes"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
@@ -10,15 +10,29 @@
|
||||
{{formInput fields.name value=source.name}}
|
||||
</div>
|
||||
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
{{! Navigation des onglets }}
|
||||
<nav class="sheet-tabs tabs" data-group="primary">
|
||||
<a class="item {{tabs.description.cssClass}}" data-tab="description">{{localize "PRISMRPG.Label.description"}}</a>
|
||||
<a class="item {{tabs.effects.cssClass}}" data-tab="effects">{{localize "PRISMRPG.Label.effects"}}</a>
|
||||
</nav>
|
||||
|
||||
{{! Onglet Description }}
|
||||
<div class="tab {{tabs.description.cssClass}}" data-group="primary" data-tab="description">
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Effects }}
|
||||
<div class="tab {{tabs.effects.cssClass}}" data-group="primary" data-tab="effects">
|
||||
{{> systems/fvtt-prism-rpg/templates/partial-item-effects.hbs}}
|
||||
</div>
|
||||
|
||||
</section>
|
||||
+20
-18
@@ -90,6 +90,25 @@
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{! Prism RPG: Block Augment }}
|
||||
<fieldset class="shield-block-augment">
|
||||
<legend>{{localize "PRISMRPG.Label.blockAugment"}}</legend>
|
||||
{{formField
|
||||
systemFields.blockAugment
|
||||
value=system.blockAugment
|
||||
localize=true
|
||||
label="PRISMRPG.Label.blockAugmentName"
|
||||
}}
|
||||
<label>{{localize "PRISMRPG.Label.blockAugmentDescription"}}</label>
|
||||
{{formInput
|
||||
systemFields.blockAugmentDescription
|
||||
enriched=enrichedBlockAugmentDescription
|
||||
value=system.blockAugmentDescription
|
||||
name="system.blockAugmentDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Description }}
|
||||
@@ -116,24 +135,7 @@
|
||||
data-group="primary"
|
||||
data-tab="effects"
|
||||
>
|
||||
{{! Prism RPG: Block Augment }}
|
||||
<fieldset class="shield-block-augment">
|
||||
<legend>{{localize "PRISMRPG.Label.blockAugment"}}</legend>
|
||||
{{formField
|
||||
systemFields.blockAugment
|
||||
value=system.blockAugment
|
||||
localize=true
|
||||
label="PRISMRPG.Label.blockAugmentName"
|
||||
}}
|
||||
<label>{{localize "PRISMRPG.Label.blockAugmentDescription"}}</label>
|
||||
{{formInput
|
||||
systemFields.blockAugmentDescription
|
||||
enriched=enrichedBlockAugmentDescription
|
||||
value=system.blockAugmentDescription
|
||||
name="system.blockAugmentDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
{{> systems/fvtt-prism-rpg/templates/partial-item-effects.hbs}}
|
||||
</div>
|
||||
|
||||
</section>
|
||||
+27
-25
@@ -123,32 +123,7 @@
|
||||
localize=true
|
||||
label="PRISMRPG.Label.keywords"
|
||||
}}
|
||||
</div>
|
||||
|
||||
{{! Onglet Description }}
|
||||
<div
|
||||
class="tab {{tabs.description.cssClass}}"
|
||||
data-group="primary"
|
||||
data-tab="description"
|
||||
>
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Effects }}
|
||||
<div
|
||||
class="tab {{tabs.effects.cssClass}}"
|
||||
data-group="primary"
|
||||
data-tab="effects"
|
||||
>
|
||||
{{! Prism RPG: Color Effect }}
|
||||
<fieldset class="spell-color-effect">
|
||||
<legend>{{localize "PRISMRPG.Label.colorEffect"}}</legend>
|
||||
@@ -186,4 +161,31 @@
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Description }}
|
||||
<div
|
||||
class="tab {{tabs.description.cssClass}}"
|
||||
data-group="primary"
|
||||
data-tab="description"
|
||||
>
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Effects }}
|
||||
<div
|
||||
class="tab {{tabs.effects.cssClass}}"
|
||||
data-group="primary"
|
||||
data-tab="effects"
|
||||
>
|
||||
{{> systems/fvtt-prism-rpg/templates/partial-item-effects.hbs}}
|
||||
</div>
|
||||
|
||||
</section>
|
||||
+19
-17
@@ -109,24 +109,7 @@
|
||||
{{formField systemFields.money value=system.money localize=true}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{! Onglet Description }}
|
||||
<div class="tab {{tabs.description.cssClass}}" data-group="primary" data-tab="description">
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Effects }}
|
||||
<div class="tab {{tabs.effects.cssClass}}" data-group="primary" data-tab="effects">
|
||||
{{! Prism RPG: Weapon Passives }}
|
||||
<fieldset class="weapon-passives">
|
||||
<legend>
|
||||
@@ -204,4 +187,23 @@
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Description }}
|
||||
<div class="tab {{tabs.description.cssClass}}" data-group="primary" data-tab="description">
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
{{! Onglet Effects }}
|
||||
<div class="tab {{tabs.effects.cssClass}}" data-group="primary" data-tab="effects">
|
||||
{{> systems/fvtt-prism-rpg/templates/partial-item-effects.hbs}}
|
||||
</div>
|
||||
|
||||
</section>
|
||||
Reference in New Issue
Block a user