/src/run_rules.sh

https://github.com/devonjones/PSRD-Parser · Shell · 366 lines · 341 code · 9 blank · 16 comment · 0 complexity · 3125426e5e8126a073291801a4ac9fab MD5 · raw file

  1. #!/bin/bash
  2. set -e
  3. source ./dir.conf
  4. # OGL
  5. ./rules_parse.py -o $DATA_DIR -b "OGL" -t "OGL" $WEB_DIR/pathfinderRPG/prd/openGameLicense.html
  6. # Core Rulebook
  7. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Getting Started" $WEB_DIR/pathfinderRPG/prd/gettingStarted.html
  8. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Classes" $WEB_DIR/pathfinderRPG/prd/classes.html
  9. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Using Skills" $WEB_DIR/pathfinderRPG/prd/usingSkills.html
  10. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Skill Descriptions" $WEB_DIR/pathfinderRPG/prd/skillDescriptions.html
  11. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Equipment" $WEB_DIR/pathfinderRPG/prd/equipment.html
  12. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Additional Rules" $WEB_DIR/pathfinderRPG/prd/additionalRules.html
  13. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Combat" $WEB_DIR/pathfinderRPG/prd/combat.html
  14. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Magic" $WEB_DIR/pathfinderRPG/prd/magic.html
  15. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Prestige Classes" $WEB_DIR/pathfinderRPG/prd/prestigeClasses.html
  16. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Gamemastering" $WEB_DIR/pathfinderRPG/prd/gamemastering.html
  17. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Environment" $WEB_DIR/pathfinderRPG/prd/environment.html
  18. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Creating NPCs" $WEB_DIR/pathfinderRPG/prd/creatingNPCs.html
  19. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Magic Items" $WEB_DIR/pathfinderRPG/prd/magicItems.html
  20. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Glossary" $WEB_DIR/pathfinderRPG/prd/glossary.html
  21. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Armor" $WEB_DIR/pathfinderRPG/prd/magicItems/armor.html
  22. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Artifacts" $WEB_DIR/pathfinderRPG/prd/magicItems/artifacts.html
  23. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Cursed Items" $WEB_DIR/pathfinderRPG/prd/magicItems/cursedItems.html
  24. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Intelligent Items" $WEB_DIR/pathfinderRPG/prd/magicItems/intelligentItems.html
  25. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Magic Item Creation" $WEB_DIR/pathfinderRPG/prd/magicItems/magicItemCreation.html
  26. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Potions" $WEB_DIR/pathfinderRPG/prd/magicItems/potions.html
  27. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Rings" $WEB_DIR/pathfinderRPG/prd/magicItems/rings.html
  28. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Rods" $WEB_DIR/pathfinderRPG/prd/magicItems/rods.html
  29. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Scrolls" $WEB_DIR/pathfinderRPG/prd/magicItems/scrolls.html
  30. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Specific Cursed Items" $WEB_DIR/pathfinderRPG/prd/magicItems/specificCursedItems.html
  31. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Staves" $WEB_DIR/pathfinderRPG/prd/magicItems/staves.html
  32. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Wands" $WEB_DIR/pathfinderRPG/prd/magicItems/wands.html
  33. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Weapons" $WEB_DIR/pathfinderRPG/prd/magicItems/weapons.html
  34. ./rules_parse.py -o $DATA_DIR -b "Core Rulebook" -t "Wondrous Items" $WEB_DIR/pathfinderRPG/prd/magicItems/wondrousItems.html
  35. # Bestiary
  36. ./rules_parse.py -o $DATA_DIR -b "Bestiary" -t "Introduction" $WEB_DIR/pathfinderRPG/prd/monsters/introduction.html
  37. ./rules_parse.py -o $DATA_DIR -b "Bestiary" -t "Creature Types" $WEB_DIR/pathfinderRPG/prd/monsters/creatureTypes.html
  38. ./rules_parse.py -o $DATA_DIR -b "Bestiary" -t "Monster Advancement" $WEB_DIR/pathfinderRPG/prd/monsters/monsterAdvancement.html
  39. ./rules_parse.py -o $DATA_DIR -b "Bestiary" -t "Monster Cohorts" $WEB_DIR/pathfinderRPG/prd/monsters/monsterCohorts.html
  40. ./rules_parse.py -o $DATA_DIR -b "Bestiary" -t "Monster Creation" $WEB_DIR/pathfinderRPG/prd/monsters/monsterCreation.html
  41. ./rules_parse.py -o $DATA_DIR -b "Bestiary" -t "Monster Roles" $WEB_DIR/pathfinderRPG/prd/monsters/monsterRoles.html
  42. ./rules_parse.py -o $DATA_DIR -b "Bestiary" -t "Monster As PCs" $WEB_DIR/pathfinderRPG/prd/monsters/monstersAsPCs.html
  43. ./rules_parse.py -o $DATA_DIR -b "Bestiary" -t "Universal Monster Rules" $WEB_DIR/pathfinderRPG/prd/monsters/universalMonsterRules.html
  44. ./rules_parse.py -o $DATA_DIR -b "Bestiary" -t "Encounter Tables" $WEB_DIR/pathfinderRPG/prd/monsters/encounterTables.html
  45. # Bestiary 2
  46. #./rules_parse.py -o $DATA_DIR -b "Bestiary 2" -t "Monster Advancement" $WEB_DIR/pathfinderRPG/prd/additionalMonsters/monsterAdvancement.html
  47. #./rules_parse.py -o $DATA_DIR -b "Bestiary 2" -t "Universal Monster Rules" $WEB_DIR/pathfinderRPG/prd/additionalMonsters/universalMonsterRules.html
  48. #./rules_parse.py -o $DATA_DIR -b "Bestiary 2" -t "Creature Types" $WEB_DIR/pathfinderRPG/prd/additionalMonsters/creatureTypes.html
  49. #./rules_parse.py -o $DATA_DIR -b "Bestiary 2" -t "Monster Cohorts" $WEB_DIR/pathfinderRPG/prd/additionalMonsters/monsterCohorts.html
  50. # Bestiary 3
  51. #./rules_parse.py -o $DATA_DIR -b "Bestiary 3" -t "Creature Types" $WEB_DIR/pathfinderRPG/prd/bestiary3/creatureTypes.html
  52. #./rules_parse.py -o $DATA_DIR -b "Bestiary 3" -t "Monster Advancement" $WEB_DIR/pathfinderRPG/prd/bestiary3/monsterAdvancement.html
  53. #./rules_parse.py -o $DATA_DIR -b "Bestiary 3" -t "Monster Cohorts" $WEB_DIR/pathfinderRPG/prd/bestiary3/monsterCohorts.html
  54. #./rules_parse.py -o $DATA_DIR -b "Bestiary 3" -t "Universal Monster Rules" $WEB_DIR/pathfinderRPG/prd/bestiary3/universalMonsterRules.html
  55. # Advanced Class Guide
  56. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Hybrid Classes" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/hybridClasses.html
  57. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Designing Classes" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/designingClasses.html
  58. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Class Options" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/index.html
  59. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Alchemist" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/alchemist.html
  60. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Arcanist" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/arcanist.html
  61. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Barbarian" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/barbarian.html
  62. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Bard" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/bard.html
  63. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Bloodrager" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/bloodrager.html
  64. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Brawler" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/brawler.html
  65. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Cavalier" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/cavalier.html
  66. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Cleric" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/cleric.html
  67. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Druid" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/druid.html
  68. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Fighter" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/fighter.html
  69. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Gunslinger" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/gunslinger.html
  70. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Hunter" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/hunter.html
  71. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Inquisitor" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/inquisitor.html
  72. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Investigator" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/investigator.html
  73. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Magus" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/magus.html
  74. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Monk" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/monk.html
  75. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Oracle" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/oracle.html
  76. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Paladin" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/paladin.html
  77. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Ranger" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/ranger.html
  78. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Rogue" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/rogue.html
  79. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Shaman" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/shaman.html
  80. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Skald" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/skald.html
  81. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Slayer" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/slayer.html
  82. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Sorcerer" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/sorcerer.html
  83. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Summoner" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/summoner.html
  84. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Swashbuckler" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/swashbuckler.html
  85. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Warpriest" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/warpriest.html
  86. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Witch" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/witch.html
  87. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Wizard" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/classOptions/wizard.html
  88. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Adventuring Gear" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/adventuringGear.html
  89. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Alchemical Remedies" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/alchemicalRemedies.html
  90. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Alchemical Tools" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/alchemicalTools.html
  91. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Alchemical Weapons" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/alchemicalWeapons.html
  92. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Armor Special Abilities" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/armorSpecialAbilities.html
  93. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Gear" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/index.html
  94. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Rings" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/rings.html
  95. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Rods" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/rods.html
  96. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Specific Armors & Shields" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/specificArmorsShields.html
  97. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Specific Weapons" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/specificWeapons.html
  98. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Weapon Special Abilities" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/weaponSpecialAbilities.html
  99. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Staves" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/staves.html
  100. ./rules_parse.py -o $DATA_DIR -b "Advanced Class Guide" -t "Wondrous Items" $WEB_DIR/pathfinderRPG/prd/advancedClassGuide/gear/wondrousItems.html
  101. # Advanced Player's Guide
  102. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Races" $WEB_DIR/pathfinderRPG/prd/advanced/advancedRaces.html
  103. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Base Classes" $WEB_DIR/pathfinderRPG/prd/advanced/advancedBaseClasses.html
  104. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Core Classes" $WEB_DIR/pathfinderRPG/prd/advanced/advancedCoreClasses.html
  105. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Prestige Classes" $WEB_DIR/pathfinderRPG/prd/advanced/advancedPrestigeClasses.html
  106. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Barbarian" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/barbarian.html
  107. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Bard" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/bard.html
  108. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Cleric" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/cleric.html
  109. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Druid" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/druid.html
  110. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Fighter" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/fighter.html
  111. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Monk" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/monk.html
  112. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Paladin" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/paladin.html
  113. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Ranger" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/ranger.html
  114. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Rogue" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/rogue.html
  115. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Sorcerer" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/sorcerer.html
  116. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Wizard" $WEB_DIR/pathfinderRPG/prd/advanced/coreClasses/wizard.html
  117. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Gear" $WEB_DIR/pathfinderRPG/prd/advanced/advancedGear.html
  118. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "New Rules" $WEB_DIR/pathfinderRPG/prd/advanced/advancedNewRules.html
  119. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Magic Items" $WEB_DIR/pathfinderRPG/prd/advanced/advancedMagicItems.html
  120. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Armor" $WEB_DIR/pathfinderRPG/prd/advanced/magicItems/armor.html
  121. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Cursed Items" $WEB_DIR/pathfinderRPG/prd/advanced/magicItems/cursedItems.html
  122. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Major Artifacts" $WEB_DIR/pathfinderRPG/prd/advanced/magicItems/majorArtifacts.html
  123. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Minor Artifacts" $WEB_DIR/pathfinderRPG/prd/advanced/magicItems/minorArtifacts.html
  124. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Rings" $WEB_DIR/pathfinderRPG/prd/advanced/magicItems/rings.html
  125. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Rods" $WEB_DIR/pathfinderRPG/prd/advanced/magicItems/rods.html
  126. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Staves" $WEB_DIR/pathfinderRPG/prd/advanced/magicItems/staves.html
  127. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Weapons" $WEB_DIR/pathfinderRPG/prd/advanced/magicItems/weapons.html
  128. ./rules_parse.py -o $DATA_DIR -b "Advanced Player's Guide" -t "Wondrous Items" $WEB_DIR/pathfinderRPG/prd/advanced/magicItems/wondrousItems.html
  129. # Ultimate Magic
  130. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Spellcasting Class Options" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions.html
  131. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Alchemist" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/alchemist.html
  132. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Bard" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/bard.html
  133. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Cleric" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/cleric.html
  134. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Druid" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/druid.html
  135. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Inquisitor" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/inquisitor.html
  136. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Magus" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/magus.html
  137. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Monk" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/monk.html
  138. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Oracle" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/oracle.html
  139. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Paladin" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/paladin.html
  140. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Ranger" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/ranger.html
  141. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Sorcerer" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/sorcerer.html
  142. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Summoner" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/summoner.html
  143. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Witch" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/witch.html
  144. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Wizard" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/spellcastingClassOptions/wizard.html
  145. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Updates" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/ultimateMagicAppendices.html
  146. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Words of Power" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/ultimateMagicWordsOfPower.html
  147. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Class Word Lists" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/classWordLists.html
  148. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Effect Words" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectwords.html
  149. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Meta Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/metawords.html
  150. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Target Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/targetwords.html
  151. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Acid Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/acidWords.html
  152. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Alignment Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/alignmentWords.html
  153. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Animal Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/animalWords.html
  154. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Armor Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/armorWords.html
  155. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Binding Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/bindingWords.html
  156. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Body Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/bodyWords.html
  157. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Change Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/changeWords.html
  158. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Cold Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/coldWords.html
  159. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Command Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/commandWords.html
  160. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Concealing Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/concealingWords.html
  161. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Death Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/deathWords.html
  162. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Destruction Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/destructionWords.html
  163. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Detection Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/detectionWords.html
  164. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Dispelling Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/dispellingWords.html
  165. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Divination Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/divinationWords.html
  166. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Electricity Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/electricityWords.html
  167. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Fear Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/fearWords.html
  168. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Fire Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/fireWords.html
  169. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Flight Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/flightWords.html
  170. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Force Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/forceWords.html
  171. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Gravity Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/gravityWords.html
  172. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Healing Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/healingWords.html
  173. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Illumination Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/illuminationWords.html
  174. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Illusion Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/illusionWords.html
  175. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Language Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/languageWords.html
  176. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Life Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/lifeWords.html
  177. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Pain Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/painWords.html
  178. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Power Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/powerWords.html
  179. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Sonic Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/sonicWords.html
  180. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Summoning Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/summoningWords.html
  181. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Teleportation Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/teleportationWords.html
  182. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Time Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/timeWords.html
  183. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Wall Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/wallWords.html
  184. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Weather Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/weatherWords.html
  185. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Wounding Words" -n $WEB_DIR/pathfinderRPG/prd/ultimateMagic/wordsOfPower/effectWords/woundingWords.html
  186. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Mastering Magic" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/magic/introduction.html
  187. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Spellblights" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/magic/spellblights.html
  188. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Spell Duels" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/magic/spellDuels.html
  189. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Binding Outsiders" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/magic/bindingOutsiders.html
  190. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Building and Modifying Constructs" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/magic/buildingAndModifyingConstructs.html
  191. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Spellbooks" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/magic/spellbooks.html
  192. ./rules_parse.py -o $DATA_DIR -b "Ultimate Magic" -t "Designing Spells" $WEB_DIR/pathfinderRPG/prd/ultimateMagic/magic/designingSpells.html
  193. # Ultimate Combat
  194. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Class Archetypes" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes.html
  195. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Alchemist" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/alchemist.html
  196. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Barbarian" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/barbarian.html
  197. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Bard" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/bard.html
  198. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Cavalier" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/cavalier.html
  199. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Cleric" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/cleric.html
  200. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Druid" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/druid.html
  201. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Fighter" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/fighter.html
  202. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Gunslinger" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/gunslinger.html
  203. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Inquisitor" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/inquisitor.html
  204. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Magus" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/magus.html
  205. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Monk" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/monk.html
  206. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Paladin" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/paladin.html
  207. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Ranger" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/ranger.html
  208. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Rogue" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/rogue.html
  209. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Wizard" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/classArchetypes/wizard.html
  210. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Mastering Combat" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/combat/introduction.html
  211. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Eastern Armor and Weapons" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/combat/easternArmorAndWeapons.html
  212. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Firearms" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/combat/firearms.html
  213. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Gladiator Weapons" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/combat/gladiatorWeapons.html
  214. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Primitive Armor and Weapons" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/combat/primitiveArmorAndWeapons.html
  215. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Duels" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/combat/duels.html
  216. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Performance Combat" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/combat/performanceCombat.html
  217. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Siege Engines" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/combat/siegeEngines.html
  218. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Vehicles" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/ultimateCombatVehicles.html
  219. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Variant Rules" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/variants/introduction.html
  220. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Armor as Damage Reduction" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/variants/armorAsDamageReduction.html
  221. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Called Shots" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/variants/calledShots.html
  222. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Piecemeal Armor" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/variants/piecemealArmor.html
  223. ./rules_parse.py -o $DATA_DIR -b "Ultimate Combat" -t "Wounds and Vigor" $WEB_DIR/pathfinderRPG/prd/ultimateCombat/variants/woundsAndVigor.html
  224. # Ultimate Campaign
  225. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Character Background" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/characterBackground.html
  226. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Early Life" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/characterBackground/earlyLife.html
  227. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Adolescence" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/characterBackground/adolescence.html
  228. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Adulthood" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/characterBackground/adulthood.html
  229. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Background Generator" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/characterBackground/backgroundGenerator.html
  230. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Traits" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/characterBackground/traits.html
  231. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Downtime" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/downtime.html
  232. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Downtime Activities" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/downtime/downtimeActivities.html
  233. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Managers" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/downtime/managers.html
  234. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Rooms And Teams" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/downtime/roomsAndTeams.html
  235. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Buildings And Organizations" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/downtime/buildingsAndOrganizations.html
  236. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Downtime Events" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/downtime/downtimeEvents.html
  237. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Campaign Systems" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems.html
  238. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Alignment" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/alignment.html
  239. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Bargaining" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/bargaining.html
  240. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Companions" -n $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/companions.html
  241. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Contacts" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/contacts.html
  242. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Exploration" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/exploration.html
  243. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Honor" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/honor.html
  244. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Investment" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/investment.html
  245. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Lineage" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/lineage.html
  246. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Magic Item Creation" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/magicItemCreation.html
  247. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Relationships" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/relationships.html
  248. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Reputation And Fame" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/reputationAndFame.html
  249. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Retirement" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/retirement.html
  250. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Retraining" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/retraining.html
  251. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Taxation" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/taxation.html
  252. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Young Characters" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/campaignSystems/youngCharacters.html
  253. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Kingdoms And War" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/kingdomsAndWar.html
  254. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Kingdom Building" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/kingdomsAndWar/kingdomBuilding.html
  255. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Kingdom Turn Sequence" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/kingdomsAndWar/kingdomTurnSequence.html
  256. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Optional Kingdom Rules" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/kingdomsAndWar/optionalKingdomRules.html
  257. ./rules_parse.py -o $DATA_DIR -b "Ultimate Campaign" -t "Mass Combat" $WEB_DIR/pathfinderRPG/prd/ultimateCampaign/kingdomsAndWar/massCombat.html
  258. # Occult Adventures
  259. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Occult Classes" $WEB_DIR/pathfinderRPG/prd/occultAdventures/classes/index.html
  260. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Archetypes" $WEB_DIR/pathfinderRPG/prd/occultAdventures/archetypes/index.html
  261. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Kineticist" $WEB_DIR/pathfinderRPG/prd/occultAdventures/archetypes/kineticist.html
  262. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Medium" $WEB_DIR/pathfinderRPG/prd/occultAdventures/archetypes/medium.html
  263. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Mesmerist" $WEB_DIR/pathfinderRPG/prd/occultAdventures/archetypes/mesmerist.html
  264. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Occultist" $WEB_DIR/pathfinderRPG/prd/occultAdventures/archetypes/occultist.html
  265. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Other" $WEB_DIR/pathfinderRPG/prd/occultAdventures/archetypes/other.html
  266. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Psychic" $WEB_DIR/pathfinderRPG/prd/occultAdventures/archetypes/psychic.html
  267. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Spiritualist" $WEB_DIR/pathfinderRPG/prd/occultAdventures/archetypes/spiritualist.html
  268. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Occult Game" $WEB_DIR/pathfinderRPG/prd/occultAdventures/occultGame.html
  269. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Occult Rewards" $WEB_DIR/pathfinderRPG/prd/occultAdventures/occultRewards.html
  270. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Occult Rules" $WEB_DIR/pathfinderRPG/prd/occultAdventures/occultRules.html
  271. ./rules_parse.py -o $DATA_DIR -b "Occult Adventures" -t "Psychic Magic" $WEB_DIR/pathfinderRPG/prd/occultAdventures/psychicMagic.html
  272. # Pathfinder Unchained
  273. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Classes" $WEB_DIR/pathfinderRPG/prd/unchained/classes/index.html
  274. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Barbarian" $WEB_DIR/pathfinderRPG/prd/unchained/classes/barbarian.html
  275. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Monk" $WEB_DIR/pathfinderRPG/prd/unchained/classes/monk.html
  276. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Rogue" $WEB_DIR/pathfinderRPG/prd/unchained/classes/rogue.html
  277. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Summoner" $WEB_DIR/pathfinderRPG/prd/unchained/classes/summoner.html
  278. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Gameplay" $WEB_DIR/pathfinderRPG/prd/unchained/gameplay/index.html
  279. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Alignment" $WEB_DIR/pathfinderRPG/prd/unchained/gameplay/alignment.html
  280. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Combat Tactics" $WEB_DIR/pathfinderRPG/prd/unchained/gameplay/combatTactics.html
  281. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Disease And Poison" $WEB_DIR/pathfinderRPG/prd/unchained/gameplay/diseaseAndPoison.html
  282. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Removing Alignment" $WEB_DIR/pathfinderRPG/prd/unchained/gameplay/removingAlignment.html
  283. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Replacing Iterative Attacks" $WEB_DIR/pathfinderRPG/prd/unchained/gameplay/replacingIterativeAttacks.html
  284. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Revised Action Economy" $WEB_DIR/pathfinderRPG/prd/unchained/gameplay/revisedActionEconomy.html
  285. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "WoundLevels" $WEB_DIR/pathfinderRPG/prd/unchained/gameplay/woundLevels.html
  286. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Magic" $WEB_DIR/pathfinderRPG/prd/unchained/magic/index.html
  287. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Automatic Bonus Progression" $WEB_DIR/pathfinderRPG/prd/unchained/magic/automaticBonusProgression.html
  288. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Dynamic Magic Item Creation" $WEB_DIR/pathfinderRPG/prd/unchained/magic/dynamicMagicItemCreation.html
  289. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Esoteric Material Components" $WEB_DIR/pathfinderRPG/prd/unchained/magic/esotericMaterialComponents.html
  290. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Innate Item Bonuses" $WEB_DIR/pathfinderRPG/prd/unchained/magic/innateItemBonuses.html
  291. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Scaling Items" $WEB_DIR/pathfinderRPG/prd/unchained/magic/scalingItems.html
  292. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Simplified Spellcasting" $WEB_DIR/pathfinderRPG/prd/unchained/magic/simplifiedSpellcasting.html
  293. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Spell Alterations" $WEB_DIR/pathfinderRPG/prd/unchained/magic/spellAlterations.html
  294. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Monsters" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/index.html
  295. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Monster Creation Examples" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/monsterCreationExamples.html
  296. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Step 1" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/step1.html
  297. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Step 2" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/step2.html
  298. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Step 3" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/step3.html
  299. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Step 4" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/step4.html
  300. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Step 5" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/step5.html
  301. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Step 6" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/step6.html
  302. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Step 7" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/step7.html
  303. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Step 8" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/step8.html
  304. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Step 9" $WEB_DIR/pathfinderRPG/prd/unchained/monsters/step9.html
  305. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Skills And Options" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/index.html
  306. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Background Skills" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/backgroundSkills.html
  307. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Crafting And Profession" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/craftingAndProfession.html
  308. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Grouped Skills" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/groupedSkills.html
  309. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Skill Unlocks" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/skillUnlocks.html
  310. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Variant Multiclassing" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/variantMulticlassing.html
  311. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Consolidated Skills" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/index.html
  312. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Acrobatics" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/acrobatics.html
  313. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Athletics" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/athletics.html
  314. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Finesse" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/finesse.html
  315. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Influence" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/influence.html
  316. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Nature" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/nature.html
  317. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Perception" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/perception.html
  318. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Performance" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/performance.html
  319. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Religion" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/religion.html
  320. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Society" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/society.html
  321. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Spellcraft" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/spellcraft.html
  322. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Stealth" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/stealth.html
  323. ./rules_parse.py -o $DATA_DIR -b "Pathfinder Unchained" -t "Survival" $WEB_DIR/pathfinderRPG/prd/unchained/skillsAndOptions/consolidatedSkills/survival.html
  324. # Game Mastery Guide
  325. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "Chases" $WEB_DIR/pathfinderRPG/prd/mastery/chases.html
  326. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "Disasters" $WEB_DIR/pathfinderRPG/prd/mastery/disasters.html
  327. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "Drugs and Addiction" $WEB_DIR/pathfinderRPG/prd/mastery/drugsAndAddiction.html
  328. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "Fast Play Ship Combat" $WEB_DIR/pathfinderRPG/prd/mastery/fastPlayShipCombat.html
  329. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "Haunts" $WEB_DIR/pathfinderRPG/prd/mastery/haunts.html
  330. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "Hazards" $WEB_DIR/pathfinderRPG/prd/mastery/hazards.html
  331. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "NPC Boons" $WEB_DIR/pathfinderRPG/prd/mastery/npcBoons.html
  332. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "NPC Gallery" $WEB_DIR/pathfinderRPG/prd/mastery/npcGallery.html
  333. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "Planar Adventures" $WEB_DIR/pathfinderRPG/prd/mastery/planarAdventures.html
  334. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "Sanity and Madness" $WEB_DIR/pathfinderRPG/prd/mastery/sanityAndMadness.html
  335. ./rules_parse.py -o $DATA_DIR -b "Game Mastery Guide" -t "Settlements" $WEB_DIR/pathfinderRPG/prd/mastery/settlements.html
  336. # Advanced Race Guide
  337. ./rules_parse.py -o $DATA_DIR -b "Advanced Race Guide" -t "Age, Height & Weight" $WEB_DIR/pathfinderRPG/prd/advancedRaceGuide/ageHeightWeight.html
  338. ./rules_parse.py -o $DATA_DIR -b "Advanced Race Guide" -t "Core Races" $WEB_DIR/pathfinderRPG/prd/advancedRaceGuide/coreRaces.html
  339. ./rules_parse.py -o $DATA_DIR -b "Advanced Race Guide" -t "Featured Races" $WEB_DIR/pathfinderRPG/prd/advancedRaceGuide/featuredRaces.html
  340. ./rules_parse.py -o $DATA_DIR -b "Advanced Race Guide" -t "Race Builder" $WEB_DIR/pathfinderRPG/prd/advancedRaceGuide/raceBuilder.html
  341. ./rules_parse.py -o $DATA_DIR -b "Advanced Race Guide" -t "Uncommon Races" $WEB_DIR/pathfinderRPG/prd/advancedRaceGuide/u