optolith-database-schema 0.23.2 → 0.24.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/gen/types.d.ts +134 -103
- package/lib/types/Blessing.d.ts +9 -1
- package/lib/types/Blessing.js +2 -1
- package/lib/types/Locale.d.ts +19 -1
- package/lib/types/Locale.js +19 -1
- package/lib/types/Profession.d.ts +114 -48
- package/lib/types/Profession.js +4 -4
- package/lib/types/_IdentifierGroup.d.ts +3 -0
- package/lib/types/_IdentifierGroup.js +3 -0
- package/lib/types/prerequisites/PrerequisiteGroups.d.ts +14 -2
- package/lib/types/prerequisites/single/ActivatablePrerequisite.d.ts +3 -0
- package/lib/types/prerequisites/single/PactPrerequisite.d.ts +1 -1
- package/lib/types/prerequisites/single/PactPrerequisite.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [0.24.1](https://github.com/elyukai/optolith-database-schema/compare/v0.24.0...v0.24.1) (2025-12-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add and adjust translation strings ([5cd59ca](https://github.com/elyukai/optolith-database-schema/commit/5cd59ca6ce600c0ffbc62ef49e0609cc02cfd3d2))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* double name ([d2b8a44](https://github.com/elyukai/optolith-database-schema/commit/d2b8a4450dc032c3411190b58bea9c1ee7df94d7))
|
|
16
|
+
* fixed blessing range without values ([0751823](https://github.com/elyukai/optolith-database-schema/commit/075182370c4ed81ea30af1c8552aa95fcd2aa669))
|
|
17
|
+
|
|
18
|
+
## [0.24.0](https://github.com/elyukai/optolith-database-schema/compare/v0.23.2...v0.24.0) (2025-12-05)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ⚠ BREAKING CHANGES
|
|
22
|
+
|
|
23
|
+
* The prerequisites field is moved from profession
|
|
24
|
+
versions to profession packages.
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* arcane traditions and elements can be requirable select options ([d1c9795](https://github.com/elyukai/optolith-database-schema/commit/d1c9795e8378b8f7da69e47491c48df6514661a8))
|
|
29
|
+
* profession prerequisites can differ per profession version ([08a7d8d](https://github.com/elyukai/optolith-database-schema/commit/08a7d8d2c88beff69ea7b4d68995b1eb6d2528a6))
|
|
30
|
+
|
|
5
31
|
## [0.23.2](https://github.com/elyukai/optolith-database-schema/compare/v0.23.1...v0.23.2) (2025-12-04)
|
|
6
32
|
|
|
7
33
|
|
package/gen/types.d.ts
CHANGED
|
@@ -1201,46 +1201,61 @@ export interface Locale {
|
|
|
1201
1201
|
"{$value} act": string & { __params: { "value": StringableTranslationParameter } }
|
|
1202
1202
|
"act": string
|
|
1203
1203
|
".input {$value :number} {{{$value} actions}}": string & { __params: { "value": number } }
|
|
1204
|
+
"{$value} actions": string & { __params: { "value": StringableTranslationParameter } }
|
|
1204
1205
|
"actions": string
|
|
1205
1206
|
"{$value} s": string & { __params: { "value": StringableTranslationParameter } }
|
|
1206
1207
|
"s": string
|
|
1207
1208
|
".input {$value :number} {{{$value} seconds}}": string & { __params: { "value": number } }
|
|
1209
|
+
"{$value} seconds": string & { __params: { "value": StringableTranslationParameter } }
|
|
1208
1210
|
"seconds": string
|
|
1209
1211
|
"{$value} min": string & { __params: { "value": StringableTranslationParameter } }
|
|
1210
1212
|
"min": string
|
|
1211
1213
|
".input {$value :number} {{{$value} minutes}}": string & { __params: { "value": number } }
|
|
1214
|
+
"{$value} minutes": string & { __params: { "value": StringableTranslationParameter } }
|
|
1212
1215
|
"minutes": string
|
|
1213
1216
|
"{$value} h": string & { __params: { "value": StringableTranslationParameter } }
|
|
1214
1217
|
"h": string
|
|
1215
1218
|
".input {$value :number} {{{$value} hours}}": string & { __params: { "value": number } }
|
|
1219
|
+
"{$value} hours": string & { __params: { "value": StringableTranslationParameter } }
|
|
1216
1220
|
"hours": string
|
|
1217
1221
|
"{$value} d": string & { __params: { "value": StringableTranslationParameter } }
|
|
1218
1222
|
"d": string
|
|
1219
1223
|
".input {$value :number} {{{$value} days}}": string & { __params: { "value": number } }
|
|
1224
|
+
"{$value} days": string & { __params: { "value": StringableTranslationParameter } }
|
|
1220
1225
|
"days": string
|
|
1221
1226
|
".input {$value :number} {{{$value} wks.}}": string & { __params: { "value": number } }
|
|
1227
|
+
"{$value} wks.": string & { __params: { "value": StringableTranslationParameter } }
|
|
1222
1228
|
"wks.": string
|
|
1223
1229
|
".input {$value :number} {{{$value} weeks}}": string & { __params: { "value": number } }
|
|
1230
|
+
"{$value} weeks": string & { __params: { "value": StringableTranslationParameter } }
|
|
1224
1231
|
"weeks": string
|
|
1225
1232
|
".input {$value :number} {{{$value} mos.}}": string & { __params: { "value": number } }
|
|
1233
|
+
"{$value} mos.": string & { __params: { "value": StringableTranslationParameter } }
|
|
1226
1234
|
"mos.": string
|
|
1227
1235
|
".input {$value :number} {{{$value} months}}": string & { __params: { "value": number } }
|
|
1236
|
+
"{$value} months": string & { __params: { "value": StringableTranslationParameter } }
|
|
1228
1237
|
"months": string
|
|
1229
1238
|
".input {$value :number} {{{$value} yrs.}}": string & { __params: { "value": number } }
|
|
1239
|
+
"{$value} yrs.": string & { __params: { "value": StringableTranslationParameter } }
|
|
1230
1240
|
"yrs.": string
|
|
1231
1241
|
".input {$value :number} {{{$value} years}}": string & { __params: { "value": number } }
|
|
1242
|
+
"{$value} years": string & { __params: { "value": StringableTranslationParameter } }
|
|
1232
1243
|
"years": string
|
|
1233
1244
|
"{$value} cent.": string & { __params: { "value": StringableTranslationParameter } }
|
|
1234
1245
|
"cent.": string
|
|
1235
1246
|
".input {$value :number} {{{$value} centuries}}": string & { __params: { "value": number } }
|
|
1247
|
+
"{$value} centuries": string & { __params: { "value": StringableTranslationParameter } }
|
|
1236
1248
|
"centuries": string
|
|
1237
1249
|
"{$value} SA": string & { __params: { "value": StringableTranslationParameter } }
|
|
1238
1250
|
".input {$value :number} {{{$value} seduction actions}}": string & { __params: { "value": number } }
|
|
1251
|
+
"{$value} seduction actions": string & { __params: { "value": StringableTranslationParameter } }
|
|
1239
1252
|
"{$value} rnds": string & { __params: { "value": StringableTranslationParameter } }
|
|
1240
1253
|
".input {$value :number} {{{$value} rounds}}": string & { __params: { "value": number } }
|
|
1254
|
+
"{$value} rounds": string & { __params: { "value": StringableTranslationParameter } }
|
|
1241
1255
|
"{$value} CR": string & { __params: { "value": StringableTranslationParameter } }
|
|
1242
1256
|
"CR": string
|
|
1243
1257
|
".input {$value :number} {{{$value} combat rounds}}": string & { __params: { "value": number } }
|
|
1258
|
+
"{$value} combat rounds": string & { __params: { "value": StringableTranslationParameter } }
|
|
1244
1259
|
"combat rounds": string
|
|
1245
1260
|
"{$value} AE": string & { __params: { "value": StringableTranslationParameter } }
|
|
1246
1261
|
"{$value} KP": string & { __params: { "value": StringableTranslationParameter } }
|
|
@@ -1253,6 +1268,7 @@ export interface Locale {
|
|
|
1253
1268
|
", minimum of {$value}": string & { __params: { "value": StringableTranslationParameter } }
|
|
1254
1269
|
" ({$value} perm.)": string & { __params: { "value": StringableTranslationParameter } }
|
|
1255
1270
|
".input {$value :number} {{, {$value} of which are permanent}}": string & { __params: { "value": number } }
|
|
1271
|
+
", {$value} of which are permanent": string & { __params: { "value": StringableTranslationParameter } }
|
|
1256
1272
|
"half of the activation cost": string
|
|
1257
1273
|
" and ": string
|
|
1258
1274
|
" + ": string
|
|
@@ -1275,8 +1291,10 @@ export interface Locale {
|
|
|
1275
1291
|
"Sustained": string
|
|
1276
1292
|
"(S)": string
|
|
1277
1293
|
".input {$value :number} {{{$value} yards}}": string & { __params: { "value": number } }
|
|
1294
|
+
"{$value} yards": string & { __params: { "value": StringableTranslationParameter } }
|
|
1278
1295
|
"{$value} yd": string & { __params: { "value": StringableTranslationParameter } }
|
|
1279
1296
|
".input {$value :number} {{{$value} miles}}": string & { __params: { "value": number } }
|
|
1297
|
+
"{$value} miles": string & { __params: { "value": StringableTranslationParameter } }
|
|
1280
1298
|
"{$value} mi.": string & { __params: { "value": StringableTranslationParameter } }
|
|
1281
1299
|
"Sight": string
|
|
1282
1300
|
"Self": string
|
|
@@ -1296,7 +1314,7 @@ export interface Locale {
|
|
|
1296
1314
|
"Penis": string
|
|
1297
1315
|
"Vagina": string
|
|
1298
1316
|
"the SR for {$skill} combined must add up to at least {$minRating}": string & { __params: { "skill": StringableTranslationParameter; "minRating": StringableTranslationParameter } }
|
|
1299
|
-
".input {$
|
|
1317
|
+
".input {$minRating :number} {{{$count} on at least SR {$minRating}: {$list}}}": string & { __params: { "minRating": number; "count": StringableTranslationParameter; "list": StringableTranslationParameter } }
|
|
1300
1318
|
".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
1319
|
".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
1320
|
".input {$count :number} {{{$count} of the following skills}}": string & { __params: { "count": number } }
|
|
@@ -3137,7 +3155,7 @@ export type GeneralPrerequisiteGroup =
|
|
|
3137
3155
|
}
|
|
3138
3156
|
| {
|
|
3139
3157
|
kind: "Pact"
|
|
3140
|
-
Pact:
|
|
3158
|
+
Pact: PactPrerequisite
|
|
3141
3159
|
}
|
|
3142
3160
|
| {
|
|
3143
3161
|
kind: "SocialStatus"
|
|
@@ -3991,6 +4009,18 @@ export type RequirableSelectOptionIdentifier =
|
|
|
3991
4009
|
kind: "TradeSecret"
|
|
3992
4010
|
TradeSecret: TradeSecret_ID
|
|
3993
4011
|
}
|
|
4012
|
+
| {
|
|
4013
|
+
kind: "ArcaneBardTradition"
|
|
4014
|
+
ArcaneBardTradition: ArcaneBardTradition_ID
|
|
4015
|
+
}
|
|
4016
|
+
| {
|
|
4017
|
+
kind: "ArcaneDancerTradition"
|
|
4018
|
+
ArcaneDancerTradition: ArcaneDancerTradition_ID
|
|
4019
|
+
}
|
|
4020
|
+
| {
|
|
4021
|
+
kind: "Element"
|
|
4022
|
+
Element: Element_ID
|
|
4023
|
+
}
|
|
3994
4024
|
|
|
3995
4025
|
export interface CloseCombatTechnique {
|
|
3996
4026
|
/**
|
|
@@ -5526,6 +5556,7 @@ export type BlessingRange =
|
|
|
5526
5556
|
}
|
|
5527
5557
|
| {
|
|
5528
5558
|
kind: "Fixed"
|
|
5559
|
+
Fixed: FixedRange
|
|
5529
5560
|
}
|
|
5530
5561
|
|
|
5531
5562
|
export type BlessingDuration =
|
|
@@ -6927,6 +6958,76 @@ export type TradeSecretAdventurePointsValue =
|
|
|
6927
6958
|
|
|
6928
6959
|
export type PlainGeneralPrerequisites = PlainPrerequisites<GeneralPrerequisiteGroup>
|
|
6929
6960
|
|
|
6961
|
+
export interface ArcaneBardTradition {
|
|
6962
|
+
prerequisites: ArcaneTraditionPrerequisites
|
|
6963
|
+
|
|
6964
|
+
/**
|
|
6965
|
+
* All translations for the entry, identified by IETF language tag (BCP47).
|
|
6966
|
+
*/
|
|
6967
|
+
translations: {
|
|
6968
|
+
[localeId: string]: ArcaneBardTraditionTranslationTranslation
|
|
6969
|
+
}
|
|
6970
|
+
}
|
|
6971
|
+
|
|
6972
|
+
/**
|
|
6973
|
+
* The entity’s identifier. A UUID or a locale code if it is registered as the locale entity.
|
|
6974
|
+
*/
|
|
6975
|
+
export type ArcaneBardTradition_ID = string
|
|
6976
|
+
|
|
6977
|
+
export interface ArcaneBardTraditionTranslationTranslation {
|
|
6978
|
+
/**
|
|
6979
|
+
* The arcane tradition’s name.
|
|
6980
|
+
*/
|
|
6981
|
+
name: string
|
|
6982
|
+
}
|
|
6983
|
+
|
|
6984
|
+
export type ArcaneTraditionPrerequisites = PlainPrerequisites<ArcaneTraditionPrerequisiteGroup>
|
|
6985
|
+
|
|
6986
|
+
export type ArcaneTraditionPrerequisiteGroup =
|
|
6987
|
+
| {
|
|
6988
|
+
kind: "Sex"
|
|
6989
|
+
Sex: SexPrerequisite
|
|
6990
|
+
}
|
|
6991
|
+
| {
|
|
6992
|
+
kind: "Culture"
|
|
6993
|
+
Culture: CulturePrerequisite
|
|
6994
|
+
}
|
|
6995
|
+
|
|
6996
|
+
/**
|
|
6997
|
+
* Requires a specific culture or one of a specific set of cultures.
|
|
6998
|
+
*/
|
|
6999
|
+
export interface CulturePrerequisite {
|
|
7000
|
+
/**
|
|
7001
|
+
* The culture’s identifier.
|
|
7002
|
+
*/
|
|
7003
|
+
id: Culture_ID
|
|
7004
|
+
|
|
7005
|
+
display_option?: DisplayOption
|
|
7006
|
+
}
|
|
7007
|
+
|
|
7008
|
+
export interface ArcaneDancerTradition {
|
|
7009
|
+
prerequisites: ArcaneTraditionPrerequisites
|
|
7010
|
+
|
|
7011
|
+
/**
|
|
7012
|
+
* All translations for the entry, identified by IETF language tag (BCP47).
|
|
7013
|
+
*/
|
|
7014
|
+
translations: {
|
|
7015
|
+
[localeId: string]: ArcaneDancerTraditionTranslationTranslation
|
|
7016
|
+
}
|
|
7017
|
+
}
|
|
7018
|
+
|
|
7019
|
+
/**
|
|
7020
|
+
* The entity’s identifier. A UUID or a locale code if it is registered as the locale entity.
|
|
7021
|
+
*/
|
|
7022
|
+
export type ArcaneDancerTradition_ID = string
|
|
7023
|
+
|
|
7024
|
+
export interface ArcaneDancerTraditionTranslationTranslation {
|
|
7025
|
+
/**
|
|
7026
|
+
* The arcane tradition’s name.
|
|
7027
|
+
*/
|
|
7028
|
+
name: string
|
|
7029
|
+
}
|
|
7030
|
+
|
|
6930
7031
|
/**
|
|
6931
7032
|
* A list of preconditions for the prerequisite it is defined on, so that it only takes effect if the prerequisites in this list are matched.
|
|
6932
7033
|
*
|
|
@@ -7408,11 +7509,6 @@ export interface ProfessionVersion {
|
|
|
7408
7509
|
*/
|
|
7409
7510
|
profession: Profession_ID
|
|
7410
7511
|
|
|
7411
|
-
/**
|
|
7412
|
-
* Which prerequisites must be met to buy the stat block? For example, a character might need the advantage Spellcaster or Blessed. Note: the AP cost for a profession package does not include these prerequisites.
|
|
7413
|
-
*/
|
|
7414
|
-
prerequisites?: ProfessionPrerequisites
|
|
7415
|
-
|
|
7416
7512
|
/**
|
|
7417
7513
|
* A list of available race variants where one has to be selected. If no variants are to be selected, a single variant with no name has to be provided which will be used as the missing values for the base race.
|
|
7418
7514
|
*/
|
|
@@ -7490,42 +7586,6 @@ export interface ProfessionVersionTranslation {
|
|
|
7490
7586
|
errata?: Errata
|
|
7491
7587
|
}
|
|
7492
7588
|
|
|
7493
|
-
export type ProfessionPrerequisites = PlainPrerequisites<ProfessionPrerequisiteGroup>
|
|
7494
|
-
|
|
7495
|
-
export type ProfessionPrerequisiteGroup =
|
|
7496
|
-
| {
|
|
7497
|
-
kind: "Sex"
|
|
7498
|
-
Sex: SexPrerequisite
|
|
7499
|
-
}
|
|
7500
|
-
| {
|
|
7501
|
-
kind: "Race"
|
|
7502
|
-
Race: RacePrerequisite
|
|
7503
|
-
}
|
|
7504
|
-
| {
|
|
7505
|
-
kind: "Culture"
|
|
7506
|
-
Culture: CulturePrerequisite
|
|
7507
|
-
}
|
|
7508
|
-
| {
|
|
7509
|
-
kind: "Activatable"
|
|
7510
|
-
Activatable: ActivatablePrerequisite
|
|
7511
|
-
}
|
|
7512
|
-
| {
|
|
7513
|
-
kind: "Rated"
|
|
7514
|
-
Rated: RatedPrerequisite
|
|
7515
|
-
}
|
|
7516
|
-
|
|
7517
|
-
/**
|
|
7518
|
-
* Requires a specific culture or one of a specific set of cultures.
|
|
7519
|
-
*/
|
|
7520
|
-
export interface CulturePrerequisite {
|
|
7521
|
-
/**
|
|
7522
|
-
* The culture’s identifier.
|
|
7523
|
-
*/
|
|
7524
|
-
id: Culture_ID
|
|
7525
|
-
|
|
7526
|
-
display_option?: DisplayOption
|
|
7527
|
-
}
|
|
7528
|
-
|
|
7529
7589
|
export interface ProfessionPackage {
|
|
7530
7590
|
/**
|
|
7531
7591
|
* The associated profession version.
|
|
@@ -7542,6 +7602,11 @@ export interface ProfessionPackage {
|
|
|
7542
7602
|
*/
|
|
7543
7603
|
ap_value: number
|
|
7544
7604
|
|
|
7605
|
+
/**
|
|
7606
|
+
* Which prerequisites must be met to buy the stat block? For example, a character might need the advantage Spellcaster or Blessed. Note: the AP cost for a profession package does not include these prerequisites.
|
|
7607
|
+
*/
|
|
7608
|
+
prerequisites?: ProfessionPrerequisites
|
|
7609
|
+
|
|
7545
7610
|
/**
|
|
7546
7611
|
* In some areas, the profession package grants a loose set of stats where the player must choose between different options for the profession package.
|
|
7547
7612
|
*/
|
|
@@ -7588,6 +7653,30 @@ export interface ProfessionPackage {
|
|
|
7588
7653
|
*/
|
|
7589
7654
|
export type ProfessionPackage_ID = string
|
|
7590
7655
|
|
|
7656
|
+
export type ProfessionPrerequisites = PlainPrerequisites<ProfessionPrerequisiteGroup>
|
|
7657
|
+
|
|
7658
|
+
export type ProfessionPrerequisiteGroup =
|
|
7659
|
+
| {
|
|
7660
|
+
kind: "Sex"
|
|
7661
|
+
Sex: SexPrerequisite
|
|
7662
|
+
}
|
|
7663
|
+
| {
|
|
7664
|
+
kind: "Race"
|
|
7665
|
+
Race: RacePrerequisite
|
|
7666
|
+
}
|
|
7667
|
+
| {
|
|
7668
|
+
kind: "Culture"
|
|
7669
|
+
Culture: CulturePrerequisite
|
|
7670
|
+
}
|
|
7671
|
+
| {
|
|
7672
|
+
kind: "Activatable"
|
|
7673
|
+
Activatable: ActivatablePrerequisite
|
|
7674
|
+
}
|
|
7675
|
+
| {
|
|
7676
|
+
kind: "Rated"
|
|
7677
|
+
Rated: RatedPrerequisite
|
|
7678
|
+
}
|
|
7679
|
+
|
|
7591
7680
|
/**
|
|
7592
7681
|
* In some areas, the profession package grants a loose set of stats where the player must choose between different options for the profession package.
|
|
7593
7682
|
*/
|
|
@@ -15525,41 +15614,6 @@ export interface ArcaneBardTraditionReferenceTranslationTranslation {
|
|
|
15525
15614
|
name: string
|
|
15526
15615
|
}
|
|
15527
15616
|
|
|
15528
|
-
export interface ArcaneBardTradition {
|
|
15529
|
-
prerequisites: ArcaneTraditionPrerequisites
|
|
15530
|
-
|
|
15531
|
-
/**
|
|
15532
|
-
* All translations for the entry, identified by IETF language tag (BCP47).
|
|
15533
|
-
*/
|
|
15534
|
-
translations: {
|
|
15535
|
-
[localeId: string]: ArcaneBardTraditionTranslationTranslation
|
|
15536
|
-
}
|
|
15537
|
-
}
|
|
15538
|
-
|
|
15539
|
-
/**
|
|
15540
|
-
* The entity’s identifier. A UUID or a locale code if it is registered as the locale entity.
|
|
15541
|
-
*/
|
|
15542
|
-
export type ArcaneBardTradition_ID = string
|
|
15543
|
-
|
|
15544
|
-
export interface ArcaneBardTraditionTranslationTranslation {
|
|
15545
|
-
/**
|
|
15546
|
-
* The arcane tradition’s name.
|
|
15547
|
-
*/
|
|
15548
|
-
name: string
|
|
15549
|
-
}
|
|
15550
|
-
|
|
15551
|
-
export type ArcaneTraditionPrerequisites = PlainPrerequisites<ArcaneTraditionPrerequisiteGroup>
|
|
15552
|
-
|
|
15553
|
-
export type ArcaneTraditionPrerequisiteGroup =
|
|
15554
|
-
| {
|
|
15555
|
-
kind: "Sex"
|
|
15556
|
-
Sex: SexPrerequisite
|
|
15557
|
-
}
|
|
15558
|
-
| {
|
|
15559
|
-
kind: "Culture"
|
|
15560
|
-
Culture: CulturePrerequisite
|
|
15561
|
-
}
|
|
15562
|
-
|
|
15563
15617
|
export interface MagicalDance {
|
|
15564
15618
|
/**
|
|
15565
15619
|
* Lists the linked three attributes used to make a skill check.
|
|
@@ -15713,29 +15767,6 @@ export interface ArcaneDancerTraditionReferenceTranslationTranslation {
|
|
|
15713
15767
|
name: string
|
|
15714
15768
|
}
|
|
15715
15769
|
|
|
15716
|
-
export interface ArcaneDancerTradition {
|
|
15717
|
-
prerequisites: ArcaneTraditionPrerequisites
|
|
15718
|
-
|
|
15719
|
-
/**
|
|
15720
|
-
* All translations for the entry, identified by IETF language tag (BCP47).
|
|
15721
|
-
*/
|
|
15722
|
-
translations: {
|
|
15723
|
-
[localeId: string]: ArcaneDancerTraditionTranslationTranslation
|
|
15724
|
-
}
|
|
15725
|
-
}
|
|
15726
|
-
|
|
15727
|
-
/**
|
|
15728
|
-
* The entity’s identifier. A UUID or a locale code if it is registered as the locale entity.
|
|
15729
|
-
*/
|
|
15730
|
-
export type ArcaneDancerTradition_ID = string
|
|
15731
|
-
|
|
15732
|
-
export interface ArcaneDancerTraditionTranslationTranslation {
|
|
15733
|
-
/**
|
|
15734
|
-
* The arcane tradition’s name.
|
|
15735
|
-
*/
|
|
15736
|
-
name: string
|
|
15737
|
-
}
|
|
15738
|
-
|
|
15739
15770
|
export interface JesterTrick {
|
|
15740
15771
|
/**
|
|
15741
15772
|
* Lists the linked three attributes used to make a skill check.
|
|
@@ -17092,7 +17123,7 @@ export interface RandomHeightGeneration {
|
|
|
17092
17123
|
/**
|
|
17093
17124
|
* Requires a specific pact.
|
|
17094
17125
|
*/
|
|
17095
|
-
export interface
|
|
17126
|
+
export interface PactPrerequisite {
|
|
17096
17127
|
/**
|
|
17097
17128
|
* The required pact category.
|
|
17098
17129
|
*/
|
|
@@ -17426,7 +17457,7 @@ export type AdvantageDisadvantagePrerequisiteGroup =
|
|
|
17426
17457
|
}
|
|
17427
17458
|
| {
|
|
17428
17459
|
kind: "Pact"
|
|
17429
|
-
Pact:
|
|
17460
|
+
Pact: PactPrerequisite
|
|
17430
17461
|
}
|
|
17431
17462
|
| {
|
|
17432
17463
|
kind: "SocialStatus"
|
package/lib/types/Blessing.d.ts
CHANGED
|
@@ -4,7 +4,15 @@ export declare const Blessing: Entity<"Blessing", {
|
|
|
4
4
|
range: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"BlessingRange", {
|
|
5
5
|
Self: EnumCase<null>;
|
|
6
6
|
Touch: EnumCase<null>;
|
|
7
|
-
Fixed: EnumCase<
|
|
7
|
+
Fixed: EnumCase<IncludeIdentifier<[], TypeAlias<"FixedRange", Object<{
|
|
8
|
+
is_maximum: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").BooleanType, false>;
|
|
9
|
+
value: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
10
|
+
unit: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"RangeUnit", {
|
|
11
|
+
Steps: EnumCase<null>;
|
|
12
|
+
Miles: EnumCase<null>;
|
|
13
|
+
}, []>>, true>;
|
|
14
|
+
is_radius: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").BooleanType, false>;
|
|
15
|
+
}>, []>>>;
|
|
8
16
|
}, []>>, true>;
|
|
9
17
|
duration: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"BlessingDuration", {
|
|
10
18
|
Immediate: EnumCase<null>;
|
package/lib/types/Blessing.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Entity, Enum, EnumCase, IncludeIdentifier, Integer, Object, Optional, Required, String, TypeAlias, } from "tsondb/schema/def";
|
|
2
2
|
import { DurationUnit } from "./_ActivatableSkillDuration.js";
|
|
3
|
+
import { FixedRange } from "./_ActivatableSkillRange.js";
|
|
3
4
|
import { AffectedTargetCategories } from "./_ActivatableSkillTargetCategory.js";
|
|
4
5
|
import { NestedTranslationMap } from "./Locale.js";
|
|
5
6
|
import { Errata } from "./source/_Erratum.js";
|
|
@@ -58,7 +59,7 @@ const BlessingRange = Enum(import.meta.url, {
|
|
|
58
59
|
values: () => ({
|
|
59
60
|
Self: EnumCase({ type: null }),
|
|
60
61
|
Touch: EnumCase({ type: null }),
|
|
61
|
-
Fixed: EnumCase({ type:
|
|
62
|
+
Fixed: EnumCase({ type: IncludeIdentifier(FixedRange) }),
|
|
62
63
|
}),
|
|
63
64
|
});
|
|
64
65
|
const BlessingDuration = Enum(import.meta.url, {
|
package/lib/types/Locale.d.ts
CHANGED
|
@@ -919,46 +919,61 @@ export declare const Locale: Entity<"Locale", {
|
|
|
919
919
|
"{$value} act": null;
|
|
920
920
|
act: null;
|
|
921
921
|
".input {$value :number} {{{$value} actions}}": null;
|
|
922
|
+
"{$value} actions": null;
|
|
922
923
|
actions: null;
|
|
923
924
|
"{$value} s": null;
|
|
924
925
|
s: null;
|
|
925
926
|
".input {$value :number} {{{$value} seconds}}": null;
|
|
927
|
+
"{$value} seconds": null;
|
|
926
928
|
seconds: null;
|
|
927
929
|
"{$value} min": null;
|
|
928
930
|
min: null;
|
|
929
931
|
".input {$value :number} {{{$value} minutes}}": null;
|
|
932
|
+
"{$value} minutes": null;
|
|
930
933
|
minutes: null;
|
|
931
934
|
"{$value} h": null;
|
|
932
935
|
h: null;
|
|
933
936
|
".input {$value :number} {{{$value} hours}}": null;
|
|
937
|
+
"{$value} hours": null;
|
|
934
938
|
hours: null;
|
|
935
939
|
"{$value} d": null;
|
|
936
940
|
d: null;
|
|
937
941
|
".input {$value :number} {{{$value} days}}": null;
|
|
942
|
+
"{$value} days": null;
|
|
938
943
|
days: null;
|
|
939
944
|
".input {$value :number} {{{$value} wks.}}": null;
|
|
945
|
+
"{$value} wks.": null;
|
|
940
946
|
"wks.": null;
|
|
941
947
|
".input {$value :number} {{{$value} weeks}}": null;
|
|
948
|
+
"{$value} weeks": null;
|
|
942
949
|
weeks: null;
|
|
943
950
|
".input {$value :number} {{{$value} mos.}}": null;
|
|
951
|
+
"{$value} mos.": null;
|
|
944
952
|
"mos.": null;
|
|
945
953
|
".input {$value :number} {{{$value} months}}": null;
|
|
954
|
+
"{$value} months": null;
|
|
946
955
|
months: null;
|
|
947
956
|
".input {$value :number} {{{$value} yrs.}}": null;
|
|
957
|
+
"{$value} yrs.": null;
|
|
948
958
|
"yrs.": null;
|
|
949
959
|
".input {$value :number} {{{$value} years}}": null;
|
|
960
|
+
"{$value} years": null;
|
|
950
961
|
years: null;
|
|
951
962
|
"{$value} cent.": null;
|
|
952
963
|
"cent.": null;
|
|
953
964
|
".input {$value :number} {{{$value} centuries}}": null;
|
|
965
|
+
"{$value} centuries": null;
|
|
954
966
|
centuries: null;
|
|
955
967
|
"{$value} SA": null;
|
|
956
968
|
".input {$value :number} {{{$value} seduction actions}}": null;
|
|
969
|
+
"{$value} seduction actions": null;
|
|
957
970
|
"{$value} rnds": null;
|
|
958
971
|
".input {$value :number} {{{$value} rounds}}": null;
|
|
972
|
+
"{$value} rounds": null;
|
|
959
973
|
"{$value} CR": null;
|
|
960
974
|
CR: null;
|
|
961
975
|
".input {$value :number} {{{$value} combat rounds}}": null;
|
|
976
|
+
"{$value} combat rounds": null;
|
|
962
977
|
"combat rounds": null;
|
|
963
978
|
"{$value} AE": null;
|
|
964
979
|
"{$value} KP": null;
|
|
@@ -971,6 +986,7 @@ export declare const Locale: Entity<"Locale", {
|
|
|
971
986
|
", minimum of {$value}": null;
|
|
972
987
|
" ({$value} perm.)": null;
|
|
973
988
|
".input {$value :number} {{, {$value} of which are permanent}}": null;
|
|
989
|
+
", {$value} of which are permanent": null;
|
|
974
990
|
"half of the activation cost": null;
|
|
975
991
|
" and ": null;
|
|
976
992
|
" + ": null;
|
|
@@ -993,8 +1009,10 @@ export declare const Locale: Entity<"Locale", {
|
|
|
993
1009
|
Sustained: null;
|
|
994
1010
|
"(S)": null;
|
|
995
1011
|
".input {$value :number} {{{$value} yards}}": null;
|
|
1012
|
+
"{$value} yards": null;
|
|
996
1013
|
"{$value} yd": null;
|
|
997
1014
|
".input {$value :number} {{{$value} miles}}": null;
|
|
1015
|
+
"{$value} miles": null;
|
|
998
1016
|
"{$value} mi.": null;
|
|
999
1017
|
Sight: null;
|
|
1000
1018
|
Self: null;
|
|
@@ -1014,7 +1032,7 @@ export declare const Locale: Entity<"Locale", {
|
|
|
1014
1032
|
Penis: null;
|
|
1015
1033
|
Vagina: null;
|
|
1016
1034
|
"the SR for {$skill} combined must add up to at least {$minRating}": null;
|
|
1017
|
-
".input {$
|
|
1035
|
+
".input {$minRating :number} {{{$count} on at least SR {$minRating}: {$list}}}": null;
|
|
1018
1036
|
".input {$count :number} .input {$minRating :number} {{{$count} arcane works with the property {$property} at SR {$minRating} or higher}}": null;
|
|
1019
1037
|
".input {$count :number} .input {$minRating :number} {{{$count} liturgical chants and ceremonies with the aspect {$aspect} at SR {$minRating} or higher}}": null;
|
|
1020
1038
|
".input {$count :number} {{{$count} of the following skills}}": null;
|
package/lib/types/Locale.js
CHANGED
|
@@ -944,46 +944,61 @@ export const Locale = Entity(import.meta.url, {
|
|
|
944
944
|
"{$value} act": null,
|
|
945
945
|
"act": null,
|
|
946
946
|
".input {$value :number} {{{$value} actions}}": null,
|
|
947
|
+
"{$value} actions": null,
|
|
947
948
|
"actions": null,
|
|
948
949
|
"{$value} s": null,
|
|
949
950
|
"s": null,
|
|
950
951
|
".input {$value :number} {{{$value} seconds}}": null,
|
|
952
|
+
"{$value} seconds": null,
|
|
951
953
|
"seconds": null,
|
|
952
954
|
"{$value} min": null,
|
|
953
955
|
"min": null,
|
|
954
956
|
".input {$value :number} {{{$value} minutes}}": null,
|
|
957
|
+
"{$value} minutes": null,
|
|
955
958
|
"minutes": null,
|
|
956
959
|
"{$value} h": null,
|
|
957
960
|
"h": null,
|
|
958
961
|
".input {$value :number} {{{$value} hours}}": null,
|
|
962
|
+
"{$value} hours": null,
|
|
959
963
|
"hours": null,
|
|
960
964
|
"{$value} d": null,
|
|
961
965
|
"d": null,
|
|
962
966
|
".input {$value :number} {{{$value} days}}": null,
|
|
967
|
+
"{$value} days": null,
|
|
963
968
|
"days": null,
|
|
964
969
|
".input {$value :number} {{{$value} wks.}}": null,
|
|
970
|
+
"{$value} wks.": null,
|
|
965
971
|
"wks.": null,
|
|
966
972
|
".input {$value :number} {{{$value} weeks}}": null,
|
|
973
|
+
"{$value} weeks": null,
|
|
967
974
|
"weeks": null,
|
|
968
975
|
".input {$value :number} {{{$value} mos.}}": null,
|
|
976
|
+
"{$value} mos.": null,
|
|
969
977
|
"mos.": null,
|
|
970
978
|
".input {$value :number} {{{$value} months}}": null,
|
|
979
|
+
"{$value} months": null,
|
|
971
980
|
"months": null,
|
|
972
981
|
".input {$value :number} {{{$value} yrs.}}": null,
|
|
982
|
+
"{$value} yrs.": null,
|
|
973
983
|
"yrs.": null,
|
|
974
984
|
".input {$value :number} {{{$value} years}}": null,
|
|
985
|
+
"{$value} years": null,
|
|
975
986
|
"years": null,
|
|
976
987
|
"{$value} cent.": null,
|
|
977
988
|
"cent.": null,
|
|
978
989
|
".input {$value :number} {{{$value} centuries}}": null,
|
|
990
|
+
"{$value} centuries": null,
|
|
979
991
|
"centuries": null,
|
|
980
992
|
"{$value} SA": null,
|
|
981
993
|
".input {$value :number} {{{$value} seduction actions}}": null,
|
|
994
|
+
"{$value} seduction actions": null,
|
|
982
995
|
"{$value} rnds": null,
|
|
983
996
|
".input {$value :number} {{{$value} rounds}}": null,
|
|
997
|
+
"{$value} rounds": null,
|
|
984
998
|
"{$value} CR": null,
|
|
985
999
|
"CR": null,
|
|
986
1000
|
".input {$value :number} {{{$value} combat rounds}}": null,
|
|
1001
|
+
"{$value} combat rounds": null,
|
|
987
1002
|
"combat rounds": null,
|
|
988
1003
|
"{$value} AE": null,
|
|
989
1004
|
"{$value} KP": null,
|
|
@@ -996,6 +1011,7 @@ export const Locale = Entity(import.meta.url, {
|
|
|
996
1011
|
", minimum of {$value}": null,
|
|
997
1012
|
" ({$value} perm.)": null,
|
|
998
1013
|
".input {$value :number} {{, {$value} of which are permanent}}": null,
|
|
1014
|
+
", {$value} of which are permanent": null,
|
|
999
1015
|
"half of the activation cost": null,
|
|
1000
1016
|
" and ": null,
|
|
1001
1017
|
" + ": null,
|
|
@@ -1018,8 +1034,10 @@ export const Locale = Entity(import.meta.url, {
|
|
|
1018
1034
|
"Sustained": null,
|
|
1019
1035
|
"(S)": null,
|
|
1020
1036
|
".input {$value :number} {{{$value} yards}}": null,
|
|
1037
|
+
"{$value} yards": null,
|
|
1021
1038
|
"{$value} yd": null,
|
|
1022
1039
|
".input {$value :number} {{{$value} miles}}": null,
|
|
1040
|
+
"{$value} miles": null,
|
|
1023
1041
|
"{$value} mi.": null,
|
|
1024
1042
|
"Sight": null,
|
|
1025
1043
|
"Self": null,
|
|
@@ -1039,7 +1057,7 @@ export const Locale = Entity(import.meta.url, {
|
|
|
1039
1057
|
"Penis": null,
|
|
1040
1058
|
"Vagina": null,
|
|
1041
1059
|
"the SR for {$skill} combined must add up to at least {$minRating}": null,
|
|
1042
|
-
".input {$
|
|
1060
|
+
".input {$minRating :number} {{{$count} on at least SR {$minRating}: {$list}}}": null,
|
|
1043
1061
|
".input {$count :number} .input {$minRating :number} {{{$count} arcane works with the property {$property} at SR {$minRating} or higher}}": null,
|
|
1044
1062
|
".input {$count :number} .input {$minRating :number} {{{$count} liturgical chants and ceremonies with the aspect {$aspect} at SR {$minRating} or higher}}": null,
|
|
1045
1063
|
".input {$count :number} {{{$count} of the following skills}}": null,
|
|
@@ -13,34 +13,34 @@ export declare const Profession: Entity<"Profession", {
|
|
|
13
13
|
}, []>>, true>;
|
|
14
14
|
versions: import("tsondb/schema/def").MemberDecl<ChildEntities<Entity<"ProfessionVersion", {
|
|
15
15
|
profession: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, true>;
|
|
16
|
-
prerequisites: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"ProfessionPrerequisites", IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PlainPrerequisites", Array<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], Enum<"PrerequisitesElement", {
|
|
17
|
-
Single: EnumCase<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>;
|
|
18
|
-
Disjunction: EnumCase<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PrerequisitesDisjunction", ObjectType<{
|
|
19
|
-
list: import("tsondb/schema/def").MemberDecl<Array<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>, true>;
|
|
20
|
-
display_option: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"DisplayOption", {
|
|
21
|
-
Hide: EnumCase<null>;
|
|
22
|
-
ReplaceWith: EnumCase<IncludeIdentifier<[], TypeAlias<"ReplacementDisplayOption", ObjectType<{
|
|
23
|
-
sentence_type: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"SentenceType", {
|
|
24
|
-
Standalone: EnumCase<null>;
|
|
25
|
-
Connected: EnumCase<null>;
|
|
26
|
-
}, []>>, false>;
|
|
27
|
-
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"ReplacementDisplayOptionTranslation", {
|
|
28
|
-
replacement: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
29
|
-
}>, true>;
|
|
30
|
-
}>, []>>>;
|
|
31
|
-
}, []>>, false>;
|
|
32
|
-
}>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>;
|
|
33
|
-
Group: EnumCase<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PrerequisiteGroup", ObjectType<{
|
|
34
|
-
list: import("tsondb/schema/def").MemberDecl<Array<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>, true>;
|
|
35
|
-
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"PrerequisiteGroupTranslation", {
|
|
36
|
-
text: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
37
|
-
}>, true>;
|
|
38
|
-
}>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>;
|
|
39
|
-
}, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>, []>>, false>;
|
|
40
16
|
package: import("tsondb/schema/def").MemberDecl<ChildEntities<Entity<"ProfessionPackage", {
|
|
41
17
|
profession_version: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, true>;
|
|
42
18
|
experience_level: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, false>;
|
|
43
19
|
ap_value: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
20
|
+
prerequisites: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"ProfessionPrerequisites", IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PlainPrerequisites", Array<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], Enum<"PrerequisitesElement", {
|
|
21
|
+
Single: EnumCase<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>;
|
|
22
|
+
Disjunction: EnumCase<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PrerequisitesDisjunction", ObjectType<{
|
|
23
|
+
list: import("tsondb/schema/def").MemberDecl<Array<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>, true>;
|
|
24
|
+
display_option: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"DisplayOption", {
|
|
25
|
+
Hide: EnumCase<null>;
|
|
26
|
+
ReplaceWith: EnumCase<IncludeIdentifier<[], TypeAlias<"ReplacementDisplayOption", ObjectType<{
|
|
27
|
+
sentence_type: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"SentenceType", {
|
|
28
|
+
Standalone: EnumCase<null>;
|
|
29
|
+
Connected: EnumCase<null>;
|
|
30
|
+
}, []>>, false>;
|
|
31
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"ReplacementDisplayOptionTranslation", {
|
|
32
|
+
replacement: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
33
|
+
}>, true>;
|
|
34
|
+
}>, []>>>;
|
|
35
|
+
}, []>>, false>;
|
|
36
|
+
}>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>;
|
|
37
|
+
Group: EnumCase<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PrerequisiteGroup", ObjectType<{
|
|
38
|
+
list: import("tsondb/schema/def").MemberDecl<Array<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>, true>;
|
|
39
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"PrerequisiteGroupTranslation", {
|
|
40
|
+
text: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
41
|
+
}>, true>;
|
|
42
|
+
}>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>;
|
|
43
|
+
}, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>, []>>, false>;
|
|
44
44
|
options: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"ProfessionPackageOptions", ObjectType<{
|
|
45
45
|
skill_specialization: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"SkillSpecializationOptions", {
|
|
46
46
|
Specific: EnumCase<IncludeIdentifier<[], TypeAlias<"SpecificSkillSpecializationOptions", ObjectType<{
|
|
@@ -145,6 +145,9 @@ export declare const Profession: Entity<"Profession", {
|
|
|
145
145
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
146
146
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
147
147
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
148
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
149
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
150
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
148
151
|
}, []>>>, false>;
|
|
149
152
|
}>, []>>>;
|
|
150
153
|
Selection: EnumCase<IncludeIdentifier<[], TypeAlias<"ProfessionSpecialAbilitySelection", ObjectType<{
|
|
@@ -215,6 +218,9 @@ export declare const Profession: Entity<"Profession", {
|
|
|
215
218
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
216
219
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
217
220
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
221
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
222
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
223
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
218
224
|
}, []>>>, false>;
|
|
219
225
|
}>, []>>>, true>;
|
|
220
226
|
}>, []>>>;
|
|
@@ -394,6 +400,9 @@ export declare const Profession: Entity<"Profession", {
|
|
|
394
400
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
395
401
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
396
402
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
403
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
404
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
405
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
397
406
|
}, []>>>, false>;
|
|
398
407
|
}>, []>>>;
|
|
399
408
|
Selection: EnumCase<IncludeIdentifier<[], TypeAlias<"ProfessionSpecialAbilitySelection", ObjectType<{
|
|
@@ -464,6 +473,9 @@ export declare const Profession: Entity<"Profession", {
|
|
|
464
473
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
465
474
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
466
475
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
476
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
477
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
478
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
467
479
|
}, []>>>, false>;
|
|
468
480
|
}>, []>>>, true>;
|
|
469
481
|
}>, []>>>;
|
|
@@ -605,34 +617,34 @@ export declare const MundaneProfessionGroup: Enum<"MundaneProfessionGroup", {
|
|
|
605
617
|
}, []>;
|
|
606
618
|
export declare const ProfessionVersion: Entity<"ProfessionVersion", {
|
|
607
619
|
profession: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, true>;
|
|
608
|
-
prerequisites: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"ProfessionPrerequisites", IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PlainPrerequisites", Array<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], Enum<"PrerequisitesElement", {
|
|
609
|
-
Single: EnumCase<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>;
|
|
610
|
-
Disjunction: EnumCase<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PrerequisitesDisjunction", ObjectType<{
|
|
611
|
-
list: import("tsondb/schema/def").MemberDecl<Array<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>, true>;
|
|
612
|
-
display_option: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"DisplayOption", {
|
|
613
|
-
Hide: EnumCase<null>;
|
|
614
|
-
ReplaceWith: EnumCase<IncludeIdentifier<[], TypeAlias<"ReplacementDisplayOption", ObjectType<{
|
|
615
|
-
sentence_type: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"SentenceType", {
|
|
616
|
-
Standalone: EnumCase<null>;
|
|
617
|
-
Connected: EnumCase<null>;
|
|
618
|
-
}, []>>, false>;
|
|
619
|
-
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"ReplacementDisplayOptionTranslation", {
|
|
620
|
-
replacement: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
621
|
-
}>, true>;
|
|
622
|
-
}>, []>>>;
|
|
623
|
-
}, []>>, false>;
|
|
624
|
-
}>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>;
|
|
625
|
-
Group: EnumCase<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PrerequisiteGroup", ObjectType<{
|
|
626
|
-
list: import("tsondb/schema/def").MemberDecl<Array<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>, true>;
|
|
627
|
-
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"PrerequisiteGroupTranslation", {
|
|
628
|
-
text: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
629
|
-
}>, true>;
|
|
630
|
-
}>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>;
|
|
631
|
-
}, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>, []>>, false>;
|
|
632
620
|
package: import("tsondb/schema/def").MemberDecl<ChildEntities<Entity<"ProfessionPackage", {
|
|
633
621
|
profession_version: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, true>;
|
|
634
622
|
experience_level: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, false>;
|
|
635
623
|
ap_value: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
624
|
+
prerequisites: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"ProfessionPrerequisites", IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PlainPrerequisites", Array<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], Enum<"PrerequisitesElement", {
|
|
625
|
+
Single: EnumCase<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>;
|
|
626
|
+
Disjunction: EnumCase<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PrerequisitesDisjunction", ObjectType<{
|
|
627
|
+
list: import("tsondb/schema/def").MemberDecl<Array<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>, true>;
|
|
628
|
+
display_option: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"DisplayOption", {
|
|
629
|
+
Hide: EnumCase<null>;
|
|
630
|
+
ReplaceWith: EnumCase<IncludeIdentifier<[], TypeAlias<"ReplacementDisplayOption", ObjectType<{
|
|
631
|
+
sentence_type: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"SentenceType", {
|
|
632
|
+
Standalone: EnumCase<null>;
|
|
633
|
+
Connected: EnumCase<null>;
|
|
634
|
+
}, []>>, false>;
|
|
635
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"ReplacementDisplayOptionTranslation", {
|
|
636
|
+
replacement: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
637
|
+
}>, true>;
|
|
638
|
+
}>, []>>>;
|
|
639
|
+
}, []>>, false>;
|
|
640
|
+
}>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>;
|
|
641
|
+
Group: EnumCase<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PrerequisiteGroup", ObjectType<{
|
|
642
|
+
list: import("tsondb/schema/def").MemberDecl<Array<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>, true>;
|
|
643
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"PrerequisiteGroupTranslation", {
|
|
644
|
+
text: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
645
|
+
}>, true>;
|
|
646
|
+
}>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>;
|
|
647
|
+
}, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>, []>>, false>;
|
|
636
648
|
options: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"ProfessionPackageOptions", ObjectType<{
|
|
637
649
|
skill_specialization: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"SkillSpecializationOptions", {
|
|
638
650
|
Specific: EnumCase<IncludeIdentifier<[], TypeAlias<"SpecificSkillSpecializationOptions", ObjectType<{
|
|
@@ -737,6 +749,9 @@ export declare const ProfessionVersion: Entity<"ProfessionVersion", {
|
|
|
737
749
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
738
750
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
739
751
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
752
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
753
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
754
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
740
755
|
}, []>>>, false>;
|
|
741
756
|
}>, []>>>;
|
|
742
757
|
Selection: EnumCase<IncludeIdentifier<[], TypeAlias<"ProfessionSpecialAbilitySelection", ObjectType<{
|
|
@@ -807,6 +822,9 @@ export declare const ProfessionVersion: Entity<"ProfessionVersion", {
|
|
|
807
822
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
808
823
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
809
824
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
825
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
826
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
827
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
810
828
|
}, []>>>, false>;
|
|
811
829
|
}>, []>>>, true>;
|
|
812
830
|
}>, []>>>;
|
|
@@ -986,6 +1004,9 @@ export declare const ProfessionVersion: Entity<"ProfessionVersion", {
|
|
|
986
1004
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
987
1005
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
988
1006
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1007
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1008
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1009
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
989
1010
|
}, []>>>, false>;
|
|
990
1011
|
}>, []>>>;
|
|
991
1012
|
Selection: EnumCase<IncludeIdentifier<[], TypeAlias<"ProfessionSpecialAbilitySelection", ObjectType<{
|
|
@@ -1056,6 +1077,9 @@ export declare const ProfessionVersion: Entity<"ProfessionVersion", {
|
|
|
1056
1077
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1057
1078
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1058
1079
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1080
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1081
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1082
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1059
1083
|
}, []>>>, false>;
|
|
1060
1084
|
}>, []>>>, true>;
|
|
1061
1085
|
}>, []>>>;
|
|
@@ -1193,6 +1217,30 @@ export declare const ProfessionPackage: Entity<"ProfessionPackage", {
|
|
|
1193
1217
|
profession_version: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, true>;
|
|
1194
1218
|
experience_level: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, false>;
|
|
1195
1219
|
ap_value: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
1220
|
+
prerequisites: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"ProfessionPrerequisites", IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PlainPrerequisites", Array<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], Enum<"PrerequisitesElement", {
|
|
1221
|
+
Single: EnumCase<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>;
|
|
1222
|
+
Disjunction: EnumCase<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PrerequisitesDisjunction", ObjectType<{
|
|
1223
|
+
list: import("tsondb/schema/def").MemberDecl<Array<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>, true>;
|
|
1224
|
+
display_option: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"DisplayOption", {
|
|
1225
|
+
Hide: EnumCase<null>;
|
|
1226
|
+
ReplaceWith: EnumCase<IncludeIdentifier<[], TypeAlias<"ReplacementDisplayOption", ObjectType<{
|
|
1227
|
+
sentence_type: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"SentenceType", {
|
|
1228
|
+
Standalone: EnumCase<null>;
|
|
1229
|
+
Connected: EnumCase<null>;
|
|
1230
|
+
}, []>>, false>;
|
|
1231
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"ReplacementDisplayOptionTranslation", {
|
|
1232
|
+
replacement: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
1233
|
+
}>, true>;
|
|
1234
|
+
}>, []>>>;
|
|
1235
|
+
}, []>>, false>;
|
|
1236
|
+
}>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>;
|
|
1237
|
+
Group: EnumCase<IncludeIdentifier<import("tsondb/schema/def").TypeParameter<string, import("tsondb/schema/def").Type>[], TypeAlias<"PrerequisiteGroup", ObjectType<{
|
|
1238
|
+
list: import("tsondb/schema/def").MemberDecl<Array<TypeArgument<import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>>>, true>;
|
|
1239
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"PrerequisiteGroupTranslation", {
|
|
1240
|
+
text: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
1241
|
+
}>, true>;
|
|
1242
|
+
}>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>;
|
|
1243
|
+
}, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>>, [T: import("tsondb/schema/def").TypeParameter<"T", import("tsondb/schema/def").Type>]>>, []>>, false>;
|
|
1196
1244
|
options: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"ProfessionPackageOptions", ObjectType<{
|
|
1197
1245
|
skill_specialization: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"SkillSpecializationOptions", {
|
|
1198
1246
|
Specific: EnumCase<IncludeIdentifier<[], TypeAlias<"SpecificSkillSpecializationOptions", ObjectType<{
|
|
@@ -1297,6 +1345,9 @@ export declare const ProfessionPackage: Entity<"ProfessionPackage", {
|
|
|
1297
1345
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1298
1346
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1299
1347
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1348
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1349
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1350
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1300
1351
|
}, []>>>, false>;
|
|
1301
1352
|
}>, []>>>;
|
|
1302
1353
|
Selection: EnumCase<IncludeIdentifier<[], TypeAlias<"ProfessionSpecialAbilitySelection", ObjectType<{
|
|
@@ -1367,6 +1418,9 @@ export declare const ProfessionPackage: Entity<"ProfessionPackage", {
|
|
|
1367
1418
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1368
1419
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1369
1420
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1421
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1422
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1423
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1370
1424
|
}, []>>>, false>;
|
|
1371
1425
|
}>, []>>>, true>;
|
|
1372
1426
|
}>, []>>>;
|
|
@@ -1546,6 +1600,9 @@ export declare const ProfessionPackage: Entity<"ProfessionPackage", {
|
|
|
1546
1600
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1547
1601
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1548
1602
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1603
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1604
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1605
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1549
1606
|
}, []>>>, false>;
|
|
1550
1607
|
}>, []>>>;
|
|
1551
1608
|
Selection: EnumCase<IncludeIdentifier<[], TypeAlias<"ProfessionSpecialAbilitySelection", ObjectType<{
|
|
@@ -1616,6 +1673,9 @@ export declare const ProfessionPackage: Entity<"ProfessionPackage", {
|
|
|
1616
1673
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1617
1674
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1618
1675
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1676
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1677
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1678
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1619
1679
|
}, []>>>, false>;
|
|
1620
1680
|
}>, []>>>, true>;
|
|
1621
1681
|
}>, []>>>;
|
|
@@ -1806,6 +1866,9 @@ export declare const ProfessionVariant: Entity<"ProfessionVariant", {
|
|
|
1806
1866
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1807
1867
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1808
1868
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1869
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1870
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1871
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1809
1872
|
}, []>>>, false>;
|
|
1810
1873
|
}>, []>>>;
|
|
1811
1874
|
Selection: EnumCase<IncludeIdentifier<[], TypeAlias<"ProfessionSpecialAbilitySelection", ObjectType<{
|
|
@@ -1876,6 +1939,9 @@ export declare const ProfessionVariant: Entity<"ProfessionVariant", {
|
|
|
1876
1939
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1877
1940
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1878
1941
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1942
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1943
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1944
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1879
1945
|
}, []>>>, false>;
|
|
1880
1946
|
}>, []>>>, true>;
|
|
1881
1947
|
}>, []>>>;
|
package/lib/types/Profession.js
CHANGED
|
@@ -72,10 +72,6 @@ export const ProfessionVersion = Entity(import.meta.url, {
|
|
|
72
72
|
comment: "The associated profession.",
|
|
73
73
|
type: ProfessionIdentifier(),
|
|
74
74
|
}),
|
|
75
|
-
prerequisites: Optional({
|
|
76
|
-
comment: "Which prerequisites must be met to buy the stat block? For example, a character might need the advantage Spellcaster or Blessed. Note: the AP cost for a profession package does not include these prerequisites.",
|
|
77
|
-
type: IncludeIdentifier(ProfessionPrerequisites),
|
|
78
|
-
}),
|
|
79
75
|
package: Required({
|
|
80
76
|
comment: "A list of available race variants where one has to be selected. If no variants are to be selected, a single variant with no name has to be provided which will be used as the missing values for the base race.",
|
|
81
77
|
type: ChildEntities(ProfessionPackage),
|
|
@@ -165,6 +161,10 @@ export const ProfessionPackage = Entity(import.meta.url, {
|
|
|
165
161
|
comment: "What does the professional package cost in adventure points?",
|
|
166
162
|
type: Integer({ minimum: 0 }),
|
|
167
163
|
}),
|
|
164
|
+
prerequisites: Optional({
|
|
165
|
+
comment: "Which prerequisites must be met to buy the stat block? For example, a character might need the advantage Spellcaster or Blessed. Note: the AP cost for a profession package does not include these prerequisites.",
|
|
166
|
+
type: IncludeIdentifier(ProfessionPrerequisites),
|
|
167
|
+
}),
|
|
168
168
|
options: Optional({
|
|
169
169
|
comment: "In some areas, the profession package grants a loose set of stats where the player must choose between different options for the profession package.",
|
|
170
170
|
type: IncludeIdentifier(ProfessionPackageOptions),
|
|
@@ -292,6 +292,9 @@ export declare const RequirableSelectOptionIdentifier: Enum<"RequirableSelectOpt
|
|
|
292
292
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
293
293
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
294
294
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
295
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
296
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
297
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
295
298
|
}, []>;
|
|
296
299
|
export declare const CoreRuleDerivableContentIdentifier: Enum<"CoreRuleDerivableContentIdentifier", {
|
|
297
300
|
MagicalTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
@@ -352,6 +352,9 @@ export const RequirableSelectOptionIdentifier = Enum(import.meta.url, {
|
|
|
352
352
|
Spell: EnumCase({ type: SpellIdentifier() }),
|
|
353
353
|
Ritual: EnumCase({ type: RitualIdentifier() }),
|
|
354
354
|
TradeSecret: EnumCase({ type: TradeSecretIdentifier() }),
|
|
355
|
+
ArcaneBardTradition: EnumCase({ type: ArcaneBardTraditionIdentifier() }),
|
|
356
|
+
ArcaneDancerTradition: EnumCase({ type: ArcaneDancerTraditionIdentifier() }),
|
|
357
|
+
Element: EnumCase({ type: ElementIdentifier() }),
|
|
355
358
|
}),
|
|
356
359
|
});
|
|
357
360
|
export const CoreRuleDerivableContentIdentifier = Enum(import.meta.url, {
|
|
@@ -106,7 +106,7 @@ export declare const GeneralPrerequisiteGroup: Enum<"GeneralPrerequisiteGroup",
|
|
|
106
106
|
}>, []>>>;
|
|
107
107
|
}, []>>, false>;
|
|
108
108
|
}>, []>>>;
|
|
109
|
-
Pact: EnumCase<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"
|
|
109
|
+
Pact: EnumCase<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PactPrerequisite", import("tsondb/schema/def").ObjectType<{
|
|
110
110
|
category: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, true>;
|
|
111
111
|
domain: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ArrayType<import("tsondb/schema/def").ReferenceIdentifierType>, false>;
|
|
112
112
|
level: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, false>;
|
|
@@ -260,6 +260,9 @@ export declare const GeneralPrerequisiteGroup: Enum<"GeneralPrerequisiteGroup",
|
|
|
260
260
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
261
261
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
262
262
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
263
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
264
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
265
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
263
266
|
}, []>>>, false>;
|
|
264
267
|
display_option: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"DisplayOption", {
|
|
265
268
|
Hide: EnumCase<null>;
|
|
@@ -552,6 +555,9 @@ export declare const ProfessionPrerequisiteGroup: Enum<"ProfessionPrerequisiteGr
|
|
|
552
555
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
553
556
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
554
557
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
558
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
559
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
560
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
555
561
|
}, []>>>, false>;
|
|
556
562
|
display_option: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"DisplayOption", {
|
|
557
563
|
Hide: EnumCase<null>;
|
|
@@ -666,7 +672,7 @@ export declare const AdvantageDisadvantagePrerequisiteGroup: Enum<"AdvantageDisa
|
|
|
666
672
|
}>, []>>>;
|
|
667
673
|
}, []>>, false>;
|
|
668
674
|
}>, []>>>;
|
|
669
|
-
Pact: EnumCase<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"
|
|
675
|
+
Pact: EnumCase<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PactPrerequisite", import("tsondb/schema/def").ObjectType<{
|
|
670
676
|
category: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, true>;
|
|
671
677
|
domain: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ArrayType<import("tsondb/schema/def").ReferenceIdentifierType>, false>;
|
|
672
678
|
level: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, false>;
|
|
@@ -820,6 +826,9 @@ export declare const AdvantageDisadvantagePrerequisiteGroup: Enum<"AdvantageDisa
|
|
|
820
826
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
821
827
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
822
828
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
829
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
830
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
831
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
823
832
|
}, []>>>, false>;
|
|
824
833
|
display_option: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"DisplayOption", {
|
|
825
834
|
Hide: EnumCase<null>;
|
|
@@ -1259,6 +1268,9 @@ export declare const LanguagePrerequisiteGroup: Enum<"LanguagePrerequisiteGroup"
|
|
|
1259
1268
|
Spell: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1260
1269
|
Ritual: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1261
1270
|
TradeSecret: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1271
|
+
ArcaneBardTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1272
|
+
ArcaneDancerTradition: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1273
|
+
Element: EnumCase<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
1262
1274
|
}, []>>>, false>;
|
|
1263
1275
|
display_option: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"DisplayOption", {
|
|
1264
1276
|
Hide: EnumCase<null>;
|
|
@@ -69,6 +69,9 @@ export declare const ActivatablePrerequisite: TypeAlias<"ActivatablePrerequisite
|
|
|
69
69
|
Spell: import("tsondb/schema/def").EnumCaseDecl<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
70
70
|
Ritual: import("tsondb/schema/def").EnumCaseDecl<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
71
71
|
TradeSecret: import("tsondb/schema/def").EnumCaseDecl<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
72
|
+
ArcaneBardTradition: import("tsondb/schema/def").EnumCaseDecl<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
73
|
+
ArcaneDancerTradition: import("tsondb/schema/def").EnumCaseDecl<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
74
|
+
Element: import("tsondb/schema/def").EnumCaseDecl<import("tsondb/schema/def").ReferenceIdentifierType>;
|
|
72
75
|
}, []>>>, false>;
|
|
73
76
|
display_option: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"DisplayOption", {
|
|
74
77
|
Hide: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Array, IncludeIdentifier, Integer, Object, TypeAlias } from "tsondb/schema/def";
|
|
2
|
-
export declare const PactPrerequisite: TypeAlias<"
|
|
2
|
+
export declare const PactPrerequisite: TypeAlias<"PactPrerequisite", Object<{
|
|
3
3
|
category: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, true>;
|
|
4
4
|
domain: import("tsondb/schema/def").MemberDecl<Array<import("tsondb/schema/def").ReferenceIdentifierType>, false>;
|
|
5
5
|
level: import("tsondb/schema/def").MemberDecl<Integer, false>;
|
|
@@ -2,7 +2,7 @@ import { Array, IncludeIdentifier, Integer, Object, Optional, Required, TypeAlia
|
|
|
2
2
|
import { PactCategoryIdentifier, PactDomainIdentifier } from "../../_Identifier.js";
|
|
3
3
|
import { DisplayOption } from "../DisplayOption.js";
|
|
4
4
|
export const PactPrerequisite = TypeAlias(import.meta.url, {
|
|
5
|
-
name: "
|
|
5
|
+
name: "PactPrerequisite",
|
|
6
6
|
comment: "Requires a specific pact.",
|
|
7
7
|
type: () => Object({
|
|
8
8
|
category: Required({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.1",
|
|
4
4
|
"description": "Definitions and utilities for the flat-file database of Optolith, a character creation tool for the Pen and Paper RPG “The Dark Eye 5”, and its external integrations into other software.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tde",
|