optolith-database-schema 0.17.2 → 0.18.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.
- package/CHANGELOG.md +34 -1
- package/lib/main.d.ts +2 -101
- package/lib/main.js +361 -106
- package/lib/test.d.ts +1 -0
- package/lib/test.js +2 -0
- package/lib/types/Advantage.d.ts +921 -63
- package/lib/types/Advantage.js +42 -13
- package/lib/types/AnimalDisease.d.ts +90 -59
- package/lib/types/AnimalDisease.js +28 -13
- package/lib/types/AnimalType.d.ts +6 -28
- package/lib/types/AnimalType.js +14 -13
- package/lib/types/ArcaneBardTradition.d.ts +30 -10
- package/lib/types/ArcaneBardTradition.js +7 -13
- package/lib/types/ArcaneDancerTradition.d.ts +30 -10
- package/lib/types/ArcaneDancerTradition.js +7 -13
- package/lib/types/Aspect.d.ts +7 -33
- package/lib/types/Aspect.js +20 -13
- package/lib/types/Attribute.d.ts +8 -36
- package/lib/types/Attribute.js +23 -13
- package/lib/types/Blessing.d.ts +96 -113
- package/lib/types/Blessing.js +94 -13
- package/lib/types/Cantrip.d.ts +132 -183
- package/lib/types/Cantrip.js +159 -13
- package/lib/types/Ceremony.d.ts +630 -113
- package/lib/types/Ceremony.js +87 -13
- package/lib/types/CombatTechnique.d.ts +127 -0
- package/lib/types/CombatTechnique.js +101 -0
- package/lib/types/Condition.d.ts +52 -40
- package/lib/types/Condition.js +31 -13
- package/lib/types/Continent.d.ts +6 -30
- package/lib/types/Continent.js +15 -13
- package/lib/types/Culture.d.ts +142 -369
- package/lib/types/Culture.js +355 -13
- package/lib/types/DerivedCharacteristic.d.ts +76 -61
- package/lib/types/DerivedCharacteristic.js +45 -13
- package/lib/types/Disadvantage.d.ts +921 -58
- package/lib/types/Disadvantage.js +45 -13
- package/lib/types/Disease.d.ts +81 -43
- package/lib/types/Disease.js +15 -13
- package/lib/types/Element.d.ts +6 -28
- package/lib/types/Element.js +14 -13
- package/lib/types/ExperienceLevel.d.ts +13 -64
- package/lib/types/ExperienceLevel.js +43 -13
- package/lib/types/EyeColor.d.ts +6 -28
- package/lib/types/EyeColor.js +14 -13
- package/lib/types/FamiliarsTrick.d.ts +189 -266
- package/lib/types/FamiliarsTrick.js +193 -13
- package/lib/types/HairColor.d.ts +6 -28
- package/lib/types/HairColor.js +14 -13
- package/lib/types/Lessons.d.ts +180 -0
- package/lib/types/Lessons.js +212 -0
- package/lib/types/LiturgicalChant.d.ts +630 -113
- package/lib/types/LiturgicalChant.js +87 -13
- package/lib/types/Locale.d.ts +11 -36
- package/lib/types/Locale.js +1316 -13
- package/lib/types/MetaCondition.d.ts +52 -43
- package/lib/types/MetaCondition.js +32 -13
- package/lib/types/PactCategory.d.ts +74 -78
- package/lib/types/PactCategory.js +65 -13
- package/lib/types/Patron.d.ts +100 -197
- package/lib/types/Patron.js +195 -13
- package/lib/types/PatronCategory.d.ts +7 -36
- package/lib/types/PatronCategory.js +19 -13
- package/lib/types/PersonalityTrait.d.ts +80 -67
- package/lib/types/PersonalityTrait.js +51 -13
- package/lib/types/Profession.d.ts +1911 -665
- package/lib/types/Profession.js +593 -13
- package/lib/types/Property.d.ts +7 -34
- package/lib/types/Property.js +19 -13
- package/lib/types/Race.d.ts +163 -349
- package/lib/types/Race.js +287 -13
- package/lib/types/Region.d.ts +6 -28
- package/lib/types/Region.js +14 -13
- package/lib/types/Ritual.d.ts +627 -111
- package/lib/types/Ritual.js +88 -13
- package/lib/types/Service.d.ts +55 -43
- package/lib/types/Service.js +38 -13
- package/lib/types/SexPractice.d.ts +50 -47
- package/lib/types/SexPractice.js +32 -13
- package/lib/types/Skill.d.ts +112 -131
- package/lib/types/Skill.js +120 -10
- package/lib/types/SkillGroup.d.ts +8 -37
- package/lib/types/SkillGroup.js +23 -13
- package/lib/types/SkillModificationLevel.d.ts +31 -101
- package/lib/types/SkillModificationLevel.js +95 -10
- package/lib/types/SocialStatus.d.ts +7 -28
- package/lib/types/SocialStatus.js +18 -13
- package/lib/types/Spell.d.ts +627 -111
- package/lib/types/Spell.js +88 -13
- package/lib/types/State.d.ts +51 -36
- package/lib/types/State.js +24 -13
- package/lib/types/Talisman.d.ts +64 -70
- package/lib/types/Talisman.js +64 -13
- package/lib/types/TargetCategory.d.ts +7 -42
- package/lib/types/TargetCategory.js +19 -13
- package/lib/types/_Activatable.d.ts +1587 -1366
- package/lib/types/_Activatable.js +1392 -2
- package/lib/types/_ActivatableSelectOptionCategory.d.ts +657 -386
- package/lib/types/_ActivatableSelectOptionCategory.js +381 -1
- package/lib/types/_ActivatableSkill.d.ts +1105 -34
- package/lib/types/_ActivatableSkill.js +82 -1
- package/lib/types/_ActivatableSkillCastingTime.d.ts +66 -74
- package/lib/types/_ActivatableSkillCastingTime.js +92 -1
- package/lib/types/_ActivatableSkillCheckResultBased.d.ts +25 -33
- package/lib/types/_ActivatableSkillCheckResultBased.js +44 -1
- package/lib/types/_ActivatableSkillCost.d.ts +209 -255
- package/lib/types/_ActivatableSkillCost.js +224 -1
- package/lib/types/_ActivatableSkillDuration.d.ts +202 -135
- package/lib/types/_ActivatableSkillDuration.js +138 -1
- package/lib/types/_ActivatableSkillEffect.d.ts +16 -68
- package/lib/types/_ActivatableSkillEffect.js +65 -1
- package/lib/types/_ActivatableSkillRange.d.ts +61 -115
- package/lib/types/_ActivatableSkillRange.js +106 -1
- package/lib/types/_ActivatableSkillTargetCategory.d.ts +13 -39
- package/lib/types/_ActivatableSkillTargetCategory.js +29 -1
- package/lib/types/_AlternativeNames.d.ts +5 -11
- package/lib/types/_AlternativeNames.js +14 -1
- package/lib/types/_ArcaneTradition.d.ts +30 -28
- package/lib/types/_ArcaneTradition.js +14 -4
- package/lib/types/_Blessed.d.ts +8 -22
- package/lib/types/_Blessed.js +22 -1
- package/lib/types/_CommonnessRatedAdvantageDisadvantage.d.ts +4 -10
- package/lib/types/_CommonnessRatedAdvantageDisadvantage.js +12 -1
- package/lib/types/_Dice.d.ts +6 -19
- package/lib/types/_Dice.js +23 -1
- package/lib/types/_DiseasePoison.d.ts +56 -107
- package/lib/types/_DiseasePoison.js +107 -2
- package/lib/types/_Enhancements.d.ts +165 -59
- package/lib/types/_Enhancements.js +66 -1
- package/lib/types/_I18n.d.ts +14 -42
- package/lib/types/_I18n.js +55 -1
- package/lib/types/_Identifier.d.ts +158 -1274
- package/lib/types/_Identifier.js +300 -1
- package/lib/types/_IdentifierGroup.d.ts +278 -29
- package/lib/types/_IdentifierGroup.js +340 -1
- package/lib/types/_ImprovementCost.d.ts +7 -4
- package/lib/types/_ImprovementCost.js +10 -1
- package/lib/types/_Influence.d.ts +78 -49
- package/lib/types/_Influence.js +42 -4
- package/lib/types/_Prerequisite.d.ts +370 -106
- package/lib/types/_Prerequisite.js +136 -1
- package/lib/types/_ResponsiveText.d.ts +13 -54
- package/lib/types/_ResponsiveText.js +37 -1
- package/lib/types/_Sex.d.ts +5 -7
- package/lib/types/_Sex.js +8 -4
- package/lib/types/_SkillCheck.d.ts +10 -15
- package/lib/types/_SkillCheck.js +34 -1
- package/lib/types/_Spellwork.d.ts +5 -18
- package/lib/types/_Spellwork.js +13 -1
- package/lib/types/equipment/EquipmentPackage.d.ts +80 -51
- package/lib/types/equipment/EquipmentPackage.js +34 -13
- package/lib/types/equipment/item/Ammunition.d.ts +69 -32
- package/lib/types/equipment/item/Ammunition.js +29 -13
- package/lib/types/equipment/item/Animal.d.ts +71 -19
- package/lib/types/equipment/item/Animal.js +15 -13
- package/lib/types/equipment/item/AnimalCare.d.ts +86 -49
- package/lib/types/equipment/item/AnimalCare.js +51 -13
- package/lib/types/equipment/item/Armor.d.ts +120 -186
- package/lib/types/equipment/item/Armor.js +156 -13
- package/lib/types/equipment/item/BandageOrRemedy.d.ts +176 -37
- package/lib/types/equipment/item/BandageOrRemedy.js +2 -14
- package/lib/types/equipment/item/Book.d.ts +84 -61
- package/lib/types/equipment/item/Book.js +57 -13
- package/lib/types/equipment/item/CeremonialItem.d.ts +178 -42
- package/lib/types/equipment/item/CeremonialItem.js +36 -13
- package/lib/types/equipment/item/Clothes.d.ts +176 -7
- package/lib/types/equipment/item/Clothes.js +2 -14
- package/lib/types/equipment/item/Container.d.ts +176 -7
- package/lib/types/equipment/item/Container.js +2 -14
- package/lib/types/equipment/item/Elixir.d.ts +91 -76
- package/lib/types/equipment/item/Elixir.js +54 -13
- package/lib/types/equipment/item/EquipmentOfBlessedOnes.d.ts +170 -29
- package/lib/types/equipment/item/EquipmentOfBlessedOnes.js +28 -13
- package/lib/types/equipment/item/GemOrPreciousStone.d.ts +72 -44
- package/lib/types/equipment/item/GemOrPreciousStone.js +41 -13
- package/lib/types/equipment/item/IlluminationLightSource.d.ts +186 -61
- package/lib/types/equipment/item/IlluminationLightSource.js +61 -13
- package/lib/types/equipment/item/IlluminationRefillOrSupply.d.ts +176 -0
- package/lib/types/equipment/item/IlluminationRefillOrSupply.js +2 -0
- package/lib/types/equipment/item/Jewelry.d.ts +73 -61
- package/lib/types/equipment/item/Jewelry.js +37 -13
- package/lib/types/equipment/item/Liebesspielzeug.d.ts +176 -7
- package/lib/types/equipment/item/Liebesspielzeug.js +2 -14
- package/lib/types/equipment/item/LuxuryGood.d.ts +176 -37
- package/lib/types/equipment/item/LuxuryGood.js +2 -14
- package/lib/types/equipment/item/MagicalArtifact.d.ts +71 -40
- package/lib/types/equipment/item/MagicalArtifact.js +15 -13
- package/lib/types/equipment/item/MusicalInstrument.d.ts +174 -32
- package/lib/types/equipment/item/MusicalInstrument.js +27 -13
- package/lib/types/equipment/item/OrienteeringAid.d.ts +176 -7
- package/lib/types/equipment/item/OrienteeringAid.js +2 -14
- package/lib/types/equipment/item/Poison.d.ts +483 -354
- package/lib/types/equipment/item/Poison.js +386 -13
- package/lib/types/equipment/item/RopeOrChain.d.ts +176 -7
- package/lib/types/equipment/item/RopeOrChain.js +2 -14
- package/lib/types/equipment/item/Stationery.d.ts +176 -0
- package/lib/types/equipment/item/Stationery.js +2 -0
- package/lib/types/equipment/item/ThievesTool.d.ts +176 -7
- package/lib/types/equipment/item/ThievesTool.js +2 -14
- package/lib/types/equipment/item/ToolOfTheTrade.d.ts +89 -61
- package/lib/types/equipment/item/ToolOfTheTrade.js +40 -13
- package/lib/types/equipment/item/TravelGearOrTool.d.ts +176 -7
- package/lib/types/equipment/item/TravelGearOrTool.js +2 -14
- package/lib/types/equipment/item/Vehicle.d.ts +71 -19
- package/lib/types/equipment/item/Vehicle.js +15 -13
- package/lib/types/equipment/item/Weapon.d.ts +223 -166
- package/lib/types/equipment/item/Weapon.js +153 -13
- package/lib/types/equipment/item/WeaponAccessory.d.ts +176 -7
- package/lib/types/equipment/item/WeaponAccessory.js +2 -14
- package/lib/types/equipment/item/_Herbary.d.ts +42 -16
- package/lib/types/equipment/item/_Herbary.js +36 -1
- package/lib/types/equipment/item/_Item.d.ts +317 -160
- package/lib/types/equipment/item/_Item.js +144 -1
- package/lib/types/equipment/item/_MeleeWeapon.d.ts +37 -105
- package/lib/types/equipment/item/_MeleeWeapon.js +92 -1
- package/lib/types/equipment/item/_RangedWeapon.d.ts +25 -106
- package/lib/types/equipment/item/_RangedWeapon.js +85 -1
- package/lib/types/equipment/item/_Weapon.d.ts +13 -57
- package/lib/types/equipment/item/_Weapon.js +49 -1
- package/lib/types/equipment/item/sub/ArmorType.d.ts +7 -37
- package/lib/types/equipment/item/sub/ArmorType.js +18 -13
- package/lib/types/equipment/item/sub/Reach.d.ts +6 -28
- package/lib/types/equipment/item/sub/Reach.js +14 -13
- package/lib/types/index.d.ts +148 -0
- package/lib/types/index.js +148 -0
- package/lib/types/magicalActions/AnimistPower.d.ts +299 -238
- package/lib/types/magicalActions/AnimistPower.js +182 -13
- package/lib/types/magicalActions/AnimistPower_Tribe.d.ts +6 -28
- package/lib/types/magicalActions/AnimistPower_Tribe.js +14 -13
- package/lib/types/magicalActions/Curse.d.ts +215 -162
- package/lib/types/magicalActions/Curse.js +126 -13
- package/lib/types/magicalActions/DominationRitual.d.ts +200 -145
- package/lib/types/magicalActions/DominationRitual.js +126 -13
- package/lib/types/magicalActions/ElvenMagicalSong.d.ts +121 -135
- package/lib/types/magicalActions/ElvenMagicalSong.js +111 -13
- package/lib/types/magicalActions/GeodeRitual.d.ts +205 -180
- package/lib/types/magicalActions/GeodeRitual.js +135 -13
- package/lib/types/magicalActions/JesterTrick.d.ts +299 -177
- package/lib/types/magicalActions/JesterTrick.js +153 -13
- package/lib/types/magicalActions/MagicalDance.d.ts +125 -119
- package/lib/types/magicalActions/MagicalDance.js +113 -13
- package/lib/types/magicalActions/MagicalMelody.d.ts +116 -124
- package/lib/types/magicalActions/MagicalMelody.js +111 -13
- package/lib/types/magicalActions/MagicalRune.d.ts +300 -294
- package/lib/types/magicalActions/MagicalRune.js +278 -13
- package/lib/types/magicalActions/ZibiljaRitual.d.ts +396 -102
- package/lib/types/magicalActions/ZibiljaRitual.js +81 -13
- package/lib/types/magicalActions/_MusicTradition.d.ts +17 -30
- package/lib/types/magicalActions/_MusicTradition.js +43 -1
- package/lib/types/prerequisites/ConditionalPrerequisites.d.ts +24 -10
- package/lib/types/prerequisites/ConditionalPrerequisites.js +9 -1
- package/lib/types/prerequisites/DisplayOption.d.ts +13 -32
- package/lib/types/prerequisites/DisplayOption.js +27 -1
- package/lib/types/prerequisites/PrerequisiteGroups.d.ts +1338 -215
- package/lib/types/prerequisites/PrerequisiteGroups.js +160 -1
- package/lib/types/prerequisites/single/ActivatablePrerequisite.d.ts +107 -31
- package/lib/types/prerequisites/single/ActivatablePrerequisite.js +32 -1
- package/lib/types/prerequisites/single/AncestorBloodPrerequisite.d.ts +1 -2
- package/lib/types/prerequisites/single/AncestorBloodPrerequisite.js +4 -1
- package/lib/types/prerequisites/single/AnimistPowerPrerequisite.d.ts +18 -26
- package/lib/types/prerequisites/single/AnimistPowerPrerequisite.js +24 -1
- package/lib/types/prerequisites/single/CulturePrerequisite.d.ts +16 -13
- package/lib/types/prerequisites/single/CulturePrerequisite.js +16 -1
- package/lib/types/prerequisites/single/EnhancementPrerequisite.d.ts +4 -39
- package/lib/types/prerequisites/single/EnhancementPrerequisite.js +12 -1
- package/lib/types/prerequisites/single/InfluencePrerequisite.d.ts +17 -16
- package/lib/types/prerequisites/single/InfluencePrerequisite.js +19 -1
- package/lib/types/prerequisites/single/PactPrerequisite.d.ts +18 -23
- package/lib/types/prerequisites/single/PactPrerequisite.js +24 -1
- package/lib/types/prerequisites/single/PrimaryAttributePrerequisite.d.ts +20 -18
- package/lib/types/prerequisites/single/PrimaryAttributePrerequisite.js +25 -1
- package/lib/types/prerequisites/single/PublicationPrerequisite.d.ts +16 -12
- package/lib/types/prerequisites/single/PublicationPrerequisite.js +15 -1
- package/lib/types/prerequisites/single/RacePrerequisite.d.ts +17 -16
- package/lib/types/prerequisites/single/RacePrerequisite.js +19 -1
- package/lib/types/prerequisites/single/RatedMinimumNumberPrerequisite.d.ts +51 -63
- package/lib/types/prerequisites/single/RatedMinimumNumberPrerequisite.js +80 -1
- package/lib/types/prerequisites/single/RatedPrerequisite.d.ts +26 -18
- package/lib/types/prerequisites/single/RatedPrerequisite.js +19 -1
- package/lib/types/prerequisites/single/RatedSumPrerequisite.d.ts +17 -19
- package/lib/types/prerequisites/single/RatedSumPrerequisite.js +19 -1
- package/lib/types/prerequisites/single/RulePrerequisite.d.ts +19 -9
- package/lib/types/prerequisites/single/RulePrerequisite.js +15 -1
- package/lib/types/prerequisites/single/SexPrerequisite.d.ts +19 -10
- package/lib/types/prerequisites/single/SexPrerequisite.js +15 -1
- package/lib/types/prerequisites/single/SexualCharacteristicPrerequisite.d.ts +7 -8
- package/lib/types/prerequisites/single/SexualCharacteristicPrerequisite.js +17 -1
- package/lib/types/prerequisites/single/SocialStatusPrerequisite.d.ts +16 -13
- package/lib/types/prerequisites/single/SocialStatusPrerequisite.js +16 -1
- package/lib/types/prerequisites/single/StatePrerequisite.d.ts +16 -10
- package/lib/types/prerequisites/single/StatePrerequisite.js +15 -1
- package/lib/types/prerequisites/single/TextPrerequisite.d.ts +19 -49
- package/lib/types/prerequisites/single/TextPrerequisite.js +53 -1
- package/lib/types/prerequisites/single/TraditionPrerequisite.d.ts +37 -33
- package/lib/types/prerequisites/single/TraditionPrerequisite.js +42 -1
- package/lib/types/rule/CoreRule.d.ts +142 -310
- package/lib/types/rule/CoreRule.js +172 -13
- package/lib/types/rule/FocusRule.d.ts +54 -53
- package/lib/types/rule/FocusRule.js +37 -13
- package/lib/types/rule/FocusRule_Subject.d.ts +6 -29
- package/lib/types/rule/FocusRule_Subject.js +15 -13
- package/lib/types/rule/OptionalRule.d.ts +52 -41
- package/lib/types/rule/OptionalRule.js +28 -13
- package/lib/types/source/Publication.d.ts +50 -70
- package/lib/types/source/Publication.js +57 -13
- package/lib/types/source/_Erratum.d.ts +9 -23
- package/lib/types/source/_Erratum.js +19 -1
- package/lib/types/source/_PublicationRef.d.ts +161 -148
- package/lib/types/source/_PublicationRef.js +98 -1
- package/lib/types/specialAbility/AdvancedCombatSpecialAbility.d.ts +1034 -52
- package/lib/types/specialAbility/AdvancedCombatSpecialAbility.js +36 -13
- package/lib/types/specialAbility/AdvancedKarmaSpecialAbility.d.ts +917 -34
- package/lib/types/specialAbility/AdvancedKarmaSpecialAbility.js +33 -13
- package/lib/types/specialAbility/AdvancedMagicalSpecialAbility.d.ts +917 -34
- package/lib/types/specialAbility/AdvancedMagicalSpecialAbility.js +33 -13
- package/lib/types/specialAbility/AdvancedSkillSpecialAbility.d.ts +917 -34
- package/lib/types/specialAbility/AdvancedSkillSpecialAbility.js +33 -13
- package/lib/types/specialAbility/AncestorGlyph.d.ts +916 -38
- package/lib/types/specialAbility/AncestorGlyph.js +35 -13
- package/lib/types/specialAbility/BlessedTradition.d.ts +948 -147
- package/lib/types/specialAbility/BlessedTradition.js +131 -13
- package/lib/types/specialAbility/BrawlingSpecialAbility.d.ts +980 -34
- package/lib/types/specialAbility/BrawlingSpecialAbility.js +32 -13
- package/lib/types/specialAbility/CeremonialItemSpecialAbility.d.ts +918 -40
- package/lib/types/specialAbility/CeremonialItemSpecialAbility.js +33 -13
- package/lib/types/specialAbility/CombatSpecialAbility.d.ts +1036 -45
- package/lib/types/specialAbility/CombatSpecialAbility.js +37 -13
- package/lib/types/specialAbility/CombatStyleSpecialAbility.d.ts +1035 -42
- package/lib/types/specialAbility/CombatStyleSpecialAbility.js +37 -13
- package/lib/types/specialAbility/CommandSpecialAbility.d.ts +980 -38
- package/lib/types/specialAbility/CommandSpecialAbility.js +32 -13
- package/lib/types/specialAbility/FamiliarSpecialAbility.d.ts +915 -32
- package/lib/types/specialAbility/FamiliarSpecialAbility.js +30 -13
- package/lib/types/specialAbility/FatePointSexSpecialAbility.d.ts +915 -32
- package/lib/types/specialAbility/FatePointSexSpecialAbility.js +30 -13
- package/lib/types/specialAbility/FatePointSpecialAbility.d.ts +917 -39
- package/lib/types/specialAbility/FatePointSpecialAbility.js +32 -13
- package/lib/types/specialAbility/GeneralSpecialAbility.d.ts +918 -44
- package/lib/types/specialAbility/GeneralSpecialAbility.js +33 -13
- package/lib/types/specialAbility/KarmaSpecialAbility.d.ts +915 -37
- package/lib/types/specialAbility/KarmaSpecialAbility.js +30 -13
- package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.d.ts +966 -36
- package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.js +34 -13
- package/lib/types/specialAbility/LycantropicGift.d.ts +915 -32
- package/lib/types/specialAbility/LycantropicGift.js +30 -13
- package/lib/types/specialAbility/MagicStyleSpecialAbility.d.ts +966 -36
- package/lib/types/specialAbility/MagicStyleSpecialAbility.js +34 -13
- package/lib/types/specialAbility/MagicalSign.d.ts +86 -39
- package/lib/types/specialAbility/MagicalSign.js +31 -13
- package/lib/types/specialAbility/MagicalSpecialAbility.d.ts +918 -43
- package/lib/types/specialAbility/MagicalSpecialAbility.js +33 -13
- package/lib/types/specialAbility/MagicalTradition.d.ts +938 -114
- package/lib/types/specialAbility/MagicalTradition.js +97 -13
- package/lib/types/specialAbility/PactGift.d.ts +992 -97
- package/lib/types/specialAbility/PactGift.js +118 -13
- package/lib/types/specialAbility/ProtectiveWardingCircleSpecialAbility.d.ts +917 -46
- package/lib/types/specialAbility/ProtectiveWardingCircleSpecialAbility.js +41 -13
- package/lib/types/specialAbility/Sermon.d.ts +915 -32
- package/lib/types/specialAbility/Sermon.js +30 -13
- package/lib/types/specialAbility/SexSpecialAbility.d.ts +917 -34
- package/lib/types/specialAbility/SexSpecialAbility.js +32 -13
- package/lib/types/specialAbility/SikaryanDrainSpecialAbility.d.ts +915 -37
- package/lib/types/specialAbility/SikaryanDrainSpecialAbility.js +30 -13
- package/lib/types/specialAbility/SkillStyleSpecialAbility.d.ts +964 -34
- package/lib/types/specialAbility/SkillStyleSpecialAbility.js +32 -13
- package/lib/types/specialAbility/VampiricGift.d.ts +915 -37
- package/lib/types/specialAbility/VampiricGift.js +30 -13
- package/lib/types/specialAbility/Vision.d.ts +915 -32
- package/lib/types/specialAbility/Vision.js +30 -13
- package/lib/types/specialAbility/_Tradition.d.ts +5 -12
- package/lib/types/specialAbility/_Tradition.js +14 -1
- package/lib/types/specialAbility/sub/Language.d.ts +107 -117
- package/lib/types/specialAbility/sub/Language.js +87 -13
- package/lib/types/specialAbility/sub/Script.d.ts +61 -60
- package/lib/types/specialAbility/sub/Script.js +43 -13
- package/lib/types/specialAbility/sub/TradeSecret.d.ts +77 -48
- package/lib/types/specialAbility/sub/TradeSecret.js +36 -13
- package/lib/types/specialAbility/sub/_LanguageScript.d.ts +5 -11
- package/lib/types/specialAbility/sub/_LanguageScript.js +15 -1
- package/lib/types/traditionArtifacts/ArcaneOrbEnchantment.d.ts +1135 -47
- package/lib/types/traditionArtifacts/ArcaneOrbEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/AttireEnchantment.d.ts +1135 -47
- package/lib/types/traditionArtifacts/AttireEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/BowlEnchantment.d.ts +1135 -47
- package/lib/types/traditionArtifacts/BowlEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/CauldronEnchantment.d.ts +1136 -61
- package/lib/types/traditionArtifacts/CauldronEnchantment.js +41 -13
- package/lib/types/traditionArtifacts/ChronicleEnchantment.d.ts +1135 -47
- package/lib/types/traditionArtifacts/ChronicleEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/DaggerRitual.d.ts +1147 -71
- package/lib/types/traditionArtifacts/DaggerRitual.js +71 -13
- package/lib/types/traditionArtifacts/FoolsHatEnchantment.d.ts +1135 -47
- package/lib/types/traditionArtifacts/FoolsHatEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/InstrumentEnchantment.d.ts +1135 -47
- package/lib/types/traditionArtifacts/InstrumentEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/Krallenkettenzauber.d.ts +1135 -47
- package/lib/types/traditionArtifacts/Krallenkettenzauber.js +36 -13
- package/lib/types/traditionArtifacts/OrbEnchantment.d.ts +1135 -47
- package/lib/types/traditionArtifacts/OrbEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/RingEnchantment.d.ts +1135 -47
- package/lib/types/traditionArtifacts/RingEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/SickleRitual.d.ts +1135 -47
- package/lib/types/traditionArtifacts/SickleRitual.js +36 -13
- package/lib/types/traditionArtifacts/SpellSwordEnchantment.d.ts +1135 -52
- package/lib/types/traditionArtifacts/SpellSwordEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/StaffEnchantment.d.ts +1139 -57
- package/lib/types/traditionArtifacts/StaffEnchantment.js +41 -13
- package/lib/types/traditionArtifacts/ToyEnchantment.d.ts +1135 -47
- package/lib/types/traditionArtifacts/ToyEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/Trinkhornzauber.d.ts +1135 -47
- package/lib/types/traditionArtifacts/Trinkhornzauber.js +36 -13
- package/lib/types/traditionArtifacts/WandEnchantment.d.ts +1084 -42
- package/lib/types/traditionArtifacts/WandEnchantment.js +35 -13
- package/lib/types/traditionArtifacts/WeaponEnchantment.d.ts +1135 -47
- package/lib/types/traditionArtifacts/WeaponEnchantment.js +36 -13
- package/lib/types/traditionArtifacts/sub/AnimalShape.d.ts +8 -52
- package/lib/types/traditionArtifacts/sub/AnimalShape.js +23 -13
- package/lib/types/traditionArtifacts/sub/AnimalShapePath.d.ts +6 -28
- package/lib/types/traditionArtifacts/sub/AnimalShapePath.js +14 -13
- package/lib/types/traditionArtifacts/sub/AnimalShapeSize.d.ts +8 -40
- package/lib/types/traditionArtifacts/sub/AnimalShapeSize.js +22 -13
- package/lib/types/traditionArtifacts/sub/Brew.d.ts +6 -28
- package/lib/types/traditionArtifacts/sub/Brew.js +14 -13
- package/package.json +19 -16
- package/schema/Advantage.schema.json +3 -3
- package/schema/AnimalDisease.schema.json +4 -4
- package/schema/Aspect.schema.json +1 -1
- package/schema/Blessing.schema.json +3 -3
- package/schema/Cantrip.schema.json +4 -4
- package/schema/Ceremony.schema.json +9 -61
- package/schema/CombatTechnique_Close.schema.json +2 -2
- package/schema/CombatTechnique_Ranged.schema.json +2 -2
- package/schema/Condition.schema.json +4 -16
- package/schema/Continent.schema.json +1 -1
- package/schema/Culture.schema.json +46 -50
- package/schema/Disadvantage.schema.json +3 -3
- package/schema/Disease.schema.json +2 -2
- package/schema/FamiliarsTrick.schema.json +45 -71
- package/schema/Lessons_Curriculum.schema.json +26 -36
- package/schema/LiturgicalChant.schema.json +9 -61
- package/schema/Locale.schema.json +1 -1
- package/schema/MetaCondition.schema.json +5 -17
- package/schema/Patron.schema.json +60 -71
- package/schema/PatronCategory.schema.json +1 -1
- package/schema/PersonalityTrait.schema.json +2 -2
- package/schema/Profession.schema.json +68 -62
- package/schema/Property.schema.json +1 -1
- package/schema/Race.schema.json +17 -17
- package/schema/Ritual.schema.json +8 -60
- package/schema/SexPractice.schema.json +1 -1
- package/schema/Skill.schema.json +7 -7
- package/schema/SkillModificationLevel.schema.json +3 -3
- package/schema/Spell.schema.json +8 -60
- package/schema/UI.schema.json +272 -0
- package/schema/_Activatable.schema.json +52 -60
- package/schema/_ActivatableSelectOptionCategory.schema.json +31 -35
- package/schema/_ActivatableSkill.schema.json +16 -0
- package/schema/_ActivatableSkillCastingTime.schema.json +5 -5
- package/schema/_ActivatableSkillCost.schema.json +7 -7
- package/schema/_ActivatableSkillEffect.schema.json +20 -51
- package/schema/_ActivatableSkillRange.schema.json +2 -2
- package/schema/_ActivatableSkillTargetCategory.schema.json +8 -8
- package/schema/_Blessed.schema.json +1 -1
- package/schema/_DiseasePoison.schema.json +31 -23
- package/schema/_Enhancements.schema.json +1 -1
- package/schema/_I18n.schema.json +1 -1
- package/schema/_Identifier.schema.json +31 -1
- package/schema/_IdentifierGroup.schema.json +4 -1
- package/schema/_Influence.schema.json +2 -2
- package/schema/_Prerequisite.schema.json +15 -15
- package/schema/_ResponsiveText.schema.json +6 -6
- package/schema/_SkillCheck.schema.json +3 -14
- package/schema/_Spellwork.schema.json +1 -1
- package/schema/equipment/EquipmentPackage.schema.json +1 -1
- package/schema/equipment/item/Armor.schema.json +5 -5
- package/schema/equipment/item/BandageOrRemedy.schema.json +2 -2
- package/schema/equipment/item/Book.schema.json +1 -1
- package/schema/equipment/item/CeremonialItem.schema.json +2 -2
- package/schema/equipment/item/Elixir.schema.json +5 -25
- package/schema/equipment/item/EquipmentOfBlessedOnes.schema.json +1 -1
- package/schema/equipment/item/IlluminationLightSource.schema.json +4 -8
- package/schema/equipment/item/Jewelry.schema.json +1 -1
- package/schema/equipment/item/LuxuryGood.schema.json +2 -2
- package/schema/equipment/item/MusicalInstrument.schema.json +1 -1
- package/schema/equipment/item/Poison.schema.json +25 -17
- package/schema/equipment/item/ToolOfTheTrade.schema.json +1 -1
- package/schema/equipment/item/Weapon.schema.json +11 -11
- package/schema/equipment/item/_Item.schema.json +4 -4
- package/schema/equipment/item/_MeleeWeapon.schema.json +3 -7
- package/schema/equipment/item/_RangedWeapon.schema.json +5 -5
- package/schema/equipment/item/_Weapon.schema.json +2 -2
- package/schema/equipment/item/sub/ArmorType.schema.json +1 -1
- package/schema/magicalActions/AnimistPower.schema.json +10 -36
- package/schema/magicalActions/Curse.schema.json +5 -31
- package/schema/magicalActions/DominationRitual.schema.json +6 -32
- package/schema/magicalActions/ElvenMagicalSong.schema.json +4 -17
- package/schema/magicalActions/GeodeRitual.schema.json +7 -59
- package/schema/magicalActions/JesterTrick.schema.json +7 -59
- package/schema/magicalActions/MagicalDance.schema.json +7 -33
- package/schema/magicalActions/MagicalMelody.schema.json +7 -33
- package/schema/magicalActions/MagicalRune.schema.json +53 -146
- package/schema/magicalActions/ZibiljaRitual.schema.json +7 -59
- package/schema/magicalActions/_MusicTradition.schema.json +1 -1
- package/schema/magicalActions/_SkillReference.schema.json +2 -24
- package/schema/prerequisites/ConditionalPrerequisites.schema.json +1 -1
- package/schema/prerequisites/DisplayOption.schema.json +1 -1
- package/schema/prerequisites/single/ActivatablePrerequisite.schema.json +1 -1
- package/schema/prerequisites/single/EnhancementPrerequisite.schema.json +2 -2
- package/schema/prerequisites/single/PublicationPrerequisite.schema.json +1 -2
- package/schema/prerequisites/single/RacePrerequisite.schema.json +1 -1
- package/schema/prerequisites/single/RatedMinimumNumberPrerequisite.schema.json +2 -2
- package/schema/prerequisites/single/TextPrerequisite.schema.json +4 -4
- package/schema/prerequisites/single/TraditionPrerequisite.schema.json +4 -4
- package/schema/rule/CoreRule.schema.json +5 -5
- package/schema/rule/FocusRule.schema.json +1 -1
- package/schema/rule/OptionalRule.schema.json +1 -1
- package/schema/source/Publication.schema.json +2 -2
- package/schema/source/_PublicationRef.schema.json +9 -9
- package/schema/specialAbility/AdvancedCombatSpecialAbility.schema.json +2 -2
- package/schema/specialAbility/BlessedTradition.schema.json +74 -52
- package/schema/specialAbility/CeremonialItemSpecialAbility.schema.json +2 -2
- package/schema/specialAbility/CombatStyleSpecialAbility.schema.json +155 -504
- package/schema/specialAbility/CommandSpecialAbility.schema.json +23 -20
- package/schema/specialAbility/FatePointSpecialAbility.schema.json +1 -1
- package/schema/specialAbility/GeneralSpecialAbility.schema.json +1 -1
- package/schema/specialAbility/KarmaSpecialAbility.schema.json +1 -1
- package/schema/specialAbility/LiturgicalStyleSpecialAbility.schema.json +155 -504
- package/schema/specialAbility/MagicStyleSpecialAbility.schema.json +155 -504
- package/schema/specialAbility/MagicalSign.schema.json +2 -2
- package/schema/specialAbility/MagicalSpecialAbility.schema.json +1 -1
- package/schema/specialAbility/MagicalTradition.schema.json +8 -8
- package/schema/specialAbility/PactGift.schema.json +4 -4
- package/schema/specialAbility/SikaryanDrainSpecialAbility.schema.json +1 -1
- package/schema/specialAbility/SkillStyleSpecialAbility.schema.json +155 -504
- package/schema/specialAbility/VampiricGift.schema.json +1 -1
- package/schema/specialAbility/_Tradition.schema.json +1 -1
- package/schema/specialAbility/sub/Language.schema.json +4 -4
- package/schema/traditionArtifacts/ArcaneOrbEnchantment.schema.json +1 -1
- package/schema/traditionArtifacts/AttireEnchantment.schema.json +1 -1
- package/schema/traditionArtifacts/BowlEnchantment.schema.json +1 -1
- package/schema/traditionArtifacts/CauldronEnchantment.schema.json +2 -2
- package/schema/traditionArtifacts/ChronicleEnchantment.schema.json +1 -1
- package/schema/traditionArtifacts/DaggerRitual.schema.json +14 -18
- package/schema/traditionArtifacts/FoolsHatEnchantment.schema.json +1 -1
- package/schema/traditionArtifacts/InstrumentEnchantment.schema.json +1 -1
- package/schema/traditionArtifacts/Krallenkettenzauber.schema.json +1 -1
- package/schema/traditionArtifacts/OrbEnchantment.schema.json +1 -1
- package/schema/traditionArtifacts/RingEnchantment.schema.json +1 -1
- package/schema/traditionArtifacts/SickleRitual.schema.json +1 -1
- package/schema/traditionArtifacts/SpellSwordEnchantment.schema.json +2 -2
- package/schema/traditionArtifacts/StaffEnchantment.schema.json +2 -2
- package/schema/traditionArtifacts/ToyEnchantment.schema.json +1 -1
- package/schema/traditionArtifacts/Trinkhornzauber.schema.json +1 -1
- package/schema/traditionArtifacts/WandEnchantment.schema.json +1 -1
- package/schema/traditionArtifacts/WeaponEnchantment.schema.json +1 -1
- package/.prettierrc.yml +0 -3
- package/lib/cache/activatableSelectOptions.d.ts +0 -80
- package/lib/cache/activatableSelectOptions.js +0 -935
- package/lib/cache/ancestorBloodAdvantages.d.ts +0 -5
- package/lib/cache/ancestorBloodAdvantages.js +0 -18
- package/lib/cache/magicalAndBlessedAdvantagesAndDisadvantages.d.ts +0 -20
- package/lib/cache/magicalAndBlessedAdvantagesAndDisadvantages.js +0 -164
- package/lib/cache/newApplicationsAndUses.d.ts +0 -20
- package/lib/cache/newApplicationsAndUses.js +0 -126
- package/lib/cacheConfig.d.ts +0 -4
- package/lib/cacheConfig.js +0 -1
- package/lib/config/build.d.ts +0 -6
- package/lib/config/build.js +0 -8
- package/lib/config/cache.d.ts +0 -16
- package/lib/config/cache.js +0 -10
- package/lib/config/types.d.ts +0 -462
- package/lib/config/types.js +0 -306
- package/lib/errors.d.ts +0 -20
- package/lib/errors.js +0 -33
- package/lib/helpers/array.d.ts +0 -14
- package/lib/helpers/array.js +0 -15
- package/lib/helpers/i18n.d.ts +0 -1
- package/lib/helpers/i18n.js +0 -1
- package/lib/helpers/io.d.ts +0 -29
- package/lib/helpers/io.js +0 -51
- package/lib/helpers/objectPath.d.ts +0 -13
- package/lib/helpers/objectPath.js +0 -3
- package/lib/helpers/pair.d.ts +0 -20
- package/lib/helpers/pair.js +0 -20
- package/lib/helpers/result.d.ts +0 -57
- package/lib/helpers/result.js +0 -45
- package/lib/rendering/UI.d.ts +0 -14
- package/lib/rendering/UI.js +0 -28
- package/lib/typeConfig.d.ts +0 -10
- package/lib/typeConfig.js +0 -1
- package/lib/types/CombatTechnique_Close.d.ts +0 -73
- package/lib/types/CombatTechnique_Close.js +0 -14
- package/lib/types/CombatTechnique_Ranged.d.ts +0 -66
- package/lib/types/CombatTechnique_Ranged.js +0 -14
- package/lib/types/Kirchenpraegung.d.ts +0 -10
- package/lib/types/Kirchenpraegung.js +0 -14
- package/lib/types/Lessons_Curriculum.d.ts +0 -236
- package/lib/types/Lessons_Curriculum.js +0 -14
- package/lib/types/Lessons_Guideline.d.ts +0 -34
- package/lib/types/Lessons_Guideline.js +0 -14
- package/lib/types/UI.d.ts +0 -1216
- package/lib/types/UI.js +0 -14
- package/lib/types/_LocaleMap.d.ts +0 -10
- package/lib/types/_LocaleMap.js +0 -1
- package/lib/types/_NonEmptyString.d.ts +0 -9
- package/lib/types/_NonEmptyString.js +0 -1
- package/lib/types/_SimpleReferences.d.ts +0 -134
- package/lib/types/_SimpleReferences.js +0 -1
- package/lib/types/equipment/item/IlluminationRefillsOrSupplies.d.ts +0 -7
- package/lib/types/equipment/item/IlluminationRefillsOrSupplies.js +0 -14
- package/lib/types/equipment/item/Stationary.d.ts +0 -7
- package/lib/types/equipment/item/Stationary.js +0 -14
- package/lib/types/magicalActions/_SkillReference.d.ts +0 -11
- package/lib/types/magicalActions/_SkillReference.js +0 -1
- package/lib/validation/builders/integrity.d.ts +0 -56
- package/lib/validation/builders/integrity.js +0 -44
- package/lib/validation/builders/naming.d.ts +0 -15
- package/lib/validation/builders/naming.js +0 -17
- package/lib/validation/builders/schema.d.ts +0 -31
- package/lib/validation/builders/schema.js +0 -32
- package/lib/validation/filename.d.ts +0 -9
- package/lib/validation/filename.js +0 -10
- package/lib/validation/raw.d.ts +0 -8
- package/lib/validation/raw.js +0 -54
- package/lib/validation/schema.d.ts +0 -6
- package/lib/validation/schema.js +0 -32
|
@@ -1,1274 +1,158 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
export
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
export
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
export
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
export
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
export
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
export
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
export
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
export
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
export
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
export
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
export
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
export
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
export
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
export
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
export
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
export
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
export
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
* @minimum 1
|
|
160
|
-
*/
|
|
161
|
-
magical_special_ability: number;
|
|
162
|
-
};
|
|
163
|
-
export type StaffEnchantmentIdentifier = {
|
|
164
|
-
tag: "StaffEnchantment";
|
|
165
|
-
/**
|
|
166
|
-
* The staff enchantment’s identifier.
|
|
167
|
-
* @integer
|
|
168
|
-
* @minimum 1
|
|
169
|
-
*/
|
|
170
|
-
staff_enchantment: number;
|
|
171
|
-
};
|
|
172
|
-
export type FamiliarSpecialAbilityIdentifier = {
|
|
173
|
-
tag: "FamiliarSpecialAbility";
|
|
174
|
-
/**
|
|
175
|
-
* The familiar special ability’s identifier.
|
|
176
|
-
* @integer
|
|
177
|
-
* @minimum 1
|
|
178
|
-
*/
|
|
179
|
-
familiar_special_ability: number;
|
|
180
|
-
};
|
|
181
|
-
export type KarmaSpecialAbilityIdentifier = {
|
|
182
|
-
tag: "KarmaSpecialAbility";
|
|
183
|
-
/**
|
|
184
|
-
* The karma special ability’s identifier.
|
|
185
|
-
* @integer
|
|
186
|
-
* @minimum 1
|
|
187
|
-
*/
|
|
188
|
-
karma_special_ability: number;
|
|
189
|
-
};
|
|
190
|
-
export type ProtectiveWardingCircleSpecialAbilityIdentifier = {
|
|
191
|
-
tag: "ProtectiveWardingCircleSpecialAbility";
|
|
192
|
-
/**
|
|
193
|
-
* The protective warding circle special ability’s identifier.
|
|
194
|
-
* @integer
|
|
195
|
-
* @minimum 1
|
|
196
|
-
*/
|
|
197
|
-
protective_warding_circle_special_ability: number;
|
|
198
|
-
};
|
|
199
|
-
export type CombatStyleSpecialAbilityIdentifier = {
|
|
200
|
-
tag: "CombatStyleSpecialAbility";
|
|
201
|
-
/**
|
|
202
|
-
* The combat style special ability’s identifier.
|
|
203
|
-
* @integer
|
|
204
|
-
* @minimum 1
|
|
205
|
-
*/
|
|
206
|
-
combat_style_special_ability: number;
|
|
207
|
-
};
|
|
208
|
-
export type AdvancedCombatSpecialAbilityIdentifier = {
|
|
209
|
-
tag: "AdvancedCombatSpecialAbility";
|
|
210
|
-
/**
|
|
211
|
-
* The advanced combat special ability’s identifier.
|
|
212
|
-
* @integer
|
|
213
|
-
* @minimum 1
|
|
214
|
-
*/
|
|
215
|
-
advanced_combat_special_ability: number;
|
|
216
|
-
};
|
|
217
|
-
export type CommandSpecialAbilityIdentifier = {
|
|
218
|
-
tag: "CommandSpecialAbility";
|
|
219
|
-
/**
|
|
220
|
-
* The command special ability’s identifier.
|
|
221
|
-
* @integer
|
|
222
|
-
* @minimum 1
|
|
223
|
-
*/
|
|
224
|
-
command_special_ability: number;
|
|
225
|
-
};
|
|
226
|
-
export type MagicStyleSpecialAbilityIdentifier = {
|
|
227
|
-
tag: "MagicStyleSpecialAbility";
|
|
228
|
-
/**
|
|
229
|
-
* The magic style special ability’s identifier.
|
|
230
|
-
* @integer
|
|
231
|
-
* @minimum 1
|
|
232
|
-
*/
|
|
233
|
-
magic_style_special_ability: number;
|
|
234
|
-
};
|
|
235
|
-
export type AdvancedMagicalSpecialAbilityIdentifier = {
|
|
236
|
-
tag: "AdvancedMagicalSpecialAbility";
|
|
237
|
-
/**
|
|
238
|
-
* The advanced magical special ability’s identifier.
|
|
239
|
-
* @integer
|
|
240
|
-
* @minimum 1
|
|
241
|
-
*/
|
|
242
|
-
advanced_magical_special_ability: number;
|
|
243
|
-
};
|
|
244
|
-
export type SpellSwordEnchantmentIdentifier = {
|
|
245
|
-
tag: "SpellSwordEnchantment";
|
|
246
|
-
/**
|
|
247
|
-
* The spell sword enchantment’s identifier.
|
|
248
|
-
* @integer
|
|
249
|
-
* @minimum 1
|
|
250
|
-
*/
|
|
251
|
-
spell_sword_enchantment: number;
|
|
252
|
-
};
|
|
253
|
-
export type DaggerRitualIdentifier = {
|
|
254
|
-
tag: "DaggerRitual";
|
|
255
|
-
/**
|
|
256
|
-
* The dagger ritual’s identifier.
|
|
257
|
-
* @integer
|
|
258
|
-
* @minimum 1
|
|
259
|
-
*/
|
|
260
|
-
dagger_ritual: number;
|
|
261
|
-
};
|
|
262
|
-
export type InstrumentEnchantmentIdentifier = {
|
|
263
|
-
tag: "InstrumentEnchantment";
|
|
264
|
-
/**
|
|
265
|
-
* The instrument enchantment’s identifier.
|
|
266
|
-
* @integer
|
|
267
|
-
* @minimum 1
|
|
268
|
-
*/
|
|
269
|
-
instrument_enchantment: number;
|
|
270
|
-
};
|
|
271
|
-
export type AttireEnchantmentIdentifier = {
|
|
272
|
-
tag: "AttireEnchantment";
|
|
273
|
-
/**
|
|
274
|
-
* The attire enchantment’s identifier.
|
|
275
|
-
* @integer
|
|
276
|
-
* @minimum 1
|
|
277
|
-
*/
|
|
278
|
-
attire_enchantment: number;
|
|
279
|
-
};
|
|
280
|
-
export type OrbEnchantmentIdentifier = {
|
|
281
|
-
tag: "OrbEnchantment";
|
|
282
|
-
/**
|
|
283
|
-
* The orb enchantment’s identifier.
|
|
284
|
-
* @integer
|
|
285
|
-
* @minimum 1
|
|
286
|
-
*/
|
|
287
|
-
orb_enchantment: number;
|
|
288
|
-
};
|
|
289
|
-
export type WandEnchantmentIdentifier = {
|
|
290
|
-
tag: "WandEnchantment";
|
|
291
|
-
/**
|
|
292
|
-
* The wand enchantment’s identifier.
|
|
293
|
-
* @integer
|
|
294
|
-
* @minimum 1
|
|
295
|
-
*/
|
|
296
|
-
wand_enchantment: number;
|
|
297
|
-
};
|
|
298
|
-
export type BrawlingSpecialAbilityIdentifier = {
|
|
299
|
-
tag: "BrawlingSpecialAbility";
|
|
300
|
-
/**
|
|
301
|
-
* The brawling special ability’s identifier.
|
|
302
|
-
* @integer
|
|
303
|
-
* @minimum 1
|
|
304
|
-
*/
|
|
305
|
-
brawling_special_ability: number;
|
|
306
|
-
};
|
|
307
|
-
export type AncestorGlyphIdentifier = {
|
|
308
|
-
tag: "AncestorGlyph";
|
|
309
|
-
/**
|
|
310
|
-
* The ancestor glyph’s identifier.
|
|
311
|
-
* @integer
|
|
312
|
-
* @minimum 1
|
|
313
|
-
*/
|
|
314
|
-
ancestor_glyph: number;
|
|
315
|
-
};
|
|
316
|
-
export type CeremonialItemSpecialAbilityIdentifier = {
|
|
317
|
-
tag: "CeremonialItemSpecialAbility";
|
|
318
|
-
/**
|
|
319
|
-
* The ceremonial item special ability’s identifier.
|
|
320
|
-
* @integer
|
|
321
|
-
* @minimum 1
|
|
322
|
-
*/
|
|
323
|
-
ceremonial_item_special_ability: number;
|
|
324
|
-
};
|
|
325
|
-
export type SermonIdentifier = {
|
|
326
|
-
tag: "Sermon";
|
|
327
|
-
/**
|
|
328
|
-
* The sermon’s identifier.
|
|
329
|
-
* @integer
|
|
330
|
-
* @minimum 1
|
|
331
|
-
*/
|
|
332
|
-
sermon: number;
|
|
333
|
-
};
|
|
334
|
-
export type LiturgicalStyleSpecialAbilityIdentifier = {
|
|
335
|
-
tag: "LiturgicalStyleSpecialAbility";
|
|
336
|
-
/**
|
|
337
|
-
* The liturgical style special ability’s identifier.
|
|
338
|
-
* @integer
|
|
339
|
-
* @minimum 1
|
|
340
|
-
*/
|
|
341
|
-
liturgical_style_special_ability: number;
|
|
342
|
-
};
|
|
343
|
-
export type AdvancedKarmaSpecialAbilityIdentifier = {
|
|
344
|
-
tag: "AdvancedKarmaSpecialAbility";
|
|
345
|
-
/**
|
|
346
|
-
* The advanced karma special ability’s identifier.
|
|
347
|
-
* @integer
|
|
348
|
-
* @minimum 1
|
|
349
|
-
*/
|
|
350
|
-
advanced_karma_special_ability: number;
|
|
351
|
-
};
|
|
352
|
-
export type VisionIdentifier = {
|
|
353
|
-
tag: "Vision";
|
|
354
|
-
/**
|
|
355
|
-
* The vision’s identifier.
|
|
356
|
-
* @integer
|
|
357
|
-
* @minimum 1
|
|
358
|
-
*/
|
|
359
|
-
vision: number;
|
|
360
|
-
};
|
|
361
|
-
export type MagicalTraditionIdentifier = {
|
|
362
|
-
tag: "MagicalTradition";
|
|
363
|
-
/**
|
|
364
|
-
* The magical tradition’s identifier.
|
|
365
|
-
* @integer
|
|
366
|
-
* @minimum 1
|
|
367
|
-
*/
|
|
368
|
-
magical_tradition: number;
|
|
369
|
-
};
|
|
370
|
-
export type BlessedTraditionIdentifier = {
|
|
371
|
-
tag: "BlessedTradition";
|
|
372
|
-
/**
|
|
373
|
-
* The blessed tradition’s identifier.
|
|
374
|
-
* @integer
|
|
375
|
-
* @minimum 1
|
|
376
|
-
*/
|
|
377
|
-
blessed_tradition: number;
|
|
378
|
-
};
|
|
379
|
-
export type PactGiftIdentifier = {
|
|
380
|
-
tag: "PactGift";
|
|
381
|
-
/**
|
|
382
|
-
* The pact gift’s identifier.
|
|
383
|
-
* @integer
|
|
384
|
-
* @minimum 1
|
|
385
|
-
*/
|
|
386
|
-
pact_gift: number;
|
|
387
|
-
};
|
|
388
|
-
export type VampiricGiftIdentifier = {
|
|
389
|
-
tag: "VampiricGift";
|
|
390
|
-
/**
|
|
391
|
-
* The vampiric gift’s identifier.
|
|
392
|
-
* @integer
|
|
393
|
-
* @minimum 1
|
|
394
|
-
*/
|
|
395
|
-
vampiric_gift: number;
|
|
396
|
-
};
|
|
397
|
-
export type SikaryanDrainSpecialAbilityIdentifier = {
|
|
398
|
-
tag: "SikaryanDrainSpecialAbility";
|
|
399
|
-
/**
|
|
400
|
-
* The sikaryan drain special ability’s identifier.
|
|
401
|
-
* @integer
|
|
402
|
-
* @minimum 1
|
|
403
|
-
*/
|
|
404
|
-
sikaryan_drain_special_ability: number;
|
|
405
|
-
};
|
|
406
|
-
export type LycantropicGiftIdentifier = {
|
|
407
|
-
tag: "LycantropicGift";
|
|
408
|
-
/**
|
|
409
|
-
* The lycantropic gift’s identifier.
|
|
410
|
-
* @integer
|
|
411
|
-
* @minimum 1
|
|
412
|
-
*/
|
|
413
|
-
lycantropic_gift: number;
|
|
414
|
-
};
|
|
415
|
-
export type SkillStyleSpecialAbilityIdentifier = {
|
|
416
|
-
tag: "SkillStyleSpecialAbility";
|
|
417
|
-
/**
|
|
418
|
-
* The skill style special ability’s identifier.
|
|
419
|
-
* @integer
|
|
420
|
-
* @minimum 1
|
|
421
|
-
*/
|
|
422
|
-
skill_style_special_ability: number;
|
|
423
|
-
};
|
|
424
|
-
export type AdvancedSkillSpecialAbilityIdentifier = {
|
|
425
|
-
tag: "AdvancedSkillSpecialAbility";
|
|
426
|
-
/**
|
|
427
|
-
* The advanced skill special ability’s identifier.
|
|
428
|
-
* @integer
|
|
429
|
-
* @minimum 1
|
|
430
|
-
*/
|
|
431
|
-
advanced_skill_special_ability: number;
|
|
432
|
-
};
|
|
433
|
-
export type ArcaneOrbEnchantmentIdentifier = {
|
|
434
|
-
tag: "ArcaneOrbEnchantment";
|
|
435
|
-
/**
|
|
436
|
-
* The arcane orb enchantment’s identifier.
|
|
437
|
-
* @integer
|
|
438
|
-
* @minimum 1
|
|
439
|
-
*/
|
|
440
|
-
arcane_orb_enchantment: number;
|
|
441
|
-
};
|
|
442
|
-
export type CauldronEnchantmentIdentifier = {
|
|
443
|
-
tag: "CauldronEnchantment";
|
|
444
|
-
/**
|
|
445
|
-
* The cauldron enchantment’s identifier.
|
|
446
|
-
* @integer
|
|
447
|
-
* @minimum 1
|
|
448
|
-
*/
|
|
449
|
-
cauldron_enchantment: number;
|
|
450
|
-
};
|
|
451
|
-
export type FoolsHatEnchantmentIdentifier = {
|
|
452
|
-
tag: "FoolsHatEnchantment";
|
|
453
|
-
/**
|
|
454
|
-
* The fools hat enchantment’s identifier.
|
|
455
|
-
* @integer
|
|
456
|
-
* @minimum 1
|
|
457
|
-
*/
|
|
458
|
-
fools_hat_enchantment: number;
|
|
459
|
-
};
|
|
460
|
-
export type ToyEnchantmentIdentifier = {
|
|
461
|
-
tag: "ToyEnchantment";
|
|
462
|
-
/**
|
|
463
|
-
* The toy enchantment’s identifier.
|
|
464
|
-
* @integer
|
|
465
|
-
* @minimum 1
|
|
466
|
-
*/
|
|
467
|
-
toy_enchantment: number;
|
|
468
|
-
};
|
|
469
|
-
export type BowlEnchantmentIdentifier = {
|
|
470
|
-
tag: "BowlEnchantment";
|
|
471
|
-
/**
|
|
472
|
-
* The bowl enchantment’s identifier.
|
|
473
|
-
* @integer
|
|
474
|
-
* @minimum 1
|
|
475
|
-
*/
|
|
476
|
-
bowl_enchantment: number;
|
|
477
|
-
};
|
|
478
|
-
export type FatePointSexSpecialAbilityIdentifier = {
|
|
479
|
-
tag: "FatePointSexSpecialAbility";
|
|
480
|
-
/**
|
|
481
|
-
* The fate point sex special ability’s identifier.
|
|
482
|
-
* @integer
|
|
483
|
-
* @minimum 1
|
|
484
|
-
*/
|
|
485
|
-
fate_point_sex_special_ability: number;
|
|
486
|
-
};
|
|
487
|
-
export type SexSpecialAbilityIdentifier = {
|
|
488
|
-
tag: "SexSpecialAbility";
|
|
489
|
-
/**
|
|
490
|
-
* The sex special ability’s identifier.
|
|
491
|
-
* @integer
|
|
492
|
-
* @minimum 1
|
|
493
|
-
*/
|
|
494
|
-
sex_special_ability: number;
|
|
495
|
-
};
|
|
496
|
-
export type WeaponEnchantmentIdentifier = {
|
|
497
|
-
tag: "WeaponEnchantment";
|
|
498
|
-
/**
|
|
499
|
-
* The weapon enchantment’s identifier.
|
|
500
|
-
* @integer
|
|
501
|
-
* @minimum 1
|
|
502
|
-
*/
|
|
503
|
-
weapon_enchantment: number;
|
|
504
|
-
};
|
|
505
|
-
export type SickleRitualIdentifier = {
|
|
506
|
-
tag: "SickleRitual";
|
|
507
|
-
/**
|
|
508
|
-
* The sickle ritual’s identifier.
|
|
509
|
-
* @integer
|
|
510
|
-
* @minimum 1
|
|
511
|
-
*/
|
|
512
|
-
sickle_ritual: number;
|
|
513
|
-
};
|
|
514
|
-
export type RingEnchantmentIdentifier = {
|
|
515
|
-
tag: "RingEnchantment";
|
|
516
|
-
/**
|
|
517
|
-
* The ring enchantment’s identifier.
|
|
518
|
-
* @integer
|
|
519
|
-
* @minimum 1
|
|
520
|
-
*/
|
|
521
|
-
ring_enchantment: number;
|
|
522
|
-
};
|
|
523
|
-
export type ChronicleEnchantmentIdentifier = {
|
|
524
|
-
tag: "ChronicleEnchantment";
|
|
525
|
-
/**
|
|
526
|
-
* The chronicle enchantment’s identifier.
|
|
527
|
-
* @integer
|
|
528
|
-
* @minimum 1
|
|
529
|
-
*/
|
|
530
|
-
chronicle_enchantment: number;
|
|
531
|
-
};
|
|
532
|
-
export type KrallenkettenzauberIdentifier = {
|
|
533
|
-
tag: "Krallenkettenzauber";
|
|
534
|
-
/**
|
|
535
|
-
* The Krallenkettenzauber’s identifier.
|
|
536
|
-
* @integer
|
|
537
|
-
* @minimum 1
|
|
538
|
-
*/
|
|
539
|
-
krallenkettenzauber: number;
|
|
540
|
-
};
|
|
541
|
-
export type TrinkhornzauberIdentifier = {
|
|
542
|
-
tag: "Trinkhornzauber";
|
|
543
|
-
/**
|
|
544
|
-
* The Trinkhornzauber’s identifier.
|
|
545
|
-
* @integer
|
|
546
|
-
* @minimum 1
|
|
547
|
-
*/
|
|
548
|
-
trinkhornzauber: number;
|
|
549
|
-
};
|
|
550
|
-
export type MagicalRuneIdentifier = {
|
|
551
|
-
tag: "MagicalRune";
|
|
552
|
-
/**
|
|
553
|
-
* The magical rune’s identifier.
|
|
554
|
-
* @integer
|
|
555
|
-
* @minimum 1
|
|
556
|
-
*/
|
|
557
|
-
magical_rune: number;
|
|
558
|
-
};
|
|
559
|
-
export type MagicalSignIdentifier = {
|
|
560
|
-
tag: "MagicalSign";
|
|
561
|
-
/**
|
|
562
|
-
* The magical sign’s identifier.
|
|
563
|
-
* @integer
|
|
564
|
-
* @minimum 1
|
|
565
|
-
*/
|
|
566
|
-
magical_sign: number;
|
|
567
|
-
};
|
|
568
|
-
export type LanguageIdentifier = {
|
|
569
|
-
tag: "Language";
|
|
570
|
-
/**
|
|
571
|
-
* The language’s identifier.
|
|
572
|
-
* @integer
|
|
573
|
-
* @minimum 1
|
|
574
|
-
*/
|
|
575
|
-
language: number;
|
|
576
|
-
};
|
|
577
|
-
export type ScriptIdentifier = {
|
|
578
|
-
tag: "Script";
|
|
579
|
-
/**
|
|
580
|
-
* The script’s identifier.
|
|
581
|
-
* @integer
|
|
582
|
-
* @minimum 1
|
|
583
|
-
*/
|
|
584
|
-
script: number;
|
|
585
|
-
};
|
|
586
|
-
export type ContinentIdentifier = {
|
|
587
|
-
tag: "Continent";
|
|
588
|
-
/**
|
|
589
|
-
* The continent’s identifier.
|
|
590
|
-
* @integer
|
|
591
|
-
* @minimum 1
|
|
592
|
-
* @maximum 3
|
|
593
|
-
*/
|
|
594
|
-
continent: number;
|
|
595
|
-
};
|
|
596
|
-
export type SocialStatusIdentifier = {
|
|
597
|
-
tag: "SocialStatus";
|
|
598
|
-
/**
|
|
599
|
-
* The social status’s identifier.
|
|
600
|
-
* @integer
|
|
601
|
-
* @minimum 1
|
|
602
|
-
*/
|
|
603
|
-
social_status: number;
|
|
604
|
-
};
|
|
605
|
-
export type AttributeIdentifier = {
|
|
606
|
-
tag: "Attribute";
|
|
607
|
-
/**
|
|
608
|
-
* The attribute’s identifier.
|
|
609
|
-
* @integer
|
|
610
|
-
* @minimum 1
|
|
611
|
-
* @maximum 8
|
|
612
|
-
*/
|
|
613
|
-
attribute: number;
|
|
614
|
-
};
|
|
615
|
-
export type SkillIdentifier<Value extends number = number> = {
|
|
616
|
-
tag: "Skill";
|
|
617
|
-
/**
|
|
618
|
-
* The skill’s identifier.
|
|
619
|
-
* @integer
|
|
620
|
-
* @minimum 1
|
|
621
|
-
*/
|
|
622
|
-
skill: Value;
|
|
623
|
-
};
|
|
624
|
-
export type SkillGroupIdentifier = {
|
|
625
|
-
tag: "SkillGroup";
|
|
626
|
-
/**
|
|
627
|
-
* The skill group’s identifier.
|
|
628
|
-
* @integer
|
|
629
|
-
* @minimum 1
|
|
630
|
-
* @maximum 5
|
|
631
|
-
*/
|
|
632
|
-
skill_group: number;
|
|
633
|
-
};
|
|
634
|
-
export type CloseCombatTechniqueIdentifier = {
|
|
635
|
-
tag: "CloseCombatTechnique";
|
|
636
|
-
/**
|
|
637
|
-
* The close combat technique’s identifier.
|
|
638
|
-
* @integer
|
|
639
|
-
* @minimum 1
|
|
640
|
-
*/
|
|
641
|
-
close_combat_technique: number;
|
|
642
|
-
};
|
|
643
|
-
export type RangedCombatTechniqueIdentifier = {
|
|
644
|
-
tag: "RangedCombatTechnique";
|
|
645
|
-
/**
|
|
646
|
-
* The ranged combat technique’s identifier.
|
|
647
|
-
* @integer
|
|
648
|
-
* @minimum 1
|
|
649
|
-
*/
|
|
650
|
-
ranged_combat_technique: number;
|
|
651
|
-
};
|
|
652
|
-
export type SpellIdentifier = {
|
|
653
|
-
tag: "Spell";
|
|
654
|
-
/**
|
|
655
|
-
* The spell’s identifier.
|
|
656
|
-
* @integer
|
|
657
|
-
* @minimum 1
|
|
658
|
-
*/
|
|
659
|
-
spell: number;
|
|
660
|
-
};
|
|
661
|
-
export type RitualIdentifier = {
|
|
662
|
-
tag: "Ritual";
|
|
663
|
-
/**
|
|
664
|
-
* The ritual’s identifier.
|
|
665
|
-
* @integer
|
|
666
|
-
* @minimum 1
|
|
667
|
-
*/
|
|
668
|
-
ritual: number;
|
|
669
|
-
};
|
|
670
|
-
export type CantripIdentifier = {
|
|
671
|
-
tag: "Cantrip";
|
|
672
|
-
/**
|
|
673
|
-
* The cantrip’s identifier.
|
|
674
|
-
* @integer
|
|
675
|
-
* @minimum 1
|
|
676
|
-
*/
|
|
677
|
-
cantrip: number;
|
|
678
|
-
};
|
|
679
|
-
export type PropertyIdentifier = {
|
|
680
|
-
tag: "Property";
|
|
681
|
-
/**
|
|
682
|
-
* The property’s identifier.
|
|
683
|
-
* @integer
|
|
684
|
-
* @minimum 1
|
|
685
|
-
*/
|
|
686
|
-
property: number;
|
|
687
|
-
};
|
|
688
|
-
export type LiturgicalChantIdentifier = {
|
|
689
|
-
tag: "LiturgicalChant";
|
|
690
|
-
/**
|
|
691
|
-
* The liturgical chant’s identifier.
|
|
692
|
-
* @integer
|
|
693
|
-
* @minimum 1
|
|
694
|
-
*/
|
|
695
|
-
liturgical_chant: number;
|
|
696
|
-
};
|
|
697
|
-
export type CeremonyIdentifier = {
|
|
698
|
-
tag: "Ceremony";
|
|
699
|
-
/**
|
|
700
|
-
* The ceremony’s identifier.
|
|
701
|
-
* @integer
|
|
702
|
-
* @minimum 1
|
|
703
|
-
*/
|
|
704
|
-
ceremony: number;
|
|
705
|
-
};
|
|
706
|
-
export type BlessingIdentifier = {
|
|
707
|
-
tag: "Blessing";
|
|
708
|
-
/**
|
|
709
|
-
* The blessing’s identifier.
|
|
710
|
-
* @integer
|
|
711
|
-
* @minimum 1
|
|
712
|
-
*/
|
|
713
|
-
blessing: number;
|
|
714
|
-
};
|
|
715
|
-
export type AspectIdentifier = {
|
|
716
|
-
tag: "Aspect";
|
|
717
|
-
/**
|
|
718
|
-
* The aspect’s identifier.
|
|
719
|
-
* @integer
|
|
720
|
-
* @minimum 1
|
|
721
|
-
*/
|
|
722
|
-
aspect: number;
|
|
723
|
-
};
|
|
724
|
-
export type CurseIdentifier = {
|
|
725
|
-
tag: "Curse";
|
|
726
|
-
/**
|
|
727
|
-
* The curse’s identifier.
|
|
728
|
-
* @integer
|
|
729
|
-
* @minimum 1
|
|
730
|
-
*/
|
|
731
|
-
curse: number;
|
|
732
|
-
};
|
|
733
|
-
export type ElvenMagicalSongIdentifier = {
|
|
734
|
-
tag: "ElvenMagicalSong";
|
|
735
|
-
/**
|
|
736
|
-
* The elven magical song’s identifier.
|
|
737
|
-
* @integer
|
|
738
|
-
* @minimum 1
|
|
739
|
-
*/
|
|
740
|
-
elven_magical_song: number;
|
|
741
|
-
};
|
|
742
|
-
export type DominationRitualIdentifier = {
|
|
743
|
-
tag: "DominationRitual";
|
|
744
|
-
/**
|
|
745
|
-
* The domination ritual’s identifier.
|
|
746
|
-
* @integer
|
|
747
|
-
* @minimum 1
|
|
748
|
-
*/
|
|
749
|
-
domination_ritual: number;
|
|
750
|
-
};
|
|
751
|
-
export type MagicalMelodyIdentifier = {
|
|
752
|
-
tag: "MagicalMelody";
|
|
753
|
-
/**
|
|
754
|
-
* The magical melody’s identifier.
|
|
755
|
-
* @integer
|
|
756
|
-
* @minimum 1
|
|
757
|
-
*/
|
|
758
|
-
magical_melody: number;
|
|
759
|
-
};
|
|
760
|
-
export type MagicalDanceIdentifier = {
|
|
761
|
-
tag: "MagicalDance";
|
|
762
|
-
/**
|
|
763
|
-
* The magical dance’s identifier.
|
|
764
|
-
* @integer
|
|
765
|
-
* @minimum 1
|
|
766
|
-
*/
|
|
767
|
-
magical_dance: number;
|
|
768
|
-
};
|
|
769
|
-
export type JesterTrickIdentifier = {
|
|
770
|
-
tag: "JesterTrick";
|
|
771
|
-
/**
|
|
772
|
-
* The jester trick’s identifier.
|
|
773
|
-
* @integer
|
|
774
|
-
* @minimum 1
|
|
775
|
-
*/
|
|
776
|
-
jester_trick: number;
|
|
777
|
-
};
|
|
778
|
-
export type AnimistPowerIdentifier = {
|
|
779
|
-
tag: "AnimistPower";
|
|
780
|
-
/**
|
|
781
|
-
* The animist power’s identifier.
|
|
782
|
-
* @integer
|
|
783
|
-
* @minimum 1
|
|
784
|
-
*/
|
|
785
|
-
animist_power: number;
|
|
786
|
-
};
|
|
787
|
-
export type GeodeRitualIdentifier = {
|
|
788
|
-
tag: "GeodeRitual";
|
|
789
|
-
/**
|
|
790
|
-
* The geode ritual’s identifier.
|
|
791
|
-
* @integer
|
|
792
|
-
* @minimum 1
|
|
793
|
-
*/
|
|
794
|
-
geode_ritual: number;
|
|
795
|
-
};
|
|
796
|
-
export type ZibiljaRitualIdentifier = {
|
|
797
|
-
tag: "ZibiljaRitual";
|
|
798
|
-
/**
|
|
799
|
-
* The zibilja ritual’s identifier.
|
|
800
|
-
* @integer
|
|
801
|
-
* @minimum 1
|
|
802
|
-
*/
|
|
803
|
-
zibilja_ritual: number;
|
|
804
|
-
};
|
|
805
|
-
export type AnimalTypeIdentifier = {
|
|
806
|
-
tag: "AnimalType";
|
|
807
|
-
/**
|
|
808
|
-
* The animal type’s identifier.
|
|
809
|
-
* @integer
|
|
810
|
-
* @minimum 1
|
|
811
|
-
*/
|
|
812
|
-
animal_type: number;
|
|
813
|
-
};
|
|
814
|
-
export type TargetCategoryIdentifier = {
|
|
815
|
-
tag: "TargetCategory";
|
|
816
|
-
/**
|
|
817
|
-
* The target category’s identifier.
|
|
818
|
-
* @integer
|
|
819
|
-
* @minimum 1
|
|
820
|
-
* @maximum 24
|
|
821
|
-
*/
|
|
822
|
-
target_category: number;
|
|
823
|
-
};
|
|
824
|
-
export type GeneralIdentifier = {
|
|
825
|
-
tag: "General";
|
|
826
|
-
/**
|
|
827
|
-
* The identifier of a general (unspecific) select option.
|
|
828
|
-
* @integer
|
|
829
|
-
* @minimum 1
|
|
830
|
-
*/
|
|
831
|
-
general: number;
|
|
832
|
-
};
|
|
833
|
-
export type ElementIdentifier = {
|
|
834
|
-
tag: "Element";
|
|
835
|
-
/**
|
|
836
|
-
* The element’s identifier.
|
|
837
|
-
* @integer
|
|
838
|
-
* @minimum 1
|
|
839
|
-
*/
|
|
840
|
-
element: number;
|
|
841
|
-
};
|
|
842
|
-
export type AnimalShapeSizeIdentifier = {
|
|
843
|
-
tag: "AnimalShapeSize";
|
|
844
|
-
/**
|
|
845
|
-
* The animal shape size’s identifier.
|
|
846
|
-
* @integer
|
|
847
|
-
* @minimum 1
|
|
848
|
-
*/
|
|
849
|
-
animal_shape_size: number;
|
|
850
|
-
};
|
|
851
|
-
export type PatronIdentifier = {
|
|
852
|
-
tag: "Patron";
|
|
853
|
-
/**
|
|
854
|
-
* The patron’s identifier.
|
|
855
|
-
* @integer
|
|
856
|
-
* @minimum 1
|
|
857
|
-
*/
|
|
858
|
-
patron: number;
|
|
859
|
-
};
|
|
860
|
-
export type AmmunitionIdentifier = {
|
|
861
|
-
tag: "Ammunition";
|
|
862
|
-
/**
|
|
863
|
-
* The ammunition’s identifier.
|
|
864
|
-
* @integer
|
|
865
|
-
* @minimum 1
|
|
866
|
-
*/
|
|
867
|
-
ammunition: number;
|
|
868
|
-
};
|
|
869
|
-
export type AnimalIdentifier = {
|
|
870
|
-
tag: "Animal";
|
|
871
|
-
/**
|
|
872
|
-
* The animal’s identifier.
|
|
873
|
-
* @integer
|
|
874
|
-
* @minimum 1
|
|
875
|
-
*/
|
|
876
|
-
animal: number;
|
|
877
|
-
};
|
|
878
|
-
export type AnimalCareIdentifier = {
|
|
879
|
-
tag: "AnimalCare";
|
|
880
|
-
/**
|
|
881
|
-
* The animal care’s identifier.
|
|
882
|
-
* @integer
|
|
883
|
-
* @minimum 1
|
|
884
|
-
*/
|
|
885
|
-
animal_care: number;
|
|
886
|
-
};
|
|
887
|
-
export type ArmorIdentifier = {
|
|
888
|
-
tag: "Armor";
|
|
889
|
-
/**
|
|
890
|
-
* The armor’s identifier.
|
|
891
|
-
* @integer
|
|
892
|
-
* @minimum 1
|
|
893
|
-
*/
|
|
894
|
-
armor: number;
|
|
895
|
-
};
|
|
896
|
-
export type BandageOrRemedyIdentifier = {
|
|
897
|
-
tag: "BandageOrRemedy";
|
|
898
|
-
/**
|
|
899
|
-
* The bandage or remedy’s identifier.
|
|
900
|
-
* @integer
|
|
901
|
-
* @minimum 1
|
|
902
|
-
*/
|
|
903
|
-
bandage_or_remedy: number;
|
|
904
|
-
};
|
|
905
|
-
export type BookIdentifier = {
|
|
906
|
-
tag: "Book";
|
|
907
|
-
/**
|
|
908
|
-
* The book’s identifier.
|
|
909
|
-
* @integer
|
|
910
|
-
* @minimum 1
|
|
911
|
-
*/
|
|
912
|
-
book: number;
|
|
913
|
-
};
|
|
914
|
-
export type CeremonialItemIdentifier = {
|
|
915
|
-
tag: "CeremonialItem";
|
|
916
|
-
/**
|
|
917
|
-
* The ceremonial item’s identifier.
|
|
918
|
-
* @integer
|
|
919
|
-
* @minimum 1
|
|
920
|
-
*/
|
|
921
|
-
ceremonial_item: number;
|
|
922
|
-
};
|
|
923
|
-
export type ClothesIdentifier = {
|
|
924
|
-
tag: "Clothes";
|
|
925
|
-
/**
|
|
926
|
-
* The clothes’ identifier.
|
|
927
|
-
* @integer
|
|
928
|
-
* @minimum 1
|
|
929
|
-
*/
|
|
930
|
-
clothes: number;
|
|
931
|
-
};
|
|
932
|
-
export type ContainerIdentifier = {
|
|
933
|
-
tag: "Container";
|
|
934
|
-
/**
|
|
935
|
-
* The container’s identifier.
|
|
936
|
-
* @integer
|
|
937
|
-
* @minimum 1
|
|
938
|
-
*/
|
|
939
|
-
container: number;
|
|
940
|
-
};
|
|
941
|
-
export type ElixirIdentifier = {
|
|
942
|
-
tag: "Elixir";
|
|
943
|
-
/**
|
|
944
|
-
* The elixir’s identifier.
|
|
945
|
-
* @integer
|
|
946
|
-
* @minimum 1
|
|
947
|
-
*/
|
|
948
|
-
elixir: number;
|
|
949
|
-
};
|
|
950
|
-
export type EquipmentOfBlessedOnesIdentifier = {
|
|
951
|
-
tag: "EquipmentOfBlessedOnes";
|
|
952
|
-
/**
|
|
953
|
-
* The equipment of blessed ones’ identifier.
|
|
954
|
-
* @integer
|
|
955
|
-
* @minimum 1
|
|
956
|
-
*/
|
|
957
|
-
equipment_of_blessed_ones: number;
|
|
958
|
-
};
|
|
959
|
-
export type GemOrPreciousStoneIdentifier = {
|
|
960
|
-
tag: "GemOrPreciousStone";
|
|
961
|
-
/**
|
|
962
|
-
* The gem or precious stone’s identifier.
|
|
963
|
-
* @integer
|
|
964
|
-
* @minimum 1
|
|
965
|
-
*/
|
|
966
|
-
gem_or_precious_stone: number;
|
|
967
|
-
};
|
|
968
|
-
export type IlluminationLightSourceIdentifier = {
|
|
969
|
-
tag: "IlluminationLightSource";
|
|
970
|
-
/**
|
|
971
|
-
* The illumination light source’s identifier.
|
|
972
|
-
* @integer
|
|
973
|
-
* @minimum 1
|
|
974
|
-
*/
|
|
975
|
-
illumination_light_source: number;
|
|
976
|
-
};
|
|
977
|
-
export type IlluminationRefillsOrSuppliesIdentifier = {
|
|
978
|
-
tag: "IlluminationRefillsOrSupplies";
|
|
979
|
-
/**
|
|
980
|
-
* The illumination refills or supplies’ identifier.
|
|
981
|
-
* @integer
|
|
982
|
-
* @minimum 1
|
|
983
|
-
*/
|
|
984
|
-
illumination_refills_or_supplies: number;
|
|
985
|
-
};
|
|
986
|
-
export type JewelryIdentifier = {
|
|
987
|
-
tag: "Jewelry";
|
|
988
|
-
/**
|
|
989
|
-
* The jewelry’s identifier.
|
|
990
|
-
* @integer
|
|
991
|
-
* @minimum 1
|
|
992
|
-
*/
|
|
993
|
-
jewelry: number;
|
|
994
|
-
};
|
|
995
|
-
export type LiebesspielzeugIdentifier = {
|
|
996
|
-
tag: "Liebesspielzeug";
|
|
997
|
-
/**
|
|
998
|
-
* The Liebesspielzeug’s identifier.
|
|
999
|
-
* @integer
|
|
1000
|
-
* @minimum 1
|
|
1001
|
-
*/
|
|
1002
|
-
liebesspielzeug: number;
|
|
1003
|
-
};
|
|
1004
|
-
export type LuxuryGoodIdentifier = {
|
|
1005
|
-
tag: "LuxuryGood";
|
|
1006
|
-
/**
|
|
1007
|
-
* The luxury good’s identifier.
|
|
1008
|
-
* @integer
|
|
1009
|
-
* @minimum 1
|
|
1010
|
-
*/
|
|
1011
|
-
luxury_good: number;
|
|
1012
|
-
};
|
|
1013
|
-
export type MagicalArtifactIdentifier = {
|
|
1014
|
-
tag: "MagicalArtifact";
|
|
1015
|
-
/**
|
|
1016
|
-
* The magical artifact’s identifier.
|
|
1017
|
-
* @integer
|
|
1018
|
-
* @minimum 1
|
|
1019
|
-
*/
|
|
1020
|
-
magical_artifact: number;
|
|
1021
|
-
};
|
|
1022
|
-
export type MusicalInstrumentIdentifier = {
|
|
1023
|
-
tag: "MusicalInstrument";
|
|
1024
|
-
/**
|
|
1025
|
-
* The musical instrument’s identifier.
|
|
1026
|
-
* @integer
|
|
1027
|
-
* @minimum 1
|
|
1028
|
-
*/
|
|
1029
|
-
musical_instrument: number;
|
|
1030
|
-
};
|
|
1031
|
-
export type OrienteeringAidIdentifier = {
|
|
1032
|
-
tag: "OrienteeringAid";
|
|
1033
|
-
/**
|
|
1034
|
-
* The orienteering aid’s identifier.
|
|
1035
|
-
* @integer
|
|
1036
|
-
* @minimum 1
|
|
1037
|
-
*/
|
|
1038
|
-
orienteering_aid: number;
|
|
1039
|
-
};
|
|
1040
|
-
export type PoisonIdentifier = {
|
|
1041
|
-
tag: "Poison";
|
|
1042
|
-
/**
|
|
1043
|
-
* The poison’s identifier.
|
|
1044
|
-
* @integer
|
|
1045
|
-
* @minimum 1
|
|
1046
|
-
*/
|
|
1047
|
-
poison: number;
|
|
1048
|
-
};
|
|
1049
|
-
export type RopeOrChainIdentifier = {
|
|
1050
|
-
tag: "RopeOrChain";
|
|
1051
|
-
/**
|
|
1052
|
-
* The rope or chain’s identifier.
|
|
1053
|
-
* @integer
|
|
1054
|
-
* @minimum 1
|
|
1055
|
-
*/
|
|
1056
|
-
rope_or_chain: number;
|
|
1057
|
-
};
|
|
1058
|
-
export type StationaryIdentifier = {
|
|
1059
|
-
tag: "Stationary";
|
|
1060
|
-
/**
|
|
1061
|
-
* The stationary’s identifier.
|
|
1062
|
-
* @integer
|
|
1063
|
-
* @minimum 1
|
|
1064
|
-
*/
|
|
1065
|
-
stationary: number;
|
|
1066
|
-
};
|
|
1067
|
-
export type ThievesToolIdentifier = {
|
|
1068
|
-
tag: "ThievesTool";
|
|
1069
|
-
/**
|
|
1070
|
-
* The thieves tool’s identifier.
|
|
1071
|
-
* @integer
|
|
1072
|
-
* @minimum 1
|
|
1073
|
-
*/
|
|
1074
|
-
thieves_tool: number;
|
|
1075
|
-
};
|
|
1076
|
-
export type ToolOfTheTradeIdentifier = {
|
|
1077
|
-
tag: "ToolOfTheTrade";
|
|
1078
|
-
/**
|
|
1079
|
-
* The tool of the trade’s identifier.
|
|
1080
|
-
* @integer
|
|
1081
|
-
* @minimum 1
|
|
1082
|
-
*/
|
|
1083
|
-
tool_of_the_trade: number;
|
|
1084
|
-
};
|
|
1085
|
-
export type TravelGearOrToolIdentifier = {
|
|
1086
|
-
tag: "TravelGearOrTool";
|
|
1087
|
-
/**
|
|
1088
|
-
* The travel gear or tool’s identifier.
|
|
1089
|
-
* @integer
|
|
1090
|
-
* @minimum 1
|
|
1091
|
-
*/
|
|
1092
|
-
travel_gear_or_tool: number;
|
|
1093
|
-
};
|
|
1094
|
-
export type VehicleIdentifier = {
|
|
1095
|
-
tag: "Vehicle";
|
|
1096
|
-
/**
|
|
1097
|
-
* The vehicle’s identifier.
|
|
1098
|
-
* @integer
|
|
1099
|
-
* @minimum 1
|
|
1100
|
-
*/
|
|
1101
|
-
vehicle: number;
|
|
1102
|
-
};
|
|
1103
|
-
export type WeaponIdentifier = {
|
|
1104
|
-
tag: "Weapon";
|
|
1105
|
-
/**
|
|
1106
|
-
* The weapon’s identifier.
|
|
1107
|
-
* @integer
|
|
1108
|
-
* @minimum 1
|
|
1109
|
-
*/
|
|
1110
|
-
weapon: number;
|
|
1111
|
-
};
|
|
1112
|
-
export type WeaponAccessoryIdentifier = {
|
|
1113
|
-
tag: "WeaponAccessory";
|
|
1114
|
-
/**
|
|
1115
|
-
* The weapon accessory’s identifier.
|
|
1116
|
-
* @integer
|
|
1117
|
-
* @minimum 1
|
|
1118
|
-
*/
|
|
1119
|
-
weapon_accessory: number;
|
|
1120
|
-
};
|
|
1121
|
-
export type ReachIdentifier = {
|
|
1122
|
-
tag: "Reach";
|
|
1123
|
-
/**
|
|
1124
|
-
* The reach’s identifier.
|
|
1125
|
-
* @integer
|
|
1126
|
-
* @minimum 1
|
|
1127
|
-
* @maximum 4
|
|
1128
|
-
*/
|
|
1129
|
-
reach: number;
|
|
1130
|
-
};
|
|
1131
|
-
export type PatronCategoryIdentifier = {
|
|
1132
|
-
tag: "PatronCategory";
|
|
1133
|
-
/**
|
|
1134
|
-
* The patron category’s identifier.
|
|
1135
|
-
* @integer
|
|
1136
|
-
* @minimum 1
|
|
1137
|
-
*/
|
|
1138
|
-
patron_category: number;
|
|
1139
|
-
};
|
|
1140
|
-
export type PersonalityTraitIdentifier = {
|
|
1141
|
-
tag: "PersonalityTrait";
|
|
1142
|
-
/**
|
|
1143
|
-
* The personality trait’s identifier.
|
|
1144
|
-
* @integer
|
|
1145
|
-
* @minimum 1
|
|
1146
|
-
*/
|
|
1147
|
-
personality_trait: number;
|
|
1148
|
-
};
|
|
1149
|
-
export type HairColorIdentifier = {
|
|
1150
|
-
tag: "HairColor";
|
|
1151
|
-
/**
|
|
1152
|
-
* The hair color’s identifier.
|
|
1153
|
-
* @integer
|
|
1154
|
-
* @minimum 1
|
|
1155
|
-
*/
|
|
1156
|
-
hair_color: number;
|
|
1157
|
-
};
|
|
1158
|
-
export type EyeColorIdentifier = {
|
|
1159
|
-
tag: "EyeColor";
|
|
1160
|
-
/**
|
|
1161
|
-
* The eye color’s identifier.
|
|
1162
|
-
* @integer
|
|
1163
|
-
* @minimum 1
|
|
1164
|
-
*/
|
|
1165
|
-
eye_color: number;
|
|
1166
|
-
};
|
|
1167
|
-
export type PactCategoryIdentifier = {
|
|
1168
|
-
tag: "PactCategory";
|
|
1169
|
-
/**
|
|
1170
|
-
* The pact category’s identifier.
|
|
1171
|
-
* @integer
|
|
1172
|
-
* @minimum 1
|
|
1173
|
-
*/
|
|
1174
|
-
pact_category: number;
|
|
1175
|
-
};
|
|
1176
|
-
export type PactDomainIdentifier = {
|
|
1177
|
-
tag: "PactDomain";
|
|
1178
|
-
/**
|
|
1179
|
-
* The pact domain’s identifier.
|
|
1180
|
-
* @integer
|
|
1181
|
-
* @minimum 1
|
|
1182
|
-
*/
|
|
1183
|
-
pact_domain: number;
|
|
1184
|
-
};
|
|
1185
|
-
export type AnimistTribeIdentifier = {
|
|
1186
|
-
tag: "AnimistTribe";
|
|
1187
|
-
/**
|
|
1188
|
-
* The animist tribe’s identifier.
|
|
1189
|
-
* @integer
|
|
1190
|
-
* @minimum 1
|
|
1191
|
-
*/
|
|
1192
|
-
animist_tribe: number;
|
|
1193
|
-
};
|
|
1194
|
-
export type InfluenceIdentifier = {
|
|
1195
|
-
tag: "Influence";
|
|
1196
|
-
/**
|
|
1197
|
-
* The influence’s identifier.
|
|
1198
|
-
* @integer
|
|
1199
|
-
* @minimum 1
|
|
1200
|
-
*/
|
|
1201
|
-
influence: number;
|
|
1202
|
-
};
|
|
1203
|
-
export type ConditionIdentifier = {
|
|
1204
|
-
tag: "Condition";
|
|
1205
|
-
/**
|
|
1206
|
-
* The condition’s identifier.
|
|
1207
|
-
* @integer
|
|
1208
|
-
* @minimum 1
|
|
1209
|
-
*/
|
|
1210
|
-
condition: number;
|
|
1211
|
-
};
|
|
1212
|
-
export type StateIdentifier = {
|
|
1213
|
-
tag: "State";
|
|
1214
|
-
/**
|
|
1215
|
-
* The state’s identifier.
|
|
1216
|
-
* @integer
|
|
1217
|
-
* @minimum 1
|
|
1218
|
-
*/
|
|
1219
|
-
state: number;
|
|
1220
|
-
};
|
|
1221
|
-
export type DiseaseIdentifier = {
|
|
1222
|
-
tag: "Disease";
|
|
1223
|
-
/**
|
|
1224
|
-
* The disease’s identifier.
|
|
1225
|
-
* @integer
|
|
1226
|
-
* @minimum 1
|
|
1227
|
-
*/
|
|
1228
|
-
disease: number;
|
|
1229
|
-
};
|
|
1230
|
-
export type SexPracticeIdentifier = {
|
|
1231
|
-
tag: "SexPractice";
|
|
1232
|
-
/**
|
|
1233
|
-
* The sex practice’s identifier.
|
|
1234
|
-
* @integer
|
|
1235
|
-
* @minimum 1
|
|
1236
|
-
*/
|
|
1237
|
-
sex_practice: number;
|
|
1238
|
-
};
|
|
1239
|
-
export type TradeSecretIdentifier = {
|
|
1240
|
-
tag: "TradeSecret";
|
|
1241
|
-
/**
|
|
1242
|
-
* The trade secret‘s identifier.
|
|
1243
|
-
* @integer
|
|
1244
|
-
* @minimum 1
|
|
1245
|
-
*/
|
|
1246
|
-
trade_secret: number;
|
|
1247
|
-
};
|
|
1248
|
-
export type AnimalShapeIdentifier = {
|
|
1249
|
-
tag: "AnimalShape";
|
|
1250
|
-
/**
|
|
1251
|
-
* The animal shape‘s identifier.
|
|
1252
|
-
* @integer
|
|
1253
|
-
* @minimum 1
|
|
1254
|
-
*/
|
|
1255
|
-
animal_shape: number;
|
|
1256
|
-
};
|
|
1257
|
-
export type ArcaneBardTraditionIdentifier = {
|
|
1258
|
-
tag: "ArcaneBardTradition";
|
|
1259
|
-
/**
|
|
1260
|
-
* The arcane bard tradition‘s identifier.
|
|
1261
|
-
* @integer
|
|
1262
|
-
* @minimum 1
|
|
1263
|
-
*/
|
|
1264
|
-
arcane_bard_tradition: number;
|
|
1265
|
-
};
|
|
1266
|
-
export type ArcaneDancerTraditionIdentifier = {
|
|
1267
|
-
tag: "ArcaneDancerTradition";
|
|
1268
|
-
/**
|
|
1269
|
-
* The arcane dancer tradition‘s identifier.
|
|
1270
|
-
* @integer
|
|
1271
|
-
* @minimum 1
|
|
1272
|
-
*/
|
|
1273
|
-
arcane_dancer_tradition: number;
|
|
1274
|
-
};
|
|
1
|
+
import { ReferenceIdentifier as R } from "tsondb/schema/def";
|
|
2
|
+
export declare const AdvancedCombatSpecialAbilityIdentifier: () => R;
|
|
3
|
+
export declare const AdvancedKarmaSpecialAbilityIdentifier: () => R;
|
|
4
|
+
export declare const AdvancedMagicalSpecialAbilityIdentifier: () => R;
|
|
5
|
+
export declare const AdvancedSkillSpecialAbilityIdentifier: () => R;
|
|
6
|
+
export declare const AdvantageIdentifier: () => R;
|
|
7
|
+
export declare const AmmunitionIdentifier: () => R;
|
|
8
|
+
export declare const AncestorGlyphIdentifier: () => R;
|
|
9
|
+
export declare const AnimalCareIdentifier: () => R;
|
|
10
|
+
export declare const AnimalIdentifier: () => R;
|
|
11
|
+
export declare const AnimalShapeIdentifier: () => R;
|
|
12
|
+
export declare const AnimalShapePathIdentifier: () => R;
|
|
13
|
+
export declare const AnimalShapeSizeIdentifier: () => R;
|
|
14
|
+
export declare const AnimalTypeIdentifier: () => R;
|
|
15
|
+
export declare const AnimistPowerIdentifier: () => R;
|
|
16
|
+
export declare const ArcaneBardTraditionIdentifier: () => R;
|
|
17
|
+
export declare const ArcaneDancerTraditionIdentifier: () => R;
|
|
18
|
+
export declare const ArcaneOrbEnchantmentIdentifier: () => R;
|
|
19
|
+
export declare const ArmorIdentifier: () => R;
|
|
20
|
+
export declare const ArmorTypeIdentifier: () => R;
|
|
21
|
+
export declare const AspectIdentifier: () => R;
|
|
22
|
+
export declare const AttireEnchantmentIdentifier: () => R;
|
|
23
|
+
export declare const AttributeIdentifier: () => R;
|
|
24
|
+
export declare const BandageOrRemedyIdentifier: () => R;
|
|
25
|
+
export declare const BlessedTraditionIdentifier: () => R;
|
|
26
|
+
export declare const BlessingIdentifier: () => R;
|
|
27
|
+
export declare const BookIdentifier: () => R;
|
|
28
|
+
export declare const BowlEnchantmentIdentifier: () => R;
|
|
29
|
+
export declare const BrawlingSpecialAbilityIdentifier: () => R;
|
|
30
|
+
export declare const BrewIdentifier: () => R;
|
|
31
|
+
export declare const CantripIdentifier: () => R;
|
|
32
|
+
export declare const CauldronEnchantmentIdentifier: () => R;
|
|
33
|
+
export declare const CeremonialItemIdentifier: () => R;
|
|
34
|
+
export declare const CeremonialItemSpecialAbilityIdentifier: () => R;
|
|
35
|
+
export declare const CeremonyIdentifier: () => R;
|
|
36
|
+
export declare const ChronicleEnchantmentIdentifier: () => R;
|
|
37
|
+
export declare const CloseCombatTechniqueIdentifier: () => R;
|
|
38
|
+
export declare const ClothesIdentifier: () => R;
|
|
39
|
+
export declare const CombatSpecialAbilityIdentifier: () => R;
|
|
40
|
+
export declare const CombatStyleSpecialAbilityIdentifier: () => R;
|
|
41
|
+
export declare const CommandSpecialAbilityIdentifier: () => R;
|
|
42
|
+
export declare const ConditionIdentifier: () => R;
|
|
43
|
+
export declare const ContainerIdentifier: () => R;
|
|
44
|
+
export declare const ContinentIdentifier: () => R;
|
|
45
|
+
export declare const CoreRuleIdentifier: () => R;
|
|
46
|
+
export declare const CultureIdentifier: () => R;
|
|
47
|
+
export declare const CurriculumIdentifier: () => R;
|
|
48
|
+
export declare const CurseIdentifier: () => R;
|
|
49
|
+
export declare const DaggerRitualIdentifier: () => R;
|
|
50
|
+
export declare const DisadvantageIdentifier: () => R;
|
|
51
|
+
export declare const DiseaseIdentifier: () => R;
|
|
52
|
+
export declare const DominationRitualIdentifier: () => R;
|
|
53
|
+
export declare const ElementIdentifier: () => R;
|
|
54
|
+
export declare const ElixirIdentifier: () => R;
|
|
55
|
+
export declare const ElvenMagicalSongIdentifier: () => R;
|
|
56
|
+
export declare const EnhancementIdentifier: () => R;
|
|
57
|
+
export declare const EquipmentOfBlessedOnesIdentifier: () => R;
|
|
58
|
+
export declare const ExperienceLevelIdentifier: () => R;
|
|
59
|
+
export declare const EyeColorIdentifier: () => R;
|
|
60
|
+
export declare const FamiliarSpecialAbilityIdentifier: () => R;
|
|
61
|
+
export declare const FatePointSexSpecialAbilityIdentifier: () => R;
|
|
62
|
+
export declare const FatePointSpecialAbilityIdentifier: () => R;
|
|
63
|
+
export declare const FocusRuleIdentifier: () => R;
|
|
64
|
+
export declare const FoolsHatEnchantmentIdentifier: () => R;
|
|
65
|
+
export declare const GemOrPreciousStoneIdentifier: () => R;
|
|
66
|
+
export declare const GeneralSelectOptionIdentifier: () => R;
|
|
67
|
+
export { GeneralSelectOptionIdentifier as GeneralIdentifier };
|
|
68
|
+
export declare const GeneralSpecialAbilityIdentifier: () => R;
|
|
69
|
+
export declare const GeodeRitualIdentifier: () => R;
|
|
70
|
+
export declare const GuidelineIdentifier: () => R;
|
|
71
|
+
export declare const HairColorIdentifier: () => R;
|
|
72
|
+
export declare const IlluminationLightSourceIdentifier: () => R;
|
|
73
|
+
export declare const IlluminationRefillsOrSuppliesIdentifier: () => R;
|
|
74
|
+
export declare const InfluenceIdentifier: () => R;
|
|
75
|
+
export declare const InstrumentEnchantmentIdentifier: () => R;
|
|
76
|
+
export declare const JesterTrickIdentifier: () => R;
|
|
77
|
+
export declare const JewelryIdentifier: () => R;
|
|
78
|
+
export declare const KarmaSpecialAbilityIdentifier: () => R;
|
|
79
|
+
export declare const KrallenkettenzauberIdentifier: () => R;
|
|
80
|
+
export declare const LanguageIdentifier: () => R;
|
|
81
|
+
export declare const LanguageSpecializationIdentifier: () => R;
|
|
82
|
+
export declare const LessonPackageIdentifier: () => R;
|
|
83
|
+
export declare const LiebesspielzeugIdentifier: () => R;
|
|
84
|
+
export declare const LiturgicalChantIdentifier: () => R;
|
|
85
|
+
export declare const LiturgicalStyleSpecialAbilityIdentifier: () => R;
|
|
86
|
+
export declare const LuxuryGoodIdentifier: () => R;
|
|
87
|
+
export declare const LycantropicGiftIdentifier: () => R;
|
|
88
|
+
export declare const MagicalArtifactIdentifier: () => R;
|
|
89
|
+
export declare const MagicalDanceIdentifier: () => R;
|
|
90
|
+
export declare const MagicalMelodyIdentifier: () => R;
|
|
91
|
+
export declare const MagicalRuneIdentifier: () => R;
|
|
92
|
+
export declare const MagicalRuneOptionIdentifier: () => R;
|
|
93
|
+
export declare const MagicalSignIdentifier: () => R;
|
|
94
|
+
export declare const MagicalSpecialAbilityIdentifier: () => R;
|
|
95
|
+
export declare const MagicalTraditionIdentifier: () => R;
|
|
96
|
+
export declare const MagicStyleSpecialAbilityIdentifier: () => R;
|
|
97
|
+
export declare const MusicalInstrumentIdentifier: () => R;
|
|
98
|
+
export declare const OptionalRuleIdentifier: () => R;
|
|
99
|
+
export declare const OrbEnchantmentIdentifier: () => R;
|
|
100
|
+
export declare const OrienteeringAidIdentifier: () => R;
|
|
101
|
+
export declare const PactCategoryIdentifier: () => R;
|
|
102
|
+
export declare const PactDomainIdentifier: () => R;
|
|
103
|
+
export declare const PactGiftIdentifier: () => R;
|
|
104
|
+
export declare const PactTypeIdentifier: () => R;
|
|
105
|
+
export declare const PatronCategoryIdentifier: () => R;
|
|
106
|
+
export declare const PatronIdentifier: () => R;
|
|
107
|
+
export declare const PersonalityTraitIdentifier: () => R;
|
|
108
|
+
export declare const PoisonIdentifier: () => R;
|
|
109
|
+
export declare const ProfessionIdentifier: () => R;
|
|
110
|
+
export declare const ProfessionPackageIdentifier: () => R;
|
|
111
|
+
export declare const ProfessionVersionIdentifier: () => R;
|
|
112
|
+
export declare const ProfessionVariantIdentifier: () => R;
|
|
113
|
+
export declare const PropertyIdentifier: () => R;
|
|
114
|
+
export declare const ProtectiveWardingCircleSpecialAbilityIdentifier: () => R;
|
|
115
|
+
export declare const PublicationIdentifier: () => R;
|
|
116
|
+
export declare const RaceIdentifier: () => R;
|
|
117
|
+
export declare const RaceVariantIdentifier: () => R;
|
|
118
|
+
export declare const RangedCombatTechniqueIdentifier: () => R;
|
|
119
|
+
export declare const ReachIdentifier: () => R;
|
|
120
|
+
export declare const RingEnchantmentIdentifier: () => R;
|
|
121
|
+
export declare const RitualIdentifier: () => R;
|
|
122
|
+
export declare const RopeOrChainIdentifier: () => R;
|
|
123
|
+
export declare const ScriptIdentifier: () => R;
|
|
124
|
+
export declare const SermonIdentifier: () => R;
|
|
125
|
+
export declare const SexPracticeIdentifier: () => R;
|
|
126
|
+
export declare const SexSpecialAbilityIdentifier: () => R;
|
|
127
|
+
export declare const SickleRitualIdentifier: () => R;
|
|
128
|
+
export declare const SikaryanDrainSpecialAbilityIdentifier: () => R;
|
|
129
|
+
export declare const SkillApplicationIdentifier: () => R;
|
|
130
|
+
export declare const NewSkillApplicationIdentifier: () => R;
|
|
131
|
+
export declare const SkillUseIdentifier: () => R;
|
|
132
|
+
export declare const SkillGroupIdentifier: () => R;
|
|
133
|
+
export declare const SkillIdentifier: () => R;
|
|
134
|
+
export declare const SkillModificationLevelIdentifier: () => R;
|
|
135
|
+
export declare const SkillStyleSpecialAbilityIdentifier: () => R;
|
|
136
|
+
export declare const SocialStatusIdentifier: () => R;
|
|
137
|
+
export declare const SpellIdentifier: () => R;
|
|
138
|
+
export declare const SpellSwordEnchantmentIdentifier: () => R;
|
|
139
|
+
export declare const StaffEnchantmentIdentifier: () => R;
|
|
140
|
+
export declare const StateIdentifier: () => R;
|
|
141
|
+
export declare const StationeryIdentifier: () => R;
|
|
142
|
+
export declare const SubjectIdentifier: () => R;
|
|
143
|
+
export declare const TargetCategoryIdentifier: () => R;
|
|
144
|
+
export declare const ThievesToolIdentifier: () => R;
|
|
145
|
+
export declare const ToolOfTheTradeIdentifier: () => R;
|
|
146
|
+
export declare const ToyEnchantmentIdentifier: () => R;
|
|
147
|
+
export declare const TradeSecretIdentifier: () => R;
|
|
148
|
+
export declare const TravelGearOrToolIdentifier: () => R;
|
|
149
|
+
export declare const TribeIdentifier: () => R;
|
|
150
|
+
export declare const TrinkhornzauberIdentifier: () => R;
|
|
151
|
+
export declare const VampiricGiftIdentifier: () => R;
|
|
152
|
+
export declare const VehicleIdentifier: () => R;
|
|
153
|
+
export declare const VisionIdentifier: () => R;
|
|
154
|
+
export declare const WandEnchantmentIdentifier: () => R;
|
|
155
|
+
export declare const WeaponAccessoryIdentifier: () => R;
|
|
156
|
+
export declare const WeaponEnchantmentIdentifier: () => R;
|
|
157
|
+
export declare const WeaponIdentifier: () => R;
|
|
158
|
+
export declare const ZibiljaRitualIdentifier: () => R;
|