-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Proficiencies
- Loading branch information
Showing
6 changed files
with
197 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,25 @@ | ||
<!-- prettier-ignore --> | ||
<div class="tab proficiencies" data-tab="proficiencies" data-group="party"> | ||
<div class="table-row header"> | ||
{{> "modules/party-overview/templates/parts/FilterButton.html"}} | ||
<div class="text">{{localize "party-overview.NAME"}}</div> | ||
{{#each skills as | s | }} | ||
<div class="num party-overview-ellipsis" title="{{s}}">{{s}}</div> | ||
{{#each actors as | actor | }} | ||
{{> "modules/party-overview/templates/parts/ToggleVisibilityButton.html" actor=actor}} | ||
<div class="num party-overview-ellipsis" title="{{ actor.shortestName }}"> | ||
{{ actor.shortestName }} | ||
</div> | ||
{{/each}} | ||
</div> | ||
|
||
{{#each actors as | actor | }} | ||
<div class="table-row"> | ||
{{> "modules/party-overview/templates/parts/ToggleVisibilityButton.html"}} | ||
<div class="text">{{ actor.shortestName }}</div> | ||
{{#each actor.skills as | skill| }} | ||
<div class="num" style="flex: 1"> | ||
<i class="{{skill}}"></i> | ||
{{#each skills as | value key | }} | ||
<div class="table-row"> | ||
<div></div> | ||
<div class="text">{{localize value}}</div> | ||
{{#each (partyOverviewGetSkillList key ../actors)}} | ||
<div class="num" style="flex: 1;" title="{{this.proficient}}"> | ||
{{numberFormat this.value decimals=0 sign=true}} <i class="{{this.icon}}"></i> | ||
</div> | ||
{{/each}} | ||
</div> | ||
{{/each}} | ||
</div> | ||
{{/each}} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!-- prettier-ignore --> | ||
<div class="tab proficiencies" data-tab="skills" data-group="party"> | ||
<div class="table-row header"> | ||
{{> "modules/party-overview/templates/parts/FilterButton.html"}} | ||
<div class="text">{{localize "party-overview.NAME"}}</div> | ||
{{#each actors as | actor | }} | ||
{{> "modules/party-overview/templates/parts/ToggleVisibilityButton.html" actor=actor}} | ||
<div class="num party-overview-ellipsis" title="{{ actor.shortestName }}"> | ||
{{ actor.shortestName }} | ||
</div> | ||
{{/each}} | ||
</div> | ||
|
||
{{#each skills as | value key | }} | ||
<div class="table-row"> | ||
<div></div> | ||
<div class="text">{{localize value}}</div> | ||
{{#each (partyOverviewGetSkillList key ../actors)}} | ||
<div class="num" style="flex: 1; {{#if this.rank}}color: white; background-color: {{this.color}}"title="{{this.rankName}}{{/if}}"> | ||
{{numberFormat this.value decimals=0 sign=true}} | ||
</div> | ||
{{/each}} | ||
</div> | ||
{{/each}} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters