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.

35 lines
1.3 KiB

  1. <div class="pf2e chat-card item-card" data-tooltip-class="pf2e">
  2. <header class="card-header flexrow">
  3. <img src="{{img}}" title="{{localize name}}" />
  4. <h3>{{localize name}}</h3>
  5. <h4>{{localize "PF2E.Kingmaker.Army.Gear.ItemLevel" level=level}}</h4>
  6. </header>
  7. <section class="item-properties tags">
  8. {{#each traits as |trait|}}
  9. <span class="tag" data-trait="{{localize trait.label}}" data-tooltip="{{localize trait.description}}">{{localize trait.label}}</span>
  10. {{/each}}
  11. </section>
  12. <hr/>
  13. <section class="card-content">
  14. {{{localize description}}}
  15. </section>
  16. {{#each ranks as |rank|}}
  17. <hr/>
  18. <section>
  19. <div class="flexrow">
  20. <h4 style="min-width: 60%"><em>{{localize rank.name}}</em></h4>
  21. <span>{{localize "PF2E.Kingmaker.Army.Gear.LevelLabel" level=rank.level}}</span>
  22. <span style="text-align: right">{{rank.price}} {{localize "PF2E.Kingmaker.Kingdom.Resources.RP"}}</span>
  23. </div>
  24. {{#if rank.description}}<span>{{localize rank.description}}</span>{{/if}}
  25. </section>
  26. {{/each}}
  27. {{#if price}}
  28. <hr/>
  29. <div>{{price}} {{localize "PF2E.Kingmaker.Kingdom.Resources.RP"}}</div>
  30. {{/if}}
  31. </div>