-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from WoD5E-Developers/5.0-final-wip
5.0 final wip
- Loading branch information
Showing
71 changed files
with
804 additions
and
664 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
10 changes: 5 additions & 5 deletions
10
display/shared/applications/skill-application/parts/specialty-display.hbs
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 was deleted.
Oops, something went wrong.
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,11 @@ | ||
<div class="flex-group-center flexrow"> | ||
<div class="field-header flexrow"> | ||
{{localize 'WOD5E.ItemsList.DataItemId'}} | ||
<a data-action="formatDataId" title="{{localize 'WOD5E.ItemsList.GenerateDataItemID'}}"> | ||
<i class="fa-solid fa-arrows-rotate"></i> | ||
</a> | ||
</div> | ||
<div> | ||
<input type="text" value="{{dataItemId}}" disabled/> | ||
</div> | ||
</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 |
---|---|---|
@@ -1,13 +1,3 @@ | ||
<section class="tab {{tab.cssClass}}" data-tab="{{tab.id}}" data-group="{{tab.group}}"> | ||
<div class="flex-group-center flexrow"> | ||
<div class="field-header flexrow"> | ||
{{localize 'WOD5E.ItemsList.DataItemId'}} | ||
<a data-action="formatDataId" title="{{localize 'WOD5E.ItemsList.GenerateDataItemID'}}"> | ||
<i class="fa-solid fa-arrows-rotate"></i> | ||
</a> | ||
</div> | ||
<div> | ||
<input type="text" value="{{dataItemId}}" disabled/> | ||
</div> | ||
</div> | ||
{{> "systems/vtm5e/display/shared/items/parts/data-item-id.hbs"}} | ||
</section> |
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,39 @@ | ||
<div class="modifier"> | ||
<div class="field-header big-header"><input id="modifierSource" type="text" value="{{bonus.source}}" placeholder="{{localize 'WOD5E.Modifier.NewModifier'}}"/></div> | ||
<div class="grid grid-3col flex-center"> | ||
<div class="flexcol"> | ||
<b>{{localize "WOD5E.Value"}}</b> | ||
<input class="input-value" id="modifierValue" type="number" value="{{bonus.value}}"/> | ||
</div> | ||
<div> | ||
<b>{{localize "WOD5E.Modifier.Unless"}}</b> | ||
<input id="unless" type="text" value="{{bonus.unless}}" placeholder="{{localize 'WOD5E.Modifier.Unless'}}"/> | ||
</div> | ||
<div class="flexrow flex-center"> | ||
<input id="displayModifierWhenInactive" type="checkbox"{{#if bonus.displayWhenInactive}} checked{{/if}}>{{localize "WOD5E.Modifier.DisplayWhenInactive"}}</input> | ||
</div> | ||
</div> | ||
<div class="grid grid-3col flex-center"> | ||
<div class="flexcol"> | ||
<b>{{localize "WOD5E.Modifier.ActiveWhen"}}</b> | ||
<select id="activeWhenCheck"> | ||
<option value="never"{{#ifeq bonus.activeWhen.check "never"}} selected{{/ifeq}}>{{localize "WOD5E.Modifier.Never"}}</option> | ||
<option value="always"{{#ifeq bonus.activeWhen.check "always"}} selected{{/ifeq}}>{{localize "WOD5E.Modifier.Always"}}</option> | ||
<option value="isEqual"{{#ifeq bonus.activeWhen.check "isEqual"}} selected{{/ifeq}}>{{localize "WOD5E.Modifier.IfEquals"}}</option> | ||
<option value="isPath"{{#ifeq bonus.activeWhen.check "isPath"}} selected{{/ifeq}}>{{localize "WOD5E.Modifier.IfPathIs"}}</option> | ||
</select> | ||
</div> | ||
<div style="{{#ifeq bonus.activeWhen.check 'isEqual'}}visibility: visible;{{else}}{{#ifeq bonus.activeWhen.check 'isPath'}}visibility: visible;{{else}}visibility: hidden;{{/ifeq}}{{/ifeq}}"> | ||
<b>{{localize "WOD5E.Modifier.PathToCheck"}}</b> | ||
<input id="activeWhenPath" type="text" value="{{bonus.activeWhen.path}}" placeholder="{{localize 'WOD5E.Modifier.PathToCheck'}}"/> | ||
</div> | ||
<div style="{{#ifeq bonus.activeWhen.check 'isEqual'}}visibility: visible;{{else}}visibility: hidden;{{/ifeq}}"> | ||
<b>{{localize "WOD5E.Modifier.ValueToCheck"}}</b> | ||
<input id="activeWhenValue" type="text" value="{{bonus.activeWhen.value}}" placeholder="{{localize 'WOD5E.Modifier.ValueToCheck'}}"/> | ||
</div> | ||
</div> | ||
<div class="flexcol"> | ||
<b>{{localize "WOD5E.Modifier.Selectors"}}</b> | ||
<input id="modifier" class="modifier-selectors" type="text" value="{{splitArray bonus.paths}}" placeholder="{{localize 'WOD5E.None'}}"/> | ||
</div> | ||
</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
Oops, something went wrong.