@optolith/database-schema 0.42.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (488) hide show
  1. package/AUTHORS +1 -0
  2. package/CHANGELOG.md +1789 -0
  3. package/LICENSE +378 -0
  4. package/README.md +34 -0
  5. package/gen/types.d.ts +24682 -0
  6. package/lib/cache/activatableSelectOptions.d.ts +18 -0
  7. package/lib/cache/activatableSelectOptions.js +762 -0
  8. package/lib/cache/ancestorBloodAdvantages.d.ts +4 -0
  9. package/lib/cache/ancestorBloodAdvantages.js +13 -0
  10. package/lib/cache/index.d.ts +31 -0
  11. package/lib/cache/index.js +22 -0
  12. package/lib/cache/internal.d.ts +4 -0
  13. package/lib/cache/internal.js +1 -0
  14. package/lib/cache/magicalAndBlessedAdvantagesAndDisadvantages.d.ts +3 -0
  15. package/lib/cache/magicalAndBlessedAdvantagesAndDisadvantages.js +103 -0
  16. package/lib/cache/newApplicationsAndUses.d.ts +22 -0
  17. package/lib/cache/newApplicationsAndUses.js +12 -0
  18. package/lib/main.d.ts +17 -0
  19. package/lib/main.js +226 -0
  20. package/lib/test.d.ts +1 -0
  21. package/lib/test.js +11 -0
  22. package/lib/types/Advantage.d.ts +1193 -0
  23. package/lib/types/Advantage.js +58 -0
  24. package/lib/types/AnimalDisease.d.ts +91 -0
  25. package/lib/types/AnimalDisease.js +35 -0
  26. package/lib/types/AnimalType.d.ts +6 -0
  27. package/lib/types/AnimalType.js +21 -0
  28. package/lib/types/ArcaneBardTradition.d.ts +30 -0
  29. package/lib/types/ArcaneBardTradition.js +14 -0
  30. package/lib/types/ArcaneDancerTradition.d.ts +30 -0
  31. package/lib/types/ArcaneDancerTradition.js +14 -0
  32. package/lib/types/Aspect.d.ts +7 -0
  33. package/lib/types/Aspect.js +27 -0
  34. package/lib/types/Attribute.d.ts +19 -0
  35. package/lib/types/Attribute.js +49 -0
  36. package/lib/types/Blessing.d.ts +106 -0
  37. package/lib/types/Blessing.js +102 -0
  38. package/lib/types/Cantrip.d.ts +134 -0
  39. package/lib/types/Cantrip.js +166 -0
  40. package/lib/types/Ceremony.d.ts +685 -0
  41. package/lib/types/Ceremony.js +94 -0
  42. package/lib/types/CombatTechnique.d.ts +153 -0
  43. package/lib/types/CombatTechnique.js +133 -0
  44. package/lib/types/Condition.d.ts +53 -0
  45. package/lib/types/Condition.js +38 -0
  46. package/lib/types/Continent.d.ts +6 -0
  47. package/lib/types/Continent.js +22 -0
  48. package/lib/types/Culture.d.ts +158 -0
  49. package/lib/types/Culture.js +374 -0
  50. package/lib/types/DerivedCharacteristic.d.ts +267 -0
  51. package/lib/types/DerivedCharacteristic.js +227 -0
  52. package/lib/types/Disadvantage.d.ts +1120 -0
  53. package/lib/types/Disadvantage.js +59 -0
  54. package/lib/types/Disease.d.ts +111 -0
  55. package/lib/types/Disease.js +35 -0
  56. package/lib/types/Element.d.ts +6 -0
  57. package/lib/types/Element.js +21 -0
  58. package/lib/types/ExperienceLevel.d.ts +13 -0
  59. package/lib/types/ExperienceLevel.js +56 -0
  60. package/lib/types/EyeColor.d.ts +6 -0
  61. package/lib/types/EyeColor.js +21 -0
  62. package/lib/types/FamiliarsTrick.d.ts +192 -0
  63. package/lib/types/FamiliarsTrick.js +202 -0
  64. package/lib/types/HairColor.d.ts +6 -0
  65. package/lib/types/HairColor.js +21 -0
  66. package/lib/types/HomunculusType.d.ts +6 -0
  67. package/lib/types/HomunculusType.js +15 -0
  68. package/lib/types/Influence.d.ts +80 -0
  69. package/lib/types/Influence.js +52 -0
  70. package/lib/types/Lessons.d.ts +181 -0
  71. package/lib/types/Lessons.js +230 -0
  72. package/lib/types/LiturgicalChant.d.ts +685 -0
  73. package/lib/types/LiturgicalChant.js +94 -0
  74. package/lib/types/Locale.d.ts +1607 -0
  75. package/lib/types/Locale.js +1747 -0
  76. package/lib/types/MetaCondition.d.ts +53 -0
  77. package/lib/types/MetaCondition.js +39 -0
  78. package/lib/types/PactCategory.d.ts +75 -0
  79. package/lib/types/PactCategory.js +102 -0
  80. package/lib/types/Patron.d.ts +101 -0
  81. package/lib/types/Patron.js +203 -0
  82. package/lib/types/PatronCategory.d.ts +7 -0
  83. package/lib/types/PatronCategory.js +26 -0
  84. package/lib/types/PersonalityTrait.d.ts +81 -0
  85. package/lib/types/PersonalityTrait.js +58 -0
  86. package/lib/types/Profession.d.ts +2120 -0
  87. package/lib/types/Profession.js +631 -0
  88. package/lib/types/Property.d.ts +7 -0
  89. package/lib/types/Property.js +26 -0
  90. package/lib/types/Race.d.ts +207 -0
  91. package/lib/types/Race.js +332 -0
  92. package/lib/types/Region.d.ts +6 -0
  93. package/lib/types/Region.js +21 -0
  94. package/lib/types/Ritual.d.ts +688 -0
  95. package/lib/types/Ritual.js +96 -0
  96. package/lib/types/Service.d.ts +56 -0
  97. package/lib/types/Service.js +45 -0
  98. package/lib/types/SexPractice.d.ts +51 -0
  99. package/lib/types/SexPractice.js +39 -0
  100. package/lib/types/Skill.d.ts +116 -0
  101. package/lib/types/Skill.js +139 -0
  102. package/lib/types/SkillGroup.d.ts +17 -0
  103. package/lib/types/SkillGroup.js +45 -0
  104. package/lib/types/SkillModificationLevel.d.ts +34 -0
  105. package/lib/types/SkillModificationLevel.js +116 -0
  106. package/lib/types/SocialStatus.d.ts +7 -0
  107. package/lib/types/SocialStatus.js +26 -0
  108. package/lib/types/Spell.d.ts +688 -0
  109. package/lib/types/Spell.js +96 -0
  110. package/lib/types/State.d.ts +52 -0
  111. package/lib/types/State.js +31 -0
  112. package/lib/types/Talisman.d.ts +135 -0
  113. package/lib/types/Talisman.js +168 -0
  114. package/lib/types/TargetCategory.d.ts +7 -0
  115. package/lib/types/TargetCategory.js +26 -0
  116. package/lib/types/_Activatable.d.ts +12 -0
  117. package/lib/types/_Activatable.js +43 -0
  118. package/lib/types/_ActivatableAdvanced.d.ts +50 -0
  119. package/lib/types/_ActivatableAdvanced.js +101 -0
  120. package/lib/types/_ActivatableAdventurePointsValue.d.ts +159 -0
  121. package/lib/types/_ActivatableAdventurePointsValue.js +148 -0
  122. package/lib/types/_ActivatableAutomatic.d.ts +74 -0
  123. package/lib/types/_ActivatableAutomatic.js +64 -0
  124. package/lib/types/_ActivatableCombat.d.ts +123 -0
  125. package/lib/types/_ActivatableCombat.js +350 -0
  126. package/lib/types/_ActivatableNames.d.ts +15 -0
  127. package/lib/types/_ActivatableNames.js +26 -0
  128. package/lib/types/_ActivatableNonMundane.d.ts +387 -0
  129. package/lib/types/_ActivatableNonMundane.js +536 -0
  130. package/lib/types/_ActivatableSelectOptionCategory.d.ts +1380 -0
  131. package/lib/types/_ActivatableSelectOptionCategory.js +478 -0
  132. package/lib/types/_ActivatableSelectOptions.d.ts +1077 -0
  133. package/lib/types/_ActivatableSelectOptions.js +218 -0
  134. package/lib/types/_ActivatableSkill.d.ts +1231 -0
  135. package/lib/types/_ActivatableSkill.js +89 -0
  136. package/lib/types/_ActivatableSkillApplicationsAndUses.d.ts +109 -0
  137. package/lib/types/_ActivatableSkillApplicationsAndUses.js +80 -0
  138. package/lib/types/_ActivatableSkillCastingTime.d.ts +66 -0
  139. package/lib/types/_ActivatableSkillCastingTime.js +92 -0
  140. package/lib/types/_ActivatableSkillCheckResultBased.d.ts +27 -0
  141. package/lib/types/_ActivatableSkillCheckResultBased.js +45 -0
  142. package/lib/types/_ActivatableSkillCost.d.ts +366 -0
  143. package/lib/types/_ActivatableSkillCost.js +280 -0
  144. package/lib/types/_ActivatableSkillDuration.d.ts +204 -0
  145. package/lib/types/_ActivatableSkillDuration.js +138 -0
  146. package/lib/types/_ActivatableSkillEffect.d.ts +16 -0
  147. package/lib/types/_ActivatableSkillEffect.js +65 -0
  148. package/lib/types/_ActivatableSkillRange.d.ts +62 -0
  149. package/lib/types/_ActivatableSkillRange.js +106 -0
  150. package/lib/types/_ActivatableSkillTargetCategory.d.ts +14 -0
  151. package/lib/types/_ActivatableSkillTargetCategory.js +30 -0
  152. package/lib/types/_AlternativeNames.d.ts +5 -0
  153. package/lib/types/_AlternativeNames.js +14 -0
  154. package/lib/types/_ArcaneTradition.d.ts +30 -0
  155. package/lib/types/_ArcaneTradition.js +14 -0
  156. package/lib/types/_Blessed.d.ts +8 -0
  157. package/lib/types/_Blessed.js +22 -0
  158. package/lib/types/_Color.d.ts +19 -0
  159. package/lib/types/_Color.js +27 -0
  160. package/lib/types/_CommonnessRatedAdvantageDisadvantage.d.ts +7 -0
  161. package/lib/types/_CommonnessRatedAdvantageDisadvantage.js +19 -0
  162. package/lib/types/_Dice.d.ts +6 -0
  163. package/lib/types/_Dice.js +23 -0
  164. package/lib/types/_DiseasePoison.d.ts +59 -0
  165. package/lib/types/_DiseasePoison.js +110 -0
  166. package/lib/types/_Enhancements.d.ts +170 -0
  167. package/lib/types/_Enhancements.js +80 -0
  168. package/lib/types/_Identifier.d.ts +170 -0
  169. package/lib/types/_Identifier.js +325 -0
  170. package/lib/types/_IdentifierGroup.d.ts +413 -0
  171. package/lib/types/_IdentifierGroup.js +333 -0
  172. package/lib/types/_ImprovementCost.d.ts +7 -0
  173. package/lib/types/_ImprovementCost.js +10 -0
  174. package/lib/types/_MathExpression.d.ts +12 -0
  175. package/lib/types/_MathExpression.js +36 -0
  176. package/lib/types/_Prerequisite.d.ts +421 -0
  177. package/lib/types/_Prerequisite.js +163 -0
  178. package/lib/types/_ResponsiveText.d.ts +13 -0
  179. package/lib/types/_ResponsiveText.js +43 -0
  180. package/lib/types/_Sex.d.ts +5 -0
  181. package/lib/types/_Sex.js +8 -0
  182. package/lib/types/_SizeCategory.d.ts +15 -0
  183. package/lib/types/_SizeCategory.js +24 -0
  184. package/lib/types/_SkillCheck.d.ts +11 -0
  185. package/lib/types/_SkillCheck.js +23 -0
  186. package/lib/types/_Spellwork.d.ts +17 -0
  187. package/lib/types/_Spellwork.js +39 -0
  188. package/lib/types/equipment/EquipmentPackage.d.ts +85 -0
  189. package/lib/types/equipment/EquipmentPackage.js +41 -0
  190. package/lib/types/equipment/item/Ammunition.d.ts +72 -0
  191. package/lib/types/equipment/item/Ammunition.js +44 -0
  192. package/lib/types/equipment/item/Animal.d.ts +72 -0
  193. package/lib/types/equipment/item/Animal.js +22 -0
  194. package/lib/types/equipment/item/AnimalCare.d.ts +87 -0
  195. package/lib/types/equipment/item/AnimalCare.js +58 -0
  196. package/lib/types/equipment/item/Armor.d.ts +166 -0
  197. package/lib/types/equipment/item/Armor.js +181 -0
  198. package/lib/types/equipment/item/BandageOrRemedy.d.ts +201 -0
  199. package/lib/types/equipment/item/BandageOrRemedy.js +48 -0
  200. package/lib/types/equipment/item/Book.d.ts +169 -0
  201. package/lib/types/equipment/item/Book.js +271 -0
  202. package/lib/types/equipment/item/CeremonialItem.d.ts +202 -0
  203. package/lib/types/equipment/item/CeremonialItem.js +53 -0
  204. package/lib/types/equipment/item/Clothes.d.ts +201 -0
  205. package/lib/types/equipment/item/Clothes.js +48 -0
  206. package/lib/types/equipment/item/ClothingPackage.d.ts +63 -0
  207. package/lib/types/equipment/item/ClothingPackage.js +21 -0
  208. package/lib/types/equipment/item/Container.d.ts +201 -0
  209. package/lib/types/equipment/item/Container.js +48 -0
  210. package/lib/types/equipment/item/Elixir.d.ts +119 -0
  211. package/lib/types/equipment/item/Elixir.js +110 -0
  212. package/lib/types/equipment/item/EquipmentOfBlessedOnes.d.ts +215 -0
  213. package/lib/types/equipment/item/EquipmentOfBlessedOnes.js +44 -0
  214. package/lib/types/equipment/item/GemOrPreciousStone.d.ts +74 -0
  215. package/lib/types/equipment/item/GemOrPreciousStone.js +52 -0
  216. package/lib/types/equipment/item/IlluminationLightSource.d.ts +210 -0
  217. package/lib/types/equipment/item/IlluminationLightSource.js +78 -0
  218. package/lib/types/equipment/item/IlluminationRefillOrSupply.d.ts +201 -0
  219. package/lib/types/equipment/item/IlluminationRefillOrSupply.js +48 -0
  220. package/lib/types/equipment/item/Jewelry.d.ts +74 -0
  221. package/lib/types/equipment/item/Jewelry.js +46 -0
  222. package/lib/types/equipment/item/Laboratory.d.ts +81 -0
  223. package/lib/types/equipment/item/Laboratory.js +34 -0
  224. package/lib/types/equipment/item/Liebesspielzeug.d.ts +201 -0
  225. package/lib/types/equipment/item/Liebesspielzeug.js +48 -0
  226. package/lib/types/equipment/item/LuxuryGood.d.ts +201 -0
  227. package/lib/types/equipment/item/LuxuryGood.js +48 -0
  228. package/lib/types/equipment/item/MagicalArtifact.d.ts +204 -0
  229. package/lib/types/equipment/item/MagicalArtifact.js +82 -0
  230. package/lib/types/equipment/item/MusicalInstrument.d.ts +201 -0
  231. package/lib/types/equipment/item/MusicalInstrument.js +48 -0
  232. package/lib/types/equipment/item/Newspaper.d.ts +67 -0
  233. package/lib/types/equipment/item/Newspaper.js +36 -0
  234. package/lib/types/equipment/item/OrienteeringAid.d.ts +200 -0
  235. package/lib/types/equipment/item/OrienteeringAid.js +2 -0
  236. package/lib/types/equipment/item/Poison.d.ts +621 -0
  237. package/lib/types/equipment/item/Poison.js +486 -0
  238. package/lib/types/equipment/item/RopeOrChain.d.ts +200 -0
  239. package/lib/types/equipment/item/RopeOrChain.js +2 -0
  240. package/lib/types/equipment/item/Stationery.d.ts +200 -0
  241. package/lib/types/equipment/item/Stationery.js +2 -0
  242. package/lib/types/equipment/item/ThievesTool.d.ts +200 -0
  243. package/lib/types/equipment/item/ThievesTool.js +2 -0
  244. package/lib/types/equipment/item/ToolOfTheTrade.d.ts +83 -0
  245. package/lib/types/equipment/item/ToolOfTheTrade.js +34 -0
  246. package/lib/types/equipment/item/TravelGearOrTool.d.ts +201 -0
  247. package/lib/types/equipment/item/TravelGearOrTool.js +48 -0
  248. package/lib/types/equipment/item/Vehicle.d.ts +80 -0
  249. package/lib/types/equipment/item/Vehicle.js +30 -0
  250. package/lib/types/equipment/item/Weapon.d.ts +225 -0
  251. package/lib/types/equipment/item/Weapon.js +132 -0
  252. package/lib/types/equipment/item/WeaponAccessory.d.ts +201 -0
  253. package/lib/types/equipment/item/WeaponAccessory.js +48 -0
  254. package/lib/types/equipment/item/WorkingSupernaturalCreature.d.ts +72 -0
  255. package/lib/types/equipment/item/WorkingSupernaturalCreature.js +44 -0
  256. package/lib/types/equipment/item/_Herbary.d.ts +76 -0
  257. package/lib/types/equipment/item/_Herbary.js +48 -0
  258. package/lib/types/equipment/item/_Item.d.ts +414 -0
  259. package/lib/types/equipment/item/_Item.js +254 -0
  260. package/lib/types/equipment/item/_MeleeWeapon.d.ts +62 -0
  261. package/lib/types/equipment/item/_MeleeWeapon.js +100 -0
  262. package/lib/types/equipment/item/_RangedWeapon.d.ts +38 -0
  263. package/lib/types/equipment/item/_RangedWeapon.js +93 -0
  264. package/lib/types/equipment/item/_Weapon.d.ts +25 -0
  265. package/lib/types/equipment/item/_Weapon.js +77 -0
  266. package/lib/types/equipment/item/sub/ArmorType.d.ts +7 -0
  267. package/lib/types/equipment/item/sub/ArmorType.js +25 -0
  268. package/lib/types/equipment/item/sub/Reach.d.ts +7 -0
  269. package/lib/types/equipment/item/sub/Reach.js +28 -0
  270. package/lib/types/index.d.ts +160 -0
  271. package/lib/types/index.js +160 -0
  272. package/lib/types/magicalActions/AnimistPower.d.ts +302 -0
  273. package/lib/types/magicalActions/AnimistPower.js +204 -0
  274. package/lib/types/magicalActions/AnimistPower_Tribe.d.ts +30 -0
  275. package/lib/types/magicalActions/AnimistPower_Tribe.js +26 -0
  276. package/lib/types/magicalActions/Bannzeichen.d.ts +244 -0
  277. package/lib/types/magicalActions/Bannzeichen.js +231 -0
  278. package/lib/types/magicalActions/Curse.d.ts +219 -0
  279. package/lib/types/magicalActions/Curse.js +133 -0
  280. package/lib/types/magicalActions/DominationRitual.d.ts +204 -0
  281. package/lib/types/magicalActions/DominationRitual.js +133 -0
  282. package/lib/types/magicalActions/ElvenMagicalSong.d.ts +126 -0
  283. package/lib/types/magicalActions/ElvenMagicalSong.js +117 -0
  284. package/lib/types/magicalActions/GeodeRitual.d.ts +227 -0
  285. package/lib/types/magicalActions/GeodeRitual.js +142 -0
  286. package/lib/types/magicalActions/GoblinRitual.d.ts +286 -0
  287. package/lib/types/magicalActions/GoblinRitual.js +196 -0
  288. package/lib/types/magicalActions/JesterTrick.d.ts +305 -0
  289. package/lib/types/magicalActions/JesterTrick.js +160 -0
  290. package/lib/types/magicalActions/MagicalDance.d.ts +129 -0
  291. package/lib/types/magicalActions/MagicalDance.js +119 -0
  292. package/lib/types/magicalActions/MagicalMelody.d.ts +133 -0
  293. package/lib/types/magicalActions/MagicalMelody.js +123 -0
  294. package/lib/types/magicalActions/MagicalRune.d.ts +279 -0
  295. package/lib/types/magicalActions/MagicalRune.js +292 -0
  296. package/lib/types/magicalActions/ZibiljaRitual.d.ts +420 -0
  297. package/lib/types/magicalActions/ZibiljaRitual.js +90 -0
  298. package/lib/types/magicalActions/_MusicTradition.d.ts +17 -0
  299. package/lib/types/magicalActions/_MusicTradition.js +43 -0
  300. package/lib/types/prerequisites/ConditionalPrerequisites.d.ts +42 -0
  301. package/lib/types/prerequisites/ConditionalPrerequisites.js +9 -0
  302. package/lib/types/prerequisites/DisplayOption.d.ts +13 -0
  303. package/lib/types/prerequisites/DisplayOption.js +27 -0
  304. package/lib/types/prerequisites/PrerequisiteGroups.d.ts +2053 -0
  305. package/lib/types/prerequisites/PrerequisiteGroups.js +180 -0
  306. package/lib/types/prerequisites/single/ActivatablePrerequisite.d.ts +133 -0
  307. package/lib/types/prerequisites/single/ActivatablePrerequisite.js +32 -0
  308. package/lib/types/prerequisites/single/AncestorBloodPrerequisite.d.ts +4 -0
  309. package/lib/types/prerequisites/single/AncestorBloodPrerequisite.js +4 -0
  310. package/lib/types/prerequisites/single/AnimistPowerPrerequisite.d.ts +18 -0
  311. package/lib/types/prerequisites/single/AnimistPowerPrerequisite.js +24 -0
  312. package/lib/types/prerequisites/single/CulturePrerequisite.d.ts +16 -0
  313. package/lib/types/prerequisites/single/CulturePrerequisite.js +16 -0
  314. package/lib/types/prerequisites/single/EnhancementPrerequisite.d.ts +4 -0
  315. package/lib/types/prerequisites/single/EnhancementPrerequisite.js +12 -0
  316. package/lib/types/prerequisites/single/InfluencePrerequisite.d.ts +17 -0
  317. package/lib/types/prerequisites/single/InfluencePrerequisite.js +19 -0
  318. package/lib/types/prerequisites/single/PactPrerequisite.d.ts +18 -0
  319. package/lib/types/prerequisites/single/PactPrerequisite.js +24 -0
  320. package/lib/types/prerequisites/single/PersonalityTraitPrerequisite.d.ts +17 -0
  321. package/lib/types/prerequisites/single/PersonalityTraitPrerequisite.js +19 -0
  322. package/lib/types/prerequisites/single/PrimaryAttributePrerequisite.d.ts +20 -0
  323. package/lib/types/prerequisites/single/PrimaryAttributePrerequisite.js +25 -0
  324. package/lib/types/prerequisites/single/ProfessionPrerequisite.d.ts +16 -0
  325. package/lib/types/prerequisites/single/ProfessionPrerequisite.js +16 -0
  326. package/lib/types/prerequisites/single/PublicationPrerequisite.d.ts +16 -0
  327. package/lib/types/prerequisites/single/PublicationPrerequisite.js +15 -0
  328. package/lib/types/prerequisites/single/RacePrerequisite.d.ts +17 -0
  329. package/lib/types/prerequisites/single/RacePrerequisite.js +19 -0
  330. package/lib/types/prerequisites/single/RatedMinimumNumberPrerequisite.d.ts +51 -0
  331. package/lib/types/prerequisites/single/RatedMinimumNumberPrerequisite.js +82 -0
  332. package/lib/types/prerequisites/single/RatedPrerequisite.d.ts +26 -0
  333. package/lib/types/prerequisites/single/RatedPrerequisite.js +19 -0
  334. package/lib/types/prerequisites/single/RatedSumPrerequisite.d.ts +17 -0
  335. package/lib/types/prerequisites/single/RatedSumPrerequisite.js +19 -0
  336. package/lib/types/prerequisites/single/RulePrerequisite.d.ts +19 -0
  337. package/lib/types/prerequisites/single/RulePrerequisite.js +15 -0
  338. package/lib/types/prerequisites/single/SexPrerequisite.d.ts +19 -0
  339. package/lib/types/prerequisites/single/SexPrerequisite.js +15 -0
  340. package/lib/types/prerequisites/single/SexualCharacteristicPrerequisite.d.ts +7 -0
  341. package/lib/types/prerequisites/single/SexualCharacteristicPrerequisite.js +17 -0
  342. package/lib/types/prerequisites/single/SocialStatusPrerequisite.d.ts +16 -0
  343. package/lib/types/prerequisites/single/SocialStatusPrerequisite.js +16 -0
  344. package/lib/types/prerequisites/single/StatePrerequisite.d.ts +16 -0
  345. package/lib/types/prerequisites/single/StatePrerequisite.js +15 -0
  346. package/lib/types/prerequisites/single/TextPrerequisite.d.ts +19 -0
  347. package/lib/types/prerequisites/single/TextPrerequisite.js +53 -0
  348. package/lib/types/prerequisites/single/TraditionPrerequisite.d.ts +37 -0
  349. package/lib/types/prerequisites/single/TraditionPrerequisite.js +42 -0
  350. package/lib/types/rule/AlternativeRule.d.ts +54 -0
  351. package/lib/types/rule/AlternativeRule.js +40 -0
  352. package/lib/types/rule/AlternativeRule_PlayerType.d.ts +6 -0
  353. package/lib/types/rule/AlternativeRule_PlayerType.js +16 -0
  354. package/lib/types/rule/CoreRule.d.ts +143 -0
  355. package/lib/types/rule/CoreRule.js +181 -0
  356. package/lib/types/rule/FocusRule.d.ts +79 -0
  357. package/lib/types/rule/FocusRule.js +48 -0
  358. package/lib/types/rule/FocusRule_Subject.d.ts +6 -0
  359. package/lib/types/rule/FocusRule_Subject.js +22 -0
  360. package/lib/types/rule/OptionalRule.d.ts +83 -0
  361. package/lib/types/rule/OptionalRule.js +59 -0
  362. package/lib/types/source/Publication.d.ts +50 -0
  363. package/lib/types/source/Publication.js +64 -0
  364. package/lib/types/source/_Erratum.d.ts +12 -0
  365. package/lib/types/source/_Erratum.js +22 -0
  366. package/lib/types/source/_PublicationRef.d.ts +168 -0
  367. package/lib/types/source/_PublicationRef.js +164 -0
  368. package/lib/types/specialAbility/AdvancedCombatSpecialAbility.d.ts +1234 -0
  369. package/lib/types/specialAbility/AdvancedCombatSpecialAbility.js +52 -0
  370. package/lib/types/specialAbility/AdvancedKarmaSpecialAbility.d.ts +1116 -0
  371. package/lib/types/specialAbility/AdvancedKarmaSpecialAbility.js +47 -0
  372. package/lib/types/specialAbility/AdvancedMagicalSpecialAbility.d.ts +1116 -0
  373. package/lib/types/specialAbility/AdvancedMagicalSpecialAbility.js +47 -0
  374. package/lib/types/specialAbility/AdvancedSkillSpecialAbility.d.ts +1116 -0
  375. package/lib/types/specialAbility/AdvancedSkillSpecialAbility.js +47 -0
  376. package/lib/types/specialAbility/AncestorGlyph.d.ts +1063 -0
  377. package/lib/types/specialAbility/AncestorGlyph.js +48 -0
  378. package/lib/types/specialAbility/BlessedTradition.d.ts +1141 -0
  379. package/lib/types/specialAbility/BlessedTradition.js +147 -0
  380. package/lib/types/specialAbility/BrawlingSpecialAbility.d.ts +1127 -0
  381. package/lib/types/specialAbility/BrawlingSpecialAbility.js +46 -0
  382. package/lib/types/specialAbility/CeremonialItemSpecialAbility.d.ts +1117 -0
  383. package/lib/types/specialAbility/CeremonialItemSpecialAbility.js +53 -0
  384. package/lib/types/specialAbility/CombatSpecialAbility.d.ts +1235 -0
  385. package/lib/types/specialAbility/CombatSpecialAbility.js +52 -0
  386. package/lib/types/specialAbility/CombatStyleSpecialAbility.d.ts +1286 -0
  387. package/lib/types/specialAbility/CombatStyleSpecialAbility.js +54 -0
  388. package/lib/types/specialAbility/CommandSpecialAbility.d.ts +1127 -0
  389. package/lib/types/specialAbility/CommandSpecialAbility.js +46 -0
  390. package/lib/types/specialAbility/FamiliarSpecialAbility.d.ts +1062 -0
  391. package/lib/types/specialAbility/FamiliarSpecialAbility.js +43 -0
  392. package/lib/types/specialAbility/FatePointSexSpecialAbility.d.ts +1062 -0
  393. package/lib/types/specialAbility/FatePointSexSpecialAbility.js +43 -0
  394. package/lib/types/specialAbility/FatePointSpecialAbility.d.ts +1116 -0
  395. package/lib/types/specialAbility/FatePointSpecialAbility.js +46 -0
  396. package/lib/types/specialAbility/GeneralSpecialAbility.d.ts +1117 -0
  397. package/lib/types/specialAbility/GeneralSpecialAbility.js +47 -0
  398. package/lib/types/specialAbility/KarmaSpecialAbility.d.ts +1062 -0
  399. package/lib/types/specialAbility/KarmaSpecialAbility.js +43 -0
  400. package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.d.ts +1165 -0
  401. package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.js +49 -0
  402. package/lib/types/specialAbility/LycantropicGift.d.ts +1062 -0
  403. package/lib/types/specialAbility/LycantropicGift.js +43 -0
  404. package/lib/types/specialAbility/MagicStyleSpecialAbility.d.ts +1165 -0
  405. package/lib/types/specialAbility/MagicStyleSpecialAbility.js +49 -0
  406. package/lib/types/specialAbility/MagicalSign.d.ts +127 -0
  407. package/lib/types/specialAbility/MagicalSign.js +66 -0
  408. package/lib/types/specialAbility/MagicalSpecialAbility.d.ts +1117 -0
  409. package/lib/types/specialAbility/MagicalSpecialAbility.js +47 -0
  410. package/lib/types/specialAbility/MagicalTradition.d.ts +1138 -0
  411. package/lib/types/specialAbility/MagicalTradition.js +115 -0
  412. package/lib/types/specialAbility/PactGift.d.ts +1143 -0
  413. package/lib/types/specialAbility/PactGift.js +76 -0
  414. package/lib/types/specialAbility/ProtectiveWardingCircleSpecialAbility.d.ts +1064 -0
  415. package/lib/types/specialAbility/ProtectiveWardingCircleSpecialAbility.js +54 -0
  416. package/lib/types/specialAbility/Sermon.d.ts +1062 -0
  417. package/lib/types/specialAbility/Sermon.js +43 -0
  418. package/lib/types/specialAbility/SexSpecialAbility.d.ts +1116 -0
  419. package/lib/types/specialAbility/SexSpecialAbility.js +46 -0
  420. package/lib/types/specialAbility/SikaryanDrainSpecialAbility.d.ts +1062 -0
  421. package/lib/types/specialAbility/SikaryanDrainSpecialAbility.js +43 -0
  422. package/lib/types/specialAbility/SkillStyleSpecialAbility.d.ts +1111 -0
  423. package/lib/types/specialAbility/SkillStyleSpecialAbility.js +46 -0
  424. package/lib/types/specialAbility/VampiricGift.d.ts +1062 -0
  425. package/lib/types/specialAbility/VampiricGift.js +43 -0
  426. package/lib/types/specialAbility/Vision.d.ts +1062 -0
  427. package/lib/types/specialAbility/Vision.js +43 -0
  428. package/lib/types/specialAbility/_Tradition.d.ts +5 -0
  429. package/lib/types/specialAbility/_Tradition.js +14 -0
  430. package/lib/types/specialAbility/sub/Language.d.ts +108 -0
  431. package/lib/types/specialAbility/sub/Language.js +98 -0
  432. package/lib/types/specialAbility/sub/Script.d.ts +62 -0
  433. package/lib/types/specialAbility/sub/Script.js +50 -0
  434. package/lib/types/specialAbility/sub/TradeSecret.d.ts +972 -0
  435. package/lib/types/specialAbility/sub/TradeSecret.js +76 -0
  436. package/lib/types/specialAbility/sub/_LanguageScript.d.ts +5 -0
  437. package/lib/types/specialAbility/sub/_LanguageScript.js +15 -0
  438. package/lib/types/traditionArtifacts/ArcaneOrbEnchantment.d.ts +1282 -0
  439. package/lib/types/traditionArtifacts/ArcaneOrbEnchantment.js +50 -0
  440. package/lib/types/traditionArtifacts/AttireEnchantment.d.ts +1282 -0
  441. package/lib/types/traditionArtifacts/AttireEnchantment.js +50 -0
  442. package/lib/types/traditionArtifacts/Beutelzauber.d.ts +1282 -0
  443. package/lib/types/traditionArtifacts/Beutelzauber.js +50 -0
  444. package/lib/types/traditionArtifacts/BowlEnchantment.d.ts +1282 -0
  445. package/lib/types/traditionArtifacts/BowlEnchantment.js +50 -0
  446. package/lib/types/traditionArtifacts/CauldronEnchantment.d.ts +1283 -0
  447. package/lib/types/traditionArtifacts/CauldronEnchantment.js +55 -0
  448. package/lib/types/traditionArtifacts/ChronicleEnchantment.d.ts +1282 -0
  449. package/lib/types/traditionArtifacts/ChronicleEnchantment.js +50 -0
  450. package/lib/types/traditionArtifacts/DaggerRitual.d.ts +1294 -0
  451. package/lib/types/traditionArtifacts/DaggerRitual.js +85 -0
  452. package/lib/types/traditionArtifacts/FoolsHatEnchantment.d.ts +1282 -0
  453. package/lib/types/traditionArtifacts/FoolsHatEnchantment.js +52 -0
  454. package/lib/types/traditionArtifacts/Haubenzauber.d.ts +1282 -0
  455. package/lib/types/traditionArtifacts/Haubenzauber.js +50 -0
  456. package/lib/types/traditionArtifacts/InstrumentEnchantment.d.ts +1282 -0
  457. package/lib/types/traditionArtifacts/InstrumentEnchantment.js +50 -0
  458. package/lib/types/traditionArtifacts/Krallenkettenzauber.d.ts +1282 -0
  459. package/lib/types/traditionArtifacts/Krallenkettenzauber.js +50 -0
  460. package/lib/types/traditionArtifacts/Kristallkugelzauber.d.ts +1282 -0
  461. package/lib/types/traditionArtifacts/Kristallkugelzauber.js +50 -0
  462. package/lib/types/traditionArtifacts/OrbEnchantment.d.ts +1282 -0
  463. package/lib/types/traditionArtifacts/OrbEnchantment.js +50 -0
  464. package/lib/types/traditionArtifacts/RingEnchantment.d.ts +1282 -0
  465. package/lib/types/traditionArtifacts/RingEnchantment.js +50 -0
  466. package/lib/types/traditionArtifacts/SickleRitual.d.ts +1282 -0
  467. package/lib/types/traditionArtifacts/SickleRitual.js +50 -0
  468. package/lib/types/traditionArtifacts/SpellSwordEnchantment.d.ts +1282 -0
  469. package/lib/types/traditionArtifacts/SpellSwordEnchantment.js +50 -0
  470. package/lib/types/traditionArtifacts/StaffEnchantment.d.ts +1286 -0
  471. package/lib/types/traditionArtifacts/StaffEnchantment.js +55 -0
  472. package/lib/types/traditionArtifacts/ToyEnchantment.d.ts +1282 -0
  473. package/lib/types/traditionArtifacts/ToyEnchantment.js +50 -0
  474. package/lib/types/traditionArtifacts/Trinkhornzauber.d.ts +1282 -0
  475. package/lib/types/traditionArtifacts/Trinkhornzauber.js +50 -0
  476. package/lib/types/traditionArtifacts/WandEnchantment.d.ts +1231 -0
  477. package/lib/types/traditionArtifacts/WandEnchantment.js +49 -0
  478. package/lib/types/traditionArtifacts/WeaponEnchantment.d.ts +1282 -0
  479. package/lib/types/traditionArtifacts/WeaponEnchantment.js +50 -0
  480. package/lib/types/traditionArtifacts/sub/AnimalShape.d.ts +8 -0
  481. package/lib/types/traditionArtifacts/sub/AnimalShape.js +24 -0
  482. package/lib/types/traditionArtifacts/sub/AnimalShapePath.d.ts +6 -0
  483. package/lib/types/traditionArtifacts/sub/AnimalShapePath.js +15 -0
  484. package/lib/types/traditionArtifacts/sub/AnimalShapeSize.d.ts +8 -0
  485. package/lib/types/traditionArtifacts/sub/AnimalShapeSize.js +23 -0
  486. package/lib/types/traditionArtifacts/sub/Brew.d.ts +6 -0
  487. package/lib/types/traditionArtifacts/sub/Brew.js +15 -0
  488. package/package.json +61 -0
@@ -0,0 +1,1607 @@
1
+ import * as DB from "tsondb/schema/dsl";
2
+ export declare const Locale: DB.Entity<"Locale", {
3
+ name: DB.MemberDecl<DB.String, true>;
4
+ region: DB.MemberDecl<DB.String, true>;
5
+ is_missing_implementation: DB.MemberDecl<DB.Boolean, true>;
6
+ measurementAdjustments: DB.MemberDecl<DB.IncludeIdentifier<[], DB.TypeAlias<"LocaleMeasurementAdjustments", DB.Object<{
7
+ milesMultiplier: DB.MemberDecl<DB.Float, false>;
8
+ stepsMultiplier: DB.MemberDecl<DB.Float, false>;
9
+ halffingersMultiplier: DB.MemberDecl<DB.Float, false>;
10
+ stonesMultiplier: DB.MemberDecl<DB.Float, false>;
11
+ }>, []>>, false>;
12
+ translations: DB.MemberDecl<DB.TranslationObject<{
13
+ "About {$app}": null;
14
+ "Preferences \u2026": null;
15
+ Services: null;
16
+ "Hide {$app}": null;
17
+ "Hide Others": null;
18
+ "Show All": null;
19
+ "Quit {$app}": null;
20
+ ".input {$os :string} {{File}}": null;
21
+ Close: null;
22
+ Quit: null;
23
+ Edit: null;
24
+ Undo: null;
25
+ Redo: null;
26
+ Cut: null;
27
+ Copy: null;
28
+ Paste: null;
29
+ Delete: null;
30
+ "Select All": null;
31
+ View: null;
32
+ "Toggle Full Screen": null;
33
+ Window: null;
34
+ Minimize: null;
35
+ Zoom: null;
36
+ "Main Window": null;
37
+ "Bring All to Front": null;
38
+ Settings: null;
39
+ "Main Language": null;
40
+ "System Language": null;
41
+ "Fallback Language": null;
42
+ "No fallback language": null;
43
+ Appearance: null;
44
+ Auto: null;
45
+ Light: null;
46
+ Dark: null;
47
+ "Edit characters after creation": null;
48
+ "Show animations": null;
49
+ "Check for updates": null;
50
+ Updater: null;
51
+ "Checking for updates \u2026": null;
52
+ "New version available": null;
53
+ /**
54
+ * - `0`: Version number
55
+ */
56
+ "Version {$version} is available! Do you wish to download and install?": null;
57
+ Download: null;
58
+ "Download Later": null;
59
+ "Downloading update \u2026": null;
60
+ "Update downloaded": null;
61
+ "Quit and Install": null;
62
+ "Install Later": null;
63
+ "No update available": null;
64
+ "You're running the latest version available.": null;
65
+ Characters: null;
66
+ Groups: null;
67
+ Library: null;
68
+ FAQ: null;
69
+ About: null;
70
+ Imprint: null;
71
+ "Third-Party Licenses": null;
72
+ "Last Changes": null;
73
+ Profile: null;
74
+ Overview: null;
75
+ "Personal Data": null;
76
+ "Character Sheet": null;
77
+ Pact: null;
78
+ "Rule Set": null;
79
+ "Race, Culture & Profession": null;
80
+ Race: null;
81
+ Culture: null;
82
+ Profession: null;
83
+ Attributes: null;
84
+ "Advantages & Disadvantages": null;
85
+ Advantages: null;
86
+ Disadvantages: null;
87
+ Abilities: null;
88
+ Skills: null;
89
+ "Combat Techniques": null;
90
+ "Special Abilities": null;
91
+ Spells: null;
92
+ "Liturgical Chants": null;
93
+ Belongings: null;
94
+ Equipment: null;
95
+ "Hit Zone Armor": null;
96
+ Pets: null;
97
+ /**
98
+ * - `0`: AP left
99
+ */
100
+ "{$value} AP Remaining": null;
101
+ Save: null;
102
+ "Show Settings": null;
103
+ "Toggle DevTools": null;
104
+ "Adventure Points": null;
105
+ AP: null;
106
+ /**
107
+ * - `0`: AP value
108
+ */
109
+ ".input {$value :number} {{{$value} Adventure Points}}": null;
110
+ "{$value} Adventure Points": null;
111
+ /**
112
+ * - `0`: AP value
113
+ */
114
+ "{$value} AP": null;
115
+ /**
116
+ * - `0`: AP Total
117
+ */
118
+ "{$value} Total AP": null;
119
+ /**
120
+ * - `0`: AP Spent
121
+ */
122
+ "{$value} AP Spent": null;
123
+ /**
124
+ * - `0`: Current AP spent on advantages
125
+ * - `1`: Maximum possible AP spent on advantages
126
+ */
127
+ "{$value}/{$max} AP spent on advantages": null;
128
+ /**
129
+ * - `0`: Current AP spent on magic advantages
130
+ * - `1`: Maximum possible AP spent on magic advantages
131
+ */
132
+ "Thereof {$value}/{$max} on magic advantages": null;
133
+ /**
134
+ * - `0`: Current AP spent on blessed advantages
135
+ * - `1`: Maximum possible AP spent on blessed advantages
136
+ */
137
+ "Thereof {$value}/{$max} on blessed advantages": null;
138
+ /**
139
+ * - `0`: Current AP spent on disadvantages
140
+ * - `1`: Maximum possible AP spent on disadvantages
141
+ */
142
+ "{$value}/{$max} AP received from disadvantages": null;
143
+ /**
144
+ * - `0`: Current AP spent on magic disadvantages
145
+ * - `1`: Maximum possible AP spent on magic disadvantages
146
+ */
147
+ "Thereof {$value}/{$max} from magic disadvantages": null;
148
+ /**
149
+ * - `0`: Current AP spent on blessed disadvantages
150
+ * - `1`: Maximum possible AP spent on blessed disadvantages
151
+ */
152
+ "Thereof {$value}/{$max} from blessed disadvantages": null;
153
+ /**
154
+ * - `0`: AP spent on race
155
+ */
156
+ "{$value} AP spent on race": null;
157
+ /**
158
+ * - `0`: AP spent on profession
159
+ */
160
+ "{$value} AP spent on profession": null;
161
+ /**
162
+ * - `0`: AP spent on attributes
163
+ */
164
+ "{$value} AP spent on attributes": null;
165
+ /**
166
+ * - `0`: AP spent on skills
167
+ */
168
+ "{$value} AP spent on skills": null;
169
+ /**
170
+ * - `0`: AP spent on combat techniques
171
+ */
172
+ "{$value} AP spent on combat techniques": null;
173
+ /**
174
+ * - `0`: AP spent on spells
175
+ */
176
+ "{$value} AP spent on spells": null;
177
+ /**
178
+ * - `0`: AP spent on cantrips
179
+ */
180
+ "{$value} AP spent on cantrips": null;
181
+ /**
182
+ * - `0`: AP spent on liturgical chants
183
+ */
184
+ "{$value} AP spent on liturgical chants": null;
185
+ /**
186
+ * - `0`: AP spent on blessings
187
+ */
188
+ "{$value} AP spent on blessings": null;
189
+ /**
190
+ * - `0`: AP spent on special abilities
191
+ */
192
+ "{$value} AP spent on special abilities": null;
193
+ /**
194
+ * - `0`: AP spent on energies (LP/AE/KP)
195
+ */
196
+ "{$value} AP spent on improving/buying back LP/AE/KP": null;
197
+ "header.dialogs.herosaved": null;
198
+ "header.dialogs.allsaved": null;
199
+ "header.dialogs.everythingelsesaved": null;
200
+ "header.dialogs.saveconfigerror.title": null;
201
+ "header.dialogs.saveconfigerror.message": null;
202
+ "header.dialogs.saveheroeserror.title": null;
203
+ "header.dialogs.saveheroeserror.message": null;
204
+ /**
205
+ * - `0`: Weight in kg
206
+ */
207
+ "general.weightvalue": null;
208
+ /**
209
+ * - `0`: Price in silverthalers
210
+ */
211
+ "general.pricevalue": null;
212
+ /**
213
+ * - `0`: Length in cm
214
+ */
215
+ "general.lengthvalue": null;
216
+ /**
217
+ * As in *2D6*.
218
+ */
219
+ D: null;
220
+ "{$count}D{$sides}": null;
221
+ "general.none": null;
222
+ "general.or": null;
223
+ "general.and": null;
224
+ "general.error": null;
225
+ "general.errorcode": null;
226
+ "general.emptylistplaceholder": null;
227
+ "general.emptylistnoresultsplaceholder": null;
228
+ "No Results": null;
229
+ Search: null;
230
+ "Sort By": null;
231
+ Name: null;
232
+ "Date Modified": null;
233
+ Group: null;
234
+ Property: null;
235
+ "general.filters.sort.bylocation": null;
236
+ "general.filters.sort.bycost": null;
237
+ "general.filters.sort.byweight": null;
238
+ "general.filters.showactivatedentries": null;
239
+ Done: null;
240
+ OK: null;
241
+ Cancel: null;
242
+ Create: null;
243
+ Apply: null;
244
+ Add: null;
245
+ "Not enough AP": null;
246
+ ".input {$value :number} {{You are missing {$value} Adventure Points to do this.}}": null;
247
+ "Exceeding Adventure Points limit for advantages": null;
248
+ "You cannot spend more than {$max} AP on advantages. You would exceed this limit by {$over} AP.": null;
249
+ "Exceeding Adventure Points limit for magical advantages": null;
250
+ "You cannot spend more than {$max} AP on magical advantages. You would exceed this limit by {$over} AP.": null;
251
+ "Exceeding Adventure Points limit for blessed advantages": null;
252
+ "You cannot spend more than {$max} AP on blessed advantages. You would exceed this limit by {$over} AP.": null;
253
+ "Exceeding Adventure Points limit for disadvantages": null;
254
+ "You cannot receive more than {$max} AP from disadvantages. You would exceed this limit by {$over} AP.": null;
255
+ "Exceeding Adventure Points limit for magical disadvantages": null;
256
+ "You cannot receive more than {$max} AP from magical disadvantages. You would exceed this limit by {$over} AP.": null;
257
+ "Exceeding Adventure Points limit for blessed disadvantages": null;
258
+ "You cannot receive more than {$max} AP from blessed disadvantages. You would exceed this limit by {$over} AP.": null;
259
+ "heroes.filters.origin.allheroes": null;
260
+ "heroes.filters.origin.ownheroes": null;
261
+ "heroes.filters.origin.sharedheroes": null;
262
+ Import: null;
263
+ "New Character": null;
264
+ "Duplicate Character": null;
265
+ "Export Character as OPTLC file": null;
266
+ "Delete Character": null;
267
+ "Open Character": null;
268
+ "heroes.saveherobtn": null;
269
+ "heroes.unsavedhero.name": null;
270
+ "heroes.list.adventurepoints": null;
271
+ "heroes.dialogs.herosaved": null;
272
+ "heroes.dialogs.importheroerror.title": null;
273
+ "heroes.dialogs.importheroerror.message": null;
274
+ "heroes.dialogs.heroexportsavelocation.title": null;
275
+ "heroes.dialogs.herojsonsaveerror.title": null;
276
+ "heroes.dialogs.herojsonsaveerror.message": null;
277
+ "heroes.dialogs.unsavedactions.title": null;
278
+ "heroes.dialogs.unsavedactions.message": null;
279
+ "heroes.dialogs.unsavedactions.quit": null;
280
+ "heroes.dialogs.unsavedactions.saveandquit": null;
281
+ /**
282
+ * - `0`: Name of the hero to delete
283
+ */
284
+ "heroes.dialogs.deletehero.title": null;
285
+ "heroes.dialogs.deletehero.message": null;
286
+ "heroes.dialogs.herocreation.title": null;
287
+ "heroes.dialogs.herocreation.nameofhero": null;
288
+ "heroes.dialogs.herocreation.sex.placeholder": null;
289
+ "heroes.dialogs.herocreation.sex.male": null;
290
+ "heroes.dialogs.herocreation.sex.female": null;
291
+ "heroes.dialogs.herocreation.experiencelevel.placeholder": null;
292
+ "heroes.dialogs.herocreation.startbtn": null;
293
+ "wiki.chooseacategory": null;
294
+ "wiki.chooseacategorytodisplayalist": null;
295
+ "wiki.filters.races": null;
296
+ "wiki.filters.cultures": null;
297
+ "wiki.filters.professions": null;
298
+ "wiki.filters.advantages": null;
299
+ "wiki.filters.disadvantages": null;
300
+ "wiki.filters.skills": null;
301
+ "wiki.filters.skills.all": null;
302
+ "wiki.filters.combattechniques": null;
303
+ "wiki.filters.combattechniques.all": null;
304
+ "wiki.filters.magic": null;
305
+ "wiki.filters.magic.all": null;
306
+ "wiki.filters.liturgicalchants": null;
307
+ "wiki.filters.liturgicalchants.all": null;
308
+ "wiki.filters.specialabilities": null;
309
+ "wiki.filters.specialabilities.all": null;
310
+ "wiki.filters.itemtemplates": null;
311
+ "wiki.filters.itemtemplates.all": null;
312
+ "Edit Name": null;
313
+ "Change Name": null;
314
+ "Edit Profession Name": null;
315
+ "Change Profession Name": null;
316
+ "Add AP": null;
317
+ "Add Adventure Points": null;
318
+ "How many Adventure Points do you want to add?": null;
319
+ "Finish Character Creation": null;
320
+ "Select New Avatar": null;
321
+ "Delete Avatar": null;
322
+ "profile.dialogs.changeheroavatar.title": null;
323
+ "profile.dialogs.changeheroavatar.selectfilebtn": null;
324
+ "profile.dialogs.changeheroavatar.imagefiletype": null;
325
+ "profile.dialogs.changeheroavatar.invalidfilewarning": null;
326
+ Male: null;
327
+ Female: null;
328
+ "Bal\u2019Thani": null;
329
+ Tsajana: null;
330
+ Family: null;
331
+ "Place of Birth": null;
332
+ "Date of Birth": null;
333
+ Age: null;
334
+ "Hair Color": null;
335
+ "Eye Color": null;
336
+ Size: null;
337
+ Weight: null;
338
+ Title: null;
339
+ "Social Status": null;
340
+ Characteristics: null;
341
+ "Other Information": null;
342
+ "Reroll Eye Color": null;
343
+ "Reroll Hair Color": null;
344
+ "Reroll Size": null;
345
+ "Reroll Weight": null;
346
+ "personaldata.cultureareaknowledge": null;
347
+ "You can save up no more than 10 AP to use later during the game, and you cannot begin the game with a negative AP balance.": null;
348
+ "sheets.printtopdfbtn": null;
349
+ "sheets.dialogs.pdfexportsavelocation.title": null;
350
+ "sheets.dialogs.pdfsaved": null;
351
+ "sheets.dialogs.pdfsaveerror.title": null;
352
+ "sheets.dialogs.pdfsaveerror.message": null;
353
+ "sheets.dialogs.pdfcreationerror.title": null;
354
+ "sheets.dialogs.pdfcreationerror.message": null;
355
+ "sheets.showattributevalues": null;
356
+ "sheets.useparchment": null;
357
+ "sheets.zoomfactor": null;
358
+ "sheets.charactersheet": null;
359
+ "sheets.attributemodifiers.title": null;
360
+ "sheets.mainsheet.title": null;
361
+ "sheets.mainsheet.name": null;
362
+ "sheets.mainsheet.family": null;
363
+ "sheets.mainsheet.placeofbirth": null;
364
+ "sheets.mainsheet.dateofbirth": null;
365
+ "sheets.mainsheet.age": null;
366
+ "sheets.mainsheet.sex": null;
367
+ "sheets.mainsheet.race": null;
368
+ "sheets.mainsheet.size": null;
369
+ "sheets.mainsheet.weight": null;
370
+ "sheets.mainsheet.haircolor": null;
371
+ "sheets.mainsheet.eyecolor": null;
372
+ "sheets.mainsheet.culture": null;
373
+ "sheets.mainsheet.socialstatus": null;
374
+ "sheets.mainsheet.profession": null;
375
+ "sheets.mainsheet.rank": null;
376
+ "sheets.mainsheet.characteristics": null;
377
+ "sheets.mainsheet.otherinfo": null;
378
+ "sheets.mainsheet.experiencelevellabel": null;
379
+ "sheets.mainsheet.totalaplabel": null;
380
+ "sheets.mainsheet.apcollectedlabel": null;
381
+ "sheets.mainsheet.apspentlabel": null;
382
+ "sheets.mainsheet.avatarlabel": null;
383
+ "sheets.mainsheet.advantages": null;
384
+ "sheets.mainsheet.disadvantages": null;
385
+ "sheets.mainsheet.generalspecialabilites": null;
386
+ "sheets.mainsheet.fatepoints": null;
387
+ "sheets.mainsheet.derivedcharacteristics.labels.value": null;
388
+ "sheets.mainsheet.derivedcharacteristics.labels.bonuspenalty": null;
389
+ "sheets.mainsheet.derivedcharacteristics.labels.bonus": null;
390
+ "sheets.mainsheet.derivedcharacteristics.labels.bought": null;
391
+ "sheets.mainsheet.derivedcharacteristics.labels.max": null;
392
+ "sheets.mainsheet.derivedcharacteristics.labels.current": null;
393
+ "sheets.mainsheet.derivedcharacteristics.labels.basestat": null;
394
+ "sheets.mainsheet.derivedcharacteristics.labels.permanentlylostboughtback": null;
395
+ "sheets.gamestatssheet.title": null;
396
+ "sheets.gamestatssheet.skillstable.title": null;
397
+ "sheets.gamestatssheet.skillstable.labels.skill": null;
398
+ "sheets.gamestatssheet.skillstable.labels.check": null;
399
+ "sheets.gamestatssheet.skillstable.labels.encumbrance": null;
400
+ "sheets.gamestatssheet.skillstable.labels.improvementcost": null;
401
+ "sheets.gamestatssheet.skillstable.labels.skillrating": null;
402
+ "sheets.gamestatssheet.skillstable.labels.routinechecks": null;
403
+ "sheets.gamestatssheet.skillstable.labels.notes": null;
404
+ "sheets.gamestatssheet.skillstable.encumbrance.yes": null;
405
+ "sheets.gamestatssheet.skillstable.encumbrance.no": null;
406
+ "sheets.gamestatssheet.skillstable.encumbrance.maybe": null;
407
+ "sheets.gamestatssheet.skillstable.groups.pages": null;
408
+ "sheets.gamestatssheet.languages.title": null;
409
+ "sheets.gamestatssheet.languages.nativetongue": null;
410
+ "sheets.gamestatssheet.knownscripts.title": null;
411
+ "sheets.gamestatssheet.routinechecks.title": null;
412
+ "sheets.gamestatssheet.routinechecks.textRow1": null;
413
+ "sheets.gamestatssheet.routinechecks.textRow2": null;
414
+ "sheets.gamestatssheet.routinechecks.textRow3": null;
415
+ "sheets.gamestatssheet.routinechecks.textRow4": null;
416
+ "sheets.gamestatssheet.routinechecks.labels.checkmod": null;
417
+ "sheets.gamestatssheet.routinechecks.labels.neededsr": null;
418
+ "sheets.gamestatssheet.routinechecks.from3on": null;
419
+ "sheets.gamestatssheet.qualitylevels.title": null;
420
+ "sheets.gamestatssheet.qualitylevels.labels.skillpoints": null;
421
+ "sheets.gamestatssheet.qualitylevels.labels.qualitylevel": null;
422
+ "sheets.combatsheet.title": null;
423
+ "sheets.combatsheet.combattechniquestable.title": null;
424
+ "sheets.combatsheet.combattechniquestable.labels.combattechnique": null;
425
+ "sheets.combatsheet.combattechniquestable.labels.primaryattribute": null;
426
+ "sheets.combatsheet.combattechniquestable.labels.improvementcost": null;
427
+ "sheets.combatsheet.combattechniquestable.labels.combattechniquerating": null;
428
+ "sheets.combatsheet.combattechniquestable.labels.attackrangecombat": null;
429
+ "sheets.combatsheet.combattechniquestable.labels.parry": null;
430
+ "sheets.combatsheet.lifepoints.title": null;
431
+ "sheets.combatsheet.lifepoints.max": null;
432
+ "sheets.combatsheet.lifepoints.current": null;
433
+ "sheets.combatsheet.lifepoints.pain1": null;
434
+ "sheets.combatsheet.lifepoints.pain2": null;
435
+ "sheets.combatsheet.lifepoints.pain3": null;
436
+ "sheets.combatsheet.lifepoints.pain4": null;
437
+ "sheets.combatsheet.lifepoints.dying": null;
438
+ "sheets.combatsheet.closecombatweapons": null;
439
+ "sheets.combatsheet.closecombatweapons.labels.weapon": null;
440
+ "sheets.combatsheet.closecombatweapons.labels.combattechnique": null;
441
+ "sheets.combatsheet.closecombatweapons.labels.damagebonus": null;
442
+ "sheets.combatsheet.closecombatweapons.labels.damagepoints": null;
443
+ "sheets.combatsheet.closecombatweapons.labels.attackparrymodifier": null;
444
+ "sheets.combatsheet.closecombatweapons.labels.reach": null;
445
+ "sheets.combatsheet.closecombatweapons.labels.breakingpointrating": null;
446
+ "sheets.combatsheet.closecombatweapons.labels.damaged": null;
447
+ "sheets.combatsheet.closecombatweapons.labels.attack": null;
448
+ "sheets.combatsheet.closecombatweapons.labels.parry": null;
449
+ "sheets.combatsheet.closecombatweapons.labels.weight": null;
450
+ "sheets.combatsheet.rangedcombatweapons": null;
451
+ "sheets.combatsheet.rangedcombatweapons.labels.weapon": null;
452
+ "sheets.combatsheet.rangedcombatweapons.labels.combattechnique": null;
453
+ "sheets.combatsheet.rangedcombatweapons.labels.reloadtime": null;
454
+ "sheets.combatsheet.rangedcombatweapons.labels.damagepoints": null;
455
+ "sheets.combatsheet.rangedcombatweapons.labels.ammunition": null;
456
+ "sheets.combatsheet.rangedcombatweapons.labels.rangebrackets": null;
457
+ "sheets.combatsheet.rangedcombatweapons.labels.breakingpointrating": null;
458
+ "sheets.combatsheet.rangedcombatweapons.labels.damaged": null;
459
+ "sheets.combatsheet.rangedcombatweapons.labels.rangedcombat": null;
460
+ "sheets.combatsheet.rangedcombatweapons.labels.weight": null;
461
+ "sheets.combatsheet.armors.title": null;
462
+ "sheets.combatsheet.armors.labels.armor": null;
463
+ "sheets.combatsheet.armors.labels.sturdinessrating": null;
464
+ "sheets.combatsheet.armors.labels.wear": null;
465
+ "sheets.combatsheet.armors.labels.protection": null;
466
+ "sheets.combatsheet.armors.labels.encumbrance": null;
467
+ "sheets.combatsheet.armors.labels.movementinitiative": null;
468
+ "sheets.combatsheet.armors.labels.carriedwhereexamples": null;
469
+ "sheets.combatsheet.armors.labels.head": null;
470
+ "sheets.combatsheet.armors.labels.torso": null;
471
+ "sheets.combatsheet.armors.labels.leftarm": null;
472
+ "sheets.combatsheet.armors.labels.rightarm": null;
473
+ "sheets.combatsheet.armors.labels.leftleg": null;
474
+ "sheets.combatsheet.armors.labels.rightleg": null;
475
+ "sheets.combatsheet.armors.labels.weight": null;
476
+ "sheets.combatsheet.shieldparryingweapon.title": null;
477
+ "sheets.combatsheet.shieldparryingweapon.labels.shieldparryingweapon": null;
478
+ "sheets.combatsheet.shieldparryingweapon.labels.structurepoints": null;
479
+ "sheets.combatsheet.shieldparryingweapon.labels.breakingpointrating": null;
480
+ "sheets.combatsheet.shieldparryingweapon.labels.damaged": null;
481
+ "sheets.combatsheet.shieldparryingweapon.labels.attackparrymodifier": null;
482
+ "sheets.combatsheet.shieldparryingweapon.labels.weight": null;
483
+ "sheets.combatsheet.actions": null;
484
+ "sheets.combatsheet.combatspecialabilities": null;
485
+ "sheets.combatsheet.conditions": null;
486
+ "sheets.combatsheet.states": null;
487
+ "sheets.belongingssheet.title": null;
488
+ "sheets.belongingssheet.equipmenttable.title": null;
489
+ "sheets.belongingssheet.equipmenttable.labels.item": null;
490
+ "sheets.belongingssheet.equipmenttable.labels.number": null;
491
+ "sheets.belongingssheet.equipmenttable.labels.price": null;
492
+ "sheets.belongingssheet.equipmenttable.labels.weight": null;
493
+ "sheets.belongingssheet.equipmenttable.labels.carriedwhere": null;
494
+ "sheets.belongingssheet.equipmenttable.labels.total": null;
495
+ "sheets.belongingssheet.purse.title": null;
496
+ "sheets.belongingssheet.purse.ducats": null;
497
+ "sheets.belongingssheet.purse.silverthalers": null;
498
+ "sheets.belongingssheet.purse.halers": null;
499
+ "sheets.belongingssheet.purse.kreutzers": null;
500
+ "sheets.belongingssheet.purse.gems": null;
501
+ "sheets.belongingssheet.purse.jewelry": null;
502
+ "sheets.belongingssheet.purse.other": null;
503
+ "sheets.belongingssheet.carryingcapacity.title": null;
504
+ "sheets.belongingssheet.carryingcapacity.calc": null;
505
+ "sheets.belongingssheet.carryingcapacity.label": null;
506
+ "sheets.belongingssheet.animal.title": null;
507
+ "sheets.belongingssheet.animal.name": null;
508
+ "sheets.belongingssheet.animal.sizecategory": null;
509
+ "sheets.belongingssheet.animal.type": null;
510
+ "sheets.belongingssheet.animal.ap": null;
511
+ "sheets.belongingssheet.animal.protection": null;
512
+ "sheets.belongingssheet.animal.attackname": null;
513
+ "sheets.belongingssheet.animal.attack": null;
514
+ "sheets.belongingssheet.animal.parry": null;
515
+ "sheets.belongingssheet.animal.damagepoints": null;
516
+ "sheets.belongingssheet.animal.reach": null;
517
+ "sheets.belongingssheet.animal.actions": null;
518
+ "sheets.belongingssheet.animal.skills": null;
519
+ "sheets.belongingssheet.animal.specialabilities": null;
520
+ "sheets.belongingssheet.animal.notes": null;
521
+ "sheets.spellssheet.title": null;
522
+ "sheets.spellssheet.header.labels.aemax": null;
523
+ "sheets.spellssheet.header.labels.aecurrent": null;
524
+ "sheets.spellssheet.spellstable.title": null;
525
+ "sheets.spellssheet.spellstable.labels.spellorritual": null;
526
+ "sheets.spellssheet.spellstable.labels.check": null;
527
+ "sheets.spellssheet.spellstable.labels.skillrating": null;
528
+ "sheets.spellssheet.spellstable.labels.cost": null;
529
+ "sheets.spellssheet.spellstable.labels.castingtime": null;
530
+ "sheets.spellssheet.spellstable.labels.range": null;
531
+ "sheets.spellssheet.spellstable.labels.duration": null;
532
+ "sheets.spellssheet.spellstable.labels.property": null;
533
+ "sheets.spellssheet.spellstable.labels.improvementcost": null;
534
+ "sheets.spellssheet.spellstable.labels.effect": null;
535
+ "sheets.spellssheet.spellstable.labels.pages": null;
536
+ "sheets.spellssheet.spellstable.unfamiliarspell": null;
537
+ "sheets.spellssheet.primaryattribute": null;
538
+ "sheets.spellssheet.properties": null;
539
+ "sheets.spellssheet.tradition": null;
540
+ "sheets.spellssheet.magicalspecialabilities": null;
541
+ "sheets.spellssheet.cantrips": null;
542
+ "sheets.chantssheet.title": null;
543
+ "sheets.chantssheet.header.labels.kpmax": null;
544
+ "sheets.chantssheet.header.labels.kpcurrent": null;
545
+ "sheets.chantssheet.chantstable.title": null;
546
+ "sheets.chantssheet.chantstable.labels.chant": null;
547
+ "sheets.chantssheet.chantstable.labels.check": null;
548
+ "sheets.chantssheet.chantstable.labels.skillrating": null;
549
+ "sheets.chantssheet.chantstable.labels.cost": null;
550
+ "sheets.chantssheet.chantstable.labels.castingtime": null;
551
+ "sheets.chantssheet.chantstable.labels.range": null;
552
+ "sheets.chantssheet.chantstable.labels.duration": null;
553
+ "sheets.chantssheet.chantstable.labels.aspect": null;
554
+ "sheets.chantssheet.chantstable.labels.improvementcost": null;
555
+ "sheets.chantssheet.chantstable.labels.effect": null;
556
+ "sheets.chantssheet.chantstable.labels.pages": null;
557
+ "sheets.chantssheet.primaryattribute": null;
558
+ "sheets.chantssheet.aspects": null;
559
+ "sheets.chantssheet.tradition": null;
560
+ "sheets.chantssheet.blessedspecialabilities": null;
561
+ "sheets.chantssheet.blessings": null;
562
+ "pacts.pactcategory": null;
563
+ "pacts.nopact": null;
564
+ "pacts.pactlevel": null;
565
+ "pacts.fairytype": null;
566
+ "pacts.domain": null;
567
+ "pacts.userdefined": null;
568
+ "pacts.demontype": null;
569
+ "pacts.circleofdamnation": null;
570
+ "pacts.minorpact": null;
571
+ "pacts.pactisincompletehint": null;
572
+ "pacts.name": null;
573
+ "Rule Sources": null;
574
+ "Use all publications": null;
575
+ "Focus Rules": null;
576
+ "Optional Rules": null;
577
+ "rules.manualherodatarepair": null;
578
+ "rules.manualherodatarepairexplanation": null;
579
+ "inlinewiki.complementarysources": null;
580
+ "race.header.name": null;
581
+ "race.header.adventurepoints": null;
582
+ "race.header.adventurepoints.tooltip": null;
583
+ "inlinewiki.apvalue": null;
584
+ "inlinewiki.adventurepoints": null;
585
+ "inlinewiki.lifepointbasevalue": null;
586
+ "inlinewiki.spiritbasevalue": null;
587
+ "inlinewiki.toughnessbasevalue": null;
588
+ "inlinewiki.movementbasevalue": null;
589
+ "inlinewiki.attributeadjustments": null;
590
+ "inlinewiki.automaticadvantages": null;
591
+ "inlinewiki.stronglyrecommendedadvantages": null;
592
+ "inlinewiki.stronglyrecommendeddisadvantages": null;
593
+ "inlinewiki.commoncultures": null;
594
+ "inlinewiki.commonadvantages": null;
595
+ "inlinewiki.commondisadvantages": null;
596
+ "inlinewiki.uncommonadvantages": null;
597
+ "inlinewiki.uncommondisadvantages": null;
598
+ "culture.filters.common.allcultures": null;
599
+ "culture.filters.common.commoncultures": null;
600
+ "culture.header.name": null;
601
+ "inlinewiki.language": null;
602
+ "inlinewiki.script": null;
603
+ "inlinewiki.areaknowledge": null;
604
+ "inlinewiki.socialstatus": null;
605
+ "inlinewiki.commonprofessions": null;
606
+ "inlinewiki.commonprofessions.mundane": null;
607
+ "inlinewiki.commonprofessions.magic": null;
608
+ "inlinewiki.commonprofessions.blessed": null;
609
+ "inlinewiki.commonskills": null;
610
+ "inlinewiki.uncommonskills": null;
611
+ "inlinewiki.commonnames": null;
612
+ /**
613
+ * - `0`: Name of cultural package
614
+ * - `1`: AP cost of the cultural package
615
+ */
616
+ "inlinewiki.culturalpackage": null;
617
+ "profession.ownprofession": null;
618
+ "profession.variants.novariant": null;
619
+ "profession.filters.common.allprofessions": null;
620
+ "profession.filters.common.commonprofessions": null;
621
+ "profession.filters.groups.allprofessiongroups": null;
622
+ "profession.filters.groups.mundaneprofessions": null;
623
+ "profession.filters.groups.magicalprofessions": null;
624
+ "profession.filters.groups.blessedprofessions": null;
625
+ "profession.header.name": null;
626
+ "profession.header.adventurepoints": null;
627
+ "profession.header.adventurepoints.tooltip": null;
628
+ "inlinewiki.prerequisites": null;
629
+ "inlinewiki.race": null;
630
+ "inlinewiki.specialabilities": null;
631
+ /**
632
+ * - `0`: AP given
633
+ */
634
+ "inlinewiki.languagesandliteracytotalingap": null;
635
+ /**
636
+ * - `0`: Skill name(s)
637
+ */
638
+ "inlinewiki.skillspecialization": null;
639
+ /**
640
+ * - `0`: AP given
641
+ * - `1`: Skill group
642
+ */
643
+ "inlinewiki.skillsselection": null;
644
+ "inlinewiki.combattechniques": null;
645
+ /**
646
+ * - `0`: Amount of combat techniques to choose
647
+ * - `1`: CtR of the selected combat techniques after application
648
+ * - `2`: List of possible combat techniques
649
+ */
650
+ "inlinewiki.combattechniqueselection": null;
651
+ "inlinewiki.combattechnique.one": null;
652
+ "inlinewiki.combattechnique.two": null;
653
+ /**
654
+ * - `0`: Amount of combat techniques to choose
655
+ * - `1`: CtR of the selected combat techniques after application
656
+ * - `2`: Amount of combat techniques to choose in a second selection
657
+ * - `3`: CtR of the selected combat techniques from second selection after application
658
+ * - `4`: List of possible combat techniques
659
+ */
660
+ "inlinewiki.combattechniquesecondselection": null;
661
+ "inlinewiki.skills": null;
662
+ "inlinewiki.spells": null;
663
+ /**
664
+ * - `0`: AP given
665
+ */
666
+ "inlinewiki.cursestotalingap": null;
667
+ /**
668
+ * - `0`: Amount of cantrips to choose
669
+ * - `1`: List of possible cantrips
670
+ */
671
+ "inlinewiki.cantripsfromlist": null;
672
+ "inlinewiki.cantrip.one": null;
673
+ "inlinewiki.cantrip.two": null;
674
+ "inlinewiki.liturgicalchants": null;
675
+ "inlinewiki.thetwelveblessings": null;
676
+ /**
677
+ * - `0`: name of first excluded blessing
678
+ * - `1`: name of second excluded blessing
679
+ * - `2`: name of third excluded blessing
680
+ */
681
+ "inlinewiki.thetwelveblessingsexceptions": null;
682
+ "inlinewiki.sixblessings": null;
683
+ "inlinewiki.suggestedadvantages": null;
684
+ "inlinewiki.suggesteddisadvantages": null;
685
+ "inlinewiki.unsuitableadvantages": null;
686
+ "inlinewiki.unsuitabledisadvantages": null;
687
+ "inlinewiki.variants": null;
688
+ "inlinewiki.insteadof": null;
689
+ "rcpselectoptions.race": null;
690
+ "rcpselectoptions.culture": null;
691
+ "rcpselectoptions.profession": null;
692
+ /**
693
+ * - `0`: Amount of cantrips to choose
694
+ */
695
+ "rcpselectoptions.cantripsfromlist": null;
696
+ "rcpselectoptions.cantrip.one": null;
697
+ "rcpselectoptions.cantrip.two": null;
698
+ /**
699
+ * - `0`: Amount of combat techniques to choose
700
+ * - `1`: CtR of the selected combat techniques after application
701
+ */
702
+ "rcpselectoptions.combattechniqueselection": null;
703
+ "rcpselectoptions.combattechnique.one": null;
704
+ "rcpselectoptions.combattechnique.two": null;
705
+ "rcpselectoptions.selectattributeadjustment": null;
706
+ "rcpselectoptions.buyculturalpackage": null;
707
+ "rcpselectoptions.nativetongue.placeholder": null;
708
+ "rcpselectoptions.buyscript": null;
709
+ "rcpselectoptions.script.placeholder": null;
710
+ /**
711
+ * - `0`: Amount of combat techniques to choose in a second selection
712
+ * - `1`: CtR of the selected combat techniques from second selection after application
713
+ */
714
+ "rcpselectoptions.combattechniquesecondselection": null;
715
+ /**
716
+ * - `0`: AP given
717
+ * - `1`: AP left
718
+ */
719
+ "rcpselectoptions.cursestotalingapleft": null;
720
+ /**
721
+ * - `0`: AP given
722
+ * - `1`: AP left
723
+ */
724
+ "rcpselectoptions.languagesandliteracytotalingapleft": null;
725
+ "rcpselectoptions.applicationforskillspecialization": null;
726
+ /**
727
+ * - `0`: Skill group
728
+ * - `1`: AP given
729
+ * - `2`: AP left
730
+ */
731
+ "rcpselectoptions.skillselectionap": null;
732
+ /**
733
+ * - `0`: Skill name(s)
734
+ */
735
+ "rcpselectoptions.skillspecialization": null;
736
+ "rcpselectoptions.completebtn": null;
737
+ "rcpselectoptions.unfamiliarspells": null;
738
+ "rcpselectoptions.unfamiliarspellselectionfortraditionguildmage": null;
739
+ "rcpselectoptions.unfamiliarspell.placeholder": null;
740
+ "rcpselectoptions.unfamiliarspell": null;
741
+ "Total Points": null;
742
+ Increment: null;
743
+ Decrement: null;
744
+ Activate: null;
745
+ "Attribute Adjustment Selection": null;
746
+ Modifier: null;
747
+ Bought: null;
748
+ "Lost Total": null;
749
+ "Bought Back": null;
750
+ "Buy Back Permanently Lost Point": null;
751
+ "Permanently Lost Life Points": null;
752
+ pLP: null;
753
+ "Permanently Lost Arcane Energy": null;
754
+ pAE: null;
755
+ "Permanently Lost Karma Points": null;
756
+ pKP: null;
757
+ "Loose Permanent Points": null;
758
+ "How many points do you want to remove?": null;
759
+ Remove: null;
760
+ "Permanently Spent": null;
761
+ "Common Advantages": null;
762
+ "Common Disadvantages": null;
763
+ "Custom AP Cost": null;
764
+ /**
765
+ * - `0`: Entry name
766
+ */
767
+ "AP Cost for {$category}": null;
768
+ "Custom option": null;
769
+ "specialabilities.nativetonguelevel": null;
770
+ "Advanced Combat Special Abilities": null;
771
+ "Advanced Karma Special Abilities": null;
772
+ "Advanced Magical Special Abilities": null;
773
+ "Advanced Skill Special Abilities": null;
774
+ "Ancestor Glyphs": null;
775
+ "Arcane Orb Enchantments": null;
776
+ "Attire Enchantments": null;
777
+ "Blessed Traditions": null;
778
+ "Bowl Enchantments": null;
779
+ "Brawling Special Abilities": null;
780
+ "Cauldron Enchantments": null;
781
+ "Ceremonial Item Special Abilities": null;
782
+ "Chronicle Enchantments": null;
783
+ "Combat Special Abilities": null;
784
+ "Combat Style Special Abilities": null;
785
+ "Command Special Abilities": null;
786
+ "Dagger Rituals": null;
787
+ "Familiar Special Abilities": null;
788
+ "Fate Point Sex Special Abilities": null;
789
+ "Fate Point Special Abilities": null;
790
+ "Fools Hat Enchantments": null;
791
+ "General Special Abilities": null;
792
+ "Instrument Enchantments": null;
793
+ "Karma Special Abilities": null;
794
+ Krallenkettenzauber: null;
795
+ "Liturgical Style Special Abilities": null;
796
+ "Lycantropic Gifts": null;
797
+ "Magical Signs": null;
798
+ "Magical Special Abilities": null;
799
+ "Magical Traditions": null;
800
+ "Magic Style Special Abilities": null;
801
+ "Orb Enchantments": null;
802
+ "Pact Gifts": null;
803
+ "Protective/Warding Circle Special Abilities": null;
804
+ "Ring Enchantments": null;
805
+ Sermons: null;
806
+ "Sex Special Abilities": null;
807
+ "Sickle Rituals": null;
808
+ "Sikaryan Drain Special Abilities": null;
809
+ "Skill Style Special Abilities": null;
810
+ "Spell Sword Enchantments": null;
811
+ "Staff Enchantments": null;
812
+ "Toy Enchantments": null;
813
+ Trinkhornzauber: null;
814
+ "Vampiric Gifts": null;
815
+ Visions: null;
816
+ "Wand Enchantments": null;
817
+ "Weapon Enchantments": null;
818
+ "inlinewiki.rule": null;
819
+ "inlinewiki.effect": null;
820
+ "inlinewiki.extendedcombatspecialabilities": null;
821
+ "inlinewiki.extendedmagicalspecialabilities": null;
822
+ "inlinewiki.extendedblessedspecialabilities": null;
823
+ "inlinewiki.extendedskillspecialabilities": null;
824
+ "inlinewiki.penalty": null;
825
+ "inlinewiki.level": null;
826
+ "inlinewiki.perlevel": null;
827
+ "inlinewiki.volume": null;
828
+ "inlinewiki.aspect": null;
829
+ "inlinewiki.bindingcost": null;
830
+ "inlinewiki.protectivecircle": null;
831
+ "inlinewiki.wardingcircle": null;
832
+ "inlinewiki.actions": null;
833
+ /**
834
+ * - `0`: Entry name
835
+ * - `1`: category (advantage, disadvantage, …)
836
+ */
837
+ "inlinewiki.racecultureorprofessionrequiresautomaticorsuggested": null;
838
+ "inlinewiki.advantage": null;
839
+ "inlinewiki.disadvantage": null;
840
+ "inlinewiki.primaryattributeofthetradition": null;
841
+ "inlinewiki.knowledgeofspell": null;
842
+ "inlinewiki.knowledgeofliturgicalchant": null;
843
+ "inlinewiki.appropriatecombatstylespecialability": null;
844
+ "inlinewiki.appropriatemagicalstylespecialability": null;
845
+ "inlinewiki.appropriateblessedstylespecialability": null;
846
+ "inlinewiki.appropriateskillstylespecialability": null;
847
+ "inlinewiki.sex": null;
848
+ "inlinewiki.sex.male": null;
849
+ "inlinewiki.sex.female": null;
850
+ "inlinewiki.combattechniques.groups.all": null;
851
+ "inlinewiki.combattechniques.groups.allmeleecombattechniques": null;
852
+ "inlinewiki.combattechniques.groups.allrangedcombattechniques": null;
853
+ "inlinewiki.combattechniques.groups.allmeleecombattechniqueswithparry": null;
854
+ "inlinewiki.combattechniques.groups.allmeleecombattechniquesforonehandedweapons": null;
855
+ /**
856
+ * - `0`: Minimum social status
857
+ */
858
+ "inlinewiki.socialstatusxorhigher": null;
859
+ "Common Skills": null;
860
+ SR: null;
861
+ "Skill Rating": null;
862
+ IC: null;
863
+ "New Applications": null;
864
+ Uses: null;
865
+ "Strongly Recommended": null;
866
+ Common: null;
867
+ Uncommon: null;
868
+ "Unfamiliar Spells": null;
869
+ CTR: null;
870
+ "Combat Technique Rating": null;
871
+ P: null;
872
+ "Primary Attribute(s)": null;
873
+ AT: null;
874
+ Attack: null;
875
+ PA: null;
876
+ Parry: null;
877
+ "Close Combat": null;
878
+ "Ranged Combat": null;
879
+ Special: null;
880
+ "Primary Attribute": null;
881
+ Cantrips: null;
882
+ Rituals: null;
883
+ Curses: null;
884
+ "Elven Magical Songs": null;
885
+ "Domination Rituals": null;
886
+ "Magical Dances": null;
887
+ "Magical Melodies": null;
888
+ "Jester Tricks": null;
889
+ "Animist Powers": null;
890
+ "Geode Rituals": null;
891
+ "Zibilja Rituals": null;
892
+ Mod: null;
893
+ "Check Modifier": null;
894
+ "spells.traditions.general": null;
895
+ "magicalactions.animistforces.tribes.general": null;
896
+ " (modified by {$modifier})": null;
897
+ " (\u2212{$modifier})": null;
898
+ "{$first} or {$second}, depending on which value is higher": null;
899
+ "Invocation Difficulty": null;
900
+ ID: null;
901
+ "Creation Difficulty": null;
902
+ CD: null;
903
+ Object: null;
904
+ Effect: null;
905
+ Rules: null;
906
+ "Casting Time": null;
907
+ "Ritual Time": null;
908
+ "Liturgical Time": null;
909
+ "Ceremonial Time": null;
910
+ "AE Cost": null;
911
+ "KP Cost": null;
912
+ Range: null;
913
+ Duration: null;
914
+ "Target Category": null;
915
+ Traditions: null;
916
+ " (you cannot use a modification on this spell\u2019s casting time)": null;
917
+ " (you cannot use a modification on this spell\u2019s cost)": null;
918
+ " (you cannot use a modification on this spell\u2019s range)": null;
919
+ " (you cannot use a modification on this ritual\u2019s ritual time)": null;
920
+ " (you cannot use a modification on this ritual\u2019s cost)": null;
921
+ " (you cannot use a modification on this ritual\u2019s range)": null;
922
+ " (you cannot use a modification on this chant\u2019s liturgical time)": null;
923
+ " (you cannot use a modification on this chant\u2019s cost)": null;
924
+ " (you cannot use a modification on this chant\u2019s range)": null;
925
+ " (you cannot use a modification on this ceremony\u2019s ceremonial time)": null;
926
+ " (you cannot use a modification on this ceremony\u2019s cost)": null;
927
+ " (you cannot use a modification on this ceremony\u2019s range)": null;
928
+ " (cannot modify)": null;
929
+ ".input {$value :number} .input {$style :string} {{{$value} act}}": null;
930
+ "{$value} act": null;
931
+ act: null;
932
+ ".input {$value :number} .input {$style :string} {{{$value} actions}}": null;
933
+ "{$value} actions": null;
934
+ actions: null;
935
+ ".input {$value :number} .input {$style :string} {{{$value} s}}": null;
936
+ "{$value} s": null;
937
+ s: null;
938
+ ".input {$value :number} .input {$style :string} {{{$value} seconds}}": null;
939
+ "{$value} seconds": null;
940
+ seconds: null;
941
+ ".input {$value :number} .input {$style :string} {{{$value} min}}": null;
942
+ "{$value} min": null;
943
+ min: null;
944
+ ".input {$value :number} .input {$style :string} {{{$value} minutes}}": null;
945
+ "{$value} minutes": null;
946
+ minutes: null;
947
+ ".input {$value :number} .input {$style :string} {{{$value} h}}": null;
948
+ "{$value} h": null;
949
+ h: null;
950
+ ".input {$value :number} .input {$style :string} {{{$value} hours}}": null;
951
+ "{$value} hours": null;
952
+ hours: null;
953
+ ".input {$value :number} .input {$style :string} {{{$value} d}}": null;
954
+ "{$value} d": null;
955
+ d: null;
956
+ ".input {$value :number} .input {$style :string} {{{$value} days}}": null;
957
+ "{$value} days": null;
958
+ days: null;
959
+ ".input {$value :number} .input {$style :string} {{{$value} wks.}}": null;
960
+ "{$value} wks.": null;
961
+ "wks.": null;
962
+ ".input {$value :number} .input {$style :string} {{{$value} weeks}}": null;
963
+ "{$value} weeks": null;
964
+ weeks: null;
965
+ ".input {$value :number} .input {$style :string} {{{$value} mos.}}": null;
966
+ "{$value} mos.": null;
967
+ "mos.": null;
968
+ ".input {$value :number} .input {$style :string} {{{$value} months}}": null;
969
+ "{$value} months": null;
970
+ months: null;
971
+ ".input {$value :number} .input {$style :string} {{{$value} yrs.}}": null;
972
+ "{$value} yrs.": null;
973
+ "yrs.": null;
974
+ ".input {$value :number} .input {$style :string} {{{$value} years}}": null;
975
+ "{$value} years": null;
976
+ years: null;
977
+ ".input {$value :number} .input {$style :string} {{{$value} cent.}}": null;
978
+ "{$value} cent.": null;
979
+ "cent.": null;
980
+ ".input {$value :number} .input {$style :string} {{{$value} centuries}}": null;
981
+ "{$value} centuries": null;
982
+ centuries: null;
983
+ ".input {$value :number} .input {$style :string} {{{$value} SA}}": null;
984
+ "{$value} SA": null;
985
+ ".input {$value :number} .input {$style :string} {{{$value} seduction actions}}": null;
986
+ "{$value} seduction actions": null;
987
+ ".input {$value :number} .input {$style :string} {{{$value} rnds}}": null;
988
+ "{$value} rnds": null;
989
+ ".input {$value :number} .input {$style :string} {{{$value} rounds}}": null;
990
+ "{$value} rounds": null;
991
+ ".input {$value :number} .input {$style :string} {{{$value} CR}}": null;
992
+ "{$value} CR": null;
993
+ CR: null;
994
+ ".input {$value :number} .input {$style :string} {{{$value} combat rounds}}": null;
995
+ "{$value} combat rounds": null;
996
+ "combat rounds": null;
997
+ "{$value} AE": null;
998
+ "{$value} KP": null;
999
+ "min. ": null;
1000
+ "at least ": null;
1001
+ "min. {$value}": null;
1002
+ "at least {$value}": null;
1003
+ "/{$value}": null;
1004
+ " per {$value}": null;
1005
+ "{$baseCost}, minimum of {$value}": null;
1006
+ " ({$value} perm.)": null;
1007
+ ".input {$value :number} {{, {$value} of which are permanent}}": null;
1008
+ ", {$value} of which are permanent": null;
1009
+ "half of the activation cost": null;
1010
+ "50%": null;
1011
+ " and ": null;
1012
+ " + ": null;
1013
+ " or ": null;
1014
+ " / ": null;
1015
+ " for ": null;
1016
+ " (no more than {$value})": null;
1017
+ " (max. {$value})": null;
1018
+ "no more than {$value}": null;
1019
+ "max. {$value}": null;
1020
+ Immediate: null;
1021
+ Permanent: null;
1022
+ "no more than ": null;
1023
+ "max. ": null;
1024
+ "Quality Levels": null;
1025
+ QL: null;
1026
+ "QL {$value}": null;
1027
+ "Skill Points": null;
1028
+ SP: null;
1029
+ Sustained: null;
1030
+ "(S)": null;
1031
+ ".input {$value :number} {{{$value} yards}}": null;
1032
+ "{$value} yards": null;
1033
+ "{$value} yd": null;
1034
+ ".input {$value :number} {{{$value} miles}}": null;
1035
+ "{$value} miles": null;
1036
+ "{$value} mi.": null;
1037
+ Sight: null;
1038
+ Self: null;
1039
+ Global: null;
1040
+ Touch: null;
1041
+ Radius: null;
1042
+ " (casting)": null;
1043
+ activation: null;
1044
+ Zone: null;
1045
+ "Liturgical Chants and Ceremonies": null;
1046
+ Spellworks: null;
1047
+ General: null;
1048
+ Note: null;
1049
+ all: null;
1050
+ none: null;
1051
+ State: null;
1052
+ "Social Status {$minStatus} or higher": null;
1053
+ "Person with {$sexualCharacteristic}": null;
1054
+ Penis: null;
1055
+ Vagina: null;
1056
+ "the SR for {$skill} combined must add up to at least {$minRating}": null;
1057
+ ".input {$minRating :number} {{{$count} on at least SR {$minRating}: {$list}}}": null;
1058
+ ".input {$count :number} .input {$minRating :number} {{{$count} arcane works with the property {$property} at SR {$minRating} or higher}}": null;
1059
+ ".input {$count :number} .input {$minRating :number} {{{$count} liturgical chants and ceremonies with the aspect {$aspect} at SR {$minRating} or higher}}": null;
1060
+ ".input {$count :number} {{{$count} of the following skills}}": null;
1061
+ ".input {$count :number} {{{$count} combat techniques}}": null;
1062
+ ".input {$count :number} {{{$count} close combat techniques}}": null;
1063
+ ".input {$count :number} {{{$count} ranged combat techniques}}": null;
1064
+ "special ability": null;
1065
+ "no special ability": null;
1066
+ Tradition: null;
1067
+ "Tradition ({$tradition})": null;
1068
+ Church: null;
1069
+ Shaman: null;
1070
+ "Tradition must be able to use rituals": null;
1071
+ "Tradition must be able to bind familiars": null;
1072
+ "spell enhancement": null;
1073
+ "liturgical enhancement": null;
1074
+ for: null;
1075
+ "no other ancestor blood advantage": null;
1076
+ "Race, culture, or profession must have {$entry} as an automatic or suggested {$itemOfCategory}": null;
1077
+ advantage: null;
1078
+ "no advantage": null;
1079
+ disadvantage: null;
1080
+ "no disadvantage": null;
1081
+ "domain {$domain}": null;
1082
+ "{$pact} level {$pactLevel}": null;
1083
+ "Level {$level}": null;
1084
+ "cannot be chosen at the same time as {$trait}": null;
1085
+ "must have {$trait}": null;
1086
+ "no influence": null;
1087
+ "inlinewiki.castingtime": null;
1088
+ "inlinewiki.ritualtime": null;
1089
+ "inlinewiki.aecost": null;
1090
+ "inlinewiki.range": null;
1091
+ "inlinewiki.duration": null;
1092
+ "inlinewiki.targetcategory": null;
1093
+ "inlinewiki.property": null;
1094
+ "inlinewiki.traditions": null;
1095
+ "inlinewiki.skill": null;
1096
+ "inlinewiki.lengthoftime": null;
1097
+ "inlinewiki.musictradition": null;
1098
+ "inlinewiki.youcannotuseamodificationonthisspellscastingtime": null;
1099
+ "inlinewiki.youcannotuseamodificationonthisspellsritualtime": null;
1100
+ "inlinewiki.youcannotuseamodificationonthisspellscost": null;
1101
+ "inlinewiki.youcannotuseamodificationonthisspellsrange": null;
1102
+ "inlinewiki.youcannotuseamodificationonthisspellsduration": null;
1103
+ "inlinewiki.spellenhancements": null;
1104
+ /**
1105
+ * - `0`: Enhancement name
1106
+ * - `1`: DB.Required Skill Rating
1107
+ * - `2`: AP value
1108
+ * - `3`: Description
1109
+ */
1110
+ "inlinewiki.spellenhancements.title": null;
1111
+ "inlinewiki.tribaltraditions": null;
1112
+ "inlinewiki.brew": null;
1113
+ "inlinewiki.spirithalf": null;
1114
+ "inlinewiki.spirithalf.short": null;
1115
+ "inlinewiki.spiritortoughness": null;
1116
+ "inlinewiki.spiritortoughness.short": null;
1117
+ "inlinewiki.note": null;
1118
+ Blessings: null;
1119
+ Ceremonies: null;
1120
+ "liturgicalchants.addbtn": null;
1121
+ "liturgicalchants.header.name": null;
1122
+ "liturgicalchants.header.traditions": null;
1123
+ "liturgicalchants.header.group": null;
1124
+ "liturgicalchants.header.skillrating": null;
1125
+ "liturgicalchants.header.skillrating.tooltip": null;
1126
+ "liturgicalchants.header.check": null;
1127
+ "liturgicalchants.header.checkmodifier": null;
1128
+ "liturgicalchants.header.checkmodifier.tooltip": null;
1129
+ "liturgicalchants.header.improvementcost": null;
1130
+ "liturgicalchants.header.improvementcost.tooltip": null;
1131
+ "liturgicalchants.groups.blessing": null;
1132
+ "liturgicalchants.aspects.general": null;
1133
+ "inlinewiki.liturgicaltime": null;
1134
+ "inlinewiki.ceremonialtime": null;
1135
+ "inlinewiki.kpcost": null;
1136
+ "inlinewiki.youcannotuseamodificationonthischantsliturgicaltime": null;
1137
+ "inlinewiki.youcannotuseamodificationonthischantsceremonialtime": null;
1138
+ "inlinewiki.youcannotuseamodificationonthischantscost": null;
1139
+ "inlinewiki.youcannotuseamodificationonthischantsrange": null;
1140
+ "inlinewiki.youcannotuseamodificationonthischantsduration": null;
1141
+ "inlinewiki.liturgicalchantenhancements": null;
1142
+ /**
1143
+ * - `0`: Enhancement name
1144
+ * - `1`: DB.Required Skill Rating
1145
+ * - `2`: AP value
1146
+ * - `3`: Description
1147
+ */
1148
+ "inlinewiki.liturgicalchantenhancements.title": null;
1149
+ "equipment.header.name": null;
1150
+ "equipment.header.group": null;
1151
+ "equipment.addbtn": null;
1152
+ "equipment.createbtn": null;
1153
+ "equipment.filters.allcombattechniques": null;
1154
+ "equipment.purse.title": null;
1155
+ "equipment.purse.ducats": null;
1156
+ "equipment.purse.silverthalers": null;
1157
+ "equipment.purse.halers": null;
1158
+ "equipment.purse.kreutzers": null;
1159
+ "equipment.purse.carryingcapacity": null;
1160
+ "equipment.purse.initialstartingwealthandcarryingcapacity": null;
1161
+ "equipment.purse.earnpay": null;
1162
+ "equipment.purse.earn": null;
1163
+ "equipment.purse.pay": null;
1164
+ "equipment.purse.notefirst": null;
1165
+ "equipment.purse.notesecond": null;
1166
+ "equipment.purse.currentcredit": null;
1167
+ "equipment.purse.amount": null;
1168
+ "equipment.dialogs.addedit.damage": null;
1169
+ "equipment.dialogs.addedit.length": null;
1170
+ "equipment.dialogs.addedit.range": null;
1171
+ "equipment.dialogs.addedit.edititem": null;
1172
+ "equipment.dialogs.addedit.createitem": null;
1173
+ "equipment.dialogs.addedit.number": null;
1174
+ "equipment.dialogs.addedit.name": null;
1175
+ "equipment.dialogs.addedit.price": null;
1176
+ "equipment.dialogs.addedit.weight": null;
1177
+ "equipment.dialogs.addedit.carriedwhere": null;
1178
+ "equipment.dialogs.addedit.itemgroup": null;
1179
+ "equipment.dialogs.addedit.itemgrouphint": null;
1180
+ "equipment.dialogs.addedit.improvisedweapon": null;
1181
+ "equipment.dialogs.addedit.improvisedweapongroup": null;
1182
+ "equipment.dialogs.addedit.template": null;
1183
+ "equipment.dialogs.addedit.combattechnique": null;
1184
+ "equipment.dialogs.addedit.primaryattributeanddamagethreshold": null;
1185
+ "equipment.dialogs.addedit.primaryattribute": null;
1186
+ "equipment.dialogs.addedit.primaryattribute.short": null;
1187
+ "equipment.dialogs.addedit.damagethreshold": null;
1188
+ "equipment.dialogs.addedit.separatedamagethresholds": null;
1189
+ "equipment.dialogs.addedit.breakingpointratingmodifier": null;
1190
+ "equipment.dialogs.addedit.damaged": null;
1191
+ "equipment.dialogs.addedit.reach": null;
1192
+ "equipment.dialogs.addedit.attackparrymodifier": null;
1193
+ "equipment.dialogs.addedit.structurepoints": null;
1194
+ "equipment.dialogs.addedit.lengthwithunit": null;
1195
+ "equipment.dialogs.addedit.parryingweapon": null;
1196
+ "equipment.dialogs.addedit.twohandedweapon": null;
1197
+ "equipment.dialogs.addedit.reloadtime": null;
1198
+ "equipment.dialogs.addedit.rangeclose": null;
1199
+ "equipment.dialogs.addedit.rangemedium": null;
1200
+ "equipment.dialogs.addedit.rangefar": null;
1201
+ "equipment.dialogs.addedit.ammunition": null;
1202
+ "equipment.dialogs.addedit.protection": null;
1203
+ "equipment.dialogs.addedit.encumbrance": null;
1204
+ "equipment.dialogs.addedit.armortype": null;
1205
+ "equipment.dialogs.addedit.sturdinessmodifier": null;
1206
+ "equipment.dialogs.addedit.wear": null;
1207
+ "equipment.dialogs.addedit.hitzonearmoronly": null;
1208
+ "equipment.dialogs.addedit.movementmodifier": null;
1209
+ "equipment.dialogs.addedit.initiativemodifier": null;
1210
+ "equipment.dialogs.addedit.additionalpenalties": null;
1211
+ "hitzonearmors.header.name": null;
1212
+ "hitzonearmors.createbtn": null;
1213
+ "hitzonearmors.dialogs.addedit.name": null;
1214
+ "hitzonearmors.dialogs.addedit.edithitzonearmor": null;
1215
+ "hitzonearmors.dialogs.addedit.createhitzonearmor": null;
1216
+ "hitzonearmors.dialogs.addedit.head": null;
1217
+ "hitzonearmors.dialogs.addedit.torso": null;
1218
+ "hitzonearmors.dialogs.addedit.leftarm": null;
1219
+ "hitzonearmors.dialogs.addedit.rightarm": null;
1220
+ "hitzonearmors.dialogs.addedit.leftleg": null;
1221
+ "hitzonearmors.dialogs.addedit.rightleg": null;
1222
+ "hitzonearmors.dialogs.addedit.wear": null;
1223
+ "inlinewiki.equipment.weight": null;
1224
+ "inlinewiki.equipment.price": null;
1225
+ "inlinewiki.equipment.ammunition": null;
1226
+ "inlinewiki.equipment.combattechnique": null;
1227
+ "inlinewiki.equipment.damage": null;
1228
+ "inlinewiki.equipment.primaryattributeanddamagethreshold": null;
1229
+ "inlinewiki.equipment.attackparrymodifier": null;
1230
+ "inlinewiki.equipment.reach": null;
1231
+ "inlinewiki.equipment.length": null;
1232
+ "inlinewiki.equipment.reloadtime": null;
1233
+ "inlinewiki.equipment.range": null;
1234
+ /**
1235
+ * - `0`: Number of actions
1236
+ */
1237
+ "inlinewiki.equipment.actionsvalue": null;
1238
+ "inlinewiki.equipment.protection": null;
1239
+ "inlinewiki.equipment.encumbrance": null;
1240
+ "inlinewiki.equipment.additionalpenalties": null;
1241
+ "inlinewiki.equipment.note": null;
1242
+ "inlinewiki.equipment.rules": null;
1243
+ "inlinewiki.equipment.weaponadvantage": null;
1244
+ "inlinewiki.equipment.weapondisadvantage": null;
1245
+ "inlinewiki.equipment.armoradvantage": null;
1246
+ "inlinewiki.equipment.armordisadvantage": null;
1247
+ "pets.dialogs.addedit.deleteavatarbtn": null;
1248
+ "pets.dialogs.addedit.name": null;
1249
+ "pets.dialogs.addedit.sizecategory": null;
1250
+ "pets.dialogs.addedit.type": null;
1251
+ "pets.dialogs.addedit.apspent": null;
1252
+ "pets.dialogs.addedit.totalap": null;
1253
+ "pets.dialogs.addedit.protection": null;
1254
+ "pets.dialogs.addedit.attackname": null;
1255
+ "pets.dialogs.addedit.attack": null;
1256
+ "pets.dialogs.addedit.parry": null;
1257
+ "pets.dialogs.addedit.damagepoints": null;
1258
+ "pets.dialogs.addedit.reach": null;
1259
+ "pets.dialogs.addedit.actions": null;
1260
+ "pets.dialogs.addedit.skills": null;
1261
+ "pets.dialogs.addedit.specialabilities": null;
1262
+ "pets.dialogs.addedit.notes": null;
1263
+ "pets.dialogs.addedit.addbtn": null;
1264
+ "pets.dialogs.addedit.savebtn": null;
1265
+ "Show details": null;
1266
+ "Maximum Attribute Value": null;
1267
+ "Maximum Skill Value": null;
1268
+ "Maximum Combat Technique": null;
1269
+ "Maximum Attribute Total": null;
1270
+ "Number of Spells/Liturgical Chants": null;
1271
+ "Number from other Traditions": null;
1272
+ Check: null;
1273
+ Applications: null;
1274
+ Encumbrance: null;
1275
+ Yes: null;
1276
+ No: null;
1277
+ Maybe: null;
1278
+ Tools: null;
1279
+ Quality: null;
1280
+ "Failed Check": null;
1281
+ "Critical Success": null;
1282
+ Botch: null;
1283
+ "Improvement Cost": null;
1284
+ "Front Cover Inside": null;
1285
+ "Back Cover Inside": null;
1286
+ ".input {$printing :number} {{since the {$printing}. printing}}": null;
1287
+ ".input {$printing :number} {{removed in {$printing}. printing}}": null;
1288
+ "Base Value": null;
1289
+ "Base {$name} from Race": null;
1290
+ "Race Base {$abbreviation}": null;
1291
+ "Primary attribute for the magic user\u2019s Tradition": null;
1292
+ "Primary attribute for the Blessed One\u2019s Tradition": null;
1293
+ "The following rule is a Level {$level} focus rule for the topic {$topic}.": null;
1294
+ "Protective Circle": null;
1295
+ "Warding Circle": null;
1296
+ Prerequisites: null;
1297
+ "AP Value": null;
1298
+ ".input {$value :number} {{{$value} Adventure Points per level}}": null;
1299
+ tiny: null;
1300
+ small: null;
1301
+ medium: null;
1302
+ large: null;
1303
+ huge: null;
1304
+ "{$values} AP for size category {$labels} (per level)": null;
1305
+ "A/B/C/D skill": null;
1306
+ "A/B/C/D spell": null;
1307
+ "A/B/C/D ritual": null;
1308
+ "A/B/C/D liturgical chant": null;
1309
+ "A/B/C/D ceremony": null;
1310
+ "A/B/C/D spellwork": null;
1311
+ "A/B/C/D liturgical chant or ceremony": null;
1312
+ "A/B/C/D ability": null;
1313
+ "B/C/D combat technique": null;
1314
+ "depending on the trade secret": null;
1315
+ "{$values} Adventure Points for the {$labels} purchase": null;
1316
+ "{$values}/and so on Adventure Points for the {$labels}/and so on purchase": null;
1317
+ ".input {$value :number} {{{$value} Adventure Points with {$name}}}": null;
1318
+ "Half the chosen disease\u2019s level in adventure points": null;
1319
+ "The chosen disease\u2019s level in adventure points": null;
1320
+ "Half the chosen poison\u2019s level in adventure points": null;
1321
+ "The chosen poison\u2019s level in adventure points": null;
1322
+ "{$values} adventure points for a {$sized} animal shape": null;
1323
+ Aspect: null;
1324
+ "As chosen": null;
1325
+ Passive: null;
1326
+ "Basic Maneuver": null;
1327
+ "Special Maneuver": null;
1328
+ Volume: null;
1329
+ Penalty: null;
1330
+ "Binding Cost": null;
1331
+ "one or two of these special abilities can alternatively be replaced by advanced special abilities {$first} and/or {$second}": null;
1332
+ ".input {$count :number} {{{$count} more by primary patron}}": null;
1333
+ Patron: null;
1334
+ "corresponding combat style special ability": null;
1335
+ "corresponding liturgical style special ability": null;
1336
+ "corresponding magic style special ability": null;
1337
+ "corresponding skill style special ability": null;
1338
+ All: null;
1339
+ "All Close Combat Techniques": null;
1340
+ "All Ranged Combat Techniques": null;
1341
+ "Depends on combat style; both combat styles can be used only for their corresponding combat techniques": null;
1342
+ "only improvised weapons": null;
1343
+ "weapon must have a pointed blade": null;
1344
+ "while mounted": null;
1345
+ "while weapon of race {$race}": null;
1346
+ "except {$list}": null;
1347
+ "All Two-Handed Weapons": null;
1348
+ "All Parrying Weapons": null;
1349
+ "with parry": null;
1350
+ "that may be performed with one-handed weapons": null;
1351
+ "only those with at least one blunt side": null;
1352
+ "only {$nameWithLevel}": null;
1353
+ "only {$weapons}": null;
1354
+ ".input {$ord :number} {{{$ord}. attack}}": null;
1355
+ ".input {$ord :number} {{{$ord}. throw}}": null;
1356
+ "depending on the level of the special ability {$name}": null;
1357
+ "for parry": null;
1358
+ "one-handed weapon": null;
1359
+ "two-handed weapon": null;
1360
+ "for secondary fighters with/without special ability {$name}": null;
1361
+ "{$start} to {$end}": null;
1362
+ "Depends on zone": null;
1363
+ ".input {$points :number} {{{$points} points}}": null;
1364
+ ".input {$points :number} {{{$points} points per level}}": null;
1365
+ "{$points} points": null;
1366
+ "{$points} points for levels {$levels}": null;
1367
+ "{$value} LP": null;
1368
+ ".input {$value :number} {{{$value} permanent AE}}": null;
1369
+ "{$value} permanent AE": null;
1370
+ "{$value} pAE": null;
1371
+ "{$cost} per {$interval}": null;
1372
+ "{$cost}/{$interval}": null;
1373
+ "{$cost} per {$countable}": null;
1374
+ "{$cost}/{$countable}": null;
1375
+ "{$cost} per level": null;
1376
+ "{$cost} for level {$level}": null;
1377
+ Variable: null;
1378
+ Guideline: null;
1379
+ "Elective Spellworks Package": null;
1380
+ "Restricted Spellworks": null;
1381
+ "All, at the GM\u2019s discretion": null;
1382
+ ".input {$count :number} {{only {$count} additional spellworks with the Property {$property}}}": null;
1383
+ "no spellworks with the Property {$property}": null;
1384
+ "Demon Summoning": null;
1385
+ "the following spells are not taught: {$spells}": null;
1386
+ "no Borbaradian spellworks": null;
1387
+ "no spellworks that inflict DP or sDP on intelligent creatures": null;
1388
+ "Spellwork Changes": null;
1389
+ "Skills (+)": null;
1390
+ "Skills (\u2212)": null;
1391
+ "{$replacement} instead of {$base}": null;
1392
+ "Clothing Package {$socialStatus}": null;
1393
+ Cost: null;
1394
+ Total: null;
1395
+ ".input {$value :number} {{{$value} pounds}}": null;
1396
+ "{$value} pounds": null;
1397
+ ".input {$value :number} {{{$value} silverthalers}}": null;
1398
+ "{$value} silverthalers": null;
1399
+ ".input {$from :number} .input {$to :number} {{{$from}\u2013{$to} pounds}}": null;
1400
+ ".input {$from :number} .input {$to :number} {{{$from}\u2013{$to} silverthalers}}": null;
1401
+ free: null;
1402
+ various: null;
1403
+ invaluable: null;
1404
+ "Damage Points": null;
1405
+ "Primary Attribute + Damage Threshold": null;
1406
+ "Attack/Parry Modifier": null;
1407
+ Reach: null;
1408
+ "Weight (Bronze/Silver/Gold)": null;
1409
+ Length: null;
1410
+ "Cost (Bronze/Silver/Gold)": null;
1411
+ "Reload Time": null;
1412
+ "Range Brackets": null;
1413
+ Ammunition: null;
1414
+ Protection: null;
1415
+ "Additional Penalties": null;
1416
+ "Burning Time": null;
1417
+ Color: null;
1418
+ "Language/Script": null;
1419
+ Complexity: null;
1420
+ "Weapon Advantage": null;
1421
+ "Weapon Disadvantage": null;
1422
+ "Armor Advantage": null;
1423
+ "Armor Disadvantage": null;
1424
+ "Combat Technique {$name}": null;
1425
+ Primitive: null;
1426
+ Simple: null;
1427
+ Complex: null;
1428
+ Various: null;
1429
+ "Parrying weapon (PA bonus +1 for the main weapon)": null;
1430
+ "To buy a {$itemName} during hero creation, the character must have Tradition ({$traditions}).": null;
1431
+ "Sanctified ({$sanctifiedTraditions}); only Blessed Ones of {$traditions} may purchase weapons sanctified by {$traditions}, respectively.": null;
1432
+ "Sanctified ({$tradition}); only Blessed Ones of {$tradition} may purchase weapons sanctified by {$tradition}.": null;
1433
+ "To buy a {$name} during hero creation, the character must be from the culture of the {$cultures}.": null;
1434
+ "To buy a {$itemName} during hero creation, the character must have a shamanistic tradition.": null;
1435
+ "To buy a {$name} during hero creation, the character must be from a culture common to the race of {$races}.": null;
1436
+ ".input {$value :number} {{{$value} inches}}": null;
1437
+ unlimited: null;
1438
+ "Structure Points": null;
1439
+ ".input {$value :number} {{{$value} Structure Points}}": null;
1440
+ "{$value} Structure Points": null;
1441
+ Components: null;
1442
+ Use: null;
1443
+ purchase: null;
1444
+ sale: null;
1445
+ "{$types} poison": null;
1446
+ "Weapon (poison)": null;
1447
+ "Ingestion (poison)": null;
1448
+ "Inhalation (poison)": null;
1449
+ "Contact (poison)": null;
1450
+ Level: null;
1451
+ Type: null;
1452
+ "animal venom": null;
1453
+ "alchemical poison": null;
1454
+ "mineral poison": null;
1455
+ "plant poison": null;
1456
+ "demonic poison": null;
1457
+ "Archaic laboratory": null;
1458
+ "Witch kitchen": null;
1459
+ "Alchemist\u2019s laboratory": null;
1460
+ Resistance: null;
1461
+ "{$first} or {$second}, depending on which value is lower": null;
1462
+ Start: null;
1463
+ immediate: null;
1464
+ instant: null;
1465
+ "Typical Ingredients": null;
1466
+ "Price of Ingredients/Level": null;
1467
+ Laboratory: null;
1468
+ "Brewing Difficulty": null;
1469
+ "Brewing Process": null;
1470
+ "Trade Secret": null;
1471
+ "The poison levels equals the QL.": null;
1472
+ ".input {$value :number} {{{$value} applications every {$interval}}}": null;
1473
+ "{$valueRange} on {$dice}": null;
1474
+ Ingestion: null;
1475
+ "Side Effect": null;
1476
+ Overdose: null;
1477
+ Legality: null;
1478
+ legal: null;
1479
+ illegal: null;
1480
+ Addiction: null;
1481
+ "Value/Cost": null;
1482
+ "cannot be extracted": null;
1483
+ ".input {$hiddenCount :number} {{Alternative Names}}": null;
1484
+ ".input {$count :number} {{check required every {$count}. application}}": null;
1485
+ ".input {$count :number} {{check required every {$count}. application in the same month}}": null;
1486
+ "see {$link}": null;
1487
+ CoD: null;
1488
+ "Romance Novel": null;
1489
+ Poetry: null;
1490
+ "Political Pamphlet": null;
1491
+ "Crime Story": null;
1492
+ "Fairy Tale": null;
1493
+ Novel: null;
1494
+ "Professional Publication": null;
1495
+ "Magical Book": null;
1496
+ "Religious Works": null;
1497
+ "Content Quality": null;
1498
+ Modest: null;
1499
+ Average: null;
1500
+ Demanding: null;
1501
+ "CL {$level}": null;
1502
+ Availability: null;
1503
+ Reconstruction: null;
1504
+ References: null;
1505
+ Entertainment: null;
1506
+ Topics: null;
1507
+ "Place of Publication": null;
1508
+ Failed: null;
1509
+ Progress: null;
1510
+ "Incubation Time": null;
1511
+ Damage: null;
1512
+ Causes: null;
1513
+ Treatment: null;
1514
+ Antidote: null;
1515
+ ".input {$value :number} {{{$value}%}}": null;
1516
+ "Animal Types": null;
1517
+ "Communicability to Intelligent Creatures": null;
1518
+ "childhood disease": null;
1519
+ "magical disease": null;
1520
+ "Can be combined with": null;
1521
+ Skill: null;
1522
+ "{$defaultDuration}, but no more than {$maximumDuration}": null;
1523
+ "Music Tradition": null;
1524
+ long: null;
1525
+ short: null;
1526
+ "one-time": null;
1527
+ sustainable: null;
1528
+ "{$firstPersonValue} for the first person; {$additionalPersonValue} for each additional person": null;
1529
+ "Tribe Tradition": null;
1530
+ "Depends on animal type": null;
1531
+ "Crafting Time (slow / fast)": null;
1532
+ "Duration (slow / fast)": null;
1533
+ "Combat Technique": null;
1534
+ CT: null;
1535
+ "All familiars know this trick by default.": null;
1536
+ "All AE": null;
1537
+ "All AE, at least {$value} AE": null;
1538
+ "depends on spent AE": null;
1539
+ "{$derivedCharacteristic} Base Value": null;
1540
+ "Attribute Adjustments": null;
1541
+ "one attribute of your choice": null;
1542
+ "Common Cultures": null;
1543
+ "Automatic Advantages": null;
1544
+ "Automatic Disadvantages": null;
1545
+ "Strongly recommended Advantages and Disadvantages": null;
1546
+ "The following advantages and disadvantages distinguish Aventurian {$race}. You should choose these advantages and disadvantages. If you don\u2019t want to take them, talk to your GM.": null;
1547
+ "Uncommon Advantages": null;
1548
+ "Uncommon Disadvantages": null;
1549
+ Language: null;
1550
+ Script: null;
1551
+ "Area Knowledge": null;
1552
+ "Common Professions": null;
1553
+ "Uncommon Skills": null;
1554
+ "Common Names": null;
1555
+ "Cultural Package {$cultureName}": null;
1556
+ "for example, {$examples}": null;
1557
+ "all but {$excludedProfessions :list type=conjunction}": null;
1558
+ "Mundane Professions": null;
1559
+ "Magic Professions": null;
1560
+ "Blessed Professions": null;
1561
+ rare: null;
1562
+ "very rare": null;
1563
+ "Magic Dilettante": null;
1564
+ "mostly {$variants :list type=conjunction}": null;
1565
+ "only {$variants :list type=conjunction}": null;
1566
+ "Suggested Advantages": null;
1567
+ "Suggested Disadvantages": null;
1568
+ "Unsuitable Advantages": null;
1569
+ "Unsuitable Disadvantages": null;
1570
+ Variants: null;
1571
+ "Languages and Literacy totaling {$apValue} AP": null;
1572
+ "no Languages and Literacy totaling {$apValue} AP": null;
1573
+ "Skill Specialization {$possibleSkills}": null;
1574
+ "no Skill Specialization {$possibleSkills}": null;
1575
+ "Skill Specialization for a {$skillOfGroup}": null;
1576
+ "no Skill Specialization for a {$skillOfGroup}": null;
1577
+ ".input {$count :number} {{{$count} of the following combat techniques {$rating}}}": null;
1578
+ ".input {$count :number} {{{$previous}, {$count} others {$rating}}}": null;
1579
+ "{$previous}, the others {$rating}": null;
1580
+ "Curses totaling {$apValue} AP": null;
1581
+ "no Curses totaling {$apValue} AP": null;
1582
+ "Liturgies totaling {$apValue} AP": null;
1583
+ "no Liturgies totaling {$apValue} AP": null;
1584
+ "{$apValue} AP to improve other {$skillsOfGroup}": null;
1585
+ "{$apValue} AP to distribute among the following skills: {$list}": null;
1586
+ "no AP to improve other {$skillsOfGroup}": null;
1587
+ ".input {$count :number} {{{$count} cantrips}}": null;
1588
+ "{$count} from the following list": null;
1589
+ "The Twelve Blessings": null;
1590
+ "except for {$list :list type=conjunction}": null;
1591
+ "depends on selected tradition": null;
1592
+ "Additional Prerequisites": null;
1593
+ Enhancements: null;
1594
+ "SR {$value}": null;
1595
+ ".input {$hiddenCount :number} {{Prerequisites}}": null;
1596
+ "Spell Enhancement {$spell}": null;
1597
+ "Ritual Enhancement {$ritual}": null;
1598
+ "Liturgical Enhancement {$liturgicalChantOrCeremony}": null;
1599
+ "Profession Package": null;
1600
+ "Optional Rule": null;
1601
+ }>, false>;
1602
+ }, undefined>;
1603
+ export declare const NestedTranslationMap: <Name extends string, T extends Record<string, DB.MemberDecl>, R extends boolean>(MemberDeclCreator: <T_1 extends DB.Type>(options: {
1604
+ comment?: string;
1605
+ isDeprecated?: boolean;
1606
+ type: T_1;
1607
+ }) => DB.MemberDecl<T_1, R>, entityName: Name, type: DB.Object<T>) => DB.MemberDecl<DB.NestedEntityMap<`${Name}Translation`, T>, R>;