* Fixed double quote issue in Rope making skill
* Fixed error in Intelligence stats
This commit is contained in:
Michael Calleia
2020-09-14 20:39:37 -04:00
parent 7da4238762
commit fed1340256
4 changed files with 20 additions and 10 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
/* Empire of the Petal Throne Character Sheet CSS */
/* Version 1.2 */
/* Version 1.3 */
/****************
+7 -7
View File
@@ -1,5 +1,5 @@
<!-- Empire of the Petal Throne Character Sheet CSS */ -->
<!-- Version 1.2 -->
<!-- Version 1.3 -->
<!-- Update Header -->
@@ -212,7 +212,7 @@
<span class="flex-row skillcheckset"><input class="skill-checkbox" type="checkbox" name="attr_skill-paper-ink-maker" value="yes" /> <label data-i18n="paper-ink-maker-u">Paper-Ink-Maker</label></span>
<span class="flex-row skillcheckset"><input class="skill-checkbox" type="checkbox" name="attr_skill-perfumer" value="yes" /> <label data-i18n="perfumer-u">Perfumer</label></span>
<span class="flex-row skillcheckset"><input class="skill-checkbox" type="checkbox" name="attr_skill-potter" value="yes" /> <label data-i18n="potter-u">Potter</label></span>
<span class="flex-row skillcheckset"><input class="skill-checkbox" type="checkbox" name="attr_skill-rope-and-net-maker" value="yes" /> <label data-i18n="rope-and-net-maker-u"">Rope and Net Maker</label></span>
<span class="flex-row skillcheckset"><input class="skill-checkbox" type="checkbox" name="attr_skill-rope-and-net-maker" value="yes" /> <label data-i18n="rope-and-net-maker-u">Rope and Net Maker</label></span>
<span class="flex-row skillcheckset"><input class="skill-checkbox" type="checkbox" name="attr_skill-sail-maker" value="yes" /> <label data-i18n="sail-maker-u">Sail Maker</label></span>
<span class="flex-row skillcheckset"><input class="skill-checkbox" type="checkbox" name="attr_skill-tailor" value="yes" /> <label data-i18n="tailor-u">Tailor</label></span>
<span class="flex-row skillcheckset"><input class="skill-checkbox" type="checkbox" name="attr_skill-tanner" value="yes" /> <label data-i18n="tanner-u">Tanner</label></span>
@@ -506,12 +506,12 @@
intelligence_special = "Average";
} else if (intelligence <= 80) {
if ( profession == "Warrior") {
intelligence_hit = 0;
intelligence_damage = -1;
intelligence_hit = 1;
intelligence_damage = 0;
intelligence_special = "Smart. Easily uses Eyes.";
} else {
intelligence_hit = 0;
intelligence_damage = 1;
intelligence_hit = 1;
intelligence_damage = 0;
intelligence_special = "Smart. Easily uses Eyes and spells.";
}
} else if (intelligence <= 95) {
@@ -947,7 +947,7 @@
<span class="flex-row skillcheckset"><input type="checkbox" name="attr_has_paper-ink-maker" value="yes" /> <label data-i18n="paper-ink-maker-u">Paper-Ink-Maker</label></span>
<span class="flex-row skillcheckset"><input type="checkbox" name="attr_has_perfumer" value="yes" /> <label data-i18n="perfumer-u">Perfumer</label></span>
<span class="flex-row skillcheckset"><input type="checkbox" name="attr_has_potter" value="yes" /> <label data-i18n="potter-u">Potter</label></span>
<span class="flex-row skillcheckset"><input type="checkbox" name="attr_has_rope-and-net-maker" value="yes" /> <label data-i18n="rope-and-net-maker-u"">Rope and Net Maker</label></span>
<span class="flex-row skillcheckset"><input type="checkbox" name="attr_has_rope-and-net-maker" value="yes" /> <label data-i18n="rope-and-net-maker-u">Rope and Net Maker</label></span>
<span class="flex-row skillcheckset"><input type="checkbox" name="attr_has_sail-maker" value="yes" /> <label data-i18n="sail-maker-u">Sail Maker</label></span>
<span class="flex-row skillcheckset"><input type="checkbox" name="attr_has_tailor" value="yes" /> <label data-i18n="tailor-u">Tailor</label></span>
<span class="flex-row skillcheckset"><input type="checkbox" name="attr_has_tanner" value="yes" /> <label data-i18n="tanner-u">Tanner</label></span>
+11 -1
View File
@@ -2,10 +2,14 @@
Player sheet for Empire of the Petal Throne by M.A.R. Barker, published by TSR in 1975.
## Current Version
1.2
1.3
### Change log
#### 1.3
* Fixed double quote issue in Rope making skill
* Fixed error in Intelligence stats
#### 1.2
* Fixed hiding background for select input in Safari and Chrome
* Fixed alignment of select input in Safari and Chrome
@@ -41,6 +45,12 @@ Player sheet for Empire of the Petal Throne by M.A.R. Barker, published by TSR i
* Sheet creation for Roll20
#### Todo List
* Check and if needed - Fix Professional skills auto calculation Sheet Worker
* Simplify - removed Skills list
* Make sure Warrior Professional Skills show up when a new sheet loads
* Add Bonus Spells as check lists
* Add mitigation of old Bonus Spells list
* Add spell slots for checked spells in Professional skills
* Add space for Languages in Professional skills with a multi-select
* Add items list from original sheet
+1 -1
View File
@@ -4,5 +4,5 @@
"authors": "Malchor",
"roll20userid": "2078012",
"preview": "EPT.png",
"instructions": "# Empire of the Petal Throne\n\nPlayer sheet for Empire of the Petal Throne by M.A.R. Barker, published by TSR in 1975.\nThis sheet was created at the request of one of M.A.R. Barker's original players.\n\n\n## Player Sheet\n\n\n## Current Version: 1.2"
"instructions": "# Empire of the Petal Throne\n\nPlayer sheet for Empire of the Petal Throne by M.A.R. Barker, published by TSR in 1975.\nThis sheet was created at the request of one of M.A.R. Barker's original players.\n\n\n## Player Sheet\n\n\n## Current Version: 1.3"
}