All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

49 lines
2.5 KiB

<!-- HEADER -->
<header>
<div class="frame-container">
<div class="frame image-container">
<img class="actor-image" alt="{{actor.name}}" src="{{actor.img}}" title="{{actor.name}}" data-edit="img" />
<a class="hover-icon" data-action="show-image"><i class="fas fa-image fa-fw"></i></a>
{{#if editable}}
<div class="edit-mode-button" title="{{localize "PF2E.EditHazardLabel"}}"><i class="fa-solid fa-lock{{#if editing}}-open{{/if}}"></i></div>
{{/if}}
</div>
</div>
<div class="details">
<div class="title">
<input name="name" class="name" type="text" value="{{actor.name}}" placeholder="{{localize "PF2E.CharacterNamePlaceholder"}}"/>
<label>{{localize "ACTOR.TypeHazard"}}</label>
<input class="level" name="system.details.level.value" type="number" value="{{data.details.level.value}}" placeholder="1" />
</div>
{{#if editing}}
<template class="traits-extra">
<select class="tag" name="system.traits.rarity" value="{{data.traits.rarity}}">
{{#select data.traits.rarity}}
{{#each rarity as |label key|}}
<option value="{{key}}">{{localize label}}</option>
{{/each}}
{{/select}}
</select>
<select class="tag" name="system.details.isComplex" data-dtype="Boolean">
{{#select data.details.isComplex}}
<option value="false">{{localize "PF2E.Actor.Hazard.Simple"}}</option>
<option value="true">{{localize "PF2E.TraitComplex"}}</option>
{{/select}}
</select>
</template>
<input class="tags paizo-style" name="system.traits.value" value="{{json data.traits.value}}" data-dtype="JSON"
{{#if (eq data.traits.value.length 0)}}placeholder="{{localize "PF2E.Traits"}}"{{/if}} />
{{else}}
<div class="tags paizo-style">
{{#unless (eq data.details.isComplex "common")}}<span class="tag" value="{{data.traits.rarity}}">{{localize rarityLabel}}</span>{{/unless}}
{{#if data.details.isComplex}}<span class="tag">{{localize "PF2E.TraitComplex"}}</span>{{/if}}
{{#each actorTraits as |trait|}}
<span class="tag" data-slug="{{trait.name}}">{{localize trait.label}}</span>
{{/each}}
</div>
{{/if}}
</div>
</header>