Added more description.

This commit is contained in:
Yord 2015-09-29 12:20:25 +02:00
parent 287ee28cf3
commit 068f836e82
4 changed files with 20 additions and 10 deletions

View file

@ -15,6 +15,9 @@ tags: [Version 0.2 beta]
Done: S130: Use Skill DB on change of Skill name/value (M020) Done: S130: Use Skill DB on change of Skill name/value (M020)
Done: S140: Use Spell DB on change of Spell name (M160) Done: S140: Use Spell DB on change of Spell name (M160)
Done: S150: Fill out Spell data Done: S150: Fill out Spell data
Done: S170: Worn Armor Widget
Done: S180: Melee Weapon Widget
Done: S190: Ranged Weapon Widget
S010: Add all races, careers, etc. S010: Add all races, careers, etc.
S020: "overflow" input fields S020: "overflow" input fields
S050: Benefit descriptions and pages (M030) S050: Benefit descriptions and pages (M030)
@ -22,15 +25,13 @@ tags: [Version 0.2 beta]
S090: Fill Arcane Tradition S090: Fill Arcane Tradition
S110: Connections descriptions and pages (M080) S110: Connections descriptions and pages (M080)
S160: Add Warcaster Armor etc. to Armor DB S160: Add Warcaster Armor etc. to Armor DB
S170: Worn Armor Widget S200: Add Benefits to Index
S180: Melee Weapon Widget
S190: Ranged Weapon Widget
Medium: Medium:
Done: M020: Skill DB Done: M020: Skill DB
M010: Armor DB [Done for regular armor] M010: Armor DB [Done for regular armor]
M030: Benefit DB M030: Benefit DB (S200)
M040: Ability DB M040: Ability DB [Done for all names]
M050: Melee Weapon DB [Done for Core Rules] M050: Melee Weapon DB [Done for Core Rules]
M060: Ranged Weapon DB [Done for Code Rules] M060: Ranged Weapon DB [Done for Code Rules]
M070: Gear DB M070: Gear DB
@ -49,9 +50,11 @@ tags: [Version 0.2 beta]
C030: Mechanika Widget (M090) C030: Mechanika Widget (M090)
C040: Runeplate Widget (M100) C040: Runeplate Widget (M100)
C050: Capacitor Widget (M110) C050: Capacitor Widget (M110)
C060: Steamjack Widget (M120) C060: Steamjack Widget (M120, C090)
C070: Riding Widget (M130) C070: Riding Widget (M130, C100)
C080: Leveling C080: Leveling
C090: Steamjack Sheet
C100: Riding Sheet
Bugs: Bugs:
Done: B030: Is computed-SPD stored in save()? Done: B030: Is computed-SPD stored in save()?
@ -787,6 +790,7 @@ tags: [Version 0.2 beta]
<li>It automatically enters all values for the chosen races, castes, archetypes, careers, and adventuring companies</li> <li>It automatically enters all values for the chosen races, castes, archetypes, careers, and adventuring companies</li>
<li>It automatically computes DEF, ARM, Initiative, Command Range, Willpower, MAT, P+S, RAT, and Skill totals</li> <li>It automatically computes DEF, ARM, Initiative, Command Range, Willpower, MAT, P+S, RAT, and Skill totals</li>
<li>It automatically fills out spell, skill, ranged weapon, melee weapon, and worn armor data (we use the respective names from our index!)</li> <li>It automatically fills out spell, skill, ranged weapon, melee weapon, and worn armor data (we use the respective names from our index!)</li>
<li>It autocompletes Ranged Weapons, Melee Weapons, Skills, Abilities, Worn Armor, and Spells.</li>
<li>The beta only supports the entries of the FMF Core Rules</li> <li>The beta only supports the entries of the FMF Core Rules</li>
</ul> </ul>
</p> </p>

View file

@ -167,7 +167,8 @@ tags: [ Version 4 ]
<li>Fill out all values online.</li> <li>Fill out all values online.</li>
<li>Save and load your heroes in your browser (until you clear the cache).</li> <li>Save and load your heroes in your browser (until you clear the cache).</li>
<li>Basic character generator that includes all data from the FMF Core Rules.</li> <li>Basic character generator that includes all data from the FMF Core Rules.</li>
<li>computes DEF, ARM, Initiative, Command Range, Willpower, MAT, P+S, RAT, and Skill totals</li> <li>Computes DEF, ARM, Initiative, Command Range, Willpower, MAT, P+S, RAT, and Skill totals</li>
<li>Autocompletion for Ranged Weapons, Melee Weapons, Skills, Abilities, Worn Armor, and Spells.</li>
<li>automatically fills out ranged weapon, melee weapon, and worn armor data (we use the respective names from our index!)</li> <li>automatically fills out ranged weapon, melee weapon, and worn armor data (we use the respective names from our index!)</li>
</ul> </ul>

View file

@ -718,7 +718,7 @@ var ikrpg = ikrpg || {};
})(); })();
// ## Benefits DB ##\\ // ## Benefits DB ##\\ [empty]
(function() { (function() {
var benefitsDB = {}; var benefitsDB = {};
@ -727,7 +727,7 @@ var ikrpg = ikrpg || {};
})(); })();
// ## Abilities DB ## \\ // ## Abilities DB ## \\ [only names]
(function() { (function() {
var abilitiesDB = { var abilitiesDB = {
@ -2810,6 +2810,7 @@ var ikrpg = ikrpg || {};
"Sorcerer (Storm) (FMF)": [ "Sorcerer (Storm) (FMF)": [
listItem(_careers, "Sorcerer (Storm)"), listItem(_careers, "Sorcerer (Storm)"),
number(_SPD, 1), number(_SPD, 1),
number(_SPD_max, 1),
choices(arrayPairs(_military_skills, [ choices(arrayPairs(_military_skills, [
"Archery", "Archery",
"Crossbow", "Crossbow",

View file

@ -317,6 +317,10 @@ ul.ui-autocomplete li.ui-state-focus {
cursor: pointer; cursor: pointer;
} }
.ui-helper-hidden-accessible {
display: none;
}
@media print { @media print {
html { zoom: 140%; } html { zoom: 140%; }