optolith-database-schema 0.22.0 → 0.23.0

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 (43) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/gen/types.d.ts +1295 -1182
  3. package/lib/types/Locale.d.ts +97 -133
  4. package/lib/types/Locale.js +147 -134
  5. package/lib/types/equipment/item/Animal.d.ts +1 -1
  6. package/lib/types/equipment/item/AnimalCare.d.ts +1 -1
  7. package/lib/types/equipment/item/Armor.d.ts +44 -0
  8. package/lib/types/equipment/item/Armor.js +9 -1
  9. package/lib/types/equipment/item/BandageOrRemedy.d.ts +45 -9
  10. package/lib/types/equipment/item/CeremonialItem.d.ts +45 -9
  11. package/lib/types/equipment/item/Clothes.d.ts +45 -9
  12. package/lib/types/equipment/item/Container.d.ts +45 -9
  13. package/lib/types/equipment/item/EquipmentOfBlessedOnes.d.ts +77 -20
  14. package/lib/types/equipment/item/EquipmentOfBlessedOnes.js +5 -6
  15. package/lib/types/equipment/item/IlluminationLightSource.d.ts +45 -9
  16. package/lib/types/equipment/item/IlluminationRefillOrSupply.d.ts +45 -9
  17. package/lib/types/equipment/item/Jewelry.d.ts +1 -1
  18. package/lib/types/equipment/item/Laboratory.d.ts +1 -1
  19. package/lib/types/equipment/item/Liebesspielzeug.d.ts +45 -9
  20. package/lib/types/equipment/item/LuxuryGood.d.ts +45 -9
  21. package/lib/types/equipment/item/MagicalArtifact.d.ts +61 -21
  22. package/lib/types/equipment/item/MagicalArtifact.js +33 -3
  23. package/lib/types/equipment/item/MusicalInstrument.d.ts +48 -9
  24. package/lib/types/equipment/item/MusicalInstrument.js +5 -1
  25. package/lib/types/equipment/item/OrienteeringAid.d.ts +45 -9
  26. package/lib/types/equipment/item/Poison.d.ts +41 -5
  27. package/lib/types/equipment/item/Poison.js +33 -1
  28. package/lib/types/equipment/item/RopeOrChain.d.ts +45 -9
  29. package/lib/types/equipment/item/Stationery.d.ts +45 -9
  30. package/lib/types/equipment/item/ThievesTool.d.ts +45 -9
  31. package/lib/types/equipment/item/ToolOfTheTrade.d.ts +1 -1
  32. package/lib/types/equipment/item/TravelGearOrTool.d.ts +45 -9
  33. package/lib/types/equipment/item/Vehicle.d.ts +1 -1
  34. package/lib/types/equipment/item/Weapon.d.ts +105 -78
  35. package/lib/types/equipment/item/Weapon.js +8 -46
  36. package/lib/types/equipment/item/WeaponAccessory.d.ts +45 -9
  37. package/lib/types/equipment/item/_Item.d.ts +148 -29
  38. package/lib/types/equipment/item/_Item.js +94 -2
  39. package/lib/types/specialAbility/CombatStyleSpecialAbility.d.ts +52 -0
  40. package/lib/types/specialAbility/CombatStyleSpecialAbility.js +2 -1
  41. package/lib/types/specialAbility/MagicalSign.d.ts +75 -40
  42. package/lib/types/specialAbility/MagicalSign.js +23 -2
  43. package/package.json +2 -2
package/gen/types.d.ts CHANGED
@@ -173,6 +173,10 @@ export type EntityMap = {
173
173
  ZibiljaRitual: ZibiljaRitual
174
174
  }
175
175
 
176
+ export type StringableTranslationParameter = {
177
+ toString(): string
178
+ }
179
+
176
180
  /**
177
181
  * Combat Special Abilities that are being unlocked by Combat Style Special Abilities.
178
182
  */
@@ -447,1098 +451,1062 @@ export interface Locale {
447
451
  * The translations strings for the locale.
448
452
  */
449
453
  translations?: {
450
- "About {0}"?: string
451
- "Preferences …"?: string
452
- "Services"?: string
453
- "Hide {0}"?: string
454
- "Hide Others"?: string
455
- "Show All"?: string
456
- "Quit {0}"?: string
457
- "File"?: string
458
- "Close"?: string
459
- "Quit"?: string
460
- "Edit"?: string
461
- "Undo"?: string
462
- "Redo"?: string
463
- "Cut"?: string
464
- "Copy"?: string
465
- "Paste"?: string
466
- "Delete"?: string
467
- "Select All"?: string
468
- "View"?: string
469
- "Toggle Full Screen"?: string
470
- "Window"?: string
471
- "Minimize"?: string
472
- "Zoom"?: string
473
- "Main Window"?: string
474
- "Bring All to Front"?: string
475
- "Settings"?: string
476
- "Main Language"?: string
477
- "System Language"?: string
478
- "Fallback Language"?: string
479
- "No fallback language"?: string
480
- "Appearance"?: string
481
- "Auto"?: string
482
- "Light"?: string
483
- "Dark"?: string
484
- "Edit characters after creation"?: string
485
- "Show animations"?: string
486
- "Check for updates"?: string
487
- "Updater"?: string
488
- "Checking for updates …"?: string
489
- "New version available"?: string
490
- "Version {0} is available! Do you wish to download and install?"?: string
491
- "Download"?: string
492
- "Download Later"?: string
493
- "Downloading update …"?: string
494
- "Update downloaded"?: string
495
- "Quit and Install"?: string
496
- "Install Later"?: string
497
- "No update available"?: string
498
- "You're running the latest version available."?: string
499
- "Characters"?: string
500
- "Groups"?: string
501
- "Library"?: string
502
- "FAQ"?: string
503
- "About"?: string
504
- "Imprint"?: string
505
- "Third-Party Licenses"?: string
506
- "Last Changes"?: string
507
- "Profile"?: string
508
- "Overview"?: string
509
- "Personal Data"?: string
510
- "Character Sheet"?: string
511
- "Pact"?: string
512
- "Rules"?: string
513
- "Race, Culture & Profession"?: string
514
- "Race"?: string
515
- "Culture"?: string
516
- "Profession"?: string
517
- "Attributes"?: string
518
- "Advantages & Disadvantages"?: string
519
- "Advantages"?: string
520
- "Disadvantages"?: string
521
- "Abilities"?: string
522
- "Skills"?: string
523
- "Combat Techniques"?: string
524
- "Special Abilities"?: string
525
- "Spells"?: string
526
- "Liturgical Chants"?: string
527
- "Belongings"?: string
528
- "Equipment"?: string
529
- "Hit Zone Armor"?: string
530
- "Pets"?: string
531
- "{0} AP Remaining"?: string
532
- "Save"?: string
533
- "Show Settings"?: string
534
- "Toggle DevTools"?: string
535
- "Adventure Points"?: string
536
- "AP"?: string
537
- "{0} Adventure Points"?: string
538
- "{0} AP"?: string
539
- "{0} Total AP"?: string
540
- "{0} AP Spent"?: string
541
- "{0}/{1} AP spent on advantages"?: string
542
- "Thereof {0}/{1} on magic advantages"?: string
543
- "Thereof {0}/{1} on blessed advantages"?: string
544
- "{0}/{1} AP received from disadvantages"?: string
545
- "Thereof {0}/{1} from magic disadvantages"?: string
546
- "Thereof {0}/{1} from blessed disadvantages"?: string
547
- "{0} AP spent on race"?: string
548
- "{0} AP spent on profession"?: string
549
- "{0} AP spent on attributes"?: string
550
- "{0} AP spent on skills"?: string
551
- "{0} AP spent on combat techniques"?: string
552
- "{0} AP spent on spells"?: string
553
- "{0} AP spent on cantrips"?: string
554
- "{0} AP spent on liturgical chants"?: string
555
- "{0} AP spent on blessings"?: string
556
- "{0} AP spent on special abilities"?: string
557
- "{0} AP spent on improving/buying back LP/AE/KP"?: string
558
- "header.dialogs.herosaved"?: string
559
- "header.dialogs.allsaved"?: string
560
- "header.dialogs.everythingelsesaved"?: string
561
- "header.dialogs.saveconfigerror.title"?: string
562
- "header.dialogs.saveconfigerror.message"?: string
563
- "header.dialogs.saveheroeserror.title"?: string
564
- "header.dialogs.saveheroeserror.message"?: string
565
- "general.weightvalue"?: string
566
- "general.pricevalue"?: string
567
- "general.lengthvalue"?: string
568
- "D"?: string
569
- "general.none"?: string
570
- "general.or"?: string
571
- "general.and"?: string
572
- "general.error"?: string
573
- "general.errorcode"?: string
574
- "general.emptylistplaceholder"?: string
575
- "general.emptylistnoresultsplaceholder"?: string
576
- "No Results"?: string
577
- "Search"?: string
578
- "Sort By"?: string
579
- "Name"?: string
580
- "Date Modified"?: string
581
- "Group"?: string
582
- "Property"?: string
583
- "general.filters.sort.bylocation"?: string
584
- "general.filters.sort.bycost"?: string
585
- "general.filters.sort.byweight"?: string
586
- "general.filters.showactivatedentries"?: string
587
- "Done"?: string
588
- "OK"?: string
589
- "Cancel"?: string
590
- "Create"?: string
591
- "Apply"?: string
592
- "Add"?: string
593
- "Not enough AP"?: string
594
- "You are missing {0} Adventure Points to do this."?: string
595
- "Exceeding Adventure Points limit for advantages"?: string
596
- "You cannot spend more than {0} AP on advantages. You would exceed this limit by {1} AP."?: string
597
- "Exceeding Adventure Points limit for magical advantages"?: string
598
- "You cannot spend more than {0} AP on magical advantages. You would exceed this limit by {1} AP."?: string
599
- "Exceeding Adventure Points limit for blessed advantages"?: string
600
- "You cannot spend more than {0} AP on blessed advantages. You would exceed this limit by {1} AP."?: string
601
- "Exceeding Adventure Points limit for disadvantages"?: string
602
- "You cannot receive more than {0} AP from disadvantages. You would exceed this limit by {1} AP."?: string
603
- "Exceeding Adventure Points limit for magical disadvantages"?: string
604
- "You cannot receive more than {0} AP from magical disadvantages. You would exceed this limit by {1} AP."?: string
605
- "Exceeding Adventure Points limit for blessed disadvantages"?: string
606
- "You cannot receive more than {0} AP from blessed disadvantages. You would exceed this limit by {1} AP."?: string
607
- "heroes.filters.origin.allheroes"?: string
608
- "heroes.filters.origin.ownheroes"?: string
609
- "heroes.filters.origin.sharedheroes"?: string
610
- "Import"?: string
611
- "New Character"?: string
612
- "Duplicate Character"?: string
613
- "Export Character as OPTLC file"?: string
614
- "Delete Character"?: string
615
- "Open Character"?: string
616
- "heroes.saveherobtn"?: string
617
- "heroes.unsavedhero.name"?: string
618
- "heroes.list.adventurepoints"?: string
619
- "heroes.dialogs.herosaved"?: string
620
- "heroes.dialogs.importheroerror.title"?: string
621
- "heroes.dialogs.importheroerror.message"?: string
622
- "heroes.dialogs.heroexportsavelocation.title"?: string
623
- "heroes.dialogs.herojsonsaveerror.title"?: string
624
- "heroes.dialogs.herojsonsaveerror.message"?: string
625
- "heroes.dialogs.unsavedactions.title"?: string
626
- "heroes.dialogs.unsavedactions.message"?: string
627
- "heroes.dialogs.unsavedactions.quit"?: string
628
- "heroes.dialogs.unsavedactions.saveandquit"?: string
629
- "heroes.dialogs.deletehero.title"?: string
630
- "heroes.dialogs.deletehero.message"?: string
631
- "heroes.dialogs.herocreation.title"?: string
632
- "heroes.dialogs.herocreation.nameofhero"?: string
633
- "heroes.dialogs.herocreation.sex.placeholder"?: string
634
- "heroes.dialogs.herocreation.sex.male"?: string
635
- "heroes.dialogs.herocreation.sex.female"?: string
636
- "heroes.dialogs.herocreation.experiencelevel.placeholder"?: string
637
- "heroes.dialogs.herocreation.startbtn"?: string
638
- "wiki.chooseacategory"?: string
639
- "wiki.chooseacategorytodisplayalist"?: string
640
- "wiki.filters.races"?: string
641
- "wiki.filters.cultures"?: string
642
- "wiki.filters.professions"?: string
643
- "wiki.filters.advantages"?: string
644
- "wiki.filters.disadvantages"?: string
645
- "wiki.filters.skills"?: string
646
- "wiki.filters.skills.all"?: string
647
- "wiki.filters.combattechniques"?: string
648
- "wiki.filters.combattechniques.all"?: string
649
- "wiki.filters.magic"?: string
650
- "wiki.filters.magic.all"?: string
651
- "wiki.filters.liturgicalchants"?: string
652
- "wiki.filters.liturgicalchants.all"?: string
653
- "wiki.filters.specialabilities"?: string
654
- "wiki.filters.specialabilities.all"?: string
655
- "wiki.filters.itemtemplates"?: string
656
- "wiki.filters.itemtemplates.all"?: string
657
- "Edit Name"?: string
658
- "Change Name"?: string
659
- "Edit Profession Name"?: string
660
- "Change Profession Name"?: string
661
- "Add AP"?: string
662
- "Add Adventure Points"?: string
663
- "How many Adventure Points do you want to add?"?: string
664
- "Finish Character Creation"?: string
665
- "Select New Avatar"?: string
666
- "Delete Avatar"?: string
667
- "profile.dialogs.changeheroavatar.title"?: string
668
- "profile.dialogs.changeheroavatar.selectfilebtn"?: string
669
- "profile.dialogs.changeheroavatar.imagefiletype"?: string
670
- "profile.dialogs.changeheroavatar.invalidfilewarning"?: string
671
- "Male"?: string
672
- "Female"?: string
673
- "Bal’Thani"?: string
674
- "Tsajana"?: string
675
- "Family"?: string
676
- "Place of Birth"?: string
677
- "Date of Birth"?: string
678
- "Age"?: string
679
- "Hair Color"?: string
680
- "Eye Color"?: string
681
- "Size"?: string
682
- "Weight"?: string
683
- "Title"?: string
684
- "Social Status"?: string
685
- "Characteristics"?: string
686
- "Other Information"?: string
687
- "Reroll Eye Color"?: string
688
- "Reroll Hair Color"?: string
689
- "Reroll Size"?: string
690
- "Reroll Weight"?: string
691
- "personaldata.cultureareaknowledge"?: string
692
- "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."?: string
693
- "sheets.printtopdfbtn"?: string
694
- "sheets.dialogs.pdfexportsavelocation.title"?: string
695
- "sheets.dialogs.pdfsaved"?: string
696
- "sheets.dialogs.pdfsaveerror.title"?: string
697
- "sheets.dialogs.pdfsaveerror.message"?: string
698
- "sheets.dialogs.pdfcreationerror.title"?: string
699
- "sheets.dialogs.pdfcreationerror.message"?: string
700
- "sheets.showattributevalues"?: string
701
- "sheets.useparchment"?: string
702
- "sheets.zoomfactor"?: string
703
- "sheets.charactersheet"?: string
704
- "sheets.attributemodifiers.title"?: string
705
- "sheets.mainsheet.title"?: string
706
- "sheets.mainsheet.name"?: string
707
- "sheets.mainsheet.family"?: string
708
- "sheets.mainsheet.placeofbirth"?: string
709
- "sheets.mainsheet.dateofbirth"?: string
710
- "sheets.mainsheet.age"?: string
711
- "sheets.mainsheet.sex"?: string
712
- "sheets.mainsheet.race"?: string
713
- "sheets.mainsheet.size"?: string
714
- "sheets.mainsheet.weight"?: string
715
- "sheets.mainsheet.haircolor"?: string
716
- "sheets.mainsheet.eyecolor"?: string
717
- "sheets.mainsheet.culture"?: string
718
- "sheets.mainsheet.socialstatus"?: string
719
- "sheets.mainsheet.profession"?: string
720
- "sheets.mainsheet.rank"?: string
721
- "sheets.mainsheet.characteristics"?: string
722
- "sheets.mainsheet.otherinfo"?: string
723
- "sheets.mainsheet.experiencelevellabel"?: string
724
- "sheets.mainsheet.totalaplabel"?: string
725
- "sheets.mainsheet.apcollectedlabel"?: string
726
- "sheets.mainsheet.apspentlabel"?: string
727
- "sheets.mainsheet.avatarlabel"?: string
728
- "sheets.mainsheet.advantages"?: string
729
- "sheets.mainsheet.disadvantages"?: string
730
- "sheets.mainsheet.generalspecialabilites"?: string
731
- "sheets.mainsheet.fatepoints"?: string
732
- "sheets.mainsheet.derivedcharacteristics.labels.value"?: string
733
- "sheets.mainsheet.derivedcharacteristics.labels.bonuspenalty"?: string
734
- "sheets.mainsheet.derivedcharacteristics.labels.bonus"?: string
735
- "sheets.mainsheet.derivedcharacteristics.labels.bought"?: string
736
- "sheets.mainsheet.derivedcharacteristics.labels.max"?: string
737
- "sheets.mainsheet.derivedcharacteristics.labels.current"?: string
738
- "sheets.mainsheet.derivedcharacteristics.labels.basestat"?: string
739
- "sheets.mainsheet.derivedcharacteristics.labels.permanentlylostboughtback"?: string
740
- "sheets.gamestatssheet.title"?: string
741
- "sheets.gamestatssheet.skillstable.title"?: string
742
- "sheets.gamestatssheet.skillstable.labels.skill"?: string
743
- "sheets.gamestatssheet.skillstable.labels.check"?: string
744
- "sheets.gamestatssheet.skillstable.labels.encumbrance"?: string
745
- "sheets.gamestatssheet.skillstable.labels.improvementcost"?: string
746
- "sheets.gamestatssheet.skillstable.labels.skillrating"?: string
747
- "sheets.gamestatssheet.skillstable.labels.routinechecks"?: string
748
- "sheets.gamestatssheet.skillstable.labels.notes"?: string
749
- "sheets.gamestatssheet.skillstable.encumbrance.yes"?: string
750
- "sheets.gamestatssheet.skillstable.encumbrance.no"?: string
751
- "sheets.gamestatssheet.skillstable.encumbrance.maybe"?: string
752
- "sheets.gamestatssheet.skillstable.groups.pages"?: string
753
- "sheets.gamestatssheet.languages.title"?: string
754
- "sheets.gamestatssheet.languages.nativetongue"?: string
755
- "sheets.gamestatssheet.knownscripts.title"?: string
756
- "sheets.gamestatssheet.routinechecks.title"?: string
757
- "sheets.gamestatssheet.routinechecks.textRow1"?: string
758
- "sheets.gamestatssheet.routinechecks.textRow2"?: string
759
- "sheets.gamestatssheet.routinechecks.textRow3"?: string
760
- "sheets.gamestatssheet.routinechecks.textRow4"?: string
761
- "sheets.gamestatssheet.routinechecks.labels.checkmod"?: string
762
- "sheets.gamestatssheet.routinechecks.labels.neededsr"?: string
763
- "sheets.gamestatssheet.routinechecks.from3on"?: string
764
- "sheets.gamestatssheet.qualitylevels.title"?: string
765
- "sheets.gamestatssheet.qualitylevels.labels.skillpoints"?: string
766
- "sheets.gamestatssheet.qualitylevels.labels.qualitylevel"?: string
767
- "sheets.combatsheet.title"?: string
768
- "sheets.combatsheet.combattechniquestable.title"?: string
769
- "sheets.combatsheet.combattechniquestable.labels.combattechnique"?: string
770
- "sheets.combatsheet.combattechniquestable.labels.primaryattribute"?: string
771
- "sheets.combatsheet.combattechniquestable.labels.improvementcost"?: string
772
- "sheets.combatsheet.combattechniquestable.labels.combattechniquerating"?: string
773
- "sheets.combatsheet.combattechniquestable.labels.attackrangecombat"?: string
774
- "sheets.combatsheet.combattechniquestable.labels.parry"?: string
775
- "sheets.combatsheet.lifepoints.title"?: string
776
- "sheets.combatsheet.lifepoints.max"?: string
777
- "sheets.combatsheet.lifepoints.current"?: string
778
- "sheets.combatsheet.lifepoints.pain1"?: string
779
- "sheets.combatsheet.lifepoints.pain2"?: string
780
- "sheets.combatsheet.lifepoints.pain3"?: string
781
- "sheets.combatsheet.lifepoints.pain4"?: string
782
- "sheets.combatsheet.lifepoints.dying"?: string
783
- "sheets.combatsheet.closecombatweapons"?: string
784
- "sheets.combatsheet.closecombatweapons.labels.weapon"?: string
785
- "sheets.combatsheet.closecombatweapons.labels.combattechnique"?: string
786
- "sheets.combatsheet.closecombatweapons.labels.damagebonus"?: string
787
- "sheets.combatsheet.closecombatweapons.labels.damagepoints"?: string
788
- "sheets.combatsheet.closecombatweapons.labels.attackparrymodifier"?: string
789
- "sheets.combatsheet.closecombatweapons.labels.reach"?: string
790
- "sheets.combatsheet.closecombatweapons.labels.breakingpointrating"?: string
791
- "sheets.combatsheet.closecombatweapons.labels.damaged"?: string
792
- "sheets.combatsheet.closecombatweapons.labels.attack"?: string
793
- "sheets.combatsheet.closecombatweapons.labels.parry"?: string
794
- "sheets.combatsheet.closecombatweapons.labels.weight"?: string
795
- "sheets.combatsheet.rangedcombatweapons"?: string
796
- "sheets.combatsheet.rangedcombatweapons.labels.weapon"?: string
797
- "sheets.combatsheet.rangedcombatweapons.labels.combattechnique"?: string
798
- "sheets.combatsheet.rangedcombatweapons.labels.reloadtime"?: string
799
- "sheets.combatsheet.rangedcombatweapons.labels.damagepoints"?: string
800
- "sheets.combatsheet.rangedcombatweapons.labels.ammunition"?: string
801
- "sheets.combatsheet.rangedcombatweapons.labels.rangebrackets"?: string
802
- "sheets.combatsheet.rangedcombatweapons.labels.breakingpointrating"?: string
803
- "sheets.combatsheet.rangedcombatweapons.labels.damaged"?: string
804
- "sheets.combatsheet.rangedcombatweapons.labels.rangedcombat"?: string
805
- "sheets.combatsheet.rangedcombatweapons.labels.weight"?: string
806
- "sheets.combatsheet.armors.title"?: string
807
- "sheets.combatsheet.armors.labels.armor"?: string
808
- "sheets.combatsheet.armors.labels.sturdinessrating"?: string
809
- "sheets.combatsheet.armors.labels.wear"?: string
810
- "sheets.combatsheet.armors.labels.protection"?: string
811
- "sheets.combatsheet.armors.labels.encumbrance"?: string
812
- "sheets.combatsheet.armors.labels.movementinitiative"?: string
813
- "sheets.combatsheet.armors.labels.carriedwhereexamples"?: string
814
- "sheets.combatsheet.armors.labels.head"?: string
815
- "sheets.combatsheet.armors.labels.torso"?: string
816
- "sheets.combatsheet.armors.labels.leftarm"?: string
817
- "sheets.combatsheet.armors.labels.rightarm"?: string
818
- "sheets.combatsheet.armors.labels.leftleg"?: string
819
- "sheets.combatsheet.armors.labels.rightleg"?: string
820
- "sheets.combatsheet.armors.labels.weight"?: string
821
- "sheets.combatsheet.shieldparryingweapon.title"?: string
822
- "sheets.combatsheet.shieldparryingweapon.labels.shieldparryingweapon"?: string
823
- "sheets.combatsheet.shieldparryingweapon.labels.structurepoints"?: string
824
- "sheets.combatsheet.shieldparryingweapon.labels.breakingpointrating"?: string
825
- "sheets.combatsheet.shieldparryingweapon.labels.damaged"?: string
826
- "sheets.combatsheet.shieldparryingweapon.labels.attackparrymodifier"?: string
827
- "sheets.combatsheet.shieldparryingweapon.labels.weight"?: string
828
- "sheets.combatsheet.actions"?: string
829
- "sheets.combatsheet.combatspecialabilities"?: string
830
- "sheets.combatsheet.conditions"?: string
831
- "sheets.combatsheet.states"?: string
832
- "sheets.belongingssheet.title"?: string
833
- "sheets.belongingssheet.equipmenttable.title"?: string
834
- "sheets.belongingssheet.equipmenttable.labels.item"?: string
835
- "sheets.belongingssheet.equipmenttable.labels.number"?: string
836
- "sheets.belongingssheet.equipmenttable.labels.price"?: string
837
- "sheets.belongingssheet.equipmenttable.labels.weight"?: string
838
- "sheets.belongingssheet.equipmenttable.labels.carriedwhere"?: string
839
- "sheets.belongingssheet.equipmenttable.labels.total"?: string
840
- "sheets.belongingssheet.purse.title"?: string
841
- "sheets.belongingssheet.purse.ducats"?: string
842
- "sheets.belongingssheet.purse.silverthalers"?: string
843
- "sheets.belongingssheet.purse.halers"?: string
844
- "sheets.belongingssheet.purse.kreutzers"?: string
845
- "sheets.belongingssheet.purse.gems"?: string
846
- "sheets.belongingssheet.purse.jewelry"?: string
847
- "sheets.belongingssheet.purse.other"?: string
848
- "sheets.belongingssheet.carryingcapacity.title"?: string
849
- "sheets.belongingssheet.carryingcapacity.calc"?: string
850
- "sheets.belongingssheet.carryingcapacity.label"?: string
851
- "sheets.belongingssheet.animal.title"?: string
852
- "sheets.belongingssheet.animal.name"?: string
853
- "sheets.belongingssheet.animal.sizecategory"?: string
854
- "sheets.belongingssheet.animal.type"?: string
855
- "sheets.belongingssheet.animal.ap"?: string
856
- "sheets.belongingssheet.animal.protection"?: string
857
- "sheets.belongingssheet.animal.attackname"?: string
858
- "sheets.belongingssheet.animal.attack"?: string
859
- "sheets.belongingssheet.animal.parry"?: string
860
- "sheets.belongingssheet.animal.damagepoints"?: string
861
- "sheets.belongingssheet.animal.reach"?: string
862
- "sheets.belongingssheet.animal.actions"?: string
863
- "sheets.belongingssheet.animal.skills"?: string
864
- "sheets.belongingssheet.animal.specialabilities"?: string
865
- "sheets.belongingssheet.animal.notes"?: string
866
- "sheets.spellssheet.title"?: string
867
- "sheets.spellssheet.header.labels.aemax"?: string
868
- "sheets.spellssheet.header.labels.aecurrent"?: string
869
- "sheets.spellssheet.spellstable.title"?: string
870
- "sheets.spellssheet.spellstable.labels.spellorritual"?: string
871
- "sheets.spellssheet.spellstable.labels.check"?: string
872
- "sheets.spellssheet.spellstable.labels.skillrating"?: string
873
- "sheets.spellssheet.spellstable.labels.cost"?: string
874
- "sheets.spellssheet.spellstable.labels.castingtime"?: string
875
- "sheets.spellssheet.spellstable.labels.range"?: string
876
- "sheets.spellssheet.spellstable.labels.duration"?: string
877
- "sheets.spellssheet.spellstable.labels.property"?: string
878
- "sheets.spellssheet.spellstable.labels.improvementcost"?: string
879
- "sheets.spellssheet.spellstable.labels.effect"?: string
880
- "sheets.spellssheet.spellstable.labels.pages"?: string
881
- "sheets.spellssheet.spellstable.unfamiliarspell"?: string
882
- "sheets.spellssheet.primaryattribute"?: string
883
- "sheets.spellssheet.properties"?: string
884
- "sheets.spellssheet.tradition"?: string
885
- "sheets.spellssheet.magicalspecialabilities"?: string
886
- "sheets.spellssheet.cantrips"?: string
887
- "sheets.chantssheet.title"?: string
888
- "sheets.chantssheet.header.labels.kpmax"?: string
889
- "sheets.chantssheet.header.labels.kpcurrent"?: string
890
- "sheets.chantssheet.chantstable.title"?: string
891
- "sheets.chantssheet.chantstable.labels.chant"?: string
892
- "sheets.chantssheet.chantstable.labels.check"?: string
893
- "sheets.chantssheet.chantstable.labels.skillrating"?: string
894
- "sheets.chantssheet.chantstable.labels.cost"?: string
895
- "sheets.chantssheet.chantstable.labels.castingtime"?: string
896
- "sheets.chantssheet.chantstable.labels.range"?: string
897
- "sheets.chantssheet.chantstable.labels.duration"?: string
898
- "sheets.chantssheet.chantstable.labels.aspect"?: string
899
- "sheets.chantssheet.chantstable.labels.improvementcost"?: string
900
- "sheets.chantssheet.chantstable.labels.effect"?: string
901
- "sheets.chantssheet.chantstable.labels.pages"?: string
902
- "sheets.chantssheet.primaryattribute"?: string
903
- "sheets.chantssheet.aspects"?: string
904
- "sheets.chantssheet.tradition"?: string
905
- "sheets.chantssheet.blessedspecialabilities"?: string
906
- "sheets.chantssheet.blessings"?: string
907
- "pacts.pactcategory"?: string
908
- "pacts.nopact"?: string
909
- "pacts.pactlevel"?: string
910
- "pacts.fairytype"?: string
911
- "pacts.domain"?: string
912
- "pacts.userdefined"?: string
913
- "pacts.demontype"?: string
914
- "pacts.circleofdamnation"?: string
915
- "pacts.minorpact"?: string
916
- "pacts.pactisincompletehint"?: string
917
- "pacts.name"?: string
918
- "Rule Sources"?: string
919
- "Use all publications"?: string
920
- "Focus Rules"?: string
921
- "Optional Rules"?: string
922
- "rules.manualherodatarepair"?: string
923
- "rules.manualherodatarepairexplanation"?: string
924
- "inlinewiki.complementarysources"?: string
925
- "race.header.name"?: string
926
- "race.header.adventurepoints"?: string
927
- "race.header.adventurepoints.tooltip"?: string
928
- "inlinewiki.apvalue"?: string
929
- "inlinewiki.adventurepoints"?: string
930
- "inlinewiki.lifepointbasevalue"?: string
931
- "inlinewiki.spiritbasevalue"?: string
932
- "inlinewiki.toughnessbasevalue"?: string
933
- "inlinewiki.movementbasevalue"?: string
934
- "inlinewiki.attributeadjustments"?: string
935
- "inlinewiki.automaticadvantages"?: string
936
- "inlinewiki.stronglyrecommendedadvantages"?: string
937
- "inlinewiki.stronglyrecommendeddisadvantages"?: string
938
- "inlinewiki.commoncultures"?: string
939
- "inlinewiki.commonadvantages"?: string
940
- "inlinewiki.commondisadvantages"?: string
941
- "inlinewiki.uncommonadvantages"?: string
942
- "inlinewiki.uncommondisadvantages"?: string
943
- "culture.filters.common.allcultures"?: string
944
- "culture.filters.common.commoncultures"?: string
945
- "culture.header.name"?: string
946
- "inlinewiki.language"?: string
947
- "inlinewiki.script"?: string
948
- "inlinewiki.areaknowledge"?: string
949
- "inlinewiki.socialstatus"?: string
950
- "inlinewiki.commonprofessions"?: string
951
- "inlinewiki.commonprofessions.mundane"?: string
952
- "inlinewiki.commonprofessions.magic"?: string
953
- "inlinewiki.commonprofessions.blessed"?: string
954
- "inlinewiki.commonskills"?: string
955
- "inlinewiki.uncommonskills"?: string
956
- "inlinewiki.commonnames"?: string
957
- "inlinewiki.culturalpackage"?: string
958
- "profession.ownprofession"?: string
959
- "profession.variants.novariant"?: string
960
- "profession.filters.common.allprofessions"?: string
961
- "profession.filters.common.commonprofessions"?: string
962
- "profession.filters.groups.allprofessiongroups"?: string
963
- "profession.filters.groups.mundaneprofessions"?: string
964
- "profession.filters.groups.magicalprofessions"?: string
965
- "profession.filters.groups.blessedprofessions"?: string
966
- "profession.header.name"?: string
967
- "profession.header.adventurepoints"?: string
968
- "profession.header.adventurepoints.tooltip"?: string
969
- "inlinewiki.prerequisites"?: string
970
- "inlinewiki.race"?: string
971
- "inlinewiki.specialabilities"?: string
972
- "inlinewiki.languagesandliteracytotalingap"?: string
973
- "inlinewiki.skillspecialization"?: string
974
- "inlinewiki.skillsselection"?: string
975
- "inlinewiki.combattechniques"?: string
976
- "inlinewiki.combattechniqueselection"?: string
977
- "inlinewiki.combattechnique.one"?: string
978
- "inlinewiki.combattechnique.two"?: string
979
- "inlinewiki.combattechniquesecondselection"?: string
980
- "inlinewiki.skills"?: string
981
- "inlinewiki.spells"?: string
982
- "inlinewiki.cursestotalingap"?: string
983
- "inlinewiki.cantripsfromlist"?: string
984
- "inlinewiki.cantrip.one"?: string
985
- "inlinewiki.cantrip.two"?: string
986
- "inlinewiki.liturgicalchants"?: string
987
- "inlinewiki.thetwelveblessings"?: string
988
- "inlinewiki.thetwelveblessingsexceptions"?: string
989
- "inlinewiki.sixblessings"?: string
990
- "inlinewiki.suggestedadvantages"?: string
991
- "inlinewiki.suggesteddisadvantages"?: string
992
- "inlinewiki.unsuitableadvantages"?: string
993
- "inlinewiki.unsuitabledisadvantages"?: string
994
- "inlinewiki.variants"?: string
995
- "inlinewiki.insteadof"?: string
996
- "rcpselectoptions.race"?: string
997
- "rcpselectoptions.culture"?: string
998
- "rcpselectoptions.profession"?: string
999
- "rcpselectoptions.cantripsfromlist"?: string
1000
- "rcpselectoptions.cantrip.one"?: string
1001
- "rcpselectoptions.cantrip.two"?: string
1002
- "rcpselectoptions.combattechniqueselection"?: string
1003
- "rcpselectoptions.combattechnique.one"?: string
1004
- "rcpselectoptions.combattechnique.two"?: string
1005
- "rcpselectoptions.selectattributeadjustment"?: string
1006
- "rcpselectoptions.buyculturalpackage"?: string
1007
- "rcpselectoptions.nativetongue.placeholder"?: string
1008
- "rcpselectoptions.buyscript"?: string
1009
- "rcpselectoptions.script.placeholder"?: string
1010
- "rcpselectoptions.combattechniquesecondselection"?: string
1011
- "rcpselectoptions.cursestotalingapleft"?: string
1012
- "rcpselectoptions.languagesandliteracytotalingapleft"?: string
1013
- "rcpselectoptions.applicationforskillspecialization"?: string
1014
- "rcpselectoptions.skillselectionap"?: string
1015
- "rcpselectoptions.skillspecialization"?: string
1016
- "rcpselectoptions.completebtn"?: string
1017
- "rcpselectoptions.unfamiliarspells"?: string
1018
- "rcpselectoptions.unfamiliarspellselectionfortraditionguildmage"?: string
1019
- "rcpselectoptions.unfamiliarspell.placeholder"?: string
1020
- "rcpselectoptions.unfamiliarspell"?: string
1021
- "Total Points"?: string
1022
- "Increment"?: string
1023
- "Decrement"?: string
1024
- "Activate"?: string
1025
- "Attribute Adjustment Selection"?: string
1026
- "Modifier"?: string
1027
- "Bought"?: string
1028
- "Lost Total"?: string
1029
- "Bought Back"?: string
1030
- "Buy Back Permanently Lost Point"?: string
1031
- "Permanently Lost Life Points"?: string
1032
- "pLP"?: string
1033
- "Permanently Lost Arcane Energy"?: string
1034
- "pAE"?: string
1035
- "Permanently Lost Karma Points"?: string
1036
- "pKP"?: string
1037
- "Loose Permanent Points"?: string
1038
- "How many points do you want to remove?"?: string
1039
- "Remove"?: string
1040
- "Permanently Spent"?: string
1041
- "Common Advantages"?: string
1042
- "Common Disadvantages"?: string
1043
- "Custom AP Cost"?: string
1044
- "AP Cost for {0}"?: string
1045
- "Custom option"?: string
1046
- "specialabilities.nativetonguelevel"?: string
1047
- "Advanced Combat Special Abilities"?: string
1048
- "Advanced Karma Special Abilities"?: string
1049
- "Advanced Magical Special Abilities"?: string
1050
- "Advanced Skill Special Abilities"?: string
1051
- "Ancestor Glyphs"?: string
1052
- "Arcane Orb Enchantments"?: string
1053
- "Attire Enchantments"?: string
1054
- "Blessed Traditions"?: string
1055
- "Bowl Enchantments"?: string
1056
- "Brawling Special Abilities"?: string
1057
- "Cauldron Enchantments"?: string
1058
- "Ceremonial Item Special Abilities"?: string
1059
- "Chronicle Enchantments"?: string
1060
- "Combat Special Abilities"?: string
1061
- "Combat Style Special Abilities"?: string
1062
- "Command Special Abilities"?: string
1063
- "Dagger Rituals"?: string
1064
- "Familiar Special Abilities"?: string
1065
- "Fate Point Sex Special Abilities"?: string
1066
- "Fate Point Special Abilities"?: string
1067
- "Fools Hat Enchantments"?: string
1068
- "General Special Abilities"?: string
1069
- "Instrument Enchantments"?: string
1070
- "Karma Special Abilities"?: string
1071
- "Krallenkettenzauber"?: string
1072
- "Liturgical Style Special Abilities"?: string
1073
- "Lycantropic Gifts"?: string
1074
- "Magical Signs"?: string
1075
- "Magical Special Abilities"?: string
1076
- "Magical Traditions"?: string
1077
- "Magic Style Special Abilities"?: string
1078
- "Orb Enchantments"?: string
1079
- "Pact Gifts"?: string
1080
- "Protective/Warding Circle Special Abilities"?: string
1081
- "Ring Enchantments"?: string
1082
- "Sermons"?: string
1083
- "Sex Special Abilities"?: string
1084
- "Sickle Rituals"?: string
1085
- "Sikaryan Drain Special Abilities"?: string
1086
- "Skill Style Special Abilities"?: string
1087
- "Spell Sword Enchantments"?: string
1088
- "Staff Enchantments"?: string
1089
- "Toy Enchantments"?: string
1090
- "Trinkhornzauber"?: string
1091
- "Vampiric Gifts"?: string
1092
- "Visions"?: string
1093
- "Wand Enchantments"?: string
1094
- "Weapon Enchantments"?: string
1095
- "inlinewiki.rule"?: string
1096
- "inlinewiki.effect"?: string
1097
- "inlinewiki.extendedcombatspecialabilities"?: string
1098
- "inlinewiki.extendedmagicalspecialabilities"?: string
1099
- "inlinewiki.extendedblessedspecialabilities"?: string
1100
- "inlinewiki.extendedskillspecialabilities"?: string
1101
- "inlinewiki.penalty"?: string
1102
- "inlinewiki.level"?: string
1103
- "inlinewiki.perlevel"?: string
1104
- "inlinewiki.volume"?: string
1105
- "inlinewiki.aspect"?: string
1106
- "inlinewiki.bindingcost"?: string
1107
- "inlinewiki.protectivecircle"?: string
1108
- "inlinewiki.wardingcircle"?: string
1109
- "inlinewiki.actions"?: string
1110
- "inlinewiki.racecultureorprofessionrequiresautomaticorsuggested"?: string
1111
- "inlinewiki.advantage"?: string
1112
- "inlinewiki.disadvantage"?: string
1113
- "inlinewiki.primaryattributeofthetradition"?: string
1114
- "inlinewiki.knowledgeofspell"?: string
1115
- "inlinewiki.knowledgeofliturgicalchant"?: string
1116
- "inlinewiki.appropriatecombatstylespecialability"?: string
1117
- "inlinewiki.appropriatemagicalstylespecialability"?: string
1118
- "inlinewiki.appropriateblessedstylespecialability"?: string
1119
- "inlinewiki.appropriateskillstylespecialability"?: string
1120
- "inlinewiki.sex"?: string
1121
- "inlinewiki.sex.male"?: string
1122
- "inlinewiki.sex.female"?: string
1123
- "inlinewiki.combattechniques.groups.all"?: string
1124
- "inlinewiki.combattechniques.groups.allmeleecombattechniques"?: string
1125
- "inlinewiki.combattechniques.groups.allrangedcombattechniques"?: string
1126
- "inlinewiki.combattechniques.groups.allmeleecombattechniqueswithparry"?: string
1127
- "inlinewiki.combattechniques.groups.allmeleecombattechniquesforonehandedweapons"?: string
1128
- "inlinewiki.socialstatusxorhigher"?: string
1129
- "Common Skills"?: string
1130
- "SR"?: string
1131
- "Skill Rating"?: string
1132
- "IC"?: string
1133
- "New Applications"?: string
1134
- "Uses"?: string
1135
- "Strongly Recommended"?: string
1136
- "Common"?: string
1137
- "Uncommon"?: string
1138
- "Unfamiliar Spells"?: string
1139
- "CTR"?: string
1140
- "Combat Technique Rating"?: string
1141
- "P"?: string
1142
- "Primary Attribute(s)"?: string
1143
- "AT"?: string
1144
- "Attack"?: string
1145
- "PA"?: string
1146
- "Parry"?: string
1147
- "Close Combat"?: string
1148
- "Ranged Combat"?: string
1149
- "Special"?: string
1150
- "Primary Attribute"?: string
1151
- "Cantrips"?: string
1152
- "Rituals"?: string
1153
- "Curses"?: string
1154
- "Elven Magical Songs"?: string
1155
- "Domination Rituals"?: string
1156
- "Magical Dances"?: string
1157
- "Magical Melodies"?: string
1158
- "Jester Tricks"?: string
1159
- "Animist Powers"?: string
1160
- "Geode Rituals"?: string
1161
- "Zibilja Rituals"?: string
1162
- "Mod"?: string
1163
- "Check Modifier"?: string
1164
- "spells.traditions.general"?: string
1165
- "magicalactions.animistforces.tribes.general"?: string
1166
- " (modified by {0})"?: string
1167
- " (− {0})"?: string
1168
- "{0} or {1}, depending on which value is higher"?: string
1169
- "Invocation Difficulty"?: string
1170
- "ID"?: string
1171
- "Creation Difficulty"?: string
1172
- "CD"?: string
1173
- "Effect"?: string
1174
- "Casting Time"?: string
1175
- "Ritual Time"?: string
1176
- "Liturgical Time"?: string
1177
- "Ceremonial Time"?: string
1178
- "AE Cost"?: string
1179
- "KP Cost"?: string
1180
- "Range"?: string
1181
- "Duration"?: string
1182
- "Target Category"?: string
1183
- "Traditions"?: string
1184
- " (you cannot use a modification on this spell’s casting time)"?: string
1185
- " (you cannot use a modification on this spell’s cost)"?: string
1186
- " (you cannot use a modification on this spell’s range)"?: string
1187
- " (you cannot use a modification on this ritual’s ritual time)"?: string
1188
- " (you cannot use a modification on this ritual’s cost)"?: string
1189
- " (you cannot use a modification on this ritual’s range)"?: string
1190
- " (you cannot use a modification on this chant’s liturgical time)"?: string
1191
- " (you cannot use a modification on this chant’s cost)"?: string
1192
- " (you cannot use a modification on this chant’s range)"?: string
1193
- " (you cannot use a modification on this ceremony’s ceremonial time)"?: string
1194
- " (you cannot use a modification on this ceremony’s cost)"?: string
1195
- " (you cannot use a modification on this ceremony’s range)"?: string
1196
- " (cannot modify)"?: string
1197
- "{0} act"?: string
1198
- "act"?: string
1199
- "{0} actions"?: string
1200
- "actions"?: string
1201
- "{0} s"?: string
1202
- "s"?: string
1203
- "{0} seconds"?: string
1204
- "seconds"?: string
1205
- "{0} min"?: string
1206
- "min"?: string
1207
- "{0} minutes"?: string
1208
- "minutes"?: string
1209
- "{0} h"?: string
1210
- "h"?: string
1211
- "{0} hours"?: string
1212
- "hours"?: string
1213
- "{0} d"?: string
1214
- "d"?: string
1215
- "{0} days"?: string
1216
- "days"?: string
1217
- "{0} wks."?: string
1218
- "wks."?: string
1219
- "{0} weeks"?: string
1220
- "weeks"?: string
1221
- "{0} mos."?: string
1222
- "mos."?: string
1223
- "{0} months"?: string
1224
- "months"?: string
1225
- "{0} yrs."?: string
1226
- "yrs."?: string
1227
- "{0} years"?: string
1228
- "years"?: string
1229
- "{0} cent."?: string
1230
- "cent."?: string
1231
- "{0} centuries"?: string
1232
- "centuries"?: string
1233
- "{0} SA"?: string
1234
- "{0} seduction actions"?: string
1235
- "{0} rnds"?: string
1236
- "{0} rounds"?: string
1237
- "{0} CR"?: string
1238
- "CR"?: string
1239
- "{0} combat rounds"?: string
1240
- "combat rounds"?: string
1241
- "{0} AE"?: string
1242
- "{0} KP"?: string
1243
- "min. "?: string
1244
- "at least "?: string
1245
- "min. {0}"?: string
1246
- "at least {0}"?: string
1247
- "/{0}"?: string
1248
- " per {0}"?: string
1249
- ", minimum of {0}"?: string
1250
- " ({0} perm.)"?: string
1251
- ", {0} of which are permanent"?: string
1252
- "half of the activation cost"?: string
1253
- " and "?: string
1254
- " + "?: string
1255
- " or "?: string
1256
- " / "?: string
1257
- " for "?: string
1258
- " (no more than {0})"?: string
1259
- " (max. {0})"?: string
1260
- "no more than {0}"?: string
1261
- "max. {0}"?: string
1262
- "Immediate"?: string
1263
- "Permanent"?: string
1264
- "no more than "?: string
1265
- "max. "?: string
1266
- "Quality Levels"?: string
1267
- "QL"?: string
1268
- "QL {0}"?: string
1269
- "Skill Points"?: string
1270
- "SP"?: string
1271
- "Sustained"?: string
1272
- "(S)"?: string
1273
- "{0} yards"?: string
1274
- "{0} yd"?: string
1275
- "{0} miles"?: string
1276
- "{0} mi."?: string
1277
- "Sight"?: string
1278
- "Self"?: string
1279
- "Global"?: string
1280
- "Touch"?: string
1281
- "Radius"?: string
1282
- " (casting)"?: string
1283
- "Zone"?: string
1284
- "Liturgical Chants and Ceremonies"?: string
1285
- "General"?: string
1286
- "Note"?: string
1287
- "all"?: string
1288
- "none"?: string
1289
- "State"?: string
1290
- "Social Status {0} or higher"?: string
1291
- "Person with {0}"?: string
1292
- "Penis"?: string
1293
- "Vagina"?: string
1294
- "the SR for {0} combined must add up to at least {1}"?: string
1295
- "{0} on at least SR {1}: {2}"?: string
1296
- "{0} arcane works with the property {1} at SR {2} or higher"?: string
1297
- "{0} liturgical chants and ceremonies with the aspect {1} at SR {2} or higher"?: string
1298
- "one of the following skills"?: string
1299
- "two of the following skills"?: string
1300
- "three of the following skills"?: string
1301
- "four of the following skills"?: string
1302
- "five of the following skills"?: string
1303
- "six of the following skills"?: string
1304
- "seven of the following skills"?: string
1305
- "eight of the following skills"?: string
1306
- "nine of the following skills"?: string
1307
- "{0} of the following skills"?: string
1308
- "one combat technique"?: string
1309
- "two combat techniques"?: string
1310
- "three combat techniques"?: string
1311
- "four combat techniques"?: string
1312
- "five combat techniques"?: string
1313
- "six combat techniques"?: string
1314
- "seven combat techniques"?: string
1315
- "eight combat techniques"?: string
1316
- "nine combat techniques"?: string
1317
- "{0} combat techniques"?: string
1318
- "one close combat technique"?: string
1319
- "two close combat techniques"?: string
1320
- "three close combat techniques"?: string
1321
- "four close combat techniques"?: string
1322
- "five close combat techniques"?: string
1323
- "six close combat techniques"?: string
1324
- "seven close combat techniques"?: string
1325
- "eight close combat techniques"?: string
1326
- "nine close combat techniques"?: string
1327
- "{0} close combat techniques"?: string
1328
- "one ranged combat technique"?: string
1329
- "two ranged combat techniques"?: string
1330
- "three ranged combat techniques"?: string
1331
- "four ranged combat techniques"?: string
1332
- "five ranged combat techniques"?: string
1333
- "six ranged combat techniques"?: string
1334
- "seven ranged combat techniques"?: string
1335
- "eight ranged combat techniques"?: string
1336
- "nine ranged combat techniques"?: string
1337
- "{0} ranged combat techniques"?: string
1338
- "special ability"?: string
1339
- "no special ability"?: string
1340
- "Tradition"?: string
1341
- "Tradition ({0})"?: string
1342
- "Church"?: string
1343
- "Shaman"?: string
1344
- "Tradition must be able to use rituals"?: string
1345
- "Tradition must be able to bind familiars"?: string
1346
- "spell enhancement"?: string
1347
- "liturgical enhancement"?: string
1348
- "for"?: string
1349
- "no other ancestor blood advantage"?: string
1350
- "Race, culture, or profession must have {0} as an automatic or suggested {1}"?: string
1351
- "advantage"?: string
1352
- "disadvantage"?: string
1353
- "domain {0}"?: string
1354
- "{0} level {1}"?: string
1355
- "Level {0}:"?: string
1356
- "inlinewiki.castingtime"?: string
1357
- "inlinewiki.ritualtime"?: string
1358
- "inlinewiki.aecost"?: string
1359
- "inlinewiki.range"?: string
1360
- "inlinewiki.duration"?: string
1361
- "inlinewiki.targetcategory"?: string
1362
- "inlinewiki.property"?: string
1363
- "inlinewiki.traditions"?: string
1364
- "inlinewiki.skill"?: string
1365
- "inlinewiki.lengthoftime"?: string
1366
- "inlinewiki.musictradition"?: string
1367
- "inlinewiki.youcannotuseamodificationonthisspellscastingtime"?: string
1368
- "inlinewiki.youcannotuseamodificationonthisspellsritualtime"?: string
1369
- "inlinewiki.youcannotuseamodificationonthisspellscost"?: string
1370
- "inlinewiki.youcannotuseamodificationonthisspellsrange"?: string
1371
- "inlinewiki.youcannotuseamodificationonthisspellsduration"?: string
1372
- "inlinewiki.spellenhancements"?: string
1373
- "inlinewiki.spellenhancements.title"?: string
1374
- "inlinewiki.tribaltraditions"?: string
1375
- "inlinewiki.brew"?: string
1376
- "inlinewiki.spirithalf"?: string
1377
- "inlinewiki.spirithalf.short"?: string
1378
- "inlinewiki.spiritortoughness"?: string
1379
- "inlinewiki.spiritortoughness.short"?: string
1380
- "inlinewiki.note"?: string
1381
- "Blessings"?: string
1382
- "Ceremonies"?: string
1383
- "liturgicalchants.addbtn"?: string
1384
- "liturgicalchants.header.name"?: string
1385
- "liturgicalchants.header.traditions"?: string
1386
- "liturgicalchants.header.group"?: string
1387
- "liturgicalchants.header.skillrating"?: string
1388
- "liturgicalchants.header.skillrating.tooltip"?: string
1389
- "liturgicalchants.header.check"?: string
1390
- "liturgicalchants.header.checkmodifier"?: string
1391
- "liturgicalchants.header.checkmodifier.tooltip"?: string
1392
- "liturgicalchants.header.improvementcost"?: string
1393
- "liturgicalchants.header.improvementcost.tooltip"?: string
1394
- "liturgicalchants.groups.blessing"?: string
1395
- "liturgicalchants.aspects.general"?: string
1396
- "inlinewiki.liturgicaltime"?: string
1397
- "inlinewiki.ceremonialtime"?: string
1398
- "inlinewiki.kpcost"?: string
1399
- "inlinewiki.youcannotuseamodificationonthischantsliturgicaltime"?: string
1400
- "inlinewiki.youcannotuseamodificationonthischantsceremonialtime"?: string
1401
- "inlinewiki.youcannotuseamodificationonthischantscost"?: string
1402
- "inlinewiki.youcannotuseamodificationonthischantsrange"?: string
1403
- "inlinewiki.youcannotuseamodificationonthischantsduration"?: string
1404
- "inlinewiki.liturgicalchantenhancements"?: string
1405
- "inlinewiki.liturgicalchantenhancements.title"?: string
1406
- "equipment.header.name"?: string
1407
- "equipment.header.group"?: string
1408
- "equipment.addbtn"?: string
1409
- "equipment.createbtn"?: string
1410
- "equipment.filters.allcombattechniques"?: string
1411
- "equipment.purse.title"?: string
1412
- "equipment.purse.ducats"?: string
1413
- "equipment.purse.silverthalers"?: string
1414
- "equipment.purse.halers"?: string
1415
- "equipment.purse.kreutzers"?: string
1416
- "equipment.purse.carryingcapacity"?: string
1417
- "equipment.purse.initialstartingwealthandcarryingcapacity"?: string
1418
- "equipment.purse.earnpay"?: string
1419
- "equipment.purse.earn"?: string
1420
- "equipment.purse.pay"?: string
1421
- "equipment.purse.notefirst"?: string
1422
- "equipment.purse.notesecond"?: string
1423
- "equipment.purse.currentcredit"?: string
1424
- "equipment.purse.amount"?: string
1425
- "equipment.dialogs.addedit.damage"?: string
1426
- "equipment.dialogs.addedit.length"?: string
1427
- "equipment.dialogs.addedit.range"?: string
1428
- "equipment.dialogs.addedit.edititem"?: string
1429
- "equipment.dialogs.addedit.createitem"?: string
1430
- "equipment.dialogs.addedit.number"?: string
1431
- "equipment.dialogs.addedit.name"?: string
1432
- "equipment.dialogs.addedit.price"?: string
1433
- "equipment.dialogs.addedit.weight"?: string
1434
- "equipment.dialogs.addedit.carriedwhere"?: string
1435
- "equipment.dialogs.addedit.itemgroup"?: string
1436
- "equipment.dialogs.addedit.itemgrouphint"?: string
1437
- "equipment.dialogs.addedit.improvisedweapon"?: string
1438
- "equipment.dialogs.addedit.improvisedweapongroup"?: string
1439
- "equipment.dialogs.addedit.template"?: string
1440
- "equipment.dialogs.addedit.combattechnique"?: string
1441
- "equipment.dialogs.addedit.primaryattributeanddamagethreshold"?: string
1442
- "equipment.dialogs.addedit.primaryattribute"?: string
1443
- "equipment.dialogs.addedit.primaryattribute.short"?: string
1444
- "equipment.dialogs.addedit.damagethreshold"?: string
1445
- "equipment.dialogs.addedit.separatedamagethresholds"?: string
1446
- "equipment.dialogs.addedit.breakingpointratingmodifier"?: string
1447
- "equipment.dialogs.addedit.damaged"?: string
1448
- "equipment.dialogs.addedit.reach"?: string
1449
- "equipment.dialogs.addedit.attackparrymodifier"?: string
1450
- "equipment.dialogs.addedit.structurepoints"?: string
1451
- "equipment.dialogs.addedit.lengthwithunit"?: string
1452
- "equipment.dialogs.addedit.parryingweapon"?: string
1453
- "equipment.dialogs.addedit.twohandedweapon"?: string
1454
- "equipment.dialogs.addedit.reloadtime"?: string
1455
- "equipment.dialogs.addedit.rangeclose"?: string
1456
- "equipment.dialogs.addedit.rangemedium"?: string
1457
- "equipment.dialogs.addedit.rangefar"?: string
1458
- "equipment.dialogs.addedit.ammunition"?: string
1459
- "equipment.dialogs.addedit.protection"?: string
1460
- "equipment.dialogs.addedit.encumbrance"?: string
1461
- "equipment.dialogs.addedit.armortype"?: string
1462
- "equipment.dialogs.addedit.sturdinessmodifier"?: string
1463
- "equipment.dialogs.addedit.wear"?: string
1464
- "equipment.dialogs.addedit.hitzonearmoronly"?: string
1465
- "equipment.dialogs.addedit.movementmodifier"?: string
1466
- "equipment.dialogs.addedit.initiativemodifier"?: string
1467
- "equipment.dialogs.addedit.additionalpenalties"?: string
1468
- "hitzonearmors.header.name"?: string
1469
- "hitzonearmors.createbtn"?: string
1470
- "hitzonearmors.dialogs.addedit.name"?: string
1471
- "hitzonearmors.dialogs.addedit.edithitzonearmor"?: string
1472
- "hitzonearmors.dialogs.addedit.createhitzonearmor"?: string
1473
- "hitzonearmors.dialogs.addedit.head"?: string
1474
- "hitzonearmors.dialogs.addedit.torso"?: string
1475
- "hitzonearmors.dialogs.addedit.leftarm"?: string
1476
- "hitzonearmors.dialogs.addedit.rightarm"?: string
1477
- "hitzonearmors.dialogs.addedit.leftleg"?: string
1478
- "hitzonearmors.dialogs.addedit.rightleg"?: string
1479
- "hitzonearmors.dialogs.addedit.wear"?: string
1480
- "inlinewiki.equipment.weight"?: string
1481
- "inlinewiki.equipment.price"?: string
1482
- "inlinewiki.equipment.ammunition"?: string
1483
- "inlinewiki.equipment.combattechnique"?: string
1484
- "inlinewiki.equipment.damage"?: string
1485
- "inlinewiki.equipment.primaryattributeanddamagethreshold"?: string
1486
- "inlinewiki.equipment.attackparrymodifier"?: string
1487
- "inlinewiki.equipment.reach"?: string
1488
- "inlinewiki.equipment.length"?: string
1489
- "inlinewiki.equipment.reloadtime"?: string
1490
- "inlinewiki.equipment.range"?: string
1491
- "inlinewiki.equipment.actionsvalue"?: string
1492
- "inlinewiki.equipment.protection"?: string
1493
- "inlinewiki.equipment.encumbrance"?: string
1494
- "inlinewiki.equipment.additionalpenalties"?: string
1495
- "inlinewiki.equipment.note"?: string
1496
- "inlinewiki.equipment.rules"?: string
1497
- "inlinewiki.equipment.weaponadvantage"?: string
1498
- "inlinewiki.equipment.weapondisadvantage"?: string
1499
- "inlinewiki.equipment.armoradvantage"?: string
1500
- "inlinewiki.equipment.armordisadvantage"?: string
1501
- "pets.dialogs.addedit.deleteavatarbtn"?: string
1502
- "pets.dialogs.addedit.name"?: string
1503
- "pets.dialogs.addedit.sizecategory"?: string
1504
- "pets.dialogs.addedit.type"?: string
1505
- "pets.dialogs.addedit.apspent"?: string
1506
- "pets.dialogs.addedit.totalap"?: string
1507
- "pets.dialogs.addedit.protection"?: string
1508
- "pets.dialogs.addedit.attackname"?: string
1509
- "pets.dialogs.addedit.attack"?: string
1510
- "pets.dialogs.addedit.parry"?: string
1511
- "pets.dialogs.addedit.damagepoints"?: string
1512
- "pets.dialogs.addedit.reach"?: string
1513
- "pets.dialogs.addedit.actions"?: string
1514
- "pets.dialogs.addedit.skills"?: string
1515
- "pets.dialogs.addedit.specialabilities"?: string
1516
- "pets.dialogs.addedit.notes"?: string
1517
- "pets.dialogs.addedit.addbtn"?: string
1518
- "pets.dialogs.addedit.savebtn"?: string
1519
- "Show details"?: string
1520
- "Maximum Attribute Value"?: string
1521
- "Maximum Skill Value"?: string
1522
- "Maximum Combat Technique"?: string
1523
- "Maximum Attribute Total"?: string
1524
- "Number of Spells/Liturgical Chants"?: string
1525
- "Number from other Traditions"?: string
1526
- "Check"?: string
1527
- "Applications"?: string
1528
- "Encumbrance"?: string
1529
- "Yes"?: string
1530
- "No"?: string
1531
- "Maybe"?: string
1532
- "Tools"?: string
1533
- "Quality"?: string
1534
- "Failed Check"?: string
1535
- "Critical Success"?: string
1536
- "Botch"?: string
1537
- "Improvement Cost"?: string
1538
- "Front Cover Inside"?: string
1539
- "Back Cover Inside"?: string
1540
- "since the {0}. printing"?: string
1541
- "removed in {0}. printing"?: string
454
+ "About {$app}": string & { __params: { "app": StringableTranslationParameter } }
455
+ "Preferences …": string
456
+ "Services": string
457
+ "Hide {$app}": string & { __params: { "app": StringableTranslationParameter } }
458
+ "Hide Others": string
459
+ "Show All": string
460
+ "Quit {$app}": string & { __params: { "app": StringableTranslationParameter } }
461
+ ".input {$os :string} {{File}}": string & { __params: { "os": string } }
462
+ "Close": string
463
+ "Quit": string
464
+ "Edit": string
465
+ "Undo": string
466
+ "Redo": string
467
+ "Cut": string
468
+ "Copy": string
469
+ "Paste": string
470
+ "Delete": string
471
+ "Select All": string
472
+ "View": string
473
+ "Toggle Full Screen": string
474
+ "Window": string
475
+ "Minimize": string
476
+ "Zoom": string
477
+ "Main Window": string
478
+ "Bring All to Front": string
479
+ "Settings": string
480
+ "Main Language": string
481
+ "System Language": string
482
+ "Fallback Language": string
483
+ "No fallback language": string
484
+ "Appearance": string
485
+ "Auto": string
486
+ "Light": string
487
+ "Dark": string
488
+ "Edit characters after creation": string
489
+ "Show animations": string
490
+ "Check for updates": string
491
+ "Updater": string
492
+ "Checking for updates …": string
493
+ "New version available": string
494
+ "Version {$version} is available! Do you wish to download and install?": string & { __params: { "version": StringableTranslationParameter } }
495
+ "Download": string
496
+ "Download Later": string
497
+ "Downloading update …": string
498
+ "Update downloaded": string
499
+ "Quit and Install": string
500
+ "Install Later": string
501
+ "No update available": string
502
+ "You're running the latest version available.": string
503
+ "Characters": string
504
+ "Groups": string
505
+ "Library": string
506
+ "FAQ": string
507
+ "About": string
508
+ "Imprint": string
509
+ "Third-Party Licenses": string
510
+ "Last Changes": string
511
+ "Profile": string
512
+ "Overview": string
513
+ "Personal Data": string
514
+ "Character Sheet": string
515
+ "Pact": string
516
+ "Rules": string
517
+ "Race, Culture & Profession": string
518
+ "Race": string
519
+ "Culture": string
520
+ "Profession": string
521
+ "Attributes": string
522
+ "Advantages & Disadvantages": string
523
+ "Advantages": string
524
+ "Disadvantages": string
525
+ "Abilities": string
526
+ "Skills": string
527
+ "Combat Techniques": string
528
+ "Special Abilities": string
529
+ "Spells": string
530
+ "Liturgical Chants": string
531
+ "Belongings": string
532
+ "Equipment": string
533
+ "Hit Zone Armor": string
534
+ "Pets": string
535
+ "{$value} AP Remaining": string & { __params: { "value": StringableTranslationParameter } }
536
+ "Save": string
537
+ "Show Settings": string
538
+ "Toggle DevTools": string
539
+ "Adventure Points": string
540
+ "AP": string
541
+ ".input {$value :number} {{{$value} Adventure Points}}": string & { __params: { "value": number } }
542
+ "{$value} AP": string & { __params: { "value": StringableTranslationParameter } }
543
+ "{$value} Total AP": string & { __params: { "value": StringableTranslationParameter } }
544
+ "{$value} AP Spent": string & { __params: { "value": StringableTranslationParameter } }
545
+ "{$value}/{$max} AP spent on advantages": string & { __params: { "value": StringableTranslationParameter; "max": StringableTranslationParameter } }
546
+ "Thereof {$value}/{$max} on magic advantages": string & { __params: { "value": StringableTranslationParameter; "max": StringableTranslationParameter } }
547
+ "Thereof {$value}/{$max} on blessed advantages": string & { __params: { "value": StringableTranslationParameter; "max": StringableTranslationParameter } }
548
+ "{$value}/{$max} AP received from disadvantages": string & { __params: { "value": StringableTranslationParameter; "max": StringableTranslationParameter } }
549
+ "Thereof {$value}/{$max} from magic disadvantages": string & { __params: { "value": StringableTranslationParameter; "max": StringableTranslationParameter } }
550
+ "Thereof {$value}/{$max} from blessed disadvantages": string & { __params: { "value": StringableTranslationParameter; "max": StringableTranslationParameter } }
551
+ "{$value} AP spent on race": string & { __params: { "value": StringableTranslationParameter } }
552
+ "{$value} AP spent on profession": string & { __params: { "value": StringableTranslationParameter } }
553
+ "{$value} AP spent on attributes": string & { __params: { "value": StringableTranslationParameter } }
554
+ "{$value} AP spent on skills": string & { __params: { "value": StringableTranslationParameter } }
555
+ "{$value} AP spent on combat techniques": string & { __params: { "value": StringableTranslationParameter } }
556
+ "{$value} AP spent on spells": string & { __params: { "value": StringableTranslationParameter } }
557
+ "{$value} AP spent on cantrips": string & { __params: { "value": StringableTranslationParameter } }
558
+ "{$value} AP spent on liturgical chants": string & { __params: { "value": StringableTranslationParameter } }
559
+ "{$value} AP spent on blessings": string & { __params: { "value": StringableTranslationParameter } }
560
+ "{$value} AP spent on special abilities": string & { __params: { "value": StringableTranslationParameter } }
561
+ "{$value} AP spent on improving/buying back LP/AE/KP": string & { __params: { "value": StringableTranslationParameter } }
562
+ "header.dialogs.herosaved": string
563
+ "header.dialogs.allsaved": string
564
+ "header.dialogs.everythingelsesaved": string
565
+ "header.dialogs.saveconfigerror.title": string
566
+ "header.dialogs.saveconfigerror.message": string
567
+ "header.dialogs.saveheroeserror.title": string
568
+ "header.dialogs.saveheroeserror.message": string
569
+ "general.weightvalue": string
570
+ "general.pricevalue": string
571
+ "general.lengthvalue": string
572
+ "D": string
573
+ "general.none": string
574
+ "general.or": string
575
+ "general.and": string
576
+ "general.error": string
577
+ "general.errorcode": string
578
+ "general.emptylistplaceholder": string
579
+ "general.emptylistnoresultsplaceholder": string
580
+ "No Results": string
581
+ "Search": string
582
+ "Sort By": string
583
+ "Name": string
584
+ "Date Modified": string
585
+ "Group": string
586
+ "Property": string
587
+ "general.filters.sort.bylocation": string
588
+ "general.filters.sort.bycost": string
589
+ "general.filters.sort.byweight": string
590
+ "general.filters.showactivatedentries": string
591
+ "Done": string
592
+ "OK": string
593
+ "Cancel": string
594
+ "Create": string
595
+ "Apply": string
596
+ "Add": string
597
+ "Not enough AP": string
598
+ ".input {$value :number} {{You are missing {$value} Adventure Points to do this.}}": string & { __params: { "value": number } }
599
+ "Exceeding Adventure Points limit for advantages": string
600
+ "You cannot spend more than {$max} AP on advantages. You would exceed this limit by {$over} AP.": string & { __params: { "max": StringableTranslationParameter; "over": StringableTranslationParameter } }
601
+ "Exceeding Adventure Points limit for magical advantages": string
602
+ "You cannot spend more than {$max} AP on magical advantages. You would exceed this limit by {$over} AP.": string & { __params: { "max": StringableTranslationParameter; "over": StringableTranslationParameter } }
603
+ "Exceeding Adventure Points limit for blessed advantages": string
604
+ "You cannot spend more than {$max} AP on blessed advantages. You would exceed this limit by {$over} AP.": string & { __params: { "max": StringableTranslationParameter; "over": StringableTranslationParameter } }
605
+ "Exceeding Adventure Points limit for disadvantages": string
606
+ "You cannot receive more than {$max} AP from disadvantages. You would exceed this limit by {$over} AP.": string & { __params: { "max": StringableTranslationParameter; "over": StringableTranslationParameter } }
607
+ "Exceeding Adventure Points limit for magical disadvantages": string
608
+ "You cannot receive more than {$max} AP from magical disadvantages. You would exceed this limit by {$over} AP.": string & { __params: { "max": StringableTranslationParameter; "over": StringableTranslationParameter } }
609
+ "Exceeding Adventure Points limit for blessed disadvantages": string
610
+ "You cannot receive more than {$max} AP from blessed disadvantages. You would exceed this limit by {$over} AP.": string & { __params: { "max": StringableTranslationParameter; "over": StringableTranslationParameter } }
611
+ "heroes.filters.origin.allheroes": string
612
+ "heroes.filters.origin.ownheroes": string
613
+ "heroes.filters.origin.sharedheroes": string
614
+ "Import": string
615
+ "New Character": string
616
+ "Duplicate Character": string
617
+ "Export Character as OPTLC file": string
618
+ "Delete Character": string
619
+ "Open Character": string
620
+ "heroes.saveherobtn": string
621
+ "heroes.unsavedhero.name": string
622
+ "heroes.list.adventurepoints": string
623
+ "heroes.dialogs.herosaved": string
624
+ "heroes.dialogs.importheroerror.title": string
625
+ "heroes.dialogs.importheroerror.message": string
626
+ "heroes.dialogs.heroexportsavelocation.title": string
627
+ "heroes.dialogs.herojsonsaveerror.title": string
628
+ "heroes.dialogs.herojsonsaveerror.message": string
629
+ "heroes.dialogs.unsavedactions.title": string
630
+ "heroes.dialogs.unsavedactions.message": string
631
+ "heroes.dialogs.unsavedactions.quit": string
632
+ "heroes.dialogs.unsavedactions.saveandquit": string
633
+ "heroes.dialogs.deletehero.title": string
634
+ "heroes.dialogs.deletehero.message": string
635
+ "heroes.dialogs.herocreation.title": string
636
+ "heroes.dialogs.herocreation.nameofhero": string
637
+ "heroes.dialogs.herocreation.sex.placeholder": string
638
+ "heroes.dialogs.herocreation.sex.male": string
639
+ "heroes.dialogs.herocreation.sex.female": string
640
+ "heroes.dialogs.herocreation.experiencelevel.placeholder": string
641
+ "heroes.dialogs.herocreation.startbtn": string
642
+ "wiki.chooseacategory": string
643
+ "wiki.chooseacategorytodisplayalist": string
644
+ "wiki.filters.races": string
645
+ "wiki.filters.cultures": string
646
+ "wiki.filters.professions": string
647
+ "wiki.filters.advantages": string
648
+ "wiki.filters.disadvantages": string
649
+ "wiki.filters.skills": string
650
+ "wiki.filters.skills.all": string
651
+ "wiki.filters.combattechniques": string
652
+ "wiki.filters.combattechniques.all": string
653
+ "wiki.filters.magic": string
654
+ "wiki.filters.magic.all": string
655
+ "wiki.filters.liturgicalchants": string
656
+ "wiki.filters.liturgicalchants.all": string
657
+ "wiki.filters.specialabilities": string
658
+ "wiki.filters.specialabilities.all": string
659
+ "wiki.filters.itemtemplates": string
660
+ "wiki.filters.itemtemplates.all": string
661
+ "Edit Name": string
662
+ "Change Name": string
663
+ "Edit Profession Name": string
664
+ "Change Profession Name": string
665
+ "Add AP": string
666
+ "Add Adventure Points": string
667
+ "How many Adventure Points do you want to add?": string
668
+ "Finish Character Creation": string
669
+ "Select New Avatar": string
670
+ "Delete Avatar": string
671
+ "profile.dialogs.changeheroavatar.title": string
672
+ "profile.dialogs.changeheroavatar.selectfilebtn": string
673
+ "profile.dialogs.changeheroavatar.imagefiletype": string
674
+ "profile.dialogs.changeheroavatar.invalidfilewarning": string
675
+ "Male": string
676
+ "Female": string
677
+ "Bal’Thani": string
678
+ "Tsajana": string
679
+ "Family": string
680
+ "Place of Birth": string
681
+ "Date of Birth": string
682
+ "Age": string
683
+ "Hair Color": string
684
+ "Eye Color": string
685
+ "Size": string
686
+ "Weight": string
687
+ "Title": string
688
+ "Social Status": string
689
+ "Characteristics": string
690
+ "Other Information": string
691
+ "Reroll Eye Color": string
692
+ "Reroll Hair Color": string
693
+ "Reroll Size": string
694
+ "Reroll Weight": string
695
+ "personaldata.cultureareaknowledge": string
696
+ "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.": string
697
+ "sheets.printtopdfbtn": string
698
+ "sheets.dialogs.pdfexportsavelocation.title": string
699
+ "sheets.dialogs.pdfsaved": string
700
+ "sheets.dialogs.pdfsaveerror.title": string
701
+ "sheets.dialogs.pdfsaveerror.message": string
702
+ "sheets.dialogs.pdfcreationerror.title": string
703
+ "sheets.dialogs.pdfcreationerror.message": string
704
+ "sheets.showattributevalues": string
705
+ "sheets.useparchment": string
706
+ "sheets.zoomfactor": string
707
+ "sheets.charactersheet": string
708
+ "sheets.attributemodifiers.title": string
709
+ "sheets.mainsheet.title": string
710
+ "sheets.mainsheet.name": string
711
+ "sheets.mainsheet.family": string
712
+ "sheets.mainsheet.placeofbirth": string
713
+ "sheets.mainsheet.dateofbirth": string
714
+ "sheets.mainsheet.age": string
715
+ "sheets.mainsheet.sex": string
716
+ "sheets.mainsheet.race": string
717
+ "sheets.mainsheet.size": string
718
+ "sheets.mainsheet.weight": string
719
+ "sheets.mainsheet.haircolor": string
720
+ "sheets.mainsheet.eyecolor": string
721
+ "sheets.mainsheet.culture": string
722
+ "sheets.mainsheet.socialstatus": string
723
+ "sheets.mainsheet.profession": string
724
+ "sheets.mainsheet.rank": string
725
+ "sheets.mainsheet.characteristics": string
726
+ "sheets.mainsheet.otherinfo": string
727
+ "sheets.mainsheet.experiencelevellabel": string
728
+ "sheets.mainsheet.totalaplabel": string
729
+ "sheets.mainsheet.apcollectedlabel": string
730
+ "sheets.mainsheet.apspentlabel": string
731
+ "sheets.mainsheet.avatarlabel": string
732
+ "sheets.mainsheet.advantages": string
733
+ "sheets.mainsheet.disadvantages": string
734
+ "sheets.mainsheet.generalspecialabilites": string
735
+ "sheets.mainsheet.fatepoints": string
736
+ "sheets.mainsheet.derivedcharacteristics.labels.value": string
737
+ "sheets.mainsheet.derivedcharacteristics.labels.bonuspenalty": string
738
+ "sheets.mainsheet.derivedcharacteristics.labels.bonus": string
739
+ "sheets.mainsheet.derivedcharacteristics.labels.bought": string
740
+ "sheets.mainsheet.derivedcharacteristics.labels.max": string
741
+ "sheets.mainsheet.derivedcharacteristics.labels.current": string
742
+ "sheets.mainsheet.derivedcharacteristics.labels.basestat": string
743
+ "sheets.mainsheet.derivedcharacteristics.labels.permanentlylostboughtback": string
744
+ "sheets.gamestatssheet.title": string
745
+ "sheets.gamestatssheet.skillstable.title": string
746
+ "sheets.gamestatssheet.skillstable.labels.skill": string
747
+ "sheets.gamestatssheet.skillstable.labels.check": string
748
+ "sheets.gamestatssheet.skillstable.labels.encumbrance": string
749
+ "sheets.gamestatssheet.skillstable.labels.improvementcost": string
750
+ "sheets.gamestatssheet.skillstable.labels.skillrating": string
751
+ "sheets.gamestatssheet.skillstable.labels.routinechecks": string
752
+ "sheets.gamestatssheet.skillstable.labels.notes": string
753
+ "sheets.gamestatssheet.skillstable.encumbrance.yes": string
754
+ "sheets.gamestatssheet.skillstable.encumbrance.no": string
755
+ "sheets.gamestatssheet.skillstable.encumbrance.maybe": string
756
+ "sheets.gamestatssheet.skillstable.groups.pages": string
757
+ "sheets.gamestatssheet.languages.title": string
758
+ "sheets.gamestatssheet.languages.nativetongue": string
759
+ "sheets.gamestatssheet.knownscripts.title": string
760
+ "sheets.gamestatssheet.routinechecks.title": string
761
+ "sheets.gamestatssheet.routinechecks.textRow1": string
762
+ "sheets.gamestatssheet.routinechecks.textRow2": string
763
+ "sheets.gamestatssheet.routinechecks.textRow3": string
764
+ "sheets.gamestatssheet.routinechecks.textRow4": string
765
+ "sheets.gamestatssheet.routinechecks.labels.checkmod": string
766
+ "sheets.gamestatssheet.routinechecks.labels.neededsr": string
767
+ "sheets.gamestatssheet.routinechecks.from3on": string
768
+ "sheets.gamestatssheet.qualitylevels.title": string
769
+ "sheets.gamestatssheet.qualitylevels.labels.skillpoints": string
770
+ "sheets.gamestatssheet.qualitylevels.labels.qualitylevel": string
771
+ "sheets.combatsheet.title": string
772
+ "sheets.combatsheet.combattechniquestable.title": string
773
+ "sheets.combatsheet.combattechniquestable.labels.combattechnique": string
774
+ "sheets.combatsheet.combattechniquestable.labels.primaryattribute": string
775
+ "sheets.combatsheet.combattechniquestable.labels.improvementcost": string
776
+ "sheets.combatsheet.combattechniquestable.labels.combattechniquerating": string
777
+ "sheets.combatsheet.combattechniquestable.labels.attackrangecombat": string
778
+ "sheets.combatsheet.combattechniquestable.labels.parry": string
779
+ "sheets.combatsheet.lifepoints.title": string
780
+ "sheets.combatsheet.lifepoints.max": string
781
+ "sheets.combatsheet.lifepoints.current": string
782
+ "sheets.combatsheet.lifepoints.pain1": string
783
+ "sheets.combatsheet.lifepoints.pain2": string
784
+ "sheets.combatsheet.lifepoints.pain3": string
785
+ "sheets.combatsheet.lifepoints.pain4": string
786
+ "sheets.combatsheet.lifepoints.dying": string
787
+ "sheets.combatsheet.closecombatweapons": string
788
+ "sheets.combatsheet.closecombatweapons.labels.weapon": string
789
+ "sheets.combatsheet.closecombatweapons.labels.combattechnique": string
790
+ "sheets.combatsheet.closecombatweapons.labels.damagebonus": string
791
+ "sheets.combatsheet.closecombatweapons.labels.damagepoints": string
792
+ "sheets.combatsheet.closecombatweapons.labels.attackparrymodifier": string
793
+ "sheets.combatsheet.closecombatweapons.labels.reach": string
794
+ "sheets.combatsheet.closecombatweapons.labels.breakingpointrating": string
795
+ "sheets.combatsheet.closecombatweapons.labels.damaged": string
796
+ "sheets.combatsheet.closecombatweapons.labels.attack": string
797
+ "sheets.combatsheet.closecombatweapons.labels.parry": string
798
+ "sheets.combatsheet.closecombatweapons.labels.weight": string
799
+ "sheets.combatsheet.rangedcombatweapons": string
800
+ "sheets.combatsheet.rangedcombatweapons.labels.weapon": string
801
+ "sheets.combatsheet.rangedcombatweapons.labels.combattechnique": string
802
+ "sheets.combatsheet.rangedcombatweapons.labels.reloadtime": string
803
+ "sheets.combatsheet.rangedcombatweapons.labels.damagepoints": string
804
+ "sheets.combatsheet.rangedcombatweapons.labels.ammunition": string
805
+ "sheets.combatsheet.rangedcombatweapons.labels.rangebrackets": string
806
+ "sheets.combatsheet.rangedcombatweapons.labels.breakingpointrating": string
807
+ "sheets.combatsheet.rangedcombatweapons.labels.damaged": string
808
+ "sheets.combatsheet.rangedcombatweapons.labels.rangedcombat": string
809
+ "sheets.combatsheet.rangedcombatweapons.labels.weight": string
810
+ "sheets.combatsheet.armors.title": string
811
+ "sheets.combatsheet.armors.labels.armor": string
812
+ "sheets.combatsheet.armors.labels.sturdinessrating": string
813
+ "sheets.combatsheet.armors.labels.wear": string
814
+ "sheets.combatsheet.armors.labels.protection": string
815
+ "sheets.combatsheet.armors.labels.encumbrance": string
816
+ "sheets.combatsheet.armors.labels.movementinitiative": string
817
+ "sheets.combatsheet.armors.labels.carriedwhereexamples": string
818
+ "sheets.combatsheet.armors.labels.head": string
819
+ "sheets.combatsheet.armors.labels.torso": string
820
+ "sheets.combatsheet.armors.labels.leftarm": string
821
+ "sheets.combatsheet.armors.labels.rightarm": string
822
+ "sheets.combatsheet.armors.labels.leftleg": string
823
+ "sheets.combatsheet.armors.labels.rightleg": string
824
+ "sheets.combatsheet.armors.labels.weight": string
825
+ "sheets.combatsheet.shieldparryingweapon.title": string
826
+ "sheets.combatsheet.shieldparryingweapon.labels.shieldparryingweapon": string
827
+ "sheets.combatsheet.shieldparryingweapon.labels.structurepoints": string
828
+ "sheets.combatsheet.shieldparryingweapon.labels.breakingpointrating": string
829
+ "sheets.combatsheet.shieldparryingweapon.labels.damaged": string
830
+ "sheets.combatsheet.shieldparryingweapon.labels.attackparrymodifier": string
831
+ "sheets.combatsheet.shieldparryingweapon.labels.weight": string
832
+ "sheets.combatsheet.actions": string
833
+ "sheets.combatsheet.combatspecialabilities": string
834
+ "sheets.combatsheet.conditions": string
835
+ "sheets.combatsheet.states": string
836
+ "sheets.belongingssheet.title": string
837
+ "sheets.belongingssheet.equipmenttable.title": string
838
+ "sheets.belongingssheet.equipmenttable.labels.item": string
839
+ "sheets.belongingssheet.equipmenttable.labels.number": string
840
+ "sheets.belongingssheet.equipmenttable.labels.price": string
841
+ "sheets.belongingssheet.equipmenttable.labels.weight": string
842
+ "sheets.belongingssheet.equipmenttable.labels.carriedwhere": string
843
+ "sheets.belongingssheet.equipmenttable.labels.total": string
844
+ "sheets.belongingssheet.purse.title": string
845
+ "sheets.belongingssheet.purse.ducats": string
846
+ "sheets.belongingssheet.purse.silverthalers": string
847
+ "sheets.belongingssheet.purse.halers": string
848
+ "sheets.belongingssheet.purse.kreutzers": string
849
+ "sheets.belongingssheet.purse.gems": string
850
+ "sheets.belongingssheet.purse.jewelry": string
851
+ "sheets.belongingssheet.purse.other": string
852
+ "sheets.belongingssheet.carryingcapacity.title": string
853
+ "sheets.belongingssheet.carryingcapacity.calc": string
854
+ "sheets.belongingssheet.carryingcapacity.label": string
855
+ "sheets.belongingssheet.animal.title": string
856
+ "sheets.belongingssheet.animal.name": string
857
+ "sheets.belongingssheet.animal.sizecategory": string
858
+ "sheets.belongingssheet.animal.type": string
859
+ "sheets.belongingssheet.animal.ap": string
860
+ "sheets.belongingssheet.animal.protection": string
861
+ "sheets.belongingssheet.animal.attackname": string
862
+ "sheets.belongingssheet.animal.attack": string
863
+ "sheets.belongingssheet.animal.parry": string
864
+ "sheets.belongingssheet.animal.damagepoints": string
865
+ "sheets.belongingssheet.animal.reach": string
866
+ "sheets.belongingssheet.animal.actions": string
867
+ "sheets.belongingssheet.animal.skills": string
868
+ "sheets.belongingssheet.animal.specialabilities": string
869
+ "sheets.belongingssheet.animal.notes": string
870
+ "sheets.spellssheet.title": string
871
+ "sheets.spellssheet.header.labels.aemax": string
872
+ "sheets.spellssheet.header.labels.aecurrent": string
873
+ "sheets.spellssheet.spellstable.title": string
874
+ "sheets.spellssheet.spellstable.labels.spellorritual": string
875
+ "sheets.spellssheet.spellstable.labels.check": string
876
+ "sheets.spellssheet.spellstable.labels.skillrating": string
877
+ "sheets.spellssheet.spellstable.labels.cost": string
878
+ "sheets.spellssheet.spellstable.labels.castingtime": string
879
+ "sheets.spellssheet.spellstable.labels.range": string
880
+ "sheets.spellssheet.spellstable.labels.duration": string
881
+ "sheets.spellssheet.spellstable.labels.property": string
882
+ "sheets.spellssheet.spellstable.labels.improvementcost": string
883
+ "sheets.spellssheet.spellstable.labels.effect": string
884
+ "sheets.spellssheet.spellstable.labels.pages": string
885
+ "sheets.spellssheet.spellstable.unfamiliarspell": string
886
+ "sheets.spellssheet.primaryattribute": string
887
+ "sheets.spellssheet.properties": string
888
+ "sheets.spellssheet.tradition": string
889
+ "sheets.spellssheet.magicalspecialabilities": string
890
+ "sheets.spellssheet.cantrips": string
891
+ "sheets.chantssheet.title": string
892
+ "sheets.chantssheet.header.labels.kpmax": string
893
+ "sheets.chantssheet.header.labels.kpcurrent": string
894
+ "sheets.chantssheet.chantstable.title": string
895
+ "sheets.chantssheet.chantstable.labels.chant": string
896
+ "sheets.chantssheet.chantstable.labels.check": string
897
+ "sheets.chantssheet.chantstable.labels.skillrating": string
898
+ "sheets.chantssheet.chantstable.labels.cost": string
899
+ "sheets.chantssheet.chantstable.labels.castingtime": string
900
+ "sheets.chantssheet.chantstable.labels.range": string
901
+ "sheets.chantssheet.chantstable.labels.duration": string
902
+ "sheets.chantssheet.chantstable.labels.aspect": string
903
+ "sheets.chantssheet.chantstable.labels.improvementcost": string
904
+ "sheets.chantssheet.chantstable.labels.effect": string
905
+ "sheets.chantssheet.chantstable.labels.pages": string
906
+ "sheets.chantssheet.primaryattribute": string
907
+ "sheets.chantssheet.aspects": string
908
+ "sheets.chantssheet.tradition": string
909
+ "sheets.chantssheet.blessedspecialabilities": string
910
+ "sheets.chantssheet.blessings": string
911
+ "pacts.pactcategory": string
912
+ "pacts.nopact": string
913
+ "pacts.pactlevel": string
914
+ "pacts.fairytype": string
915
+ "pacts.domain": string
916
+ "pacts.userdefined": string
917
+ "pacts.demontype": string
918
+ "pacts.circleofdamnation": string
919
+ "pacts.minorpact": string
920
+ "pacts.pactisincompletehint": string
921
+ "pacts.name": string
922
+ "Rule Sources": string
923
+ "Use all publications": string
924
+ "Focus Rules": string
925
+ "Optional Rules": string
926
+ "rules.manualherodatarepair": string
927
+ "rules.manualherodatarepairexplanation": string
928
+ "inlinewiki.complementarysources": string
929
+ "race.header.name": string
930
+ "race.header.adventurepoints": string
931
+ "race.header.adventurepoints.tooltip": string
932
+ "inlinewiki.apvalue": string
933
+ "inlinewiki.adventurepoints": string
934
+ "inlinewiki.lifepointbasevalue": string
935
+ "inlinewiki.spiritbasevalue": string
936
+ "inlinewiki.toughnessbasevalue": string
937
+ "inlinewiki.movementbasevalue": string
938
+ "inlinewiki.attributeadjustments": string
939
+ "inlinewiki.automaticadvantages": string
940
+ "inlinewiki.stronglyrecommendedadvantages": string
941
+ "inlinewiki.stronglyrecommendeddisadvantages": string
942
+ "inlinewiki.commoncultures": string
943
+ "inlinewiki.commonadvantages": string
944
+ "inlinewiki.commondisadvantages": string
945
+ "inlinewiki.uncommonadvantages": string
946
+ "inlinewiki.uncommondisadvantages": string
947
+ "culture.filters.common.allcultures": string
948
+ "culture.filters.common.commoncultures": string
949
+ "culture.header.name": string
950
+ "inlinewiki.language": string
951
+ "inlinewiki.script": string
952
+ "inlinewiki.areaknowledge": string
953
+ "inlinewiki.socialstatus": string
954
+ "inlinewiki.commonprofessions": string
955
+ "inlinewiki.commonprofessions.mundane": string
956
+ "inlinewiki.commonprofessions.magic": string
957
+ "inlinewiki.commonprofessions.blessed": string
958
+ "inlinewiki.commonskills": string
959
+ "inlinewiki.uncommonskills": string
960
+ "inlinewiki.commonnames": string
961
+ "inlinewiki.culturalpackage": string
962
+ "profession.ownprofession": string
963
+ "profession.variants.novariant": string
964
+ "profession.filters.common.allprofessions": string
965
+ "profession.filters.common.commonprofessions": string
966
+ "profession.filters.groups.allprofessiongroups": string
967
+ "profession.filters.groups.mundaneprofessions": string
968
+ "profession.filters.groups.magicalprofessions": string
969
+ "profession.filters.groups.blessedprofessions": string
970
+ "profession.header.name": string
971
+ "profession.header.adventurepoints": string
972
+ "profession.header.adventurepoints.tooltip": string
973
+ "inlinewiki.prerequisites": string
974
+ "inlinewiki.race": string
975
+ "inlinewiki.specialabilities": string
976
+ "inlinewiki.languagesandliteracytotalingap": string
977
+ "inlinewiki.skillspecialization": string
978
+ "inlinewiki.skillsselection": string
979
+ "inlinewiki.combattechniques": string
980
+ "inlinewiki.combattechniqueselection": string
981
+ "inlinewiki.combattechnique.one": string
982
+ "inlinewiki.combattechnique.two": string
983
+ "inlinewiki.combattechniquesecondselection": string
984
+ "inlinewiki.skills": string
985
+ "inlinewiki.spells": string
986
+ "inlinewiki.cursestotalingap": string
987
+ "inlinewiki.cantripsfromlist": string
988
+ "inlinewiki.cantrip.one": string
989
+ "inlinewiki.cantrip.two": string
990
+ "inlinewiki.liturgicalchants": string
991
+ "inlinewiki.thetwelveblessings": string
992
+ "inlinewiki.thetwelveblessingsexceptions": string
993
+ "inlinewiki.sixblessings": string
994
+ "inlinewiki.suggestedadvantages": string
995
+ "inlinewiki.suggesteddisadvantages": string
996
+ "inlinewiki.unsuitableadvantages": string
997
+ "inlinewiki.unsuitabledisadvantages": string
998
+ "inlinewiki.variants": string
999
+ "inlinewiki.insteadof": string
1000
+ "rcpselectoptions.race": string
1001
+ "rcpselectoptions.culture": string
1002
+ "rcpselectoptions.profession": string
1003
+ "rcpselectoptions.cantripsfromlist": string
1004
+ "rcpselectoptions.cantrip.one": string
1005
+ "rcpselectoptions.cantrip.two": string
1006
+ "rcpselectoptions.combattechniqueselection": string
1007
+ "rcpselectoptions.combattechnique.one": string
1008
+ "rcpselectoptions.combattechnique.two": string
1009
+ "rcpselectoptions.selectattributeadjustment": string
1010
+ "rcpselectoptions.buyculturalpackage": string
1011
+ "rcpselectoptions.nativetongue.placeholder": string
1012
+ "rcpselectoptions.buyscript": string
1013
+ "rcpselectoptions.script.placeholder": string
1014
+ "rcpselectoptions.combattechniquesecondselection": string
1015
+ "rcpselectoptions.cursestotalingapleft": string
1016
+ "rcpselectoptions.languagesandliteracytotalingapleft": string
1017
+ "rcpselectoptions.applicationforskillspecialization": string
1018
+ "rcpselectoptions.skillselectionap": string
1019
+ "rcpselectoptions.skillspecialization": string
1020
+ "rcpselectoptions.completebtn": string
1021
+ "rcpselectoptions.unfamiliarspells": string
1022
+ "rcpselectoptions.unfamiliarspellselectionfortraditionguildmage": string
1023
+ "rcpselectoptions.unfamiliarspell.placeholder": string
1024
+ "rcpselectoptions.unfamiliarspell": string
1025
+ "Total Points": string
1026
+ "Increment": string
1027
+ "Decrement": string
1028
+ "Activate": string
1029
+ "Attribute Adjustment Selection": string
1030
+ "Modifier": string
1031
+ "Bought": string
1032
+ "Lost Total": string
1033
+ "Bought Back": string
1034
+ "Buy Back Permanently Lost Point": string
1035
+ "Permanently Lost Life Points": string
1036
+ "pLP": string
1037
+ "Permanently Lost Arcane Energy": string
1038
+ "pAE": string
1039
+ "Permanently Lost Karma Points": string
1040
+ "pKP": string
1041
+ "Loose Permanent Points": string
1042
+ "How many points do you want to remove?": string
1043
+ "Remove": string
1044
+ "Permanently Spent": string
1045
+ "Common Advantages": string
1046
+ "Common Disadvantages": string
1047
+ "Custom AP Cost": string
1048
+ "AP Cost for {$category}": string & { __params: { "category": StringableTranslationParameter } }
1049
+ "Custom option": string
1050
+ "specialabilities.nativetonguelevel": string
1051
+ "Advanced Combat Special Abilities": string
1052
+ "Advanced Karma Special Abilities": string
1053
+ "Advanced Magical Special Abilities": string
1054
+ "Advanced Skill Special Abilities": string
1055
+ "Ancestor Glyphs": string
1056
+ "Arcane Orb Enchantments": string
1057
+ "Attire Enchantments": string
1058
+ "Blessed Traditions": string
1059
+ "Bowl Enchantments": string
1060
+ "Brawling Special Abilities": string
1061
+ "Cauldron Enchantments": string
1062
+ "Ceremonial Item Special Abilities": string
1063
+ "Chronicle Enchantments": string
1064
+ "Combat Special Abilities": string
1065
+ "Combat Style Special Abilities": string
1066
+ "Command Special Abilities": string
1067
+ "Dagger Rituals": string
1068
+ "Familiar Special Abilities": string
1069
+ "Fate Point Sex Special Abilities": string
1070
+ "Fate Point Special Abilities": string
1071
+ "Fools Hat Enchantments": string
1072
+ "General Special Abilities": string
1073
+ "Instrument Enchantments": string
1074
+ "Karma Special Abilities": string
1075
+ "Krallenkettenzauber": string
1076
+ "Liturgical Style Special Abilities": string
1077
+ "Lycantropic Gifts": string
1078
+ "Magical Signs": string
1079
+ "Magical Special Abilities": string
1080
+ "Magical Traditions": string
1081
+ "Magic Style Special Abilities": string
1082
+ "Orb Enchantments": string
1083
+ "Pact Gifts": string
1084
+ "Protective/Warding Circle Special Abilities": string
1085
+ "Ring Enchantments": string
1086
+ "Sermons": string
1087
+ "Sex Special Abilities": string
1088
+ "Sickle Rituals": string
1089
+ "Sikaryan Drain Special Abilities": string
1090
+ "Skill Style Special Abilities": string
1091
+ "Spell Sword Enchantments": string
1092
+ "Staff Enchantments": string
1093
+ "Toy Enchantments": string
1094
+ "Trinkhornzauber": string
1095
+ "Vampiric Gifts": string
1096
+ "Visions": string
1097
+ "Wand Enchantments": string
1098
+ "Weapon Enchantments": string
1099
+ "inlinewiki.rule": string
1100
+ "inlinewiki.effect": string
1101
+ "inlinewiki.extendedcombatspecialabilities": string
1102
+ "inlinewiki.extendedmagicalspecialabilities": string
1103
+ "inlinewiki.extendedblessedspecialabilities": string
1104
+ "inlinewiki.extendedskillspecialabilities": string
1105
+ "inlinewiki.penalty": string
1106
+ "inlinewiki.level": string
1107
+ "inlinewiki.perlevel": string
1108
+ "inlinewiki.volume": string
1109
+ "inlinewiki.aspect": string
1110
+ "inlinewiki.bindingcost": string
1111
+ "inlinewiki.protectivecircle": string
1112
+ "inlinewiki.wardingcircle": string
1113
+ "inlinewiki.actions": string
1114
+ "inlinewiki.racecultureorprofessionrequiresautomaticorsuggested": string
1115
+ "inlinewiki.advantage": string
1116
+ "inlinewiki.disadvantage": string
1117
+ "inlinewiki.primaryattributeofthetradition": string
1118
+ "inlinewiki.knowledgeofspell": string
1119
+ "inlinewiki.knowledgeofliturgicalchant": string
1120
+ "inlinewiki.appropriatecombatstylespecialability": string
1121
+ "inlinewiki.appropriatemagicalstylespecialability": string
1122
+ "inlinewiki.appropriateblessedstylespecialability": string
1123
+ "inlinewiki.appropriateskillstylespecialability": string
1124
+ "inlinewiki.sex": string
1125
+ "inlinewiki.sex.male": string
1126
+ "inlinewiki.sex.female": string
1127
+ "inlinewiki.combattechniques.groups.all": string
1128
+ "inlinewiki.combattechniques.groups.allmeleecombattechniques": string
1129
+ "inlinewiki.combattechniques.groups.allrangedcombattechniques": string
1130
+ "inlinewiki.combattechniques.groups.allmeleecombattechniqueswithparry": string
1131
+ "inlinewiki.combattechniques.groups.allmeleecombattechniquesforonehandedweapons": string
1132
+ "inlinewiki.socialstatusxorhigher": string
1133
+ "Common Skills": string
1134
+ "SR": string
1135
+ "Skill Rating": string
1136
+ "IC": string
1137
+ "New Applications": string
1138
+ "Uses": string
1139
+ "Strongly Recommended": string
1140
+ "Common": string
1141
+ "Uncommon": string
1142
+ "Unfamiliar Spells": string
1143
+ "CTR": string
1144
+ "Combat Technique Rating": string
1145
+ "P": string
1146
+ "Primary Attribute(s)": string
1147
+ "AT": string
1148
+ "Attack": string
1149
+ "PA": string
1150
+ "Parry": string
1151
+ "Close Combat": string
1152
+ "Ranged Combat": string
1153
+ "Special": string
1154
+ "Primary Attribute": string
1155
+ "Cantrips": string
1156
+ "Rituals": string
1157
+ "Curses": string
1158
+ "Elven Magical Songs": string
1159
+ "Domination Rituals": string
1160
+ "Magical Dances": string
1161
+ "Magical Melodies": string
1162
+ "Jester Tricks": string
1163
+ "Animist Powers": string
1164
+ "Geode Rituals": string
1165
+ "Zibilja Rituals": string
1166
+ "Mod": string
1167
+ "Check Modifier": string
1168
+ "spells.traditions.general": string
1169
+ "magicalactions.animistforces.tribes.general": string
1170
+ " (modified by {$modifier})": string & { __params: { "modifier": StringableTranslationParameter } }
1171
+ " (−{$modifier})": string & { __params: { "modifier": StringableTranslationParameter } }
1172
+ "{$first} or {$second}, depending on which value is higher": string & { __params: { "first": StringableTranslationParameter; "second": StringableTranslationParameter } }
1173
+ "Invocation Difficulty": string
1174
+ "ID": string
1175
+ "Creation Difficulty": string
1176
+ "CD": string
1177
+ "Effect": string
1178
+ "Casting Time": string
1179
+ "Ritual Time": string
1180
+ "Liturgical Time": string
1181
+ "Ceremonial Time": string
1182
+ "AE Cost": string
1183
+ "KP Cost": string
1184
+ "Range": string
1185
+ "Duration": string
1186
+ "Target Category": string
1187
+ "Traditions": string
1188
+ " (you cannot use a modification on this spell’s casting time)": string
1189
+ " (you cannot use a modification on this spell’s cost)": string
1190
+ " (you cannot use a modification on this spell’s range)": string
1191
+ " (you cannot use a modification on this ritual’s ritual time)": string
1192
+ " (you cannot use a modification on this ritual’s cost)": string
1193
+ " (you cannot use a modification on this ritual’s range)": string
1194
+ " (you cannot use a modification on this chant’s liturgical time)": string
1195
+ " (you cannot use a modification on this chant’s cost)": string
1196
+ " (you cannot use a modification on this chant’s range)": string
1197
+ " (you cannot use a modification on this ceremony’s ceremonial time)": string
1198
+ " (you cannot use a modification on this ceremony’s cost)": string
1199
+ " (you cannot use a modification on this ceremony’s range)": string
1200
+ " (cannot modify)": string
1201
+ "{$value} act": string & { __params: { "value": StringableTranslationParameter } }
1202
+ "act": string
1203
+ ".input {$value :number} {{{$value} actions}}": string & { __params: { "value": number } }
1204
+ "actions": string
1205
+ "{$value} s": string & { __params: { "value": StringableTranslationParameter } }
1206
+ "s": string
1207
+ ".input {$value :number} {{{$value} seconds}}": string & { __params: { "value": number } }
1208
+ "seconds": string
1209
+ "{$value} min": string & { __params: { "value": StringableTranslationParameter } }
1210
+ "min": string
1211
+ ".input {$value :number} {{{$value} minutes}}": string & { __params: { "value": number } }
1212
+ "minutes": string
1213
+ "{$value} h": string & { __params: { "value": StringableTranslationParameter } }
1214
+ "h": string
1215
+ ".input {$value :number} {{{$value} hours}}": string & { __params: { "value": number } }
1216
+ "hours": string
1217
+ "{$value} d": string & { __params: { "value": StringableTranslationParameter } }
1218
+ "d": string
1219
+ ".input {$value :number} {{{$value} days}}": string & { __params: { "value": number } }
1220
+ "days": string
1221
+ ".input {$value :number} {{{$value} wks.}}": string & { __params: { "value": number } }
1222
+ "wks.": string
1223
+ ".input {$value :number} {{{$value} weeks}}": string & { __params: { "value": number } }
1224
+ "weeks": string
1225
+ ".input {$value :number} {{{$value} mos.}}": string & { __params: { "value": number } }
1226
+ "mos.": string
1227
+ ".input {$value :number} {{{$value} months}}": string & { __params: { "value": number } }
1228
+ "months": string
1229
+ ".input {$value :number} {{{$value} yrs.}}": string & { __params: { "value": number } }
1230
+ "yrs.": string
1231
+ ".input {$value :number} {{{$value} years}}": string & { __params: { "value": number } }
1232
+ "years": string
1233
+ "{$value} cent.": string & { __params: { "value": StringableTranslationParameter } }
1234
+ "cent.": string
1235
+ ".input {$value :number} {{{$value} centuries}}": string & { __params: { "value": number } }
1236
+ "centuries": string
1237
+ "{$value} SA": string & { __params: { "value": StringableTranslationParameter } }
1238
+ ".input {$value :number} {{{$value} seduction actions}}": string & { __params: { "value": number } }
1239
+ "{$value} rnds": string & { __params: { "value": StringableTranslationParameter } }
1240
+ ".input {$value :number} {{{$value} rounds}}": string & { __params: { "value": number } }
1241
+ "{$value} CR": string & { __params: { "value": StringableTranslationParameter } }
1242
+ "CR": string
1243
+ ".input {$value :number} {{{$value} combat rounds}}": string & { __params: { "value": number } }
1244
+ "combat rounds": string
1245
+ "{$value} AE": string & { __params: { "value": StringableTranslationParameter } }
1246
+ "{$value} KP": string & { __params: { "value": StringableTranslationParameter } }
1247
+ "min. ": string
1248
+ "at least ": string
1249
+ "min. {$value}": string & { __params: { "value": StringableTranslationParameter } }
1250
+ "at least {$value}": string & { __params: { "value": StringableTranslationParameter } }
1251
+ "/{$value}": string & { __params: { "value": StringableTranslationParameter } }
1252
+ " per {$value}": string & { __params: { "value": StringableTranslationParameter } }
1253
+ ", minimum of {$value}": string & { __params: { "value": StringableTranslationParameter } }
1254
+ " ({$value} perm.)": string & { __params: { "value": StringableTranslationParameter } }
1255
+ ".input {$value :number} {{, {$value} of which are permanent}}": string & { __params: { "value": number } }
1256
+ "half of the activation cost": string
1257
+ " and ": string
1258
+ " + ": string
1259
+ " or ": string
1260
+ " / ": string
1261
+ " for ": string
1262
+ " (no more than {$value})": string & { __params: { "value": StringableTranslationParameter } }
1263
+ " (max. {$value})": string & { __params: { "value": StringableTranslationParameter } }
1264
+ "no more than {$value}": string & { __params: { "value": StringableTranslationParameter } }
1265
+ "max. {$value}": string & { __params: { "value": StringableTranslationParameter } }
1266
+ "Immediate": string
1267
+ "Permanent": string
1268
+ "no more than ": string
1269
+ "max. ": string
1270
+ "Quality Levels": string
1271
+ "QL": string
1272
+ "QL {$value}": string & { __params: { "value": StringableTranslationParameter } }
1273
+ "Skill Points": string
1274
+ "SP": string
1275
+ "Sustained": string
1276
+ "(S)": string
1277
+ ".input {$value :number} {{{$value} yards}}": string & { __params: { "value": number } }
1278
+ "{$value} yd": string & { __params: { "value": StringableTranslationParameter } }
1279
+ ".input {$value :number} {{{$value} miles}}": string & { __params: { "value": number } }
1280
+ "{$value} mi.": string & { __params: { "value": StringableTranslationParameter } }
1281
+ "Sight": string
1282
+ "Self": string
1283
+ "Global": string
1284
+ "Touch": string
1285
+ "Radius": string
1286
+ " (casting)": string
1287
+ "Zone": string
1288
+ "Liturgical Chants and Ceremonies": string
1289
+ "General": string
1290
+ "Note": string
1291
+ "all": string
1292
+ "none": string
1293
+ "State": string
1294
+ "Social Status {$minStatus} or higher": string & { __params: { "minStatus": StringableTranslationParameter } }
1295
+ "Person with {$sexualCharacteristic}": string & { __params: { "sexualCharacteristic": StringableTranslationParameter } }
1296
+ "Penis": string
1297
+ "Vagina": string
1298
+ "the SR for {$skill} combined must add up to at least {$minRating}": string & { __params: { "skill": StringableTranslationParameter; "minRating": StringableTranslationParameter } }
1299
+ ".input {$count :number} .input {$minRating :number} {{{$count} on at least SR {$minRating}: {$list}}}": string & { __params: { "count": number; "minRating": number; "list": StringableTranslationParameter } }
1300
+ ".input {$count :number} .input {$minRating :number} {{{$count} arcane works with the property {$property} at SR {$minRating} or higher}}": string & { __params: { "count": number; "minRating": number; "property": StringableTranslationParameter } }
1301
+ ".input {$count :number} .input {$minRating :number} {{{$count} liturgical chants and ceremonies with the aspect {$aspect} at SR {$minRating} or higher}}": string & { __params: { "count": number; "minRating": number; "aspect": StringableTranslationParameter } }
1302
+ ".input {$count :number} {{{$count} of the following skills}}": string & { __params: { "count": number } }
1303
+ ".input {$count :number} {{{$count} combat techniques}}": string & { __params: { "count": number } }
1304
+ ".input {$count :number} {{{$count} close combat techniques}}": string & { __params: { "count": number } }
1305
+ ".input {$count :number} {{{$count} ranged combat techniques}}": string & { __params: { "count": number } }
1306
+ "special ability": string
1307
+ "no special ability": string
1308
+ "Tradition": string
1309
+ "Tradition ({$tradition})": string & { __params: { "tradition": StringableTranslationParameter } }
1310
+ "Church": string
1311
+ "Shaman": string
1312
+ "Tradition must be able to use rituals": string
1313
+ "Tradition must be able to bind familiars": string
1314
+ "spell enhancement": string
1315
+ "liturgical enhancement": string
1316
+ "for": string
1317
+ "no other ancestor blood advantage": string
1318
+ "Race, culture, or profession must have {$entry} as an automatic or suggested {$itemOfCategory}": string & { __params: { "entry": StringableTranslationParameter; "itemOfCategory": StringableTranslationParameter } }
1319
+ "advantage": string
1320
+ "disadvantage": string
1321
+ "domain {$domain}": string & { __params: { "domain": StringableTranslationParameter } }
1322
+ "{$pact} level {$pactLevel}": string & { __params: { "pact": StringableTranslationParameter; "pactLevel": StringableTranslationParameter } }
1323
+ "Level {$level}:": string & { __params: { "level": StringableTranslationParameter } }
1324
+ "inlinewiki.castingtime": string
1325
+ "inlinewiki.ritualtime": string
1326
+ "inlinewiki.aecost": string
1327
+ "inlinewiki.range": string
1328
+ "inlinewiki.duration": string
1329
+ "inlinewiki.targetcategory": string
1330
+ "inlinewiki.property": string
1331
+ "inlinewiki.traditions": string
1332
+ "inlinewiki.skill": string
1333
+ "inlinewiki.lengthoftime": string
1334
+ "inlinewiki.musictradition": string
1335
+ "inlinewiki.youcannotuseamodificationonthisspellscastingtime": string
1336
+ "inlinewiki.youcannotuseamodificationonthisspellsritualtime": string
1337
+ "inlinewiki.youcannotuseamodificationonthisspellscost": string
1338
+ "inlinewiki.youcannotuseamodificationonthisspellsrange": string
1339
+ "inlinewiki.youcannotuseamodificationonthisspellsduration": string
1340
+ "inlinewiki.spellenhancements": string
1341
+ "inlinewiki.spellenhancements.title": string
1342
+ "inlinewiki.tribaltraditions": string
1343
+ "inlinewiki.brew": string
1344
+ "inlinewiki.spirithalf": string
1345
+ "inlinewiki.spirithalf.short": string
1346
+ "inlinewiki.spiritortoughness": string
1347
+ "inlinewiki.spiritortoughness.short": string
1348
+ "inlinewiki.note": string
1349
+ "Blessings": string
1350
+ "Ceremonies": string
1351
+ "liturgicalchants.addbtn": string
1352
+ "liturgicalchants.header.name": string
1353
+ "liturgicalchants.header.traditions": string
1354
+ "liturgicalchants.header.group": string
1355
+ "liturgicalchants.header.skillrating": string
1356
+ "liturgicalchants.header.skillrating.tooltip": string
1357
+ "liturgicalchants.header.check": string
1358
+ "liturgicalchants.header.checkmodifier": string
1359
+ "liturgicalchants.header.checkmodifier.tooltip": string
1360
+ "liturgicalchants.header.improvementcost": string
1361
+ "liturgicalchants.header.improvementcost.tooltip": string
1362
+ "liturgicalchants.groups.blessing": string
1363
+ "liturgicalchants.aspects.general": string
1364
+ "inlinewiki.liturgicaltime": string
1365
+ "inlinewiki.ceremonialtime": string
1366
+ "inlinewiki.kpcost": string
1367
+ "inlinewiki.youcannotuseamodificationonthischantsliturgicaltime": string
1368
+ "inlinewiki.youcannotuseamodificationonthischantsceremonialtime": string
1369
+ "inlinewiki.youcannotuseamodificationonthischantscost": string
1370
+ "inlinewiki.youcannotuseamodificationonthischantsrange": string
1371
+ "inlinewiki.youcannotuseamodificationonthischantsduration": string
1372
+ "inlinewiki.liturgicalchantenhancements": string
1373
+ "inlinewiki.liturgicalchantenhancements.title": string
1374
+ "equipment.header.name": string
1375
+ "equipment.header.group": string
1376
+ "equipment.addbtn": string
1377
+ "equipment.createbtn": string
1378
+ "equipment.filters.allcombattechniques": string
1379
+ "equipment.purse.title": string
1380
+ "equipment.purse.ducats": string
1381
+ "equipment.purse.silverthalers": string
1382
+ "equipment.purse.halers": string
1383
+ "equipment.purse.kreutzers": string
1384
+ "equipment.purse.carryingcapacity": string
1385
+ "equipment.purse.initialstartingwealthandcarryingcapacity": string
1386
+ "equipment.purse.earnpay": string
1387
+ "equipment.purse.earn": string
1388
+ "equipment.purse.pay": string
1389
+ "equipment.purse.notefirst": string
1390
+ "equipment.purse.notesecond": string
1391
+ "equipment.purse.currentcredit": string
1392
+ "equipment.purse.amount": string
1393
+ "equipment.dialogs.addedit.damage": string
1394
+ "equipment.dialogs.addedit.length": string
1395
+ "equipment.dialogs.addedit.range": string
1396
+ "equipment.dialogs.addedit.edititem": string
1397
+ "equipment.dialogs.addedit.createitem": string
1398
+ "equipment.dialogs.addedit.number": string
1399
+ "equipment.dialogs.addedit.name": string
1400
+ "equipment.dialogs.addedit.price": string
1401
+ "equipment.dialogs.addedit.weight": string
1402
+ "equipment.dialogs.addedit.carriedwhere": string
1403
+ "equipment.dialogs.addedit.itemgroup": string
1404
+ "equipment.dialogs.addedit.itemgrouphint": string
1405
+ "equipment.dialogs.addedit.improvisedweapon": string
1406
+ "equipment.dialogs.addedit.improvisedweapongroup": string
1407
+ "equipment.dialogs.addedit.template": string
1408
+ "equipment.dialogs.addedit.combattechnique": string
1409
+ "equipment.dialogs.addedit.primaryattributeanddamagethreshold": string
1410
+ "equipment.dialogs.addedit.primaryattribute": string
1411
+ "equipment.dialogs.addedit.primaryattribute.short": string
1412
+ "equipment.dialogs.addedit.damagethreshold": string
1413
+ "equipment.dialogs.addedit.separatedamagethresholds": string
1414
+ "equipment.dialogs.addedit.breakingpointratingmodifier": string
1415
+ "equipment.dialogs.addedit.damaged": string
1416
+ "equipment.dialogs.addedit.reach": string
1417
+ "equipment.dialogs.addedit.attackparrymodifier": string
1418
+ "equipment.dialogs.addedit.structurepoints": string
1419
+ "equipment.dialogs.addedit.lengthwithunit": string
1420
+ "equipment.dialogs.addedit.parryingweapon": string
1421
+ "equipment.dialogs.addedit.twohandedweapon": string
1422
+ "equipment.dialogs.addedit.reloadtime": string
1423
+ "equipment.dialogs.addedit.rangeclose": string
1424
+ "equipment.dialogs.addedit.rangemedium": string
1425
+ "equipment.dialogs.addedit.rangefar": string
1426
+ "equipment.dialogs.addedit.ammunition": string
1427
+ "equipment.dialogs.addedit.protection": string
1428
+ "equipment.dialogs.addedit.encumbrance": string
1429
+ "equipment.dialogs.addedit.armortype": string
1430
+ "equipment.dialogs.addedit.sturdinessmodifier": string
1431
+ "equipment.dialogs.addedit.wear": string
1432
+ "equipment.dialogs.addedit.hitzonearmoronly": string
1433
+ "equipment.dialogs.addedit.movementmodifier": string
1434
+ "equipment.dialogs.addedit.initiativemodifier": string
1435
+ "equipment.dialogs.addedit.additionalpenalties": string
1436
+ "hitzonearmors.header.name": string
1437
+ "hitzonearmors.createbtn": string
1438
+ "hitzonearmors.dialogs.addedit.name": string
1439
+ "hitzonearmors.dialogs.addedit.edithitzonearmor": string
1440
+ "hitzonearmors.dialogs.addedit.createhitzonearmor": string
1441
+ "hitzonearmors.dialogs.addedit.head": string
1442
+ "hitzonearmors.dialogs.addedit.torso": string
1443
+ "hitzonearmors.dialogs.addedit.leftarm": string
1444
+ "hitzonearmors.dialogs.addedit.rightarm": string
1445
+ "hitzonearmors.dialogs.addedit.leftleg": string
1446
+ "hitzonearmors.dialogs.addedit.rightleg": string
1447
+ "hitzonearmors.dialogs.addedit.wear": string
1448
+ "inlinewiki.equipment.weight": string
1449
+ "inlinewiki.equipment.price": string
1450
+ "inlinewiki.equipment.ammunition": string
1451
+ "inlinewiki.equipment.combattechnique": string
1452
+ "inlinewiki.equipment.damage": string
1453
+ "inlinewiki.equipment.primaryattributeanddamagethreshold": string
1454
+ "inlinewiki.equipment.attackparrymodifier": string
1455
+ "inlinewiki.equipment.reach": string
1456
+ "inlinewiki.equipment.length": string
1457
+ "inlinewiki.equipment.reloadtime": string
1458
+ "inlinewiki.equipment.range": string
1459
+ "inlinewiki.equipment.actionsvalue": string
1460
+ "inlinewiki.equipment.protection": string
1461
+ "inlinewiki.equipment.encumbrance": string
1462
+ "inlinewiki.equipment.additionalpenalties": string
1463
+ "inlinewiki.equipment.note": string
1464
+ "inlinewiki.equipment.rules": string
1465
+ "inlinewiki.equipment.weaponadvantage": string
1466
+ "inlinewiki.equipment.weapondisadvantage": string
1467
+ "inlinewiki.equipment.armoradvantage": string
1468
+ "inlinewiki.equipment.armordisadvantage": string
1469
+ "pets.dialogs.addedit.deleteavatarbtn": string
1470
+ "pets.dialogs.addedit.name": string
1471
+ "pets.dialogs.addedit.sizecategory": string
1472
+ "pets.dialogs.addedit.type": string
1473
+ "pets.dialogs.addedit.apspent": string
1474
+ "pets.dialogs.addedit.totalap": string
1475
+ "pets.dialogs.addedit.protection": string
1476
+ "pets.dialogs.addedit.attackname": string
1477
+ "pets.dialogs.addedit.attack": string
1478
+ "pets.dialogs.addedit.parry": string
1479
+ "pets.dialogs.addedit.damagepoints": string
1480
+ "pets.dialogs.addedit.reach": string
1481
+ "pets.dialogs.addedit.actions": string
1482
+ "pets.dialogs.addedit.skills": string
1483
+ "pets.dialogs.addedit.specialabilities": string
1484
+ "pets.dialogs.addedit.notes": string
1485
+ "pets.dialogs.addedit.addbtn": string
1486
+ "pets.dialogs.addedit.savebtn": string
1487
+ "Show details": string
1488
+ "Maximum Attribute Value": string
1489
+ "Maximum Skill Value": string
1490
+ "Maximum Combat Technique": string
1491
+ "Maximum Attribute Total": string
1492
+ "Number of Spells/Liturgical Chants": string
1493
+ "Number from other Traditions": string
1494
+ "Check": string
1495
+ "Applications": string
1496
+ "Encumbrance": string
1497
+ "Yes": string
1498
+ "No": string
1499
+ "Maybe": string
1500
+ "Tools": string
1501
+ "Quality": string
1502
+ "Failed Check": string
1503
+ "Critical Success": string
1504
+ "Botch": string
1505
+ "Improvement Cost": string
1506
+ "Front Cover Inside": string
1507
+ "Back Cover Inside": string
1508
+ ".input {$printing :number} {{since the {$printing}. printing}}": string & { __params: { "printing": number } }
1509
+ ".input {$printing :number} {{removed in {$printing}. printing}}": string & { __params: { "printing": number } }
1542
1510
  }
1543
1511
  }
1544
1512
 
@@ -9656,19 +9624,9 @@ export interface Weapon {
9656
9624
  }
9657
9625
 
9658
9626
  /**
9659
- * If the weapon is sanctified by a god and thus restricted to it's Blessed Ones.
9660
- */
9661
- sanctified_by?: SanctifiedBy
9662
-
9663
- /**
9664
- * Define if during character creation this weapon can only be bought by characters of a specific race or culture.
9627
+ * Define if during character creation this weapon can only be bought by a specific subset of characters.
9665
9628
  */
9666
- restricted_to_cultures?: RestrictedToCultures
9667
-
9668
- /**
9669
- * Define if during character creation this weapon can only be bought by characters of specific magical or blessed traditions.
9670
- */
9671
- restricted_to_traditions?: MagicalTradition_ID[]
9629
+ restrictedTo?: RestrictedTo
9672
9630
 
9673
9631
  /**
9674
9632
  * All translations for the entry, identified by IETF language tag (BCP47).
@@ -10136,26 +10094,104 @@ export interface AmmunitionTranslation {
10136
10094
  }
10137
10095
 
10138
10096
  /**
10139
- * If the weapon is sanctified by a god and thus restricted to it's Blessed Ones.
10097
+ * If the item is in any case restricted to a subset of characters. The differenciating aspect may be tradition, race, culture, or a profession. Each element must be applicable to a character.
10098
+ */
10099
+ export interface RestrictedTo {
10100
+ /**
10101
+ * The item is restricted to one of a list of races. If only one race is allowed, the list may only have a single element.
10102
+ */
10103
+ races?: RestrictedToRaces
10104
+
10105
+ /**
10106
+ * The item is restricted to one of a list of cultures. If only one culture is allowed, the list may only have a single element.
10107
+ */
10108
+ cultures?: RestrictedToCultures
10109
+
10110
+ /**
10111
+ * The item is restricted to one of a list of professions. If only one profession is allowed, the list may only have a single element.
10112
+ */
10113
+ professions?: RestrictedToProfessions
10114
+
10115
+ /**
10116
+ * The item is restricted to one of a list of magical traditions. If only one magical tradition is allowed, the list may only have a single element.
10117
+ */
10118
+ magicalTraditions?: RestrictedToMagicalTraditions
10119
+
10120
+ /**
10121
+ * The item is restricted to one of a list of blessed traditions. If only one blessed tradition is allowed, the list may only have a single element.
10122
+ */
10123
+ blessedTraditions?: RestrictedToBlessedTraditions
10124
+ }
10125
+
10126
+ /**
10127
+ * The item is restricted to one of a list of races. If only one race is allowed, the list may only have a single element.
10128
+ */
10129
+ export interface RestrictedToRaces {
10130
+ /**
10131
+ * The item is restricted to one of a list of races. If only one race is allowed, the list may only have a single element.
10132
+ */
10133
+ scope: MagicalTradition_ID[]
10134
+ }
10135
+
10136
+ /**
10137
+ * The item is restricted to one of a list of cultures. If only one culture is allowed, the list may only have a single element.
10140
10138
  */
10141
- export type SanctifiedBy = BlessedTradition_ID[]
10139
+ export interface RestrictedToCultures {
10140
+ /**
10141
+ * The item is restricted to one of a list of cultures. If only one culture is allowed, the list may only have a single element.
10142
+ */
10143
+ scope: MagicalTradition_ID[]
10144
+ }
10142
10145
 
10143
10146
  /**
10144
- * Define if during character creation this weapon can only be bought by characters of a specific race or culture.
10147
+ * The item is restricted to one of a list of professions. If only one profession is allowed, the list may only have a single element.
10145
10148
  */
10146
- export type RestrictedToCultures =
10149
+ export interface RestrictedToProfessions {
10150
+ /**
10151
+ * The item is restricted to one of a list of professions. If only one profession is allowed, the list may only have a single element.
10152
+ */
10153
+ scope: MagicalTradition_ID[]
10154
+ }
10155
+
10156
+ /**
10157
+ * The item is restricted to one of a list of magical traditions. If only one magical tradition is allowed, the list may only have a single element.
10158
+ */
10159
+ export interface RestrictedToMagicalTraditions {
10160
+ /**
10161
+ * The item is restricted to one of a list of magical traditions. If only one magical tradition is allowed, the list may only have a single element.
10162
+ */
10163
+ scope: MagicalTradition_ID[]
10164
+ }
10165
+
10166
+ /**
10167
+ * The item is restricted to one of a list of blessed traditions. If only one blessed tradition is allowed, the list may only have a single element. The item may also be declared as sanctified.
10168
+ */
10169
+ export interface RestrictedToBlessedTraditions {
10170
+ /**
10171
+ * The item is restricted to one of a list of blessed traditions. If only one blessed tradition is allowed, the list may only have a single element.
10172
+ */
10173
+ scope: RestrictedToBlessedTraditionsScope
10174
+
10175
+ /**
10176
+ * The item is sanctified by the applicable listed tradition.
10177
+ */
10178
+ isSanctifiedBy: boolean
10179
+ }
10180
+
10181
+ /**
10182
+ * The item is restricted to one of a list of blessed traditions. If only one blessed tradition is allowed, the list may only have a single element. Instead of providing an specific set of traditions, the restriction may also cover a category of blessed traditions.
10183
+ */
10184
+ export type RestrictedToBlessedTraditionsScope =
10147
10185
  | {
10148
- kind: "CulturesOfRace"
10149
- CulturesOfRace: Race_ID
10186
+ kind: "Specific"
10187
+ Specific: BlessedTradition_ID[]
10150
10188
  }
10151
10189
  | {
10152
- kind: "Cultures"
10153
- Cultures: RestrictedToSpecificCultures
10190
+ kind: "Church"
10191
+ }
10192
+ | {
10193
+ kind: "Shamanistic"
10154
10194
  }
10155
-
10156
- export interface RestrictedToSpecificCultures {
10157
- list: Culture_ID[]
10158
- }
10159
10195
 
10160
10196
  export interface CauldronEnchantment {
10161
10197
  /**
@@ -10864,6 +10900,11 @@ export interface CombatStyleSpecialAbility {
10864
10900
  */
10865
10901
  maximum?: number
10866
10902
 
10903
+ /**
10904
+ * The penalty the special ability gives when used.
10905
+ */
10906
+ penalty?: Penalty
10907
+
10867
10908
  /**
10868
10909
  * The Advanced Special Abilities for the respective Style Special Ability. Sometimes, only a specific select option or a set of select options of an entry is allowed, which can be modelled by the option property. It can also be that you can choose from a set of special abilities, but then you can’t specify an option.
10869
10910
  */
@@ -12599,7 +12640,7 @@ export interface MagicalSign {
12599
12640
  /**
12600
12641
  * The cost in AE.
12601
12642
  */
12602
- cost?: number
12643
+ cost?: MagicalSignCost
12603
12644
 
12604
12645
  /**
12605
12646
  * The magic property’s identifier. `DependingOnProperty` can only be used if the special ability has an option to select a property.
@@ -12660,6 +12701,28 @@ export interface MagicalSignTranslation {
12660
12701
  errata?: Errata
12661
12702
  }
12662
12703
 
12704
+ export type MagicalSignCost =
12705
+ | {
12706
+ kind: "Constant"
12707
+ Constant: ConstantMagicalSignCost
12708
+ }
12709
+ | {
12710
+ kind: "Map"
12711
+ Map: CostMap
12712
+ }
12713
+
12714
+ export interface ConstantMagicalSignCost {
12715
+ /**
12716
+ * The AE cost value.
12717
+ */
12718
+ value: number
12719
+
12720
+ /**
12721
+ * The part of the cost value that has to be spent permanently.
12722
+ */
12723
+ permanent_value?: number
12724
+ }
12725
+
12663
12726
  export interface MagicalSpecialAbility {
12664
12727
  /**
12665
12728
  * Number of available levels.
@@ -17754,7 +17817,7 @@ export interface AnimalCare {
17754
17817
  * All translations for the entry, identified by IETF language tag (BCP47).
17755
17818
  */
17756
17819
  translations: {
17757
- [localeId: string]: AnimalCareTranslationTranslation
17820
+ [localeId: string]: AnimalCareTranslation
17758
17821
  }
17759
17822
  }
17760
17823
 
@@ -17763,7 +17826,7 @@ export interface AnimalCare {
17763
17826
  */
17764
17827
  export type AnimalCare_ID = string
17765
17828
 
17766
- export interface AnimalCareTranslationTranslation {
17829
+ export interface AnimalCareTranslation {
17767
17830
  /**
17768
17831
  * The item’s name.
17769
17832
  */
@@ -18023,7 +18086,7 @@ export interface Animal {
18023
18086
  * All translations for the entry, identified by IETF language tag (BCP47).
18024
18087
  */
18025
18088
  translations: {
18026
- [localeId: string]: AnimalTranslationTranslation
18089
+ [localeId: string]: AnimalTranslation
18027
18090
  }
18028
18091
  }
18029
18092
 
@@ -18032,7 +18095,7 @@ export interface Animal {
18032
18095
  */
18033
18096
  export type Animal_ID = string
18034
18097
 
18035
- export interface AnimalTranslationTranslation {
18098
+ export interface AnimalTranslation {
18036
18099
  /**
18037
18100
  * The item’s name.
18038
18101
  */
@@ -18097,6 +18160,11 @@ export interface Armor {
18097
18160
  */
18098
18161
  hit_zone?: HitZone
18099
18162
 
18163
+ /**
18164
+ * Define if during character creation this weapon can only be bought by a specific subset of characters.
18165
+ */
18166
+ restrictedTo?: RestrictedTo
18167
+
18100
18168
  /**
18101
18169
  * All translations for the entry, identified by IETF language tag (BCP47).
18102
18170
  */
@@ -18280,7 +18348,7 @@ export interface BandageOrRemedy {
18280
18348
  * All translations for the entry, identified by IETF language tag (BCP47).
18281
18349
  */
18282
18350
  translations: {
18283
- [localeId: string]: BandageOrRemedyTranslationTranslation
18351
+ [localeId: string]: BandageOrRemedyTranslation
18284
18352
  }
18285
18353
  }
18286
18354
 
@@ -18289,7 +18357,7 @@ export interface BandageOrRemedy {
18289
18357
  */
18290
18358
  export type BandageOrRemedy_ID = string
18291
18359
 
18292
- export interface BandageOrRemedyTranslationTranslation {
18360
+ export interface BandageOrRemedyTranslation {
18293
18361
  /**
18294
18362
  * The item’s name.
18295
18363
  */
@@ -18342,19 +18410,9 @@ export interface ImprovisedWeapon {
18342
18410
  }
18343
18411
 
18344
18412
  /**
18345
- * If the weapon is sanctified by a god and thus restricted to it's Blessed Ones.
18346
- */
18347
- sanctified_by?: SanctifiedBy
18348
-
18349
- /**
18350
- * Define if during character creation this weapon can only be bought by characters of a specific race or culture.
18413
+ * Define if during character creation this weapon can only be bought by a specific subset of characters.
18351
18414
  */
18352
- restricted_to_cultures?: RestrictedToCultures
18353
-
18354
- /**
18355
- * Define if during character creation this weapon can only be bought by characters of specific magical or blessed traditions.
18356
- */
18357
- restricted_to_traditions?: MagicalTradition_ID[]
18415
+ restrictedTo?: RestrictedTo
18358
18416
 
18359
18417
  /**
18360
18418
  * All translations for the entry, identified by IETF language tag (BCP47).
@@ -18406,6 +18464,11 @@ export interface SecondaryArmor {
18406
18464
  */
18407
18465
  hit_zone?: HitZone
18408
18466
 
18467
+ /**
18468
+ * Define if during character creation this armor can only be bought by a specific subset of characters.
18469
+ */
18470
+ restrictedTo?: RestrictedTo
18471
+
18409
18472
  /**
18410
18473
  * All translations for the entry, identified by IETF language tag (BCP47).
18411
18474
  */
@@ -18660,7 +18723,7 @@ export interface CeremonialItem {
18660
18723
  * All translations for the entry, identified by IETF language tag (BCP47).
18661
18724
  */
18662
18725
  translations: {
18663
- [localeId: string]: CeremonialItemTranslationTranslation
18726
+ [localeId: string]: CeremonialItemTranslation
18664
18727
  }
18665
18728
  }
18666
18729
 
@@ -18669,7 +18732,7 @@ export interface CeremonialItem {
18669
18732
  */
18670
18733
  export type CeremonialItem_ID = string
18671
18734
 
18672
- export interface CeremonialItemTranslationTranslation {
18735
+ export interface CeremonialItemTranslation {
18673
18736
  /**
18674
18737
  * The item’s name.
18675
18738
  */
@@ -18728,7 +18791,7 @@ export interface Clothes {
18728
18791
  * All translations for the entry, identified by IETF language tag (BCP47).
18729
18792
  */
18730
18793
  translations: {
18731
- [localeId: string]: ClothesTranslationTranslation
18794
+ [localeId: string]: ClothesTranslation
18732
18795
  }
18733
18796
  }
18734
18797
 
@@ -18737,7 +18800,7 @@ export interface Clothes {
18737
18800
  */
18738
18801
  export type Clothes_ID = string
18739
18802
 
18740
- export interface ClothesTranslationTranslation {
18803
+ export interface ClothesTranslation {
18741
18804
  /**
18742
18805
  * The item’s name.
18743
18806
  */
@@ -18856,7 +18919,7 @@ export interface Container {
18856
18919
  * All translations for the entry, identified by IETF language tag (BCP47).
18857
18920
  */
18858
18921
  translations: {
18859
- [localeId: string]: ContainerTranslationTranslation
18922
+ [localeId: string]: ContainerTranslation
18860
18923
  }
18861
18924
  }
18862
18925
 
@@ -18865,7 +18928,7 @@ export interface Container {
18865
18928
  */
18866
18929
  export type Container_ID = string
18867
18930
 
18868
- export interface ContainerTranslationTranslation {
18931
+ export interface ContainerTranslation {
18869
18932
  /**
18870
18933
  * The item’s name.
18871
18934
  */
@@ -19520,9 +19583,9 @@ export interface EquipmentOfBlessedOnes {
19520
19583
  structure_points: StructurePoints
19521
19584
 
19522
19585
  /**
19523
- * The deity/deities associated with the equipment item.
19586
+ * Define if during character creation this item can only be bought by a specific subset of characters.
19524
19587
  */
19525
- associated_tradition: BlessedTradition_ID[]
19588
+ restrictedTo?: RestrictedTo
19526
19589
 
19527
19590
  /**
19528
19591
  * The item can also be used either as an improvised weapon or as an armor, although this is not the primary use case of the item.
@@ -19538,7 +19601,7 @@ export interface EquipmentOfBlessedOnes {
19538
19601
  * All translations for the entry, identified by IETF language tag (BCP47).
19539
19602
  */
19540
19603
  translations: {
19541
- [localeId: string]: EquipmentOfBlessedOnesTranslationTranslation
19604
+ [localeId: string]: EquipmentOfBlessedOnesTranslation
19542
19605
  }
19543
19606
  }
19544
19607
 
@@ -19547,7 +19610,7 @@ export interface EquipmentOfBlessedOnes {
19547
19610
  */
19548
19611
  export type EquipmentOfBlessedOnes_ID = string
19549
19612
 
19550
- export interface EquipmentOfBlessedOnesTranslationTranslation {
19613
+ export interface EquipmentOfBlessedOnesTranslation {
19551
19614
  /**
19552
19615
  * The item’s name.
19553
19616
  */
@@ -19837,7 +19900,7 @@ export interface IlluminationLightSource {
19837
19900
  * All translations for the entry, identified by IETF language tag (BCP47).
19838
19901
  */
19839
19902
  translations: {
19840
- [localeId: string]: IlluminationLightSourceTranslationTranslation
19903
+ [localeId: string]: IlluminationLightSourceTranslation
19841
19904
  }
19842
19905
  }
19843
19906
 
@@ -19846,7 +19909,7 @@ export interface IlluminationLightSource {
19846
19909
  */
19847
19910
  export type IlluminationLightSource_ID = string
19848
19911
 
19849
- export interface IlluminationLightSourceTranslationTranslation {
19912
+ export interface IlluminationLightSourceTranslation {
19850
19913
  /**
19851
19914
  * The item’s name.
19852
19915
  */
@@ -19931,7 +19994,7 @@ export interface IlluminationRefillOrSupply {
19931
19994
  * All translations for the entry, identified by IETF language tag (BCP47).
19932
19995
  */
19933
19996
  translations: {
19934
- [localeId: string]: IlluminationRefillOrSupplyTranslationTranslation
19997
+ [localeId: string]: IlluminationRefillOrSupplyTranslation
19935
19998
  }
19936
19999
  }
19937
20000
 
@@ -19940,7 +20003,7 @@ export interface IlluminationRefillOrSupply {
19940
20003
  */
19941
20004
  export type IlluminationRefillOrSupply_ID = string
19942
20005
 
19943
- export interface IlluminationRefillOrSupplyTranslationTranslation {
20006
+ export interface IlluminationRefillOrSupplyTranslation {
19944
20007
  /**
19945
20008
  * The item’s name.
19946
20009
  */
@@ -19994,7 +20057,7 @@ export interface Jewelry {
19994
20057
  * All translations for the entry, identified by IETF language tag (BCP47).
19995
20058
  */
19996
20059
  translations: {
19997
- [localeId: string]: JewelryTranslationTranslation
20060
+ [localeId: string]: JewelryTranslation
19998
20061
  }
19999
20062
  }
20000
20063
 
@@ -20003,7 +20066,7 @@ export interface Jewelry {
20003
20066
  */
20004
20067
  export type Jewelry_ID = string
20005
20068
 
20006
- export interface JewelryTranslationTranslation {
20069
+ export interface JewelryTranslation {
20007
20070
  /**
20008
20071
  * The item’s name.
20009
20072
  */
@@ -20066,7 +20129,7 @@ export interface Laboratory {
20066
20129
  * All translations for the entry, identified by IETF language tag (BCP47).
20067
20130
  */
20068
20131
  translations: {
20069
- [localeId: string]: LaboratoryTranslationTranslation
20132
+ [localeId: string]: LaboratoryTranslation
20070
20133
  }
20071
20134
  }
20072
20135
 
@@ -20075,7 +20138,7 @@ export interface Laboratory {
20075
20138
  */
20076
20139
  export type Laboratory_ID = string
20077
20140
 
20078
- export interface LaboratoryTranslationTranslation {
20141
+ export interface LaboratoryTranslation {
20079
20142
  /**
20080
20143
  * The item’s name.
20081
20144
  */
@@ -20134,7 +20197,7 @@ export interface Liebesspielzeug {
20134
20197
  * All translations for the entry, identified by IETF language tag (BCP47).
20135
20198
  */
20136
20199
  translations: {
20137
- [localeId: string]: LiebesspielzeugTranslationTranslation
20200
+ [localeId: string]: LiebesspielzeugTranslation
20138
20201
  }
20139
20202
  }
20140
20203
 
@@ -20143,7 +20206,7 @@ export interface Liebesspielzeug {
20143
20206
  */
20144
20207
  export type Liebesspielzeug_ID = string
20145
20208
 
20146
- export interface LiebesspielzeugTranslationTranslation {
20209
+ export interface LiebesspielzeugTranslation {
20147
20210
  /**
20148
20211
  * The item’s name.
20149
20212
  */
@@ -20202,7 +20265,7 @@ export interface LuxuryGood {
20202
20265
  * All translations for the entry, identified by IETF language tag (BCP47).
20203
20266
  */
20204
20267
  translations: {
20205
- [localeId: string]: LuxuryGoodTranslationTranslation
20268
+ [localeId: string]: LuxuryGoodTranslation
20206
20269
  }
20207
20270
  }
20208
20271
 
@@ -20211,7 +20274,7 @@ export interface LuxuryGood {
20211
20274
  */
20212
20275
  export type LuxuryGood_ID = string
20213
20276
 
20214
- export interface LuxuryGoodTranslationTranslation {
20277
+ export interface LuxuryGoodTranslation {
20215
20278
  /**
20216
20279
  * The item’s name.
20217
20280
  */
@@ -20251,6 +20314,11 @@ export interface MagicalArtifact {
20251
20314
  */
20252
20315
  complexity?: Complexity
20253
20316
 
20317
+ /**
20318
+ * The structure points of the item. Use an array if the item consists of multiple components that have individual structure points.
20319
+ */
20320
+ structure_points?: StructurePoints
20321
+
20254
20322
  /**
20255
20323
  * The item can also be used either as an improvised weapon or as an armor, although this is not the primary use case of the item.
20256
20324
  */
@@ -20265,7 +20333,7 @@ export interface MagicalArtifact {
20265
20333
  * All translations for the entry, identified by IETF language tag (BCP47).
20266
20334
  */
20267
20335
  translations: {
20268
- [localeId: string]: MagicalArtifactTranslationTranslation
20336
+ [localeId: string]: MagicalArtifactTranslation
20269
20337
  }
20270
20338
  }
20271
20339
 
@@ -20274,7 +20342,7 @@ export interface MagicalArtifact {
20274
20342
  */
20275
20343
  export type MagicalArtifact_ID = string
20276
20344
 
20277
- export interface MagicalArtifactTranslationTranslation {
20345
+ export interface MagicalArtifactTranslation {
20278
20346
  /**
20279
20347
  * The item’s name.
20280
20348
  */
@@ -20286,14 +20354,19 @@ export interface MagicalArtifactTranslationTranslation {
20286
20354
  secondary_name?: string
20287
20355
 
20288
20356
  /**
20289
- * Note text.
20357
+ * Description text.
20290
20358
  */
20291
- note?: string
20359
+ description?: string
20292
20360
 
20293
20361
  /**
20294
- * Special rules text.
20362
+ * Effect text.
20295
20363
  */
20296
- rules?: string
20364
+ effect?: string
20365
+
20366
+ /**
20367
+ * Cost text.
20368
+ */
20369
+ cost?: string
20297
20370
 
20298
20371
  errata?: Errata
20299
20372
  }
@@ -20314,6 +20387,11 @@ export interface MusicalInstrument {
20314
20387
  */
20315
20388
  complexity?: Complexity
20316
20389
 
20390
+ /**
20391
+ * The structure points of the item. Use an array if the item consists of multiple components that have individual structure points.
20392
+ */
20393
+ structure_points?: StructurePoints
20394
+
20317
20395
  /**
20318
20396
  * The item can also be used either as an improvised weapon or as an armor, although this is not the primary use case of the item.
20319
20397
  */
@@ -20328,7 +20406,7 @@ export interface MusicalInstrument {
20328
20406
  * All translations for the entry, identified by IETF language tag (BCP47).
20329
20407
  */
20330
20408
  translations: {
20331
- [localeId: string]: MusicalInstrumentTranslationTranslation
20409
+ [localeId: string]: MusicalInstrumentTranslation
20332
20410
  }
20333
20411
  }
20334
20412
 
@@ -20337,7 +20415,7 @@ export interface MusicalInstrument {
20337
20415
  */
20338
20416
  export type MusicalInstrument_ID = string
20339
20417
 
20340
- export interface MusicalInstrumentTranslationTranslation {
20418
+ export interface MusicalInstrumentTranslation {
20341
20419
  /**
20342
20420
  * The item’s name.
20343
20421
  */
@@ -20437,7 +20515,7 @@ export interface OrienteeringAid {
20437
20515
  * All translations for the entry, identified by IETF language tag (BCP47).
20438
20516
  */
20439
20517
  translations: {
20440
- [localeId: string]: OrienteeringAidTranslationTranslation
20518
+ [localeId: string]: OrienteeringAidTranslation
20441
20519
  }
20442
20520
  }
20443
20521
 
@@ -20446,7 +20524,7 @@ export interface OrienteeringAid {
20446
20524
  */
20447
20525
  export type OrienteeringAid_ID = string
20448
20526
 
20449
- export interface OrienteeringAidTranslationTranslation {
20527
+ export interface OrienteeringAidTranslation {
20450
20528
  /**
20451
20529
  * The item’s name.
20452
20530
  */
@@ -20719,7 +20797,7 @@ export interface IntoxicantTranslation {
20719
20797
  /**
20720
20798
  * What happens if the intoxicant has been overdosed, that is, it has been ingested another time within the duration.
20721
20799
  */
20722
- overdose: string
20800
+ overdose?: string
20723
20801
 
20724
20802
  /**
20725
20803
  * Special information about the intoxicant.
@@ -20747,6 +20825,20 @@ export interface IntoxicantAddiction {
20747
20825
  * The maximum interval at which it, while addicted, must be ingested to not suffer from withdrawal symptoms.
20748
20826
  */
20749
20827
  interval: IntoxicantAddictionInterval
20828
+
20829
+ /**
20830
+ * All translations for the entry, identified by IETF language tag (BCP47).
20831
+ */
20832
+ translations?: {
20833
+ [localeId: string]: IntoxicantAddictionTranslation
20834
+ }
20835
+ }
20836
+
20837
+ export interface IntoxicantAddictionTranslation {
20838
+ /**
20839
+ * The chance of getting addicted after an ingestion. Use if and only if the plain constant percent is not sufficient.
20840
+ */
20841
+ chance: string
20750
20842
  }
20751
20843
 
20752
20844
  /**
@@ -20922,11 +21014,32 @@ export type PoisonDuration =
20922
21014
  kind: "DiceBased"
20923
21015
  DiceBased: DiceBasedPoisonTime
20924
21016
  }
21017
+ | {
21018
+ kind: "ExpressionBased"
21019
+ ExpressionBased: ExpressionBasedPoisonTime
21020
+ }
20925
21021
  | {
20926
21022
  kind: "Indefinite"
20927
21023
  Indefinite: IndefinitePoisonTime
20928
21024
  }
20929
21025
 
21026
+ export interface ExpressionBasedPoisonTime {
21027
+ value: ExpressionBasedPoisonTimeValue
21028
+ unit: PoisonTimeUnit
21029
+ }
21030
+
21031
+ export type ExpressionBasedPoisonTimeValue = MathOperation<ExpressionBasedPoisonTimeExpressionValue>
21032
+
21033
+ export type ExpressionBasedPoisonTimeExpressionValue =
21034
+ | {
21035
+ kind: "Constant"
21036
+ Constant: number
21037
+ }
21038
+ | {
21039
+ kind: "Dice"
21040
+ Dice: Dice
21041
+ }
21042
+
20930
21043
  export type PoisonCost =
20931
21044
  | {
20932
21045
  kind: "CannotBeExtracted"
@@ -21011,7 +21124,7 @@ export interface RopeOrChain {
21011
21124
  * All translations for the entry, identified by IETF language tag (BCP47).
21012
21125
  */
21013
21126
  translations: {
21014
- [localeId: string]: RopeOrChainTranslationTranslation
21127
+ [localeId: string]: RopeOrChainTranslation
21015
21128
  }
21016
21129
  }
21017
21130
 
@@ -21020,7 +21133,7 @@ export interface RopeOrChain {
21020
21133
  */
21021
21134
  export type RopeOrChain_ID = string
21022
21135
 
21023
- export interface RopeOrChainTranslationTranslation {
21136
+ export interface RopeOrChainTranslation {
21024
21137
  /**
21025
21138
  * The item’s name.
21026
21139
  */
@@ -21079,7 +21192,7 @@ export interface Stationery {
21079
21192
  * All translations for the entry, identified by IETF language tag (BCP47).
21080
21193
  */
21081
21194
  translations: {
21082
- [localeId: string]: StationeryTranslationTranslation
21195
+ [localeId: string]: StationeryTranslation
21083
21196
  }
21084
21197
  }
21085
21198
 
@@ -21088,7 +21201,7 @@ export interface Stationery {
21088
21201
  */
21089
21202
  export type Stationery_ID = string
21090
21203
 
21091
- export interface StationeryTranslationTranslation {
21204
+ export interface StationeryTranslation {
21092
21205
  /**
21093
21206
  * The item’s name.
21094
21207
  */
@@ -21147,7 +21260,7 @@ export interface ThievesTool {
21147
21260
  * All translations for the entry, identified by IETF language tag (BCP47).
21148
21261
  */
21149
21262
  translations: {
21150
- [localeId: string]: ThievesToolTranslationTranslation
21263
+ [localeId: string]: ThievesToolTranslation
21151
21264
  }
21152
21265
  }
21153
21266
 
@@ -21156,7 +21269,7 @@ export interface ThievesTool {
21156
21269
  */
21157
21270
  export type ThievesTool_ID = string
21158
21271
 
21159
- export interface ThievesToolTranslationTranslation {
21272
+ export interface ThievesToolTranslation {
21160
21273
  /**
21161
21274
  * The item’s name.
21162
21275
  */
@@ -21210,7 +21323,7 @@ export interface ToolOfTheTrade {
21210
21323
  * All translations for the entry, identified by IETF language tag (BCP47).
21211
21324
  */
21212
21325
  translations: {
21213
- [localeId: string]: ToolOfTheTradeTranslationTranslation
21326
+ [localeId: string]: ToolOfTheTradeTranslation
21214
21327
  }
21215
21328
  }
21216
21329
 
@@ -21219,7 +21332,7 @@ export interface ToolOfTheTrade {
21219
21332
  */
21220
21333
  export type ToolOfTheTrade_ID = string
21221
21334
 
21222
- export interface ToolOfTheTradeTranslationTranslation {
21335
+ export interface ToolOfTheTradeTranslation {
21223
21336
  /**
21224
21337
  * The item’s name.
21225
21338
  */
@@ -21278,7 +21391,7 @@ export interface TravelGearOrTool {
21278
21391
  * All translations for the entry, identified by IETF language tag (BCP47).
21279
21392
  */
21280
21393
  translations: {
21281
- [localeId: string]: TravelGearOrToolTranslationTranslation
21394
+ [localeId: string]: TravelGearOrToolTranslation
21282
21395
  }
21283
21396
  }
21284
21397
 
@@ -21287,7 +21400,7 @@ export interface TravelGearOrTool {
21287
21400
  */
21288
21401
  export type TravelGearOrTool_ID = string
21289
21402
 
21290
- export interface TravelGearOrToolTranslationTranslation {
21403
+ export interface TravelGearOrToolTranslation {
21291
21404
  /**
21292
21405
  * The item’s name.
21293
21406
  */
@@ -21336,7 +21449,7 @@ export interface Vehicle {
21336
21449
  * All translations for the entry, identified by IETF language tag (BCP47).
21337
21450
  */
21338
21451
  translations: {
21339
- [localeId: string]: VehicleTranslationTranslation
21452
+ [localeId: string]: VehicleTranslation
21340
21453
  }
21341
21454
  }
21342
21455
 
@@ -21345,7 +21458,7 @@ export interface Vehicle {
21345
21458
  */
21346
21459
  export type Vehicle_ID = string
21347
21460
 
21348
- export interface VehicleTranslationTranslation {
21461
+ export interface VehicleTranslation {
21349
21462
  /**
21350
21463
  * The item’s name.
21351
21464
  */
@@ -21404,7 +21517,7 @@ export interface WeaponAccessory {
21404
21517
  * All translations for the entry, identified by IETF language tag (BCP47).
21405
21518
  */
21406
21519
  translations: {
21407
- [localeId: string]: WeaponAccessoryTranslationTranslation
21520
+ [localeId: string]: WeaponAccessoryTranslation
21408
21521
  }
21409
21522
  }
21410
21523
 
@@ -21413,7 +21526,7 @@ export interface WeaponAccessory {
21413
21526
  */
21414
21527
  export type WeaponAccessory_ID = string
21415
21528
 
21416
- export interface WeaponAccessoryTranslationTranslation {
21529
+ export interface WeaponAccessoryTranslation {
21417
21530
  /**
21418
21531
  * The item’s name.
21419
21532
  */