-
Notifications
You must be signed in to change notification settings - Fork 18
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 #165 from League-of-Fabulous-Developers/feature-sp…
…ell-customizer Feature spell customizer
- Loading branch information
Showing
11 changed files
with
401 additions
and
97 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
Large diffs are not rendered by default.
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
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
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,63 @@ | ||
<form> | ||
<div style="font-weight: bold;"> | ||
<div class="desc mb-3"> | ||
<div id="base-item" class="inline-desc">{{{baseItemDetails}}}</div> | ||
<div style="text-align: center;"><i class="fas fa-caret-down"></i></div> | ||
<div id="current-item" class="inline-desc">{{{currentItemDetails}}}</div> | ||
</div> | ||
|
||
<div class="desc grid grid-2col gap-5 mb-5"><div class="inline-desc grid grid-2col gap-5 mb-5"> | ||
<div class="form-group"> | ||
<label>{{localize 'FU.Primary'}}</label> | ||
<select id="primary" name="primary">{{{primaryOptions}}}</select> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>{{localize 'FU.Secondary'}}</label> | ||
<select id="secondary" name="secondary">{{{secondaryOptions}}}</select> | ||
</div> | ||
</div> | ||
|
||
<div class="inline-desc grid grid-2col gap-5 mb-5"> | ||
<div class="row-one"> | ||
<div class="form-group"> | ||
<label>{{localize 'FU.AccuracyBonus'}}</label> | ||
<input type="number" id="accuracy-mod" name="accuracy-mod" value="0" /> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>{{localize 'FU.DamageBonus'}}</label> | ||
<input type="number" id="damage-mod" name="damage-mod" value="0" /> | ||
</div> | ||
</div> | ||
|
||
<div class="row-two"> | ||
<div class="form-group"> | ||
<label>{{localize 'FU.Spell'}}</label> | ||
<select id="item-selector" name="item-selector">{{{spellOptions}}}</select> | ||
</div> | ||
<div class="form-group"> | ||
<label>{{localize 'FU.DamageType'}}</label> | ||
<select id="damage-type" name="damage-type">{{{damageTypeOptions}}}</select> | ||
</div> | ||
<div class="grid grid-2col"> | ||
<div class="form-group"> | ||
<label>{{localize 'FU.HRZero'}}</label> | ||
<input type="checkbox" id="hrzero" name="hrzero" /> | ||
</div> | ||
<button type="button" class="reset-spell-button"><i class="fas fa-rotate-left"></i></button> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
<hr> | ||
<div class="form-buttons grid grid-2col gap-5"> | ||
<button type="button" class="modify-button"><i class="fas fa-pen-to-square icon"></i>{{localize | ||
'FU.Modify'}}</button> | ||
<button type="button" class="clone-button"><i class="fas fa-copy icon"></i>{{localize 'FU.Clone'}}</button> | ||
<button type="button" class="temp-roll-button"><i class="fas fa-dice-d20 icon"></i>{{localize | ||
'FU.TempRoll'}}</button> | ||
<button type="button" class="cancel-button"><i class="fas fa-xmark icon"></i>{{localize 'FU.Cancel'}}</button> | ||
</div> | ||
</form> |
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,74 @@ | ||
<form> | ||
<div style="font-weight: bold;"> | ||
<div class="desc mb-3"> | ||
<div id="base-item" class="inline-desc">{{{baseItemDetails}}}</div> | ||
<div style="text-align: center;"><i class="fas fa-caret-down"></i></div> | ||
<div id="current-item" class="inline-desc">{{{currentItemDetails}}}</div> | ||
</div> | ||
|
||
<div class="desc grid grid-2col gap-5 mb-5"><div class="inline-desc grid grid-2col gap-5 mb-5"> | ||
<div class="form-group"> | ||
<label>{{localize 'FU.Primary'}}</label> | ||
<select id="primary" name="primary">{{{primaryOptions}}}</select> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>{{localize 'FU.Secondary'}}</label> | ||
<select id="secondary" name="secondary">{{{secondaryOptions}}}</select> | ||
</div> | ||
</div> | ||
|
||
<div class="inline-desc grid grid-2col gap-5 mb-5"> | ||
<div class="row-one"> | ||
<div class="form-group"> | ||
<label>{{localize 'FU.Weapon'}}</label> | ||
<select id="item-selector" name="item-selector">{{{itemOptions}}}</select> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>{{localize 'FU.AccuracyBonus'}}</label> | ||
<input type="number" id="accuracy-mod" name="accuracy-mod" value="0" /> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>{{localize 'FU.DamageBonus'}}</label> | ||
<input type="number" id="damage-mod" name="damage-mod" value="0" /> | ||
</div> | ||
</div> | ||
|
||
<div class="row-two"> | ||
<div class="form-group"> | ||
<label>{{localize 'FU.DamageType'}}</label> | ||
<select id="damage-type" name="damage-type">{{{damageTypeOptions}}}</select> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>{{localize 'FU.WeaponType'}}</label> | ||
<select id="weapon-type" name="weapon-type">{{{weaponTypeOptions}}}</select> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>{{localize 'FU.DefenseType'}}</label> | ||
<select id="defense-type" name="defense-type">{{{defenseTypeOptions}}}</select> | ||
</div> | ||
<div class="grid grid-2col"> | ||
<div class="form-group"> | ||
<label>{{localize 'FU.HRZero'}}</label> | ||
<input type="checkbox" id="hrzero" name="hrzero" /> | ||
</div> | ||
<button type="button" class="reset-weapon-button"><i class="fas fa-rotate-left"></i></button> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
<hr> | ||
<div class="form-buttons grid grid-2col gap-5"> | ||
<button type="button" class="modify-button"><i class="fas fa-pen-to-square icon"></i>{{localize | ||
'FU.Modify'}}</button> | ||
<button type="button" class="clone-button"><i class="fas fa-copy icon"></i>{{localize 'FU.Clone'}}</button> | ||
<button type="button" class="temp-roll-button"><i class="fas fa-dice-d20 icon"></i>{{localize | ||
'FU.TempRoll'}}</button> | ||
<button type="button" class="cancel-button"><i class="fas fa-xmark icon"></i>{{localize 'FU.Cancel'}}</button> | ||
</div> | ||
</form> |
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