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.
|
<div>
|
|
{{#if flavor}}
|
|
{{{flavor}}}
|
|
{{/if}}
|
|
{{#if outcome}}
|
|
<span>({{localize (add "PF2E.AttackOutcome." outcome)}})</span>
|
|
{{/if}}
|
|
</div>
|
|
{{#if formula}}
|
|
<hr />
|
|
{{formula}}
|
|
{{/if}}
|
|
{{#if traits}}
|
|
<hr />
|
|
<div class="tags">
|
|
{{#each traits as |trait|}}
|
|
<span class="tag tag_primary">{{localize (lookup @root.dataset.traits.weapon trait)}}</span>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
{{#if breakdown}}
|
|
<hr />
|
|
<div class="tags">
|
|
{{#each breakdown as |part|}}
|
|
<span class="damage-tag damage-tag-{{part.tag}}">{{part.label}}</span>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
{{#if notes}}
|
|
<hr />
|
|
{{#each notes as |note|}}
|
|
{{{note}}}<br />
|
|
{{/each}}
|
|
{{/if}}
|