optolith-database-schema 0.16.7 → 0.17.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [0.17.0](https://github.com/elyukai/optolith-database-schema/compare/v0.16.8...v0.17.0) (2024-10-03)
6
+
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * add translations for library entries of spellworks and liturgical chants
11
+
12
+ ### Features
13
+
14
+ * add translations for library entries of spellworks and liturgical chants ([223a469](https://github.com/elyukai/optolith-database-schema/commit/223a469a63b44d0204d762b17905d622d7b6b9a2))
15
+
16
+ ### [0.16.8](https://github.com/elyukai/optolith-database-schema/compare/v0.16.7...v0.16.8) (2024-03-01)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * add slash to protective and warding circle key ([ef91f89](https://github.com/elyukai/optolith-database-schema/commit/ef91f897ad56db97f93a76958fab8dd69121830c))
22
+
5
23
  ### [0.16.7](https://github.com/elyukai/optolith-database-schema/compare/v0.16.6...v0.16.7) (2024-03-01)
6
24
 
7
25
  ### [0.16.6](https://github.com/elyukai/optolith-database-schema/compare/v0.16.5...v0.16.6) (2024-03-01)
@@ -6,6 +6,7 @@ import { DurationUnit } from "./_ActivatableSkillDuration.js";
6
6
  import { FixedRange } from "./_ActivatableSkillRange.js";
7
7
  import { TargetCategory } from "./_ActivatableSkillTargetCategory.js";
8
8
  import { LocaleMap } from "./_LocaleMap.js";
9
+ import { ResponsiveText } from "./_ResponsiveText.js";
9
10
  import { Errata } from "./source/_Erratum.js";
10
11
  import { PublicationRefs } from "./source/_PublicationRef.js";
11
12
  /**
@@ -106,8 +107,7 @@ export type IndefiniteBlessingDuration = {
106
107
  export type IndefiniteDurationTranslation = {
107
108
  /**
108
109
  * A description of the duration.
109
- * @minLength 1
110
110
  */
111
- description: string;
111
+ description: ResponsiveText;
112
112
  };
113
113
  export declare const config: TypeConfig<Blessing, Blessing["id"], "Blessing">;
package/lib/types/UI.d.ts CHANGED
@@ -796,7 +796,7 @@ export type UI = {
796
796
  "Magic Style Special Abilities": NonEmptyString;
797
797
  "Orb Enchantments": NonEmptyString;
798
798
  "Pact Gifts": NonEmptyString;
799
- "Protective Warding Circle Special Abilities": NonEmptyString;
799
+ "Protective/Warding Circle Special Abilities": NonEmptyString;
800
800
  "Ring Enchantments": NonEmptyString;
801
801
  "Sermons": NonEmptyString;
802
802
  "Sex Special Abilities": NonEmptyString;
@@ -872,8 +872,8 @@ export type UI = {
872
872
  "Parry": NonEmptyString;
873
873
  "Close Combat": NonEmptyString;
874
874
  "Ranged Combat": NonEmptyString;
875
- "inlinewiki.special": NonEmptyString;
876
- "inlinewiki.primaryattribute": NonEmptyString;
875
+ "Special": NonEmptyString;
876
+ "Primary Attribute": NonEmptyString;
877
877
  "Cantrips": NonEmptyString;
878
878
  "Rituals": NonEmptyString;
879
879
  "Curses": NonEmptyString;
@@ -889,6 +889,124 @@ export type UI = {
889
889
  "Check Modifier": NonEmptyString;
890
890
  "spells.traditions.general": NonEmptyString;
891
891
  "magicalactions.animistforces.tribes.general": NonEmptyString;
892
+ " (modified by {0})": NonEmptyString;
893
+ " (− {0})": NonEmptyString;
894
+ "{0} or {1}, depending on which value is higher": NonEmptyString;
895
+ "Invocation Difficulty": NonEmptyString;
896
+ "ID": NonEmptyString;
897
+ "Creation Difficulty": NonEmptyString;
898
+ "CD": NonEmptyString;
899
+ "Effect": NonEmptyString;
900
+ "Casting Time": NonEmptyString;
901
+ "Ritual Time": NonEmptyString;
902
+ "Liturgical Time": NonEmptyString;
903
+ "Ceremonial Time": NonEmptyString;
904
+ "AE Cost": NonEmptyString;
905
+ "KP Cost": NonEmptyString;
906
+ "Range": NonEmptyString;
907
+ "Duration": NonEmptyString;
908
+ "Target Category": NonEmptyString;
909
+ "Traditions": NonEmptyString;
910
+ " (you cannot use a modification on this spell’s casting time)": NonEmptyString;
911
+ " (you cannot use a modification on this spell’s cost)": NonEmptyString;
912
+ " (you cannot use a modification on this spell’s range)": NonEmptyString;
913
+ " (you cannot use a modification on this ritual’s ritual time)": NonEmptyString;
914
+ " (you cannot use a modification on this ritual’s cost)": NonEmptyString;
915
+ " (you cannot use a modification on this ritual’s range)": NonEmptyString;
916
+ " (you cannot use a modification on this chant’s liturgical time)": NonEmptyString;
917
+ " (you cannot use a modification on this chant’s cost)": NonEmptyString;
918
+ " (you cannot use a modification on this chant’s range)": NonEmptyString;
919
+ " (you cannot use a modification on this ceremony’s ceremonial time)": NonEmptyString;
920
+ " (you cannot use a modification on this ceremony’s cost)": NonEmptyString;
921
+ " (you cannot use a modification on this ceremony’s range)": NonEmptyString;
922
+ " (cannot modify)": NonEmptyString;
923
+ "{0} act": NonEmptyString;
924
+ "act": NonEmptyString;
925
+ "{0} actions": PluralizationCategories;
926
+ "actions": NonEmptyString;
927
+ "{0} s": NonEmptyString;
928
+ "s": NonEmptyString;
929
+ "{0} seconds": PluralizationCategories;
930
+ "seconds": NonEmptyString;
931
+ "{0} min": NonEmptyString;
932
+ "min": NonEmptyString;
933
+ "{0} minutes": PluralizationCategories;
934
+ "minutes": NonEmptyString;
935
+ "{0} h": NonEmptyString;
936
+ "h": NonEmptyString;
937
+ "{0} hours": PluralizationCategories;
938
+ "hours": NonEmptyString;
939
+ "{0} d": NonEmptyString;
940
+ "d": NonEmptyString;
941
+ "{0} days": PluralizationCategories;
942
+ "days": NonEmptyString;
943
+ "{0} wks.": PluralizationCategories;
944
+ "wks.": NonEmptyString;
945
+ "{0} weeks": PluralizationCategories;
946
+ "weeks": NonEmptyString;
947
+ "{0} mos.": PluralizationCategories;
948
+ "mos.": NonEmptyString;
949
+ "{0} months": PluralizationCategories;
950
+ "months": NonEmptyString;
951
+ "{0} yrs.": PluralizationCategories;
952
+ "yrs.": NonEmptyString;
953
+ "{0} years": PluralizationCategories;
954
+ "years": NonEmptyString;
955
+ "{0} cent.": NonEmptyString;
956
+ "cent.": NonEmptyString;
957
+ "{0} centuries": PluralizationCategories;
958
+ "centuries": NonEmptyString;
959
+ "{0} SA": NonEmptyString;
960
+ "{0} seduction actions": PluralizationCategories;
961
+ "{0} rnds": NonEmptyString;
962
+ "{0} rounds": PluralizationCategories;
963
+ "{0} CR": NonEmptyString;
964
+ "CR": NonEmptyString;
965
+ "{0} combat rounds": PluralizationCategories;
966
+ "combat rounds": NonEmptyString;
967
+ "{0} AE": NonEmptyString;
968
+ "{0} KP": NonEmptyString;
969
+ "min. ": NonEmptyString;
970
+ "at least ": NonEmptyString;
971
+ "/{0}": NonEmptyString;
972
+ " per {0}": NonEmptyString;
973
+ ", minimum of {0}": NonEmptyString;
974
+ " ({0} perm.)": NonEmptyString;
975
+ ", {0} of which are permanent": PluralizationCategories;
976
+ "half of the activation cost": NonEmptyString;
977
+ " and ": NonEmptyString;
978
+ " + ": NonEmptyString;
979
+ " or ": NonEmptyString;
980
+ " / ": NonEmptyString;
981
+ " for ": NonEmptyString;
982
+ " (no more than {0})": NonEmptyString;
983
+ " (max. {0})": NonEmptyString;
984
+ "Immediate": NonEmptyString;
985
+ "Permanent": NonEmptyString;
986
+ "no more than ": NonEmptyString;
987
+ "max. ": NonEmptyString;
988
+ "Quality Levels": NonEmptyString;
989
+ "QL": NonEmptyString;
990
+ "QL {0}": NonEmptyString;
991
+ "Skill Points": NonEmptyString;
992
+ "SP": NonEmptyString;
993
+ "Sustained": NonEmptyString;
994
+ "(S)": NonEmptyString;
995
+ "{0} yards": PluralizationCategories;
996
+ "{0} yd": NonEmptyString;
997
+ "{0} miles": PluralizationCategories;
998
+ "{0} mi.": NonEmptyString;
999
+ "Sight": NonEmptyString;
1000
+ "Self": NonEmptyString;
1001
+ "Global": NonEmptyString;
1002
+ "Touch": NonEmptyString;
1003
+ "Radius": NonEmptyString;
1004
+ " (casting)": NonEmptyString;
1005
+ "Zone": NonEmptyString;
1006
+ "Liturgical Chants and Ceremonies": NonEmptyString;
1007
+ "General": NonEmptyString;
1008
+ "Note": NonEmptyString;
1009
+ "all": NonEmptyString;
892
1010
  "inlinewiki.castingtime": NonEmptyString;
893
1011
  "inlinewiki.ritualtime": NonEmptyString;
894
1012
  "inlinewiki.aecost": NonEmptyString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "optolith-database-schema",
3
- "version": "0.16.7",
3
+ "version": "0.17.0",
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",
@@ -253,8 +253,7 @@
253
253
  "properties": {
254
254
  "description": {
255
255
  "description": "A description of the duration.",
256
- "type": "string",
257
- "minLength": 1
256
+ "$ref": "./_ResponsiveText.schema.json#/$defs/ResponsiveText"
258
257
  }
259
258
  },
260
259
  "required": [
@@ -1949,7 +1949,7 @@
1949
1949
  "Pact Gifts": {
1950
1950
  "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
1951
1951
  },
1952
- "Protective Warding Circle Special Abilities": {
1952
+ "Protective/Warding Circle Special Abilities": {
1953
1953
  "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
1954
1954
  },
1955
1955
  "Ring Enchantments": {
@@ -2158,10 +2158,10 @@
2158
2158
  "Ranged Combat": {
2159
2159
  "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2160
2160
  },
2161
- "inlinewiki.special": {
2161
+ "Special": {
2162
2162
  "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2163
2163
  },
2164
- "inlinewiki.primaryattribute": {
2164
+ "Primary Attribute": {
2165
2165
  "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2166
2166
  },
2167
2167
  "Cantrips": {
@@ -2209,6 +2209,360 @@
2209
2209
  "magicalactions.animistforces.tribes.general": {
2210
2210
  "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2211
2211
  },
2212
+ " (modified by {0})": {
2213
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2214
+ },
2215
+ " (− {0})": {
2216
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2217
+ },
2218
+ "{0} or {1}, depending on which value is higher": {
2219
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2220
+ },
2221
+ "Invocation Difficulty": {
2222
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2223
+ },
2224
+ "ID": {
2225
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2226
+ },
2227
+ "Creation Difficulty": {
2228
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2229
+ },
2230
+ "CD": {
2231
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2232
+ },
2233
+ "Effect": {
2234
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2235
+ },
2236
+ "Casting Time": {
2237
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2238
+ },
2239
+ "Ritual Time": {
2240
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2241
+ },
2242
+ "Liturgical Time": {
2243
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2244
+ },
2245
+ "Ceremonial Time": {
2246
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2247
+ },
2248
+ "AE Cost": {
2249
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2250
+ },
2251
+ "KP Cost": {
2252
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2253
+ },
2254
+ "Range": {
2255
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2256
+ },
2257
+ "Duration": {
2258
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2259
+ },
2260
+ "Target Category": {
2261
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2262
+ },
2263
+ "Traditions": {
2264
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2265
+ },
2266
+ " (you cannot use a modification on this spell’s casting time)": {
2267
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2268
+ },
2269
+ " (you cannot use a modification on this spell’s cost)": {
2270
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2271
+ },
2272
+ " (you cannot use a modification on this spell’s range)": {
2273
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2274
+ },
2275
+ " (you cannot use a modification on this ritual’s ritual time)": {
2276
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2277
+ },
2278
+ " (you cannot use a modification on this ritual’s cost)": {
2279
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2280
+ },
2281
+ " (you cannot use a modification on this ritual’s range)": {
2282
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2283
+ },
2284
+ " (you cannot use a modification on this chant’s liturgical time)": {
2285
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2286
+ },
2287
+ " (you cannot use a modification on this chant’s cost)": {
2288
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2289
+ },
2290
+ " (you cannot use a modification on this chant’s range)": {
2291
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2292
+ },
2293
+ " (you cannot use a modification on this ceremony’s ceremonial time)": {
2294
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2295
+ },
2296
+ " (you cannot use a modification on this ceremony’s cost)": {
2297
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2298
+ },
2299
+ " (you cannot use a modification on this ceremony’s range)": {
2300
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2301
+ },
2302
+ " (cannot modify)": {
2303
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2304
+ },
2305
+ "{0} act": {
2306
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2307
+ },
2308
+ "act": {
2309
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2310
+ },
2311
+ "{0} actions": {
2312
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2313
+ },
2314
+ "actions": {
2315
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2316
+ },
2317
+ "{0} s": {
2318
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2319
+ },
2320
+ "s": {
2321
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2322
+ },
2323
+ "{0} seconds": {
2324
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2325
+ },
2326
+ "seconds": {
2327
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2328
+ },
2329
+ "{0} min": {
2330
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2331
+ },
2332
+ "min": {
2333
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2334
+ },
2335
+ "{0} minutes": {
2336
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2337
+ },
2338
+ "minutes": {
2339
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2340
+ },
2341
+ "{0} h": {
2342
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2343
+ },
2344
+ "h": {
2345
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2346
+ },
2347
+ "{0} hours": {
2348
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2349
+ },
2350
+ "hours": {
2351
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2352
+ },
2353
+ "{0} d": {
2354
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2355
+ },
2356
+ "d": {
2357
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2358
+ },
2359
+ "{0} days": {
2360
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2361
+ },
2362
+ "days": {
2363
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2364
+ },
2365
+ "{0} wks.": {
2366
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2367
+ },
2368
+ "wks.": {
2369
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2370
+ },
2371
+ "{0} weeks": {
2372
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2373
+ },
2374
+ "weeks": {
2375
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2376
+ },
2377
+ "{0} mos.": {
2378
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2379
+ },
2380
+ "mos.": {
2381
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2382
+ },
2383
+ "{0} months": {
2384
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2385
+ },
2386
+ "months": {
2387
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2388
+ },
2389
+ "{0} yrs.": {
2390
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2391
+ },
2392
+ "yrs.": {
2393
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2394
+ },
2395
+ "{0} years": {
2396
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2397
+ },
2398
+ "years": {
2399
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2400
+ },
2401
+ "{0} cent.": {
2402
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2403
+ },
2404
+ "cent.": {
2405
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2406
+ },
2407
+ "{0} centuries": {
2408
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2409
+ },
2410
+ "centuries": {
2411
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2412
+ },
2413
+ "{0} SA": {
2414
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2415
+ },
2416
+ "{0} seduction actions": {
2417
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2418
+ },
2419
+ "{0} rnds": {
2420
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2421
+ },
2422
+ "{0} rounds": {
2423
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2424
+ },
2425
+ "{0} CR": {
2426
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2427
+ },
2428
+ "CR": {
2429
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2430
+ },
2431
+ "{0} combat rounds": {
2432
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2433
+ },
2434
+ "combat rounds": {
2435
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2436
+ },
2437
+ "{0} AE": {
2438
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2439
+ },
2440
+ "{0} KP": {
2441
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2442
+ },
2443
+ "min. ": {
2444
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2445
+ },
2446
+ "at least ": {
2447
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2448
+ },
2449
+ "/{0}": {
2450
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2451
+ },
2452
+ " per {0}": {
2453
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2454
+ },
2455
+ ", minimum of {0}": {
2456
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2457
+ },
2458
+ " ({0} perm.)": {
2459
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2460
+ },
2461
+ ", {0} of which are permanent": {
2462
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2463
+ },
2464
+ "half of the activation cost": {
2465
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2466
+ },
2467
+ " and ": {
2468
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2469
+ },
2470
+ " + ": {
2471
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2472
+ },
2473
+ " or ": {
2474
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2475
+ },
2476
+ " / ": {
2477
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2478
+ },
2479
+ " for ": {
2480
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2481
+ },
2482
+ " (no more than {0})": {
2483
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2484
+ },
2485
+ " (max. {0})": {
2486
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2487
+ },
2488
+ "Immediate": {
2489
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2490
+ },
2491
+ "Permanent": {
2492
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2493
+ },
2494
+ "no more than ": {
2495
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2496
+ },
2497
+ "max. ": {
2498
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2499
+ },
2500
+ "Quality Levels": {
2501
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2502
+ },
2503
+ "QL": {
2504
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2505
+ },
2506
+ "QL {0}": {
2507
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2508
+ },
2509
+ "Skill Points": {
2510
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2511
+ },
2512
+ "SP": {
2513
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2514
+ },
2515
+ "Sustained": {
2516
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2517
+ },
2518
+ "(S)": {
2519
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2520
+ },
2521
+ "{0} yards": {
2522
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2523
+ },
2524
+ "{0} yd": {
2525
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2526
+ },
2527
+ "{0} miles": {
2528
+ "$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
2529
+ },
2530
+ "{0} mi.": {
2531
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2532
+ },
2533
+ "Sight": {
2534
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2535
+ },
2536
+ "Self": {
2537
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2538
+ },
2539
+ "Global": {
2540
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2541
+ },
2542
+ "Touch": {
2543
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2544
+ },
2545
+ "Radius": {
2546
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2547
+ },
2548
+ " (casting)": {
2549
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2550
+ },
2551
+ "Zone": {
2552
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2553
+ },
2554
+ "Liturgical Chants and Ceremonies": {
2555
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2556
+ },
2557
+ "General": {
2558
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2559
+ },
2560
+ "Note": {
2561
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2562
+ },
2563
+ "all": {
2564
+ "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2565
+ },
2212
2566
  "inlinewiki.castingtime": {
2213
2567
  "$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
2214
2568
  },
@@ -3402,7 +3756,7 @@
3402
3756
  "Magic Style Special Abilities",
3403
3757
  "Orb Enchantments",
3404
3758
  "Pact Gifts",
3405
- "Protective Warding Circle Special Abilities",
3759
+ "Protective/Warding Circle Special Abilities",
3406
3760
  "Ring Enchantments",
3407
3761
  "Sermons",
3408
3762
  "Sex Special Abilities",
@@ -3471,8 +3825,8 @@
3471
3825
  "Parry",
3472
3826
  "Close Combat",
3473
3827
  "Ranged Combat",
3474
- "inlinewiki.special",
3475
- "inlinewiki.primaryattribute",
3828
+ "Special",
3829
+ "Primary Attribute",
3476
3830
  "Cantrips",
3477
3831
  "Rituals",
3478
3832
  "Curses",
@@ -3488,6 +3842,124 @@
3488
3842
  "Check Modifier",
3489
3843
  "spells.traditions.general",
3490
3844
  "magicalactions.animistforces.tribes.general",
3845
+ " (modified by {0})",
3846
+ " (− {0})",
3847
+ "{0} or {1}, depending on which value is higher",
3848
+ "Invocation Difficulty",
3849
+ "ID",
3850
+ "Creation Difficulty",
3851
+ "CD",
3852
+ "Effect",
3853
+ "Casting Time",
3854
+ "Ritual Time",
3855
+ "Liturgical Time",
3856
+ "Ceremonial Time",
3857
+ "AE Cost",
3858
+ "KP Cost",
3859
+ "Range",
3860
+ "Duration",
3861
+ "Target Category",
3862
+ "Traditions",
3863
+ " (you cannot use a modification on this spell’s casting time)",
3864
+ " (you cannot use a modification on this spell’s cost)",
3865
+ " (you cannot use a modification on this spell’s range)",
3866
+ " (you cannot use a modification on this ritual’s ritual time)",
3867
+ " (you cannot use a modification on this ritual’s cost)",
3868
+ " (you cannot use a modification on this ritual’s range)",
3869
+ " (you cannot use a modification on this chant’s liturgical time)",
3870
+ " (you cannot use a modification on this chant’s cost)",
3871
+ " (you cannot use a modification on this chant’s range)",
3872
+ " (you cannot use a modification on this ceremony’s ceremonial time)",
3873
+ " (you cannot use a modification on this ceremony’s cost)",
3874
+ " (you cannot use a modification on this ceremony’s range)",
3875
+ " (cannot modify)",
3876
+ "{0} act",
3877
+ "act",
3878
+ "{0} actions",
3879
+ "actions",
3880
+ "{0} s",
3881
+ "s",
3882
+ "{0} seconds",
3883
+ "seconds",
3884
+ "{0} min",
3885
+ "min",
3886
+ "{0} minutes",
3887
+ "minutes",
3888
+ "{0} h",
3889
+ "h",
3890
+ "{0} hours",
3891
+ "hours",
3892
+ "{0} d",
3893
+ "d",
3894
+ "{0} days",
3895
+ "days",
3896
+ "{0} wks.",
3897
+ "wks.",
3898
+ "{0} weeks",
3899
+ "weeks",
3900
+ "{0} mos.",
3901
+ "mos.",
3902
+ "{0} months",
3903
+ "months",
3904
+ "{0} yrs.",
3905
+ "yrs.",
3906
+ "{0} years",
3907
+ "years",
3908
+ "{0} cent.",
3909
+ "cent.",
3910
+ "{0} centuries",
3911
+ "centuries",
3912
+ "{0} SA",
3913
+ "{0} seduction actions",
3914
+ "{0} rnds",
3915
+ "{0} rounds",
3916
+ "{0} CR",
3917
+ "CR",
3918
+ "{0} combat rounds",
3919
+ "combat rounds",
3920
+ "{0} AE",
3921
+ "{0} KP",
3922
+ "min. ",
3923
+ "at least ",
3924
+ "/{0}",
3925
+ " per {0}",
3926
+ ", minimum of {0}",
3927
+ " ({0} perm.)",
3928
+ ", {0} of which are permanent",
3929
+ "half of the activation cost",
3930
+ " and ",
3931
+ " + ",
3932
+ " or ",
3933
+ " / ",
3934
+ " for ",
3935
+ " (no more than {0})",
3936
+ " (max. {0})",
3937
+ "Immediate",
3938
+ "Permanent",
3939
+ "no more than ",
3940
+ "max. ",
3941
+ "Quality Levels",
3942
+ "QL",
3943
+ "QL {0}",
3944
+ "Skill Points",
3945
+ "SP",
3946
+ "Sustained",
3947
+ "(S)",
3948
+ "{0} yards",
3949
+ "{0} yd",
3950
+ "{0} miles",
3951
+ "{0} mi.",
3952
+ "Sight",
3953
+ "Self",
3954
+ "Global",
3955
+ "Touch",
3956
+ "Radius",
3957
+ " (casting)",
3958
+ "Zone",
3959
+ "Liturgical Chants and Ceremonies",
3960
+ "General",
3961
+ "Note",
3962
+ "all",
3491
3963
  "inlinewiki.castingtime",
3492
3964
  "inlinewiki.ritualtime",
3493
3965
  "inlinewiki.aecost",