From 068f836e82b3186e63b4e9f5c2c7b735cbaff53e Mon Sep 17 00:00:00 2001 From: Yord Date: Tue, 29 Sep 2015 12:20:25 +0200 Subject: [PATCH] Added more description. --- _posts/0000-01-01-Character-Generator.html | 18 +++++++++++------- index.html | 3 ++- static/javascripts/generator.js | 5 +++-- static/stylesheets/content/generator.css | 4 ++++ 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/_posts/0000-01-01-Character-Generator.html b/_posts/0000-01-01-Character-Generator.html index 659de60..71379fe 100644 --- a/_posts/0000-01-01-Character-Generator.html +++ b/_posts/0000-01-01-Character-Generator.html @@ -15,6 +15,9 @@ tags: [Version 0.2 beta] Done: S130: Use Skill DB on change of Skill name/value (M020) Done: S140: Use Spell DB on change of Spell name (M160) 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. S020: "overflow" input fields S050: Benefit descriptions and pages (M030) @@ -22,15 +25,13 @@ tags: [Version 0.2 beta] S090: Fill Arcane Tradition S110: Connections descriptions and pages (M080) S160: Add Warcaster Armor etc. to Armor DB - S170: Worn Armor Widget - S180: Melee Weapon Widget - S190: Ranged Weapon Widget + S200: Add Benefits to Index Medium: Done: M020: Skill DB M010: Armor DB [Done for regular armor] - M030: Benefit DB - M040: Ability DB + M030: Benefit DB (S200) + M040: Ability DB [Done for all names] M050: Melee Weapon DB [Done for Core Rules] M060: Ranged Weapon DB [Done for Code Rules] M070: Gear DB @@ -49,9 +50,11 @@ tags: [Version 0.2 beta] C030: Mechanika Widget (M090) C040: Runeplate Widget (M100) C050: Capacitor Widget (M110) - C060: Steamjack Widget (M120) - C070: Riding Widget (M130) + C060: Steamjack Widget (M120, C090) + C070: Riding Widget (M130, C100) C080: Leveling + C090: Steamjack Sheet + C100: Riding Sheet Bugs: Done: B030: Is computed-SPD stored in save()? @@ -787,6 +790,7 @@ tags: [Version 0.2 beta]
  • It automatically enters all values for the chosen races, castes, archetypes, careers, and adventuring companies
  • It automatically computes DEF, ARM, Initiative, Command Range, Willpower, MAT, P+S, RAT, and Skill totals
  • It automatically fills out spell, skill, ranged weapon, melee weapon, and worn armor data (we use the respective names from our index!)
  • +
  • It autocompletes Ranged Weapons, Melee Weapons, Skills, Abilities, Worn Armor, and Spells.
  • The beta only supports the entries of the FMF Core Rules
  • diff --git a/index.html b/index.html index b20fba5..8c0d60e 100644 --- a/index.html +++ b/index.html @@ -167,7 +167,8 @@ tags: [ Version 4 ]
  • Fill out all values online.
  • Save and load your heroes in your browser (until you clear the cache).
  • Basic character generator that includes all data from the FMF Core Rules.
  • -
  • computes DEF, ARM, Initiative, Command Range, Willpower, MAT, P+S, RAT, and Skill totals
  • +
  • Computes DEF, ARM, Initiative, Command Range, Willpower, MAT, P+S, RAT, and Skill totals
  • +
  • Autocompletion for Ranged Weapons, Melee Weapons, Skills, Abilities, Worn Armor, and Spells.
  • automatically fills out ranged weapon, melee weapon, and worn armor data (we use the respective names from our index!)
  • diff --git a/static/javascripts/generator.js b/static/javascripts/generator.js index ddc6493..93a214f 100644 --- a/static/javascripts/generator.js +++ b/static/javascripts/generator.js @@ -718,7 +718,7 @@ var ikrpg = ikrpg || {}; })(); - // ## Benefits DB ##\\ + // ## Benefits DB ##\\ [empty] (function() { var benefitsDB = {}; @@ -727,7 +727,7 @@ var ikrpg = ikrpg || {}; })(); - // ## Abilities DB ## \\ + // ## Abilities DB ## \\ [only names] (function() { var abilitiesDB = { @@ -2810,6 +2810,7 @@ var ikrpg = ikrpg || {}; "Sorcerer (Storm) (FMF)": [ listItem(_careers, "Sorcerer (Storm)"), number(_SPD, 1), + number(_SPD_max, 1), choices(arrayPairs(_military_skills, [ "Archery", "Crossbow", diff --git a/static/stylesheets/content/generator.css b/static/stylesheets/content/generator.css index 7790da6..7b07cf2 100644 --- a/static/stylesheets/content/generator.css +++ b/static/stylesheets/content/generator.css @@ -317,6 +317,10 @@ ul.ui-autocomplete li.ui-state-focus { cursor: pointer; } +.ui-helper-hidden-accessible { + display: none; +} + @media print { html { zoom: 140%; }