fix: wrong identifier references in select option config
This commit is contained in:
@@ -691,7 +691,7 @@ A list of skill categories.
|
||||
|
||||
Generate AP values for each entry.
|
||||
|
||||
- **Type:** <a href="#AdventurePointsValue">AdventurePointsValue</a><<a href="./_IdentifierGroup.md#SkillIdentifier">SkillIdentifier</a>>
|
||||
- **Type:** <a href="#AdventurePointsValue">AdventurePointsValue</a><<a href="./_IdentifierGroup.md#SkillIdentifier">SkillIdentifierGroup</a>>
|
||||
|
||||
---
|
||||
|
||||
@@ -829,7 +829,7 @@ Only include entries of the specified groups.
|
||||
Only include (`Intersection`) or exclude (`Difference`) specific
|
||||
skills.
|
||||
|
||||
- **Type:** <a href="#SpecificFromSkillSelectOptionCategoryCategory">SpecificFromSkillSelectOptionCategoryCategory</a><<a href="./_IdentifierGroup.md#SkillIdentifier">SkillIdentifier</a>>
|
||||
- **Type:** <a href="#SpecificFromSkillSelectOptionCategoryCategory">SpecificFromSkillSelectOptionCategoryCategory</a><<a href="./_SimpleReferences.md#SkillReference">SkillReference</a>>
|
||||
|
||||
#### <a name="SkillSelectOptionCategoryCategory/skill_applications"></a> `skill_applications?`
|
||||
|
||||
@@ -867,7 +867,7 @@ Generate prerequisites for each entry of the category.
|
||||
|
||||
Generate AP values for each entry.
|
||||
|
||||
- **Type:** <a href="#AdventurePointsValue">AdventurePointsValue</a><<a href="./_IdentifierGroup.md#CombatTechniqueIdentifier">CombatTechniqueIdentifier</a>>
|
||||
- **Type:** <a href="#AdventurePointsValue">AdventurePointsValue</a><<a href="./_Identifier.md#SkillIdentifier">SkillIdentifier</a>>
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -35,4 +35,4 @@ The targets that are included in calculating the sum.
|
||||
|
||||
### <a name="RatedSumPrerequisite/targets[]"></a> `RatedSumPrerequisite/targets[]`
|
||||
|
||||
- **Type:** <a href="../../_IdentifierGroup.md#SkillIdentifier">SkillIdentifier</a>
|
||||
- **Type:** <a href="../../_Identifier.md#SkillIdentifier">SkillIdentifier</a>
|
||||
|
||||
@@ -832,7 +832,7 @@
|
||||
"description": "The list of specific entries.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "./_IdentifierGroup.schema.json#/$defs/SkillIdentifier"
|
||||
"$ref": "./_SimpleReferences.schema.json#/$defs/SkillReference"
|
||||
},
|
||||
"minItems": 1,
|
||||
"uniqueItems": true
|
||||
@@ -903,7 +903,7 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"$ref": "./_IdentifierGroup.schema.json#/$defs/CombatTechniqueIdentifier"
|
||||
"$ref": "./_Identifier.schema.json#/$defs/SkillIdentifier"
|
||||
},
|
||||
"ap_value": {
|
||||
"description": "The AP value for the specified entry.",
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
"description": "The targets that are included in calculating the sum.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "../../_IdentifierGroup.schema.json#/$defs/SkillIdentifier"
|
||||
"$ref": "../../_Identifier.schema.json#/$defs/SkillIdentifier"
|
||||
},
|
||||
"minItems": 2
|
||||
},
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { TargetCategoryIdentifier } from "./_Identifier.js"
|
||||
import { ActivatableIdentifier, CombatTechniqueIdentifier, SkillIdentifier } from "./_IdentifierGroup.js"
|
||||
import { SkillIdentifier, TargetCategoryIdentifier } from "./_Identifier.js"
|
||||
import { ActivatableIdentifier, CombatTechniqueIdentifier, SkillIdentifier as SkillIdentifierGroup } from "./_IdentifierGroup.js"
|
||||
import { LocaleMap } from "./_LocaleMap.js"
|
||||
import { CeremonyReference, CloseCombatTechniqueReference, ElementReference, LiturgicalChantReference, RangedCombatTechniqueReference, RitualReference, SkillGroupReference, SpellReference } from "./_SimpleReferences.js"
|
||||
import { CeremonyReference, CloseCombatTechniqueReference, ElementReference, LiturgicalChantReference, RangedCombatTechniqueReference, RitualReference, SkillGroupReference, SkillReference, SpellReference } from "./_SimpleReferences.js"
|
||||
|
||||
export type SelectOptionCategory =
|
||||
| { tag: "Blessings"; blessings: {} }
|
||||
@@ -127,7 +127,7 @@ export type SkillsSelectOptionCategory = {
|
||||
/**
|
||||
* Generate AP values for each entry.
|
||||
*/
|
||||
ap_value?: AdventurePointsValue<SkillIdentifier>
|
||||
ap_value?: AdventurePointsValue<SkillIdentifierGroup>
|
||||
}
|
||||
|
||||
export type SkillsSelectOptionCategoryCategory =
|
||||
@@ -148,7 +148,7 @@ export type SkillSelectOptionCategoryCategory = {
|
||||
* Only include (`Intersection`) or exclude (`Difference`) specific
|
||||
* skills.
|
||||
*/
|
||||
specific?: SpecificFromSkillSelectOptionCategoryCategory<SkillIdentifier>
|
||||
specific?: SpecificFromSkillSelectOptionCategoryCategory<SkillReference>
|
||||
|
||||
/**
|
||||
* Registers new applications, which get enabled once this entry is
|
||||
@@ -179,7 +179,7 @@ export type SkillSelectOptionCategoryCategory = {
|
||||
/**
|
||||
* Generate AP values for each entry.
|
||||
*/
|
||||
ap_value?: AdventurePointsValue<CombatTechniqueIdentifier>
|
||||
ap_value?: AdventurePointsValue<SkillIdentifier>
|
||||
}
|
||||
|
||||
export type CombatTechniquesSelectOptionCategory = {
|
||||
|
||||
Reference in New Issue
Block a user