mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-04 22:22:28 +00:00
Merge pull request #14209 from fredhicks/Stewpot-Custom-Jobs-Support
[Stewpot] Custom job support (new feature)
This commit is contained in:
@@ -645,6 +645,10 @@ input.hideunless[value=Warlock] + .Warlock {
|
||||
display: initial;
|
||||
}
|
||||
|
||||
input.hideunless[value=Custom] + .Custom {
|
||||
display: initial;
|
||||
}
|
||||
|
||||
input.hideunless[value=Farmer] + .Farmer {
|
||||
display: initial;
|
||||
}
|
||||
@@ -709,6 +713,10 @@ input.hideunless[value=Tattoo-Artist] + .Tattoo-Artist {
|
||||
display: initial;
|
||||
}
|
||||
|
||||
input.hideunless[value=Custom] + .Custom {
|
||||
display: initial;
|
||||
}
|
||||
|
||||
input.mhider[value=character] + .character, input.mhider[value=tavern] + .tavern {
|
||||
display: initial;
|
||||
}
|
||||
|
||||
+11
-1
@@ -195,7 +195,7 @@ on("change:select_character_weapon change:select_character_armor change:select_c
|
||||
</div>
|
||||
</div>
|
||||
<div class="jbody">
|
||||
<select class="job" name="attr_ajob">
|
||||
<select class="job jobcustomcheck" name="attr_ajob">
|
||||
<option value="" data-i18n="(pick an adventurer job)"></option>
|
||||
<option value="Bard" data-i18n="Bard"></option>
|
||||
<option value="Druid" data-i18n="Druid"></option>
|
||||
@@ -211,7 +211,12 @@ on("change:select_character_weapon change:select_character_armor change:select_c
|
||||
<option value="Shadowspinner" data-i18n="Shadowspinner"></option>
|
||||
<option value="Spiritcaller" data-i18n="Spiritcaller"></option>
|
||||
<option value="Warlock" data-i18n="Warlock"></option>
|
||||
<option value="Custom" data-i18n="Custom"></option>
|
||||
</select>
|
||||
<input class="hideunless" name="attr_ajob" type="hidden" value=""/>
|
||||
<div class="Custom">
|
||||
<input type="text" name="attr_custom_ajob_name"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="shead">
|
||||
<div class="flabel"><span data-i18n="Adventurer Experiences">Adventurer Experiences</span>
|
||||
@@ -679,7 +684,12 @@ on("change:select_character_weapon change:select_character_armor change:select_c
|
||||
<option value="Mezzo-Soprano" data-i18n="Mezzo-Soprano"></option>
|
||||
<option value="Playwright" data-i18n="Playwright"></option>
|
||||
<option value="Tattoo-Artist" data-i18n="Tattoo-Artist"></option>
|
||||
<option value="Custom" data-i18n="Custom"></option>
|
||||
</select>
|
||||
<input class="hideunless" name="attr_tjob" type="hidden" value=""/>
|
||||
<div class="Custom">
|
||||
<input type="text" name="attr_custom_tjob_name"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="shead">
|
||||
<div class="flabel"><span data-i18n="Town Experiences">Town Experiences</span>
|
||||
|
||||
@@ -63,6 +63,7 @@
|
||||
"Shadowspinner": "Shadowspinner",
|
||||
"Spiritcaller": "Spiritcaller",
|
||||
"Warlock": "Warlock",
|
||||
"Custom": "Custom",
|
||||
"Adventurer Experiences": "Adventurer Experiences",
|
||||
"(pick a Bard experience or fill in the blank)": "(pick a Bard experience or fill in the blank)",
|
||||
"Bag of Tricks: Card magic, juggling clubs, and other spectacles": "Bag of Tricks: Card magic, juggling clubs, and other spectacles",
|
||||
|
||||
Reference in New Issue
Block a user