point-click-lib 0.0.6 → 0.0.8
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/dist/point-click-lib.cjs +20 -1
- package/dist/point-click-lib.d.ts +289 -273
- package/dist/point-click-lib.iife.js +20 -1
- package/dist/point-click-lib.js +6683 -2163
- package/dist/point-click-lib.umd.cjs +20 -1
- package/package.json +3 -1
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { default as default_2 } from 'zod';
|
|
2
|
+
import { XY } from 'typed-geometry';
|
|
1
3
|
import { z } from 'zod';
|
|
2
4
|
|
|
3
5
|
export declare type ActorData = z.infer<typeof ActorDataSchema>;
|
|
@@ -391,10 +393,14 @@ export declare type BoardProgression = z.infer<typeof BoardProgressionSchema>;
|
|
|
391
393
|
|
|
392
394
|
export declare const BoardProgressionSchema: z.ZodEnum<["sound", "buttons"]>;
|
|
393
395
|
|
|
396
|
+
export declare type CellMatrix = default_2.infer<typeof cellMatrixSchema>;
|
|
397
|
+
|
|
398
|
+
export declare const cellMatrixSchema: default_2.ZodArray<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodLiteral<0>, default_2.ZodLiteral<1>]>, "many">, "many">;
|
|
399
|
+
|
|
394
400
|
export declare const changeHistory: VersionChange[];
|
|
395
401
|
|
|
396
402
|
export declare const ChangePlayerCharacterConsequenceSchema: z.ZodObject<{
|
|
397
|
-
type: z.ZodLiteral<"
|
|
403
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
398
404
|
actorId: z.ZodString;
|
|
399
405
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
400
406
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -404,13 +410,13 @@ export declare const ChangePlayerCharacterConsequenceSchema: z.ZodObject<{
|
|
|
404
410
|
text: string[];
|
|
405
411
|
}>>;
|
|
406
412
|
}, "strip", z.ZodTypeAny, {
|
|
407
|
-
type: "
|
|
413
|
+
type: "changePlayerCharacter";
|
|
408
414
|
actorId: string;
|
|
409
415
|
narrative?: {
|
|
410
416
|
text: string[];
|
|
411
417
|
} | undefined;
|
|
412
418
|
}, {
|
|
413
|
-
type: "
|
|
419
|
+
type: "changePlayerCharacter";
|
|
414
420
|
actorId: string;
|
|
415
421
|
narrative?: {
|
|
416
422
|
text: string[];
|
|
@@ -1944,8 +1950,8 @@ export declare const consequenceMap: {
|
|
|
1944
1950
|
text: string[];
|
|
1945
1951
|
} | undefined;
|
|
1946
1952
|
}>;
|
|
1947
|
-
readonly
|
|
1948
|
-
type: z.ZodLiteral<"
|
|
1953
|
+
readonly changePlayerCharacter: z.ZodObject<{
|
|
1954
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
1949
1955
|
actorId: z.ZodString;
|
|
1950
1956
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
1951
1957
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1955,13 +1961,13 @@ export declare const consequenceMap: {
|
|
|
1955
1961
|
text: string[];
|
|
1956
1962
|
}>>;
|
|
1957
1963
|
}, "strip", z.ZodTypeAny, {
|
|
1958
|
-
type: "
|
|
1964
|
+
type: "changePlayerCharacter";
|
|
1959
1965
|
actorId: string;
|
|
1960
1966
|
narrative?: {
|
|
1961
1967
|
text: string[];
|
|
1962
1968
|
} | undefined;
|
|
1963
1969
|
}, {
|
|
1964
|
-
type: "
|
|
1970
|
+
type: "changePlayerCharacter";
|
|
1965
1971
|
actorId: string;
|
|
1966
1972
|
narrative?: {
|
|
1967
1973
|
text: string[];
|
|
@@ -2700,7 +2706,7 @@ export declare const ConsequenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2700
2706
|
text: string[];
|
|
2701
2707
|
} | undefined;
|
|
2702
2708
|
}>, z.ZodObject<{
|
|
2703
|
-
type: z.ZodLiteral<"
|
|
2709
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
2704
2710
|
actorId: z.ZodString;
|
|
2705
2711
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
2706
2712
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -2710,13 +2716,13 @@ export declare const ConsequenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2710
2716
|
text: string[];
|
|
2711
2717
|
}>>;
|
|
2712
2718
|
}, "strip", z.ZodTypeAny, {
|
|
2713
|
-
type: "
|
|
2719
|
+
type: "changePlayerCharacter";
|
|
2714
2720
|
actorId: string;
|
|
2715
2721
|
narrative?: {
|
|
2716
2722
|
text: string[];
|
|
2717
2723
|
} | undefined;
|
|
2718
2724
|
}, {
|
|
2719
|
-
type: "
|
|
2725
|
+
type: "changePlayerCharacter";
|
|
2720
2726
|
actorId: string;
|
|
2721
2727
|
narrative?: {
|
|
2722
2728
|
text: string[];
|
|
@@ -3454,7 +3460,7 @@ declare const ConsequenceSchemaWithDeprecated: z.ZodUnion<[z.ZodObject<{
|
|
|
3454
3460
|
text: string[];
|
|
3455
3461
|
} | undefined;
|
|
3456
3462
|
}>, z.ZodObject<{
|
|
3457
|
-
type: z.ZodLiteral<"
|
|
3463
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
3458
3464
|
actorId: z.ZodString;
|
|
3459
3465
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
3460
3466
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3464,13 +3470,13 @@ declare const ConsequenceSchemaWithDeprecated: z.ZodUnion<[z.ZodObject<{
|
|
|
3464
3470
|
text: string[];
|
|
3465
3471
|
}>>;
|
|
3466
3472
|
}, "strip", z.ZodTypeAny, {
|
|
3467
|
-
type: "
|
|
3473
|
+
type: "changePlayerCharacter";
|
|
3468
3474
|
actorId: string;
|
|
3469
3475
|
narrative?: {
|
|
3470
3476
|
text: string[];
|
|
3471
3477
|
} | undefined;
|
|
3472
3478
|
}, {
|
|
3473
|
-
type: "
|
|
3479
|
+
type: "changePlayerCharacter";
|
|
3474
3480
|
actorId: string;
|
|
3475
3481
|
narrative?: {
|
|
3476
3482
|
text: string[];
|
|
@@ -3501,7 +3507,7 @@ declare const ConsequenceSchemaWithDeprecated: z.ZodUnion<[z.ZodObject<{
|
|
|
3501
3507
|
|
|
3502
3508
|
export declare type ConsequenceType = z.infer<typeof ConsequenceTypeEnum>;
|
|
3503
3509
|
|
|
3504
|
-
declare const ConsequenceTypeEnum: z.ZodEnum<["conversation", "sequence", "changeStatus", "backgroundMusic", "ambientNoise", "removeActor", "inventory", "changeRoom", "order", "teleportActor", "toggleZone", "soundEffect", "flag", "conversationChoice", "storyBoardConsequence", "
|
|
3510
|
+
declare const ConsequenceTypeEnum: z.ZodEnum<["conversation", "sequence", "changeStatus", "backgroundMusic", "ambientNoise", "removeActor", "inventory", "changeRoom", "order", "teleportActor", "toggleZone", "soundEffect", "flag", "conversationChoice", "storyBoardConsequence", "changePlayerCharacter"]>;
|
|
3505
3511
|
|
|
3506
3512
|
export declare const consequenceTypes: ConsequenceType[];
|
|
3507
3513
|
|
|
@@ -4118,7 +4124,7 @@ export declare const ConversationBranchSchema: z.ZodObject<{
|
|
|
4118
4124
|
text: string[];
|
|
4119
4125
|
} | undefined;
|
|
4120
4126
|
}>, z.ZodObject<{
|
|
4121
|
-
type: z.ZodLiteral<"
|
|
4127
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
4122
4128
|
actorId: z.ZodString;
|
|
4123
4129
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
4124
4130
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -4128,13 +4134,13 @@ export declare const ConversationBranchSchema: z.ZodObject<{
|
|
|
4128
4134
|
text: string[];
|
|
4129
4135
|
}>>;
|
|
4130
4136
|
}, "strip", z.ZodTypeAny, {
|
|
4131
|
-
type: "
|
|
4137
|
+
type: "changePlayerCharacter";
|
|
4132
4138
|
actorId: string;
|
|
4133
4139
|
narrative?: {
|
|
4134
4140
|
text: string[];
|
|
4135
4141
|
} | undefined;
|
|
4136
4142
|
}, {
|
|
4137
|
-
type: "
|
|
4143
|
+
type: "changePlayerCharacter";
|
|
4138
4144
|
actorId: string;
|
|
4139
4145
|
narrative?: {
|
|
4140
4146
|
text: string[];
|
|
@@ -4313,7 +4319,7 @@ export declare const ConversationBranchSchema: z.ZodObject<{
|
|
|
4313
4319
|
text: string[];
|
|
4314
4320
|
} | undefined;
|
|
4315
4321
|
} | {
|
|
4316
|
-
type: "
|
|
4322
|
+
type: "changePlayerCharacter";
|
|
4317
4323
|
actorId: string;
|
|
4318
4324
|
narrative?: {
|
|
4319
4325
|
text: string[];
|
|
@@ -4484,7 +4490,7 @@ export declare const ConversationBranchSchema: z.ZodObject<{
|
|
|
4484
4490
|
text: string[];
|
|
4485
4491
|
} | undefined;
|
|
4486
4492
|
} | {
|
|
4487
|
-
type: "
|
|
4493
|
+
type: "changePlayerCharacter";
|
|
4488
4494
|
actorId: string;
|
|
4489
4495
|
narrative?: {
|
|
4490
4496
|
text: string[];
|
|
@@ -4658,7 +4664,7 @@ export declare const ConversationBranchSchema: z.ZodObject<{
|
|
|
4658
4664
|
text: string[];
|
|
4659
4665
|
} | undefined;
|
|
4660
4666
|
} | {
|
|
4661
|
-
type: "
|
|
4667
|
+
type: "changePlayerCharacter";
|
|
4662
4668
|
actorId: string;
|
|
4663
4669
|
narrative?: {
|
|
4664
4670
|
text: string[];
|
|
@@ -4833,7 +4839,7 @@ export declare const ConversationBranchSchema: z.ZodObject<{
|
|
|
4833
4839
|
text: string[];
|
|
4834
4840
|
} | undefined;
|
|
4835
4841
|
} | {
|
|
4836
|
-
type: "
|
|
4842
|
+
type: "changePlayerCharacter";
|
|
4837
4843
|
actorId: string;
|
|
4838
4844
|
narrative?: {
|
|
4839
4845
|
text: string[];
|
|
@@ -5027,7 +5033,7 @@ export declare const ConversationBranchSchema: z.ZodObject<{
|
|
|
5027
5033
|
text: string[];
|
|
5028
5034
|
} | undefined;
|
|
5029
5035
|
} | {
|
|
5030
|
-
type: "
|
|
5036
|
+
type: "changePlayerCharacter";
|
|
5031
5037
|
actorId: string;
|
|
5032
5038
|
narrative?: {
|
|
5033
5039
|
text: string[];
|
|
@@ -5221,7 +5227,7 @@ export declare const ConversationBranchSchema: z.ZodObject<{
|
|
|
5221
5227
|
text: string[];
|
|
5222
5228
|
} | undefined;
|
|
5223
5229
|
} | {
|
|
5224
|
-
type: "
|
|
5230
|
+
type: "changePlayerCharacter";
|
|
5225
5231
|
actorId: string;
|
|
5226
5232
|
narrative?: {
|
|
5227
5233
|
text: string[];
|
|
@@ -5417,7 +5423,7 @@ export declare const ConversationBranchSchema: z.ZodObject<{
|
|
|
5417
5423
|
text: string[];
|
|
5418
5424
|
} | undefined;
|
|
5419
5425
|
} | {
|
|
5420
|
-
type: "
|
|
5426
|
+
type: "changePlayerCharacter";
|
|
5421
5427
|
actorId: string;
|
|
5422
5428
|
narrative?: {
|
|
5423
5429
|
text: string[];
|
|
@@ -5613,7 +5619,7 @@ export declare const ConversationBranchSchema: z.ZodObject<{
|
|
|
5613
5619
|
text: string[];
|
|
5614
5620
|
} | undefined;
|
|
5615
5621
|
} | {
|
|
5616
|
-
type: "
|
|
5622
|
+
type: "changePlayerCharacter";
|
|
5617
5623
|
actorId: string;
|
|
5618
5624
|
narrative?: {
|
|
5619
5625
|
text: string[];
|
|
@@ -6266,7 +6272,7 @@ export declare const ConversationChoiceSchema: z.ZodObject<{
|
|
|
6266
6272
|
text: string[];
|
|
6267
6273
|
} | undefined;
|
|
6268
6274
|
}>, z.ZodObject<{
|
|
6269
|
-
type: z.ZodLiteral<"
|
|
6275
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
6270
6276
|
actorId: z.ZodString;
|
|
6271
6277
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
6272
6278
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -6276,13 +6282,13 @@ export declare const ConversationChoiceSchema: z.ZodObject<{
|
|
|
6276
6282
|
text: string[];
|
|
6277
6283
|
}>>;
|
|
6278
6284
|
}, "strip", z.ZodTypeAny, {
|
|
6279
|
-
type: "
|
|
6285
|
+
type: "changePlayerCharacter";
|
|
6280
6286
|
actorId: string;
|
|
6281
6287
|
narrative?: {
|
|
6282
6288
|
text: string[];
|
|
6283
6289
|
} | undefined;
|
|
6284
6290
|
}, {
|
|
6285
|
-
type: "
|
|
6291
|
+
type: "changePlayerCharacter";
|
|
6286
6292
|
actorId: string;
|
|
6287
6293
|
narrative?: {
|
|
6288
6294
|
text: string[];
|
|
@@ -6461,7 +6467,7 @@ export declare const ConversationChoiceSchema: z.ZodObject<{
|
|
|
6461
6467
|
text: string[];
|
|
6462
6468
|
} | undefined;
|
|
6463
6469
|
} | {
|
|
6464
|
-
type: "
|
|
6470
|
+
type: "changePlayerCharacter";
|
|
6465
6471
|
actorId: string;
|
|
6466
6472
|
narrative?: {
|
|
6467
6473
|
text: string[];
|
|
@@ -6632,7 +6638,7 @@ export declare const ConversationChoiceSchema: z.ZodObject<{
|
|
|
6632
6638
|
text: string[];
|
|
6633
6639
|
} | undefined;
|
|
6634
6640
|
} | {
|
|
6635
|
-
type: "
|
|
6641
|
+
type: "changePlayerCharacter";
|
|
6636
6642
|
actorId: string;
|
|
6637
6643
|
narrative?: {
|
|
6638
6644
|
text: string[];
|
|
@@ -6806,7 +6812,7 @@ export declare const ConversationChoiceSchema: z.ZodObject<{
|
|
|
6806
6812
|
text: string[];
|
|
6807
6813
|
} | undefined;
|
|
6808
6814
|
} | {
|
|
6809
|
-
type: "
|
|
6815
|
+
type: "changePlayerCharacter";
|
|
6810
6816
|
actorId: string;
|
|
6811
6817
|
narrative?: {
|
|
6812
6818
|
text: string[];
|
|
@@ -6981,7 +6987,7 @@ export declare const ConversationChoiceSchema: z.ZodObject<{
|
|
|
6981
6987
|
text: string[];
|
|
6982
6988
|
} | undefined;
|
|
6983
6989
|
} | {
|
|
6984
|
-
type: "
|
|
6990
|
+
type: "changePlayerCharacter";
|
|
6985
6991
|
actorId: string;
|
|
6986
6992
|
narrative?: {
|
|
6987
6993
|
text: string[];
|
|
@@ -7175,7 +7181,7 @@ export declare const ConversationChoiceSchema: z.ZodObject<{
|
|
|
7175
7181
|
text: string[];
|
|
7176
7182
|
} | undefined;
|
|
7177
7183
|
} | {
|
|
7178
|
-
type: "
|
|
7184
|
+
type: "changePlayerCharacter";
|
|
7179
7185
|
actorId: string;
|
|
7180
7186
|
narrative?: {
|
|
7181
7187
|
text: string[];
|
|
@@ -7369,7 +7375,7 @@ export declare const ConversationChoiceSchema: z.ZodObject<{
|
|
|
7369
7375
|
text: string[];
|
|
7370
7376
|
} | undefined;
|
|
7371
7377
|
} | {
|
|
7372
|
-
type: "
|
|
7378
|
+
type: "changePlayerCharacter";
|
|
7373
7379
|
actorId: string;
|
|
7374
7380
|
narrative?: {
|
|
7375
7381
|
text: string[];
|
|
@@ -8016,7 +8022,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
8016
8022
|
text: string[];
|
|
8017
8023
|
} | undefined;
|
|
8018
8024
|
}>, z.ZodObject<{
|
|
8019
|
-
type: z.ZodLiteral<"
|
|
8025
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
8020
8026
|
actorId: z.ZodString;
|
|
8021
8027
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
8022
8028
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -8026,13 +8032,13 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
8026
8032
|
text: string[];
|
|
8027
8033
|
}>>;
|
|
8028
8034
|
}, "strip", z.ZodTypeAny, {
|
|
8029
|
-
type: "
|
|
8035
|
+
type: "changePlayerCharacter";
|
|
8030
8036
|
actorId: string;
|
|
8031
8037
|
narrative?: {
|
|
8032
8038
|
text: string[];
|
|
8033
8039
|
} | undefined;
|
|
8034
8040
|
}, {
|
|
8035
|
-
type: "
|
|
8041
|
+
type: "changePlayerCharacter";
|
|
8036
8042
|
actorId: string;
|
|
8037
8043
|
narrative?: {
|
|
8038
8044
|
text: string[];
|
|
@@ -8211,7 +8217,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
8211
8217
|
text: string[];
|
|
8212
8218
|
} | undefined;
|
|
8213
8219
|
} | {
|
|
8214
|
-
type: "
|
|
8220
|
+
type: "changePlayerCharacter";
|
|
8215
8221
|
actorId: string;
|
|
8216
8222
|
narrative?: {
|
|
8217
8223
|
text: string[];
|
|
@@ -8382,7 +8388,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
8382
8388
|
text: string[];
|
|
8383
8389
|
} | undefined;
|
|
8384
8390
|
} | {
|
|
8385
|
-
type: "
|
|
8391
|
+
type: "changePlayerCharacter";
|
|
8386
8392
|
actorId: string;
|
|
8387
8393
|
narrative?: {
|
|
8388
8394
|
text: string[];
|
|
@@ -8556,7 +8562,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
8556
8562
|
text: string[];
|
|
8557
8563
|
} | undefined;
|
|
8558
8564
|
} | {
|
|
8559
|
-
type: "
|
|
8565
|
+
type: "changePlayerCharacter";
|
|
8560
8566
|
actorId: string;
|
|
8561
8567
|
narrative?: {
|
|
8562
8568
|
text: string[];
|
|
@@ -8731,7 +8737,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
8731
8737
|
text: string[];
|
|
8732
8738
|
} | undefined;
|
|
8733
8739
|
} | {
|
|
8734
|
-
type: "
|
|
8740
|
+
type: "changePlayerCharacter";
|
|
8735
8741
|
actorId: string;
|
|
8736
8742
|
narrative?: {
|
|
8737
8743
|
text: string[];
|
|
@@ -8925,7 +8931,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
8925
8931
|
text: string[];
|
|
8926
8932
|
} | undefined;
|
|
8927
8933
|
} | {
|
|
8928
|
-
type: "
|
|
8934
|
+
type: "changePlayerCharacter";
|
|
8929
8935
|
actorId: string;
|
|
8930
8936
|
narrative?: {
|
|
8931
8937
|
text: string[];
|
|
@@ -9119,7 +9125,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
9119
9125
|
text: string[];
|
|
9120
9126
|
} | undefined;
|
|
9121
9127
|
} | {
|
|
9122
|
-
type: "
|
|
9128
|
+
type: "changePlayerCharacter";
|
|
9123
9129
|
actorId: string;
|
|
9124
9130
|
narrative?: {
|
|
9125
9131
|
text: string[];
|
|
@@ -9315,7 +9321,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
9315
9321
|
text: string[];
|
|
9316
9322
|
} | undefined;
|
|
9317
9323
|
} | {
|
|
9318
|
-
type: "
|
|
9324
|
+
type: "changePlayerCharacter";
|
|
9319
9325
|
actorId: string;
|
|
9320
9326
|
narrative?: {
|
|
9321
9327
|
text: string[];
|
|
@@ -9511,7 +9517,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
9511
9517
|
text: string[];
|
|
9512
9518
|
} | undefined;
|
|
9513
9519
|
} | {
|
|
9514
|
-
type: "
|
|
9520
|
+
type: "changePlayerCharacter";
|
|
9515
9521
|
actorId: string;
|
|
9516
9522
|
narrative?: {
|
|
9517
9523
|
text: string[];
|
|
@@ -9712,7 +9718,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
9712
9718
|
text: string[];
|
|
9713
9719
|
} | undefined;
|
|
9714
9720
|
} | {
|
|
9715
|
-
type: "
|
|
9721
|
+
type: "changePlayerCharacter";
|
|
9716
9722
|
actorId: string;
|
|
9717
9723
|
narrative?: {
|
|
9718
9724
|
text: string[];
|
|
@@ -9913,7 +9919,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
9913
9919
|
text: string[];
|
|
9914
9920
|
} | undefined;
|
|
9915
9921
|
} | {
|
|
9916
|
-
type: "
|
|
9922
|
+
type: "changePlayerCharacter";
|
|
9917
9923
|
actorId: string;
|
|
9918
9924
|
narrative?: {
|
|
9919
9925
|
text: string[];
|
|
@@ -10551,7 +10557,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
10551
10557
|
text: string[];
|
|
10552
10558
|
} | undefined;
|
|
10553
10559
|
}>, z.ZodObject<{
|
|
10554
|
-
type: z.ZodLiteral<"
|
|
10560
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
10555
10561
|
actorId: z.ZodString;
|
|
10556
10562
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
10557
10563
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -10561,13 +10567,13 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
10561
10567
|
text: string[];
|
|
10562
10568
|
}>>;
|
|
10563
10569
|
}, "strip", z.ZodTypeAny, {
|
|
10564
|
-
type: "
|
|
10570
|
+
type: "changePlayerCharacter";
|
|
10565
10571
|
actorId: string;
|
|
10566
10572
|
narrative?: {
|
|
10567
10573
|
text: string[];
|
|
10568
10574
|
} | undefined;
|
|
10569
10575
|
}, {
|
|
10570
|
-
type: "
|
|
10576
|
+
type: "changePlayerCharacter";
|
|
10571
10577
|
actorId: string;
|
|
10572
10578
|
narrative?: {
|
|
10573
10579
|
text: string[];
|
|
@@ -10760,7 +10766,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
10760
10766
|
text: string[];
|
|
10761
10767
|
} | undefined;
|
|
10762
10768
|
} | {
|
|
10763
|
-
type: "
|
|
10769
|
+
type: "changePlayerCharacter";
|
|
10764
10770
|
actorId: string;
|
|
10765
10771
|
narrative?: {
|
|
10766
10772
|
text: string[];
|
|
@@ -10937,7 +10943,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
10937
10943
|
text: string[];
|
|
10938
10944
|
} | undefined;
|
|
10939
10945
|
} | {
|
|
10940
|
-
type: "
|
|
10946
|
+
type: "changePlayerCharacter";
|
|
10941
10947
|
actorId: string;
|
|
10942
10948
|
narrative?: {
|
|
10943
10949
|
text: string[];
|
|
@@ -11117,7 +11123,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
11117
11123
|
text: string[];
|
|
11118
11124
|
} | undefined;
|
|
11119
11125
|
} | {
|
|
11120
|
-
type: "
|
|
11126
|
+
type: "changePlayerCharacter";
|
|
11121
11127
|
actorId: string;
|
|
11122
11128
|
narrative?: {
|
|
11123
11129
|
text: string[];
|
|
@@ -11298,7 +11304,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
11298
11304
|
text: string[];
|
|
11299
11305
|
} | undefined;
|
|
11300
11306
|
} | {
|
|
11301
|
-
type: "
|
|
11307
|
+
type: "changePlayerCharacter";
|
|
11302
11308
|
actorId: string;
|
|
11303
11309
|
narrative?: {
|
|
11304
11310
|
text: string[];
|
|
@@ -11498,7 +11504,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
11498
11504
|
text: string[];
|
|
11499
11505
|
} | undefined;
|
|
11500
11506
|
} | {
|
|
11501
|
-
type: "
|
|
11507
|
+
type: "changePlayerCharacter";
|
|
11502
11508
|
actorId: string;
|
|
11503
11509
|
narrative?: {
|
|
11504
11510
|
text: string[];
|
|
@@ -11698,7 +11704,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
11698
11704
|
text: string[];
|
|
11699
11705
|
} | undefined;
|
|
11700
11706
|
} | {
|
|
11701
|
-
type: "
|
|
11707
|
+
type: "changePlayerCharacter";
|
|
11702
11708
|
actorId: string;
|
|
11703
11709
|
narrative?: {
|
|
11704
11710
|
text: string[];
|
|
@@ -11900,7 +11906,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
11900
11906
|
text: string[];
|
|
11901
11907
|
} | undefined;
|
|
11902
11908
|
} | {
|
|
11903
|
-
type: "
|
|
11909
|
+
type: "changePlayerCharacter";
|
|
11904
11910
|
actorId: string;
|
|
11905
11911
|
narrative?: {
|
|
11906
11912
|
text: string[];
|
|
@@ -12102,7 +12108,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
12102
12108
|
text: string[];
|
|
12103
12109
|
} | undefined;
|
|
12104
12110
|
} | {
|
|
12105
|
-
type: "
|
|
12111
|
+
type: "changePlayerCharacter";
|
|
12106
12112
|
actorId: string;
|
|
12107
12113
|
narrative?: {
|
|
12108
12114
|
text: string[];
|
|
@@ -12307,7 +12313,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
12307
12313
|
text: string[];
|
|
12308
12314
|
} | undefined;
|
|
12309
12315
|
} | {
|
|
12310
|
-
type: "
|
|
12316
|
+
type: "changePlayerCharacter";
|
|
12311
12317
|
actorId: string;
|
|
12312
12318
|
narrative?: {
|
|
12313
12319
|
text: string[];
|
|
@@ -12514,7 +12520,7 @@ export declare const ConversationSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
12514
12520
|
text: string[];
|
|
12515
12521
|
} | undefined;
|
|
12516
12522
|
} | {
|
|
12517
|
-
type: "
|
|
12523
|
+
type: "changePlayerCharacter";
|
|
12518
12524
|
actorId: string;
|
|
12519
12525
|
narrative?: {
|
|
12520
12526
|
text: string[];
|
|
@@ -12611,6 +12617,8 @@ export declare const EndingSchema: z.ZodObject<{
|
|
|
12611
12617
|
imageWidth?: number | undefined;
|
|
12612
12618
|
}>;
|
|
12613
12619
|
|
|
12620
|
+
export declare function findPath(start: XY, goal: XY, matrix: CellMatrix, cellSize: number): XY[];
|
|
12621
|
+
|
|
12614
12622
|
export declare type FixedGameInfo = z.infer<typeof FixedGameInfoSchema>;
|
|
12615
12623
|
|
|
12616
12624
|
export declare const FixedGameInfoSchema: z.ZodObject<{
|
|
@@ -13220,7 +13228,7 @@ export declare const FixedGameInfoSchema: z.ZodObject<{
|
|
|
13220
13228
|
text: string[];
|
|
13221
13229
|
} | undefined;
|
|
13222
13230
|
}>, z.ZodObject<{
|
|
13223
|
-
type: z.ZodLiteral<"
|
|
13231
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
13224
13232
|
actorId: z.ZodString;
|
|
13225
13233
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
13226
13234
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -13230,13 +13238,13 @@ export declare const FixedGameInfoSchema: z.ZodObject<{
|
|
|
13230
13238
|
text: string[];
|
|
13231
13239
|
}>>;
|
|
13232
13240
|
}, "strip", z.ZodTypeAny, {
|
|
13233
|
-
type: "
|
|
13241
|
+
type: "changePlayerCharacter";
|
|
13234
13242
|
actorId: string;
|
|
13235
13243
|
narrative?: {
|
|
13236
13244
|
text: string[];
|
|
13237
13245
|
} | undefined;
|
|
13238
13246
|
}, {
|
|
13239
|
-
type: "
|
|
13247
|
+
type: "changePlayerCharacter";
|
|
13240
13248
|
actorId: string;
|
|
13241
13249
|
narrative?: {
|
|
13242
13250
|
text: string[];
|
|
@@ -13415,7 +13423,7 @@ export declare const FixedGameInfoSchema: z.ZodObject<{
|
|
|
13415
13423
|
text: string[];
|
|
13416
13424
|
} | undefined;
|
|
13417
13425
|
} | {
|
|
13418
|
-
type: "
|
|
13426
|
+
type: "changePlayerCharacter";
|
|
13419
13427
|
actorId: string;
|
|
13420
13428
|
narrative?: {
|
|
13421
13429
|
text: string[];
|
|
@@ -13586,7 +13594,7 @@ export declare const FixedGameInfoSchema: z.ZodObject<{
|
|
|
13586
13594
|
text: string[];
|
|
13587
13595
|
} | undefined;
|
|
13588
13596
|
} | {
|
|
13589
|
-
type: "
|
|
13597
|
+
type: "changePlayerCharacter";
|
|
13590
13598
|
actorId: string;
|
|
13591
13599
|
narrative?: {
|
|
13592
13600
|
text: string[];
|
|
@@ -13760,7 +13768,7 @@ export declare const FixedGameInfoSchema: z.ZodObject<{
|
|
|
13760
13768
|
text: string[];
|
|
13761
13769
|
} | undefined;
|
|
13762
13770
|
} | {
|
|
13763
|
-
type: "
|
|
13771
|
+
type: "changePlayerCharacter";
|
|
13764
13772
|
actorId: string;
|
|
13765
13773
|
narrative?: {
|
|
13766
13774
|
text: string[];
|
|
@@ -13935,7 +13943,7 @@ export declare const FixedGameInfoSchema: z.ZodObject<{
|
|
|
13935
13943
|
text: string[];
|
|
13936
13944
|
} | undefined;
|
|
13937
13945
|
} | {
|
|
13938
|
-
type: "
|
|
13946
|
+
type: "changePlayerCharacter";
|
|
13939
13947
|
actorId: string;
|
|
13940
13948
|
narrative?: {
|
|
13941
13949
|
text: string[];
|
|
@@ -14470,7 +14478,7 @@ export declare const FixedGameInfoSchema: z.ZodObject<{
|
|
|
14470
14478
|
text: string[];
|
|
14471
14479
|
} | undefined;
|
|
14472
14480
|
} | {
|
|
14473
|
-
type: "
|
|
14481
|
+
type: "changePlayerCharacter";
|
|
14474
14482
|
actorId: string;
|
|
14475
14483
|
narrative?: {
|
|
14476
14484
|
text: string[];
|
|
@@ -14720,7 +14728,7 @@ export declare const FixedGameInfoSchema: z.ZodObject<{
|
|
|
14720
14728
|
text: string[];
|
|
14721
14729
|
} | undefined;
|
|
14722
14730
|
} | {
|
|
14723
|
-
type: "
|
|
14731
|
+
type: "changePlayerCharacter";
|
|
14724
14732
|
actorId: string;
|
|
14725
14733
|
narrative?: {
|
|
14726
14734
|
text: string[];
|
|
@@ -16093,7 +16101,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
16093
16101
|
text: string[];
|
|
16094
16102
|
} | undefined;
|
|
16095
16103
|
}>, z.ZodObject<{
|
|
16096
|
-
type: z.ZodLiteral<"
|
|
16104
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
16097
16105
|
actorId: z.ZodString;
|
|
16098
16106
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
16099
16107
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -16103,13 +16111,13 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
16103
16111
|
text: string[];
|
|
16104
16112
|
}>>;
|
|
16105
16113
|
}, "strip", z.ZodTypeAny, {
|
|
16106
|
-
type: "
|
|
16114
|
+
type: "changePlayerCharacter";
|
|
16107
16115
|
actorId: string;
|
|
16108
16116
|
narrative?: {
|
|
16109
16117
|
text: string[];
|
|
16110
16118
|
} | undefined;
|
|
16111
16119
|
}, {
|
|
16112
|
-
type: "
|
|
16120
|
+
type: "changePlayerCharacter";
|
|
16113
16121
|
actorId: string;
|
|
16114
16122
|
narrative?: {
|
|
16115
16123
|
text: string[];
|
|
@@ -16294,7 +16302,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
16294
16302
|
text: string[];
|
|
16295
16303
|
} | undefined;
|
|
16296
16304
|
} | {
|
|
16297
|
-
type: "
|
|
16305
|
+
type: "changePlayerCharacter";
|
|
16298
16306
|
actorId: string;
|
|
16299
16307
|
narrative?: {
|
|
16300
16308
|
text: string[];
|
|
@@ -16483,7 +16491,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
16483
16491
|
text: string[];
|
|
16484
16492
|
} | undefined;
|
|
16485
16493
|
} | {
|
|
16486
|
-
type: "
|
|
16494
|
+
type: "changePlayerCharacter";
|
|
16487
16495
|
actorId: string;
|
|
16488
16496
|
narrative?: {
|
|
16489
16497
|
text: string[];
|
|
@@ -17106,7 +17114,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
17106
17114
|
text: string[];
|
|
17107
17115
|
} | undefined;
|
|
17108
17116
|
}>, z.ZodObject<{
|
|
17109
|
-
type: z.ZodLiteral<"
|
|
17117
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
17110
17118
|
actorId: z.ZodString;
|
|
17111
17119
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
17112
17120
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -17116,13 +17124,13 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
17116
17124
|
text: string[];
|
|
17117
17125
|
}>>;
|
|
17118
17126
|
}, "strip", z.ZodTypeAny, {
|
|
17119
|
-
type: "
|
|
17127
|
+
type: "changePlayerCharacter";
|
|
17120
17128
|
actorId: string;
|
|
17121
17129
|
narrative?: {
|
|
17122
17130
|
text: string[];
|
|
17123
17131
|
} | undefined;
|
|
17124
17132
|
}, {
|
|
17125
|
-
type: "
|
|
17133
|
+
type: "changePlayerCharacter";
|
|
17126
17134
|
actorId: string;
|
|
17127
17135
|
narrative?: {
|
|
17128
17136
|
text: string[];
|
|
@@ -17301,7 +17309,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
17301
17309
|
text: string[];
|
|
17302
17310
|
} | undefined;
|
|
17303
17311
|
} | {
|
|
17304
|
-
type: "
|
|
17312
|
+
type: "changePlayerCharacter";
|
|
17305
17313
|
actorId: string;
|
|
17306
17314
|
narrative?: {
|
|
17307
17315
|
text: string[];
|
|
@@ -17472,7 +17480,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
17472
17480
|
text: string[];
|
|
17473
17481
|
} | undefined;
|
|
17474
17482
|
} | {
|
|
17475
|
-
type: "
|
|
17483
|
+
type: "changePlayerCharacter";
|
|
17476
17484
|
actorId: string;
|
|
17477
17485
|
narrative?: {
|
|
17478
17486
|
text: string[];
|
|
@@ -17646,7 +17654,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
17646
17654
|
text: string[];
|
|
17647
17655
|
} | undefined;
|
|
17648
17656
|
} | {
|
|
17649
|
-
type: "
|
|
17657
|
+
type: "changePlayerCharacter";
|
|
17650
17658
|
actorId: string;
|
|
17651
17659
|
narrative?: {
|
|
17652
17660
|
text: string[];
|
|
@@ -17821,7 +17829,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
17821
17829
|
text: string[];
|
|
17822
17830
|
} | undefined;
|
|
17823
17831
|
} | {
|
|
17824
|
-
type: "
|
|
17832
|
+
type: "changePlayerCharacter";
|
|
17825
17833
|
actorId: string;
|
|
17826
17834
|
narrative?: {
|
|
17827
17835
|
text: string[];
|
|
@@ -18015,7 +18023,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
18015
18023
|
text: string[];
|
|
18016
18024
|
} | undefined;
|
|
18017
18025
|
} | {
|
|
18018
|
-
type: "
|
|
18026
|
+
type: "changePlayerCharacter";
|
|
18019
18027
|
actorId: string;
|
|
18020
18028
|
narrative?: {
|
|
18021
18029
|
text: string[];
|
|
@@ -18209,7 +18217,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
18209
18217
|
text: string[];
|
|
18210
18218
|
} | undefined;
|
|
18211
18219
|
} | {
|
|
18212
|
-
type: "
|
|
18220
|
+
type: "changePlayerCharacter";
|
|
18213
18221
|
actorId: string;
|
|
18214
18222
|
narrative?: {
|
|
18215
18223
|
text: string[];
|
|
@@ -18405,7 +18413,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
18405
18413
|
text: string[];
|
|
18406
18414
|
} | undefined;
|
|
18407
18415
|
} | {
|
|
18408
|
-
type: "
|
|
18416
|
+
type: "changePlayerCharacter";
|
|
18409
18417
|
actorId: string;
|
|
18410
18418
|
narrative?: {
|
|
18411
18419
|
text: string[];
|
|
@@ -18601,7 +18609,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
18601
18609
|
text: string[];
|
|
18602
18610
|
} | undefined;
|
|
18603
18611
|
} | {
|
|
18604
|
-
type: "
|
|
18612
|
+
type: "changePlayerCharacter";
|
|
18605
18613
|
actorId: string;
|
|
18606
18614
|
narrative?: {
|
|
18607
18615
|
text: string[];
|
|
@@ -18802,7 +18810,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
18802
18810
|
text: string[];
|
|
18803
18811
|
} | undefined;
|
|
18804
18812
|
} | {
|
|
18805
|
-
type: "
|
|
18813
|
+
type: "changePlayerCharacter";
|
|
18806
18814
|
actorId: string;
|
|
18807
18815
|
narrative?: {
|
|
18808
18816
|
text: string[];
|
|
@@ -19003,7 +19011,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
19003
19011
|
text: string[];
|
|
19004
19012
|
} | undefined;
|
|
19005
19013
|
} | {
|
|
19006
|
-
type: "
|
|
19014
|
+
type: "changePlayerCharacter";
|
|
19007
19015
|
actorId: string;
|
|
19008
19016
|
narrative?: {
|
|
19009
19017
|
text: string[];
|
|
@@ -19332,7 +19340,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
19332
19340
|
text: string[];
|
|
19333
19341
|
} | undefined;
|
|
19334
19342
|
} | {
|
|
19335
|
-
type: "
|
|
19343
|
+
type: "changePlayerCharacter";
|
|
19336
19344
|
actorId: string;
|
|
19337
19345
|
narrative?: {
|
|
19338
19346
|
text: string[];
|
|
@@ -19534,7 +19542,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
19534
19542
|
text: string[];
|
|
19535
19543
|
} | undefined;
|
|
19536
19544
|
} | {
|
|
19537
|
-
type: "
|
|
19545
|
+
type: "changePlayerCharacter";
|
|
19538
19546
|
actorId: string;
|
|
19539
19547
|
narrative?: {
|
|
19540
19548
|
text: string[];
|
|
@@ -19854,7 +19862,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
19854
19862
|
text: string[];
|
|
19855
19863
|
} | undefined;
|
|
19856
19864
|
} | {
|
|
19857
|
-
type: "
|
|
19865
|
+
type: "changePlayerCharacter";
|
|
19858
19866
|
actorId: string;
|
|
19859
19867
|
narrative?: {
|
|
19860
19868
|
text: string[];
|
|
@@ -20056,7 +20064,7 @@ export declare const GameContentsDataSchema: z.ZodObject<{
|
|
|
20056
20064
|
text: string[];
|
|
20057
20065
|
} | undefined;
|
|
20058
20066
|
} | {
|
|
20059
|
-
type: "
|
|
20067
|
+
type: "changePlayerCharacter";
|
|
20060
20068
|
actorId: string;
|
|
20061
20069
|
narrative?: {
|
|
20062
20070
|
text: string[];
|
|
@@ -21328,7 +21336,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
21328
21336
|
text: string[];
|
|
21329
21337
|
} | undefined;
|
|
21330
21338
|
}>, z.ZodObject<{
|
|
21331
|
-
type: z.ZodLiteral<"
|
|
21339
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
21332
21340
|
actorId: z.ZodString;
|
|
21333
21341
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
21334
21342
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -21338,13 +21346,13 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
21338
21346
|
text: string[];
|
|
21339
21347
|
}>>;
|
|
21340
21348
|
}, "strip", z.ZodTypeAny, {
|
|
21341
|
-
type: "
|
|
21349
|
+
type: "changePlayerCharacter";
|
|
21342
21350
|
actorId: string;
|
|
21343
21351
|
narrative?: {
|
|
21344
21352
|
text: string[];
|
|
21345
21353
|
} | undefined;
|
|
21346
21354
|
}, {
|
|
21347
|
-
type: "
|
|
21355
|
+
type: "changePlayerCharacter";
|
|
21348
21356
|
actorId: string;
|
|
21349
21357
|
narrative?: {
|
|
21350
21358
|
text: string[];
|
|
@@ -21529,7 +21537,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
21529
21537
|
text: string[];
|
|
21530
21538
|
} | undefined;
|
|
21531
21539
|
} | {
|
|
21532
|
-
type: "
|
|
21540
|
+
type: "changePlayerCharacter";
|
|
21533
21541
|
actorId: string;
|
|
21534
21542
|
narrative?: {
|
|
21535
21543
|
text: string[];
|
|
@@ -21718,7 +21726,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
21718
21726
|
text: string[];
|
|
21719
21727
|
} | undefined;
|
|
21720
21728
|
} | {
|
|
21721
|
-
type: "
|
|
21729
|
+
type: "changePlayerCharacter";
|
|
21722
21730
|
actorId: string;
|
|
21723
21731
|
narrative?: {
|
|
21724
21732
|
text: string[];
|
|
@@ -22341,7 +22349,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
22341
22349
|
text: string[];
|
|
22342
22350
|
} | undefined;
|
|
22343
22351
|
}>, z.ZodObject<{
|
|
22344
|
-
type: z.ZodLiteral<"
|
|
22352
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
22345
22353
|
actorId: z.ZodString;
|
|
22346
22354
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
22347
22355
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -22351,13 +22359,13 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
22351
22359
|
text: string[];
|
|
22352
22360
|
}>>;
|
|
22353
22361
|
}, "strip", z.ZodTypeAny, {
|
|
22354
|
-
type: "
|
|
22362
|
+
type: "changePlayerCharacter";
|
|
22355
22363
|
actorId: string;
|
|
22356
22364
|
narrative?: {
|
|
22357
22365
|
text: string[];
|
|
22358
22366
|
} | undefined;
|
|
22359
22367
|
}, {
|
|
22360
|
-
type: "
|
|
22368
|
+
type: "changePlayerCharacter";
|
|
22361
22369
|
actorId: string;
|
|
22362
22370
|
narrative?: {
|
|
22363
22371
|
text: string[];
|
|
@@ -22536,7 +22544,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
22536
22544
|
text: string[];
|
|
22537
22545
|
} | undefined;
|
|
22538
22546
|
} | {
|
|
22539
|
-
type: "
|
|
22547
|
+
type: "changePlayerCharacter";
|
|
22540
22548
|
actorId: string;
|
|
22541
22549
|
narrative?: {
|
|
22542
22550
|
text: string[];
|
|
@@ -22707,7 +22715,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
22707
22715
|
text: string[];
|
|
22708
22716
|
} | undefined;
|
|
22709
22717
|
} | {
|
|
22710
|
-
type: "
|
|
22718
|
+
type: "changePlayerCharacter";
|
|
22711
22719
|
actorId: string;
|
|
22712
22720
|
narrative?: {
|
|
22713
22721
|
text: string[];
|
|
@@ -22881,7 +22889,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
22881
22889
|
text: string[];
|
|
22882
22890
|
} | undefined;
|
|
22883
22891
|
} | {
|
|
22884
|
-
type: "
|
|
22892
|
+
type: "changePlayerCharacter";
|
|
22885
22893
|
actorId: string;
|
|
22886
22894
|
narrative?: {
|
|
22887
22895
|
text: string[];
|
|
@@ -23056,7 +23064,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
23056
23064
|
text: string[];
|
|
23057
23065
|
} | undefined;
|
|
23058
23066
|
} | {
|
|
23059
|
-
type: "
|
|
23067
|
+
type: "changePlayerCharacter";
|
|
23060
23068
|
actorId: string;
|
|
23061
23069
|
narrative?: {
|
|
23062
23070
|
text: string[];
|
|
@@ -23250,7 +23258,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
23250
23258
|
text: string[];
|
|
23251
23259
|
} | undefined;
|
|
23252
23260
|
} | {
|
|
23253
|
-
type: "
|
|
23261
|
+
type: "changePlayerCharacter";
|
|
23254
23262
|
actorId: string;
|
|
23255
23263
|
narrative?: {
|
|
23256
23264
|
text: string[];
|
|
@@ -23444,7 +23452,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
23444
23452
|
text: string[];
|
|
23445
23453
|
} | undefined;
|
|
23446
23454
|
} | {
|
|
23447
|
-
type: "
|
|
23455
|
+
type: "changePlayerCharacter";
|
|
23448
23456
|
actorId: string;
|
|
23449
23457
|
narrative?: {
|
|
23450
23458
|
text: string[];
|
|
@@ -23640,7 +23648,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
23640
23648
|
text: string[];
|
|
23641
23649
|
} | undefined;
|
|
23642
23650
|
} | {
|
|
23643
|
-
type: "
|
|
23651
|
+
type: "changePlayerCharacter";
|
|
23644
23652
|
actorId: string;
|
|
23645
23653
|
narrative?: {
|
|
23646
23654
|
text: string[];
|
|
@@ -23836,7 +23844,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
23836
23844
|
text: string[];
|
|
23837
23845
|
} | undefined;
|
|
23838
23846
|
} | {
|
|
23839
|
-
type: "
|
|
23847
|
+
type: "changePlayerCharacter";
|
|
23840
23848
|
actorId: string;
|
|
23841
23849
|
narrative?: {
|
|
23842
23850
|
text: string[];
|
|
@@ -24037,7 +24045,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
24037
24045
|
text: string[];
|
|
24038
24046
|
} | undefined;
|
|
24039
24047
|
} | {
|
|
24040
|
-
type: "
|
|
24048
|
+
type: "changePlayerCharacter";
|
|
24041
24049
|
actorId: string;
|
|
24042
24050
|
narrative?: {
|
|
24043
24051
|
text: string[];
|
|
@@ -24238,7 +24246,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
24238
24246
|
text: string[];
|
|
24239
24247
|
} | undefined;
|
|
24240
24248
|
} | {
|
|
24241
|
-
type: "
|
|
24249
|
+
type: "changePlayerCharacter";
|
|
24242
24250
|
actorId: string;
|
|
24243
24251
|
narrative?: {
|
|
24244
24252
|
text: string[];
|
|
@@ -24567,7 +24575,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
24567
24575
|
text: string[];
|
|
24568
24576
|
} | undefined;
|
|
24569
24577
|
} | {
|
|
24570
|
-
type: "
|
|
24578
|
+
type: "changePlayerCharacter";
|
|
24571
24579
|
actorId: string;
|
|
24572
24580
|
narrative?: {
|
|
24573
24581
|
text: string[];
|
|
@@ -24769,7 +24777,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
24769
24777
|
text: string[];
|
|
24770
24778
|
} | undefined;
|
|
24771
24779
|
} | {
|
|
24772
|
-
type: "
|
|
24780
|
+
type: "changePlayerCharacter";
|
|
24773
24781
|
actorId: string;
|
|
24774
24782
|
narrative?: {
|
|
24775
24783
|
text: string[];
|
|
@@ -25089,7 +25097,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
25089
25097
|
text: string[];
|
|
25090
25098
|
} | undefined;
|
|
25091
25099
|
} | {
|
|
25092
|
-
type: "
|
|
25100
|
+
type: "changePlayerCharacter";
|
|
25093
25101
|
actorId: string;
|
|
25094
25102
|
narrative?: {
|
|
25095
25103
|
text: string[];
|
|
@@ -25291,7 +25299,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
25291
25299
|
text: string[];
|
|
25292
25300
|
} | undefined;
|
|
25293
25301
|
} | {
|
|
25294
|
-
type: "
|
|
25302
|
+
type: "changePlayerCharacter";
|
|
25295
25303
|
actorId: string;
|
|
25296
25304
|
narrative?: {
|
|
25297
25305
|
text: string[];
|
|
@@ -25886,7 +25894,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
25886
25894
|
text: string[];
|
|
25887
25895
|
} | undefined;
|
|
25888
25896
|
}>, z.ZodObject<{
|
|
25889
|
-
type: z.ZodLiteral<"
|
|
25897
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
25890
25898
|
actorId: z.ZodString;
|
|
25891
25899
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
25892
25900
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -25896,13 +25904,13 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
25896
25904
|
text: string[];
|
|
25897
25905
|
}>>;
|
|
25898
25906
|
}, "strip", z.ZodTypeAny, {
|
|
25899
|
-
type: "
|
|
25907
|
+
type: "changePlayerCharacter";
|
|
25900
25908
|
actorId: string;
|
|
25901
25909
|
narrative?: {
|
|
25902
25910
|
text: string[];
|
|
25903
25911
|
} | undefined;
|
|
25904
25912
|
}, {
|
|
25905
|
-
type: "
|
|
25913
|
+
type: "changePlayerCharacter";
|
|
25906
25914
|
actorId: string;
|
|
25907
25915
|
narrative?: {
|
|
25908
25916
|
text: string[];
|
|
@@ -26081,7 +26089,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
26081
26089
|
text: string[];
|
|
26082
26090
|
} | undefined;
|
|
26083
26091
|
} | {
|
|
26084
|
-
type: "
|
|
26092
|
+
type: "changePlayerCharacter";
|
|
26085
26093
|
actorId: string;
|
|
26086
26094
|
narrative?: {
|
|
26087
26095
|
text: string[];
|
|
@@ -26252,7 +26260,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
26252
26260
|
text: string[];
|
|
26253
26261
|
} | undefined;
|
|
26254
26262
|
} | {
|
|
26255
|
-
type: "
|
|
26263
|
+
type: "changePlayerCharacter";
|
|
26256
26264
|
actorId: string;
|
|
26257
26265
|
narrative?: {
|
|
26258
26266
|
text: string[];
|
|
@@ -26426,7 +26434,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
26426
26434
|
text: string[];
|
|
26427
26435
|
} | undefined;
|
|
26428
26436
|
} | {
|
|
26429
|
-
type: "
|
|
26437
|
+
type: "changePlayerCharacter";
|
|
26430
26438
|
actorId: string;
|
|
26431
26439
|
narrative?: {
|
|
26432
26440
|
text: string[];
|
|
@@ -26601,7 +26609,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
26601
26609
|
text: string[];
|
|
26602
26610
|
} | undefined;
|
|
26603
26611
|
} | {
|
|
26604
|
-
type: "
|
|
26612
|
+
type: "changePlayerCharacter";
|
|
26605
26613
|
actorId: string;
|
|
26606
26614
|
narrative?: {
|
|
26607
26615
|
text: string[];
|
|
@@ -27562,7 +27570,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
27562
27570
|
text: string[];
|
|
27563
27571
|
} | undefined;
|
|
27564
27572
|
}>, z.ZodObject<{
|
|
27565
|
-
type: z.ZodLiteral<"
|
|
27573
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
27566
27574
|
actorId: z.ZodString;
|
|
27567
27575
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
27568
27576
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -27572,13 +27580,13 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
27572
27580
|
text: string[];
|
|
27573
27581
|
}>>;
|
|
27574
27582
|
}, "strip", z.ZodTypeAny, {
|
|
27575
|
-
type: "
|
|
27583
|
+
type: "changePlayerCharacter";
|
|
27576
27584
|
actorId: string;
|
|
27577
27585
|
narrative?: {
|
|
27578
27586
|
text: string[];
|
|
27579
27587
|
} | undefined;
|
|
27580
27588
|
}, {
|
|
27581
|
-
type: "
|
|
27589
|
+
type: "changePlayerCharacter";
|
|
27582
27590
|
actorId: string;
|
|
27583
27591
|
narrative?: {
|
|
27584
27592
|
text: string[];
|
|
@@ -27763,7 +27771,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
27763
27771
|
text: string[];
|
|
27764
27772
|
} | undefined;
|
|
27765
27773
|
} | {
|
|
27766
|
-
type: "
|
|
27774
|
+
type: "changePlayerCharacter";
|
|
27767
27775
|
actorId: string;
|
|
27768
27776
|
narrative?: {
|
|
27769
27777
|
text: string[];
|
|
@@ -27952,7 +27960,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
27952
27960
|
text: string[];
|
|
27953
27961
|
} | undefined;
|
|
27954
27962
|
} | {
|
|
27955
|
-
type: "
|
|
27963
|
+
type: "changePlayerCharacter";
|
|
27956
27964
|
actorId: string;
|
|
27957
27965
|
narrative?: {
|
|
27958
27966
|
text: string[];
|
|
@@ -27967,6 +27975,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
27967
27975
|
requiredInventory?: string[] | undefined;
|
|
27968
27976
|
}>>;
|
|
27969
27977
|
gameNotBegun: z.ZodBoolean;
|
|
27978
|
+
cellMatrix: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, "many">, "many">>;
|
|
27970
27979
|
}, "strip", z.ZodTypeAny, {
|
|
27971
27980
|
actorOrders: Record<string, ({
|
|
27972
27981
|
type: "move";
|
|
@@ -28194,7 +28203,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
28194
28203
|
text: string[];
|
|
28195
28204
|
} | undefined;
|
|
28196
28205
|
} | {
|
|
28197
|
-
type: "
|
|
28206
|
+
type: "changePlayerCharacter";
|
|
28198
28207
|
actorId: string;
|
|
28199
28208
|
narrative?: {
|
|
28200
28209
|
text: string[];
|
|
@@ -28381,7 +28390,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
28381
28390
|
text: string[];
|
|
28382
28391
|
} | undefined;
|
|
28383
28392
|
} | {
|
|
28384
|
-
type: "
|
|
28393
|
+
type: "changePlayerCharacter";
|
|
28385
28394
|
actorId: string;
|
|
28386
28395
|
narrative?: {
|
|
28387
28396
|
text: string[];
|
|
@@ -28395,6 +28404,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
28395
28404
|
flagsThatMustBeTrue?: string[] | undefined;
|
|
28396
28405
|
requiredInventory?: string[] | undefined;
|
|
28397
28406
|
} | undefined;
|
|
28407
|
+
cellMatrix?: (0 | 1)[][] | undefined;
|
|
28398
28408
|
}, {
|
|
28399
28409
|
actorOrders: Record<string, ({
|
|
28400
28410
|
type: "move";
|
|
@@ -28622,7 +28632,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
28622
28632
|
text: string[];
|
|
28623
28633
|
} | undefined;
|
|
28624
28634
|
} | {
|
|
28625
|
-
type: "
|
|
28635
|
+
type: "changePlayerCharacter";
|
|
28626
28636
|
actorId: string;
|
|
28627
28637
|
narrative?: {
|
|
28628
28638
|
text: string[];
|
|
@@ -28809,7 +28819,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
28809
28819
|
text: string[];
|
|
28810
28820
|
} | undefined;
|
|
28811
28821
|
} | {
|
|
28812
|
-
type: "
|
|
28822
|
+
type: "changePlayerCharacter";
|
|
28813
28823
|
actorId: string;
|
|
28814
28824
|
narrative?: {
|
|
28815
28825
|
text: string[];
|
|
@@ -28823,6 +28833,7 @@ export declare const GameDataSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
28823
28833
|
flagsThatMustBeTrue?: string[] | undefined;
|
|
28824
28834
|
requiredInventory?: string[] | undefined;
|
|
28825
28835
|
} | undefined;
|
|
28836
|
+
cellMatrix?: (0 | 1)[][] | undefined;
|
|
28826
28837
|
}>>;
|
|
28827
28838
|
|
|
28828
28839
|
export declare type GameDesign = z.infer<typeof GameDesignSchema>;
|
|
@@ -30067,7 +30078,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
30067
30078
|
text: string[];
|
|
30068
30079
|
} | undefined;
|
|
30069
30080
|
}>, z.ZodObject<{
|
|
30070
|
-
type: z.ZodLiteral<"
|
|
30081
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
30071
30082
|
actorId: z.ZodString;
|
|
30072
30083
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
30073
30084
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -30077,13 +30088,13 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
30077
30088
|
text: string[];
|
|
30078
30089
|
}>>;
|
|
30079
30090
|
}, "strip", z.ZodTypeAny, {
|
|
30080
|
-
type: "
|
|
30091
|
+
type: "changePlayerCharacter";
|
|
30081
30092
|
actorId: string;
|
|
30082
30093
|
narrative?: {
|
|
30083
30094
|
text: string[];
|
|
30084
30095
|
} | undefined;
|
|
30085
30096
|
}, {
|
|
30086
|
-
type: "
|
|
30097
|
+
type: "changePlayerCharacter";
|
|
30087
30098
|
actorId: string;
|
|
30088
30099
|
narrative?: {
|
|
30089
30100
|
text: string[];
|
|
@@ -30268,7 +30279,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
30268
30279
|
text: string[];
|
|
30269
30280
|
} | undefined;
|
|
30270
30281
|
} | {
|
|
30271
|
-
type: "
|
|
30282
|
+
type: "changePlayerCharacter";
|
|
30272
30283
|
actorId: string;
|
|
30273
30284
|
narrative?: {
|
|
30274
30285
|
text: string[];
|
|
@@ -30457,7 +30468,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
30457
30468
|
text: string[];
|
|
30458
30469
|
} | undefined;
|
|
30459
30470
|
} | {
|
|
30460
|
-
type: "
|
|
30471
|
+
type: "changePlayerCharacter";
|
|
30461
30472
|
actorId: string;
|
|
30462
30473
|
narrative?: {
|
|
30463
30474
|
text: string[];
|
|
@@ -31080,7 +31091,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
31080
31091
|
text: string[];
|
|
31081
31092
|
} | undefined;
|
|
31082
31093
|
}>, z.ZodObject<{
|
|
31083
|
-
type: z.ZodLiteral<"
|
|
31094
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
31084
31095
|
actorId: z.ZodString;
|
|
31085
31096
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
31086
31097
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -31090,13 +31101,13 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
31090
31101
|
text: string[];
|
|
31091
31102
|
}>>;
|
|
31092
31103
|
}, "strip", z.ZodTypeAny, {
|
|
31093
|
-
type: "
|
|
31104
|
+
type: "changePlayerCharacter";
|
|
31094
31105
|
actorId: string;
|
|
31095
31106
|
narrative?: {
|
|
31096
31107
|
text: string[];
|
|
31097
31108
|
} | undefined;
|
|
31098
31109
|
}, {
|
|
31099
|
-
type: "
|
|
31110
|
+
type: "changePlayerCharacter";
|
|
31100
31111
|
actorId: string;
|
|
31101
31112
|
narrative?: {
|
|
31102
31113
|
text: string[];
|
|
@@ -31275,7 +31286,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
31275
31286
|
text: string[];
|
|
31276
31287
|
} | undefined;
|
|
31277
31288
|
} | {
|
|
31278
|
-
type: "
|
|
31289
|
+
type: "changePlayerCharacter";
|
|
31279
31290
|
actorId: string;
|
|
31280
31291
|
narrative?: {
|
|
31281
31292
|
text: string[];
|
|
@@ -31446,7 +31457,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
31446
31457
|
text: string[];
|
|
31447
31458
|
} | undefined;
|
|
31448
31459
|
} | {
|
|
31449
|
-
type: "
|
|
31460
|
+
type: "changePlayerCharacter";
|
|
31450
31461
|
actorId: string;
|
|
31451
31462
|
narrative?: {
|
|
31452
31463
|
text: string[];
|
|
@@ -31620,7 +31631,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
31620
31631
|
text: string[];
|
|
31621
31632
|
} | undefined;
|
|
31622
31633
|
} | {
|
|
31623
|
-
type: "
|
|
31634
|
+
type: "changePlayerCharacter";
|
|
31624
31635
|
actorId: string;
|
|
31625
31636
|
narrative?: {
|
|
31626
31637
|
text: string[];
|
|
@@ -31795,7 +31806,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
31795
31806
|
text: string[];
|
|
31796
31807
|
} | undefined;
|
|
31797
31808
|
} | {
|
|
31798
|
-
type: "
|
|
31809
|
+
type: "changePlayerCharacter";
|
|
31799
31810
|
actorId: string;
|
|
31800
31811
|
narrative?: {
|
|
31801
31812
|
text: string[];
|
|
@@ -31989,7 +32000,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
31989
32000
|
text: string[];
|
|
31990
32001
|
} | undefined;
|
|
31991
32002
|
} | {
|
|
31992
|
-
type: "
|
|
32003
|
+
type: "changePlayerCharacter";
|
|
31993
32004
|
actorId: string;
|
|
31994
32005
|
narrative?: {
|
|
31995
32006
|
text: string[];
|
|
@@ -32183,7 +32194,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
32183
32194
|
text: string[];
|
|
32184
32195
|
} | undefined;
|
|
32185
32196
|
} | {
|
|
32186
|
-
type: "
|
|
32197
|
+
type: "changePlayerCharacter";
|
|
32187
32198
|
actorId: string;
|
|
32188
32199
|
narrative?: {
|
|
32189
32200
|
text: string[];
|
|
@@ -32379,7 +32390,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
32379
32390
|
text: string[];
|
|
32380
32391
|
} | undefined;
|
|
32381
32392
|
} | {
|
|
32382
|
-
type: "
|
|
32393
|
+
type: "changePlayerCharacter";
|
|
32383
32394
|
actorId: string;
|
|
32384
32395
|
narrative?: {
|
|
32385
32396
|
text: string[];
|
|
@@ -32575,7 +32586,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
32575
32586
|
text: string[];
|
|
32576
32587
|
} | undefined;
|
|
32577
32588
|
} | {
|
|
32578
|
-
type: "
|
|
32589
|
+
type: "changePlayerCharacter";
|
|
32579
32590
|
actorId: string;
|
|
32580
32591
|
narrative?: {
|
|
32581
32592
|
text: string[];
|
|
@@ -32776,7 +32787,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
32776
32787
|
text: string[];
|
|
32777
32788
|
} | undefined;
|
|
32778
32789
|
} | {
|
|
32779
|
-
type: "
|
|
32790
|
+
type: "changePlayerCharacter";
|
|
32780
32791
|
actorId: string;
|
|
32781
32792
|
narrative?: {
|
|
32782
32793
|
text: string[];
|
|
@@ -32977,7 +32988,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
32977
32988
|
text: string[];
|
|
32978
32989
|
} | undefined;
|
|
32979
32990
|
} | {
|
|
32980
|
-
type: "
|
|
32991
|
+
type: "changePlayerCharacter";
|
|
32981
32992
|
actorId: string;
|
|
32982
32993
|
narrative?: {
|
|
32983
32994
|
text: string[];
|
|
@@ -33306,7 +33317,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
33306
33317
|
text: string[];
|
|
33307
33318
|
} | undefined;
|
|
33308
33319
|
} | {
|
|
33309
|
-
type: "
|
|
33320
|
+
type: "changePlayerCharacter";
|
|
33310
33321
|
actorId: string;
|
|
33311
33322
|
narrative?: {
|
|
33312
33323
|
text: string[];
|
|
@@ -33508,7 +33519,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
33508
33519
|
text: string[];
|
|
33509
33520
|
} | undefined;
|
|
33510
33521
|
} | {
|
|
33511
|
-
type: "
|
|
33522
|
+
type: "changePlayerCharacter";
|
|
33512
33523
|
actorId: string;
|
|
33513
33524
|
narrative?: {
|
|
33514
33525
|
text: string[];
|
|
@@ -33828,7 +33839,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
33828
33839
|
text: string[];
|
|
33829
33840
|
} | undefined;
|
|
33830
33841
|
} | {
|
|
33831
|
-
type: "
|
|
33842
|
+
type: "changePlayerCharacter";
|
|
33832
33843
|
actorId: string;
|
|
33833
33844
|
narrative?: {
|
|
33834
33845
|
text: string[];
|
|
@@ -34030,7 +34041,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
34030
34041
|
text: string[];
|
|
34031
34042
|
} | undefined;
|
|
34032
34043
|
} | {
|
|
34033
|
-
type: "
|
|
34044
|
+
type: "changePlayerCharacter";
|
|
34034
34045
|
actorId: string;
|
|
34035
34046
|
narrative?: {
|
|
34036
34047
|
text: string[];
|
|
@@ -34659,7 +34670,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
34659
34670
|
text: string[];
|
|
34660
34671
|
} | undefined;
|
|
34661
34672
|
}>, z.ZodObject<{
|
|
34662
|
-
type: z.ZodLiteral<"
|
|
34673
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
34663
34674
|
actorId: z.ZodString;
|
|
34664
34675
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
34665
34676
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -34669,13 +34680,13 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
34669
34680
|
text: string[];
|
|
34670
34681
|
}>>;
|
|
34671
34682
|
}, "strip", z.ZodTypeAny, {
|
|
34672
|
-
type: "
|
|
34683
|
+
type: "changePlayerCharacter";
|
|
34673
34684
|
actorId: string;
|
|
34674
34685
|
narrative?: {
|
|
34675
34686
|
text: string[];
|
|
34676
34687
|
} | undefined;
|
|
34677
34688
|
}, {
|
|
34678
|
-
type: "
|
|
34689
|
+
type: "changePlayerCharacter";
|
|
34679
34690
|
actorId: string;
|
|
34680
34691
|
narrative?: {
|
|
34681
34692
|
text: string[];
|
|
@@ -34854,7 +34865,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
34854
34865
|
text: string[];
|
|
34855
34866
|
} | undefined;
|
|
34856
34867
|
} | {
|
|
34857
|
-
type: "
|
|
34868
|
+
type: "changePlayerCharacter";
|
|
34858
34869
|
actorId: string;
|
|
34859
34870
|
narrative?: {
|
|
34860
34871
|
text: string[];
|
|
@@ -35025,7 +35036,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
35025
35036
|
text: string[];
|
|
35026
35037
|
} | undefined;
|
|
35027
35038
|
} | {
|
|
35028
|
-
type: "
|
|
35039
|
+
type: "changePlayerCharacter";
|
|
35029
35040
|
actorId: string;
|
|
35030
35041
|
narrative?: {
|
|
35031
35042
|
text: string[];
|
|
@@ -35199,7 +35210,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
35199
35210
|
text: string[];
|
|
35200
35211
|
} | undefined;
|
|
35201
35212
|
} | {
|
|
35202
|
-
type: "
|
|
35213
|
+
type: "changePlayerCharacter";
|
|
35203
35214
|
actorId: string;
|
|
35204
35215
|
narrative?: {
|
|
35205
35216
|
text: string[];
|
|
@@ -35374,7 +35385,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
35374
35385
|
text: string[];
|
|
35375
35386
|
} | undefined;
|
|
35376
35387
|
} | {
|
|
35377
|
-
type: "
|
|
35388
|
+
type: "changePlayerCharacter";
|
|
35378
35389
|
actorId: string;
|
|
35379
35390
|
narrative?: {
|
|
35380
35391
|
text: string[];
|
|
@@ -35909,7 +35920,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
35909
35920
|
text: string[];
|
|
35910
35921
|
} | undefined;
|
|
35911
35922
|
} | {
|
|
35912
|
-
type: "
|
|
35923
|
+
type: "changePlayerCharacter";
|
|
35913
35924
|
actorId: string;
|
|
35914
35925
|
narrative?: {
|
|
35915
35926
|
text: string[];
|
|
@@ -36159,7 +36170,7 @@ export declare const GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
36159
36170
|
text: string[];
|
|
36160
36171
|
} | undefined;
|
|
36161
36172
|
} | {
|
|
36162
|
-
type: "
|
|
36173
|
+
type: "changePlayerCharacter";
|
|
36163
36174
|
actorId: string;
|
|
36164
36175
|
narrative?: {
|
|
36165
36176
|
text: string[];
|
|
@@ -36804,7 +36815,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
36804
36815
|
text: string[];
|
|
36805
36816
|
} | undefined;
|
|
36806
36817
|
}>, z.ZodObject<{
|
|
36807
|
-
type: z.ZodLiteral<"
|
|
36818
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
36808
36819
|
actorId: z.ZodString;
|
|
36809
36820
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
36810
36821
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -36814,13 +36825,13 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
36814
36825
|
text: string[];
|
|
36815
36826
|
}>>;
|
|
36816
36827
|
}, "strip", z.ZodTypeAny, {
|
|
36817
|
-
type: "
|
|
36828
|
+
type: "changePlayerCharacter";
|
|
36818
36829
|
actorId: string;
|
|
36819
36830
|
narrative?: {
|
|
36820
36831
|
text: string[];
|
|
36821
36832
|
} | undefined;
|
|
36822
36833
|
}, {
|
|
36823
|
-
type: "
|
|
36834
|
+
type: "changePlayerCharacter";
|
|
36824
36835
|
actorId: string;
|
|
36825
36836
|
narrative?: {
|
|
36826
36837
|
text: string[];
|
|
@@ -36999,7 +37010,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
36999
37010
|
text: string[];
|
|
37000
37011
|
} | undefined;
|
|
37001
37012
|
} | {
|
|
37002
|
-
type: "
|
|
37013
|
+
type: "changePlayerCharacter";
|
|
37003
37014
|
actorId: string;
|
|
37004
37015
|
narrative?: {
|
|
37005
37016
|
text: string[];
|
|
@@ -37170,7 +37181,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
37170
37181
|
text: string[];
|
|
37171
37182
|
} | undefined;
|
|
37172
37183
|
} | {
|
|
37173
|
-
type: "
|
|
37184
|
+
type: "changePlayerCharacter";
|
|
37174
37185
|
actorId: string;
|
|
37175
37186
|
narrative?: {
|
|
37176
37187
|
text: string[];
|
|
@@ -37344,7 +37355,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
37344
37355
|
text: string[];
|
|
37345
37356
|
} | undefined;
|
|
37346
37357
|
} | {
|
|
37347
|
-
type: "
|
|
37358
|
+
type: "changePlayerCharacter";
|
|
37348
37359
|
actorId: string;
|
|
37349
37360
|
narrative?: {
|
|
37350
37361
|
text: string[];
|
|
@@ -37519,7 +37530,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
37519
37530
|
text: string[];
|
|
37520
37531
|
} | undefined;
|
|
37521
37532
|
} | {
|
|
37522
|
-
type: "
|
|
37533
|
+
type: "changePlayerCharacter";
|
|
37523
37534
|
actorId: string;
|
|
37524
37535
|
narrative?: {
|
|
37525
37536
|
text: string[];
|
|
@@ -38480,7 +38491,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
38480
38491
|
text: string[];
|
|
38481
38492
|
} | undefined;
|
|
38482
38493
|
}>, z.ZodObject<{
|
|
38483
|
-
type: z.ZodLiteral<"
|
|
38494
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
38484
38495
|
actorId: z.ZodString;
|
|
38485
38496
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
38486
38497
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -38490,13 +38501,13 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
38490
38501
|
text: string[];
|
|
38491
38502
|
}>>;
|
|
38492
38503
|
}, "strip", z.ZodTypeAny, {
|
|
38493
|
-
type: "
|
|
38504
|
+
type: "changePlayerCharacter";
|
|
38494
38505
|
actorId: string;
|
|
38495
38506
|
narrative?: {
|
|
38496
38507
|
text: string[];
|
|
38497
38508
|
} | undefined;
|
|
38498
38509
|
}, {
|
|
38499
|
-
type: "
|
|
38510
|
+
type: "changePlayerCharacter";
|
|
38500
38511
|
actorId: string;
|
|
38501
38512
|
narrative?: {
|
|
38502
38513
|
text: string[];
|
|
@@ -38681,7 +38692,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
38681
38692
|
text: string[];
|
|
38682
38693
|
} | undefined;
|
|
38683
38694
|
} | {
|
|
38684
|
-
type: "
|
|
38695
|
+
type: "changePlayerCharacter";
|
|
38685
38696
|
actorId: string;
|
|
38686
38697
|
narrative?: {
|
|
38687
38698
|
text: string[];
|
|
@@ -38870,7 +38881,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
38870
38881
|
text: string[];
|
|
38871
38882
|
} | undefined;
|
|
38872
38883
|
} | {
|
|
38873
|
-
type: "
|
|
38884
|
+
type: "changePlayerCharacter";
|
|
38874
38885
|
actorId: string;
|
|
38875
38886
|
narrative?: {
|
|
38876
38887
|
text: string[];
|
|
@@ -38885,6 +38896,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
38885
38896
|
requiredInventory?: string[] | undefined;
|
|
38886
38897
|
}>>;
|
|
38887
38898
|
gameNotBegun: z.ZodBoolean;
|
|
38899
|
+
cellMatrix: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, "many">, "many">>;
|
|
38888
38900
|
}, "strip", z.ZodTypeAny, {
|
|
38889
38901
|
actorOrders: Record<string, ({
|
|
38890
38902
|
type: "move";
|
|
@@ -39112,7 +39124,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
39112
39124
|
text: string[];
|
|
39113
39125
|
} | undefined;
|
|
39114
39126
|
} | {
|
|
39115
|
-
type: "
|
|
39127
|
+
type: "changePlayerCharacter";
|
|
39116
39128
|
actorId: string;
|
|
39117
39129
|
narrative?: {
|
|
39118
39130
|
text: string[];
|
|
@@ -39299,7 +39311,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
39299
39311
|
text: string[];
|
|
39300
39312
|
} | undefined;
|
|
39301
39313
|
} | {
|
|
39302
|
-
type: "
|
|
39314
|
+
type: "changePlayerCharacter";
|
|
39303
39315
|
actorId: string;
|
|
39304
39316
|
narrative?: {
|
|
39305
39317
|
text: string[];
|
|
@@ -39313,6 +39325,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
39313
39325
|
flagsThatMustBeTrue?: string[] | undefined;
|
|
39314
39326
|
requiredInventory?: string[] | undefined;
|
|
39315
39327
|
} | undefined;
|
|
39328
|
+
cellMatrix?: (0 | 1)[][] | undefined;
|
|
39316
39329
|
}, {
|
|
39317
39330
|
actorOrders: Record<string, ({
|
|
39318
39331
|
type: "move";
|
|
@@ -39540,7 +39553,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
39540
39553
|
text: string[];
|
|
39541
39554
|
} | undefined;
|
|
39542
39555
|
} | {
|
|
39543
|
-
type: "
|
|
39556
|
+
type: "changePlayerCharacter";
|
|
39544
39557
|
actorId: string;
|
|
39545
39558
|
narrative?: {
|
|
39546
39559
|
text: string[];
|
|
@@ -39727,7 +39740,7 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
39727
39740
|
text: string[];
|
|
39728
39741
|
} | undefined;
|
|
39729
39742
|
} | {
|
|
39730
|
-
type: "
|
|
39743
|
+
type: "changePlayerCharacter";
|
|
39731
39744
|
actorId: string;
|
|
39732
39745
|
narrative?: {
|
|
39733
39746
|
text: string[];
|
|
@@ -39741,8 +39754,11 @@ export declare const GameHappeningsSchema: z.ZodObject<{
|
|
|
39741
39754
|
flagsThatMustBeTrue?: string[] | undefined;
|
|
39742
39755
|
requiredInventory?: string[] | undefined;
|
|
39743
39756
|
} | undefined;
|
|
39757
|
+
cellMatrix?: (0 | 1)[][] | undefined;
|
|
39744
39758
|
}>;
|
|
39745
39759
|
|
|
39760
|
+
export declare function generateCellMatrix(roomData: RoomData, cellSize: number): CellMatrix;
|
|
39761
|
+
|
|
39746
39762
|
export declare type GotoOrder = z.infer<typeof GotoOrderSchema>;
|
|
39747
39763
|
|
|
39748
39764
|
export declare const GotoOrderSchema: z.ZodObject<{
|
|
@@ -40216,7 +40232,7 @@ export declare const ImmediateConsequenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
40216
40232
|
text: string[];
|
|
40217
40233
|
} | undefined;
|
|
40218
40234
|
}>, z.ZodObject<{
|
|
40219
|
-
type: z.ZodLiteral<"
|
|
40235
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
40220
40236
|
actorId: z.ZodString;
|
|
40221
40237
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
40222
40238
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -40226,13 +40242,13 @@ export declare const ImmediateConsequenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
40226
40242
|
text: string[];
|
|
40227
40243
|
}>>;
|
|
40228
40244
|
}, "strip", z.ZodTypeAny, {
|
|
40229
|
-
type: "
|
|
40245
|
+
type: "changePlayerCharacter";
|
|
40230
40246
|
actorId: string;
|
|
40231
40247
|
narrative?: {
|
|
40232
40248
|
text: string[];
|
|
40233
40249
|
} | undefined;
|
|
40234
40250
|
}, {
|
|
40235
|
-
type: "
|
|
40251
|
+
type: "changePlayerCharacter";
|
|
40236
40252
|
actorId: string;
|
|
40237
40253
|
narrative?: {
|
|
40238
40254
|
text: string[];
|
|
@@ -40595,7 +40611,7 @@ export declare const ImmediateConsequenceSchemaWithDeprecated: z.ZodUnion<[z.Zod
|
|
|
40595
40611
|
text: string[];
|
|
40596
40612
|
} | undefined;
|
|
40597
40613
|
}>, z.ZodObject<{
|
|
40598
|
-
type: z.ZodLiteral<"
|
|
40614
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
40599
40615
|
actorId: z.ZodString;
|
|
40600
40616
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
40601
40617
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -40605,13 +40621,13 @@ export declare const ImmediateConsequenceSchemaWithDeprecated: z.ZodUnion<[z.Zod
|
|
|
40605
40621
|
text: string[];
|
|
40606
40622
|
}>>;
|
|
40607
40623
|
}, "strip", z.ZodTypeAny, {
|
|
40608
|
-
type: "
|
|
40624
|
+
type: "changePlayerCharacter";
|
|
40609
40625
|
actorId: string;
|
|
40610
40626
|
narrative?: {
|
|
40611
40627
|
text: string[];
|
|
40612
40628
|
} | undefined;
|
|
40613
40629
|
}, {
|
|
40614
|
-
type: "
|
|
40630
|
+
type: "changePlayerCharacter";
|
|
40615
40631
|
actorId: string;
|
|
40616
40632
|
narrative?: {
|
|
40617
40633
|
text: string[];
|
|
@@ -41382,7 +41398,7 @@ export declare const InteractionSchema: z.ZodObject<{
|
|
|
41382
41398
|
text: string[];
|
|
41383
41399
|
} | undefined;
|
|
41384
41400
|
}>, z.ZodObject<{
|
|
41385
|
-
type: z.ZodLiteral<"
|
|
41401
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
41386
41402
|
actorId: z.ZodString;
|
|
41387
41403
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
41388
41404
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -41392,13 +41408,13 @@ export declare const InteractionSchema: z.ZodObject<{
|
|
|
41392
41408
|
text: string[];
|
|
41393
41409
|
}>>;
|
|
41394
41410
|
}, "strip", z.ZodTypeAny, {
|
|
41395
|
-
type: "
|
|
41411
|
+
type: "changePlayerCharacter";
|
|
41396
41412
|
actorId: string;
|
|
41397
41413
|
narrative?: {
|
|
41398
41414
|
text: string[];
|
|
41399
41415
|
} | undefined;
|
|
41400
41416
|
}, {
|
|
41401
|
-
type: "
|
|
41417
|
+
type: "changePlayerCharacter";
|
|
41402
41418
|
actorId: string;
|
|
41403
41419
|
narrative?: {
|
|
41404
41420
|
text: string[];
|
|
@@ -41583,7 +41599,7 @@ export declare const InteractionSchema: z.ZodObject<{
|
|
|
41583
41599
|
text: string[];
|
|
41584
41600
|
} | undefined;
|
|
41585
41601
|
} | {
|
|
41586
|
-
type: "
|
|
41602
|
+
type: "changePlayerCharacter";
|
|
41587
41603
|
actorId: string;
|
|
41588
41604
|
narrative?: {
|
|
41589
41605
|
text: string[];
|
|
@@ -41772,7 +41788,7 @@ export declare const InteractionSchema: z.ZodObject<{
|
|
|
41772
41788
|
text: string[];
|
|
41773
41789
|
} | undefined;
|
|
41774
41790
|
} | {
|
|
41775
|
-
type: "
|
|
41791
|
+
type: "changePlayerCharacter";
|
|
41776
41792
|
actorId: string;
|
|
41777
41793
|
narrative?: {
|
|
41778
41794
|
text: string[];
|
|
@@ -42529,7 +42545,7 @@ export declare const InteractionSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
42529
42545
|
text: string[];
|
|
42530
42546
|
} | undefined;
|
|
42531
42547
|
}>, z.ZodObject<{
|
|
42532
|
-
type: z.ZodLiteral<"
|
|
42548
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
42533
42549
|
actorId: z.ZodString;
|
|
42534
42550
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
42535
42551
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -42539,13 +42555,13 @@ export declare const InteractionSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
42539
42555
|
text: string[];
|
|
42540
42556
|
}>>;
|
|
42541
42557
|
}, "strip", z.ZodTypeAny, {
|
|
42542
|
-
type: "
|
|
42558
|
+
type: "changePlayerCharacter";
|
|
42543
42559
|
actorId: string;
|
|
42544
42560
|
narrative?: {
|
|
42545
42561
|
text: string[];
|
|
42546
42562
|
} | undefined;
|
|
42547
42563
|
}, {
|
|
42548
|
-
type: "
|
|
42564
|
+
type: "changePlayerCharacter";
|
|
42549
42565
|
actorId: string;
|
|
42550
42566
|
narrative?: {
|
|
42551
42567
|
text: string[];
|
|
@@ -42749,7 +42765,7 @@ export declare const InteractionSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
42749
42765
|
text: string[];
|
|
42750
42766
|
} | undefined;
|
|
42751
42767
|
} | {
|
|
42752
|
-
type: "
|
|
42768
|
+
type: "changePlayerCharacter";
|
|
42753
42769
|
actorId: string;
|
|
42754
42770
|
narrative?: {
|
|
42755
42771
|
text: string[];
|
|
@@ -42944,7 +42960,7 @@ export declare const InteractionSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
42944
42960
|
text: string[];
|
|
42945
42961
|
} | undefined;
|
|
42946
42962
|
} | {
|
|
42947
|
-
type: "
|
|
42963
|
+
type: "changePlayerCharacter";
|
|
42948
42964
|
actorId: string;
|
|
42949
42965
|
narrative?: {
|
|
42950
42966
|
text: string[];
|
|
@@ -44791,7 +44807,7 @@ export declare const SequenceSchema: z.ZodObject<{
|
|
|
44791
44807
|
text: string[];
|
|
44792
44808
|
} | undefined;
|
|
44793
44809
|
}>, z.ZodObject<{
|
|
44794
|
-
type: z.ZodLiteral<"
|
|
44810
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
44795
44811
|
actorId: z.ZodString;
|
|
44796
44812
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
44797
44813
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -44801,13 +44817,13 @@ export declare const SequenceSchema: z.ZodObject<{
|
|
|
44801
44817
|
text: string[];
|
|
44802
44818
|
}>>;
|
|
44803
44819
|
}, "strip", z.ZodTypeAny, {
|
|
44804
|
-
type: "
|
|
44820
|
+
type: "changePlayerCharacter";
|
|
44805
44821
|
actorId: string;
|
|
44806
44822
|
narrative?: {
|
|
44807
44823
|
text: string[];
|
|
44808
44824
|
} | undefined;
|
|
44809
44825
|
}, {
|
|
44810
|
-
type: "
|
|
44826
|
+
type: "changePlayerCharacter";
|
|
44811
44827
|
actorId: string;
|
|
44812
44828
|
narrative?: {
|
|
44813
44829
|
text: string[];
|
|
@@ -44986,7 +45002,7 @@ export declare const SequenceSchema: z.ZodObject<{
|
|
|
44986
45002
|
text: string[];
|
|
44987
45003
|
} | undefined;
|
|
44988
45004
|
} | {
|
|
44989
|
-
type: "
|
|
45005
|
+
type: "changePlayerCharacter";
|
|
44990
45006
|
actorId: string;
|
|
44991
45007
|
narrative?: {
|
|
44992
45008
|
text: string[];
|
|
@@ -45157,7 +45173,7 @@ export declare const SequenceSchema: z.ZodObject<{
|
|
|
45157
45173
|
text: string[];
|
|
45158
45174
|
} | undefined;
|
|
45159
45175
|
} | {
|
|
45160
|
-
type: "
|
|
45176
|
+
type: "changePlayerCharacter";
|
|
45161
45177
|
actorId: string;
|
|
45162
45178
|
narrative?: {
|
|
45163
45179
|
text: string[];
|
|
@@ -45331,7 +45347,7 @@ export declare const SequenceSchema: z.ZodObject<{
|
|
|
45331
45347
|
text: string[];
|
|
45332
45348
|
} | undefined;
|
|
45333
45349
|
} | {
|
|
45334
|
-
type: "
|
|
45350
|
+
type: "changePlayerCharacter";
|
|
45335
45351
|
actorId: string;
|
|
45336
45352
|
narrative?: {
|
|
45337
45353
|
text: string[];
|
|
@@ -45506,7 +45522,7 @@ export declare const SequenceSchema: z.ZodObject<{
|
|
|
45506
45522
|
text: string[];
|
|
45507
45523
|
} | undefined;
|
|
45508
45524
|
} | {
|
|
45509
|
-
type: "
|
|
45525
|
+
type: "changePlayerCharacter";
|
|
45510
45526
|
actorId: string;
|
|
45511
45527
|
narrative?: {
|
|
45512
45528
|
text: string[];
|
|
@@ -46098,7 +46114,7 @@ export declare const SequenceSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
46098
46114
|
text: string[];
|
|
46099
46115
|
} | undefined;
|
|
46100
46116
|
}>, z.ZodObject<{
|
|
46101
|
-
type: z.ZodLiteral<"
|
|
46117
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
46102
46118
|
actorId: z.ZodString;
|
|
46103
46119
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
46104
46120
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -46108,13 +46124,13 @@ export declare const SequenceSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
46108
46124
|
text: string[];
|
|
46109
46125
|
}>>;
|
|
46110
46126
|
}, "strip", z.ZodTypeAny, {
|
|
46111
|
-
type: "
|
|
46127
|
+
type: "changePlayerCharacter";
|
|
46112
46128
|
actorId: string;
|
|
46113
46129
|
narrative?: {
|
|
46114
46130
|
text: string[];
|
|
46115
46131
|
} | undefined;
|
|
46116
46132
|
}, {
|
|
46117
|
-
type: "
|
|
46133
|
+
type: "changePlayerCharacter";
|
|
46118
46134
|
actorId: string;
|
|
46119
46135
|
narrative?: {
|
|
46120
46136
|
text: string[];
|
|
@@ -46307,7 +46323,7 @@ export declare const SequenceSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
46307
46323
|
text: string[];
|
|
46308
46324
|
} | undefined;
|
|
46309
46325
|
} | {
|
|
46310
|
-
type: "
|
|
46326
|
+
type: "changePlayerCharacter";
|
|
46311
46327
|
actorId: string;
|
|
46312
46328
|
narrative?: {
|
|
46313
46329
|
text: string[];
|
|
@@ -46484,7 +46500,7 @@ export declare const SequenceSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
46484
46500
|
text: string[];
|
|
46485
46501
|
} | undefined;
|
|
46486
46502
|
} | {
|
|
46487
|
-
type: "
|
|
46503
|
+
type: "changePlayerCharacter";
|
|
46488
46504
|
actorId: string;
|
|
46489
46505
|
narrative?: {
|
|
46490
46506
|
text: string[];
|
|
@@ -46664,7 +46680,7 @@ export declare const SequenceSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
46664
46680
|
text: string[];
|
|
46665
46681
|
} | undefined;
|
|
46666
46682
|
} | {
|
|
46667
|
-
type: "
|
|
46683
|
+
type: "changePlayerCharacter";
|
|
46668
46684
|
actorId: string;
|
|
46669
46685
|
narrative?: {
|
|
46670
46686
|
text: string[];
|
|
@@ -46845,7 +46861,7 @@ export declare const SequenceSchemaWithDeprecatedConsequences: z.ZodObject<{
|
|
|
46845
46861
|
text: string[];
|
|
46846
46862
|
} | undefined;
|
|
46847
46863
|
} | {
|
|
46848
|
-
type: "
|
|
46864
|
+
type: "changePlayerCharacter";
|
|
46849
46865
|
actorId: string;
|
|
46850
46866
|
narrative?: {
|
|
46851
46867
|
text: string[];
|
|
@@ -47737,7 +47753,7 @@ export declare const StageSchema: z.ZodObject<{
|
|
|
47737
47753
|
text: string[];
|
|
47738
47754
|
} | undefined;
|
|
47739
47755
|
}>, z.ZodObject<{
|
|
47740
|
-
type: z.ZodLiteral<"
|
|
47756
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
47741
47757
|
actorId: z.ZodString;
|
|
47742
47758
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
47743
47759
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -47747,13 +47763,13 @@ export declare const StageSchema: z.ZodObject<{
|
|
|
47747
47763
|
text: string[];
|
|
47748
47764
|
}>>;
|
|
47749
47765
|
}, "strip", z.ZodTypeAny, {
|
|
47750
|
-
type: "
|
|
47766
|
+
type: "changePlayerCharacter";
|
|
47751
47767
|
actorId: string;
|
|
47752
47768
|
narrative?: {
|
|
47753
47769
|
text: string[];
|
|
47754
47770
|
} | undefined;
|
|
47755
47771
|
}, {
|
|
47756
|
-
type: "
|
|
47772
|
+
type: "changePlayerCharacter";
|
|
47757
47773
|
actorId: string;
|
|
47758
47774
|
narrative?: {
|
|
47759
47775
|
text: string[];
|
|
@@ -47932,7 +47948,7 @@ export declare const StageSchema: z.ZodObject<{
|
|
|
47932
47948
|
text: string[];
|
|
47933
47949
|
} | undefined;
|
|
47934
47950
|
} | {
|
|
47935
|
-
type: "
|
|
47951
|
+
type: "changePlayerCharacter";
|
|
47936
47952
|
actorId: string;
|
|
47937
47953
|
narrative?: {
|
|
47938
47954
|
text: string[];
|
|
@@ -48103,7 +48119,7 @@ export declare const StageSchema: z.ZodObject<{
|
|
|
48103
48119
|
text: string[];
|
|
48104
48120
|
} | undefined;
|
|
48105
48121
|
} | {
|
|
48106
|
-
type: "
|
|
48122
|
+
type: "changePlayerCharacter";
|
|
48107
48123
|
actorId: string;
|
|
48108
48124
|
narrative?: {
|
|
48109
48125
|
text: string[];
|
|
@@ -49781,7 +49797,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
49781
49797
|
text: string[];
|
|
49782
49798
|
} | undefined;
|
|
49783
49799
|
}>, z.ZodObject<{
|
|
49784
|
-
type: z.ZodLiteral<"
|
|
49800
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
49785
49801
|
actorId: z.ZodString;
|
|
49786
49802
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
49787
49803
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -49791,13 +49807,13 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
49791
49807
|
text: string[];
|
|
49792
49808
|
}>>;
|
|
49793
49809
|
}, "strip", z.ZodTypeAny, {
|
|
49794
|
-
type: "
|
|
49810
|
+
type: "changePlayerCharacter";
|
|
49795
49811
|
actorId: string;
|
|
49796
49812
|
narrative?: {
|
|
49797
49813
|
text: string[];
|
|
49798
49814
|
} | undefined;
|
|
49799
49815
|
}, {
|
|
49800
|
-
type: "
|
|
49816
|
+
type: "changePlayerCharacter";
|
|
49801
49817
|
actorId: string;
|
|
49802
49818
|
narrative?: {
|
|
49803
49819
|
text: string[];
|
|
@@ -50001,7 +50017,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
50001
50017
|
text: string[];
|
|
50002
50018
|
} | undefined;
|
|
50003
50019
|
} | {
|
|
50004
|
-
type: "
|
|
50020
|
+
type: "changePlayerCharacter";
|
|
50005
50021
|
actorId: string;
|
|
50006
50022
|
narrative?: {
|
|
50007
50023
|
text: string[];
|
|
@@ -50196,7 +50212,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
50196
50212
|
text: string[];
|
|
50197
50213
|
} | undefined;
|
|
50198
50214
|
} | {
|
|
50199
|
-
type: "
|
|
50215
|
+
type: "changePlayerCharacter";
|
|
50200
50216
|
actorId: string;
|
|
50201
50217
|
narrative?: {
|
|
50202
50218
|
text: string[];
|
|
@@ -50839,7 +50855,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
50839
50855
|
text: string[];
|
|
50840
50856
|
} | undefined;
|
|
50841
50857
|
}>, z.ZodObject<{
|
|
50842
|
-
type: z.ZodLiteral<"
|
|
50858
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
50843
50859
|
actorId: z.ZodString;
|
|
50844
50860
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
50845
50861
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -50849,13 +50865,13 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
50849
50865
|
text: string[];
|
|
50850
50866
|
}>>;
|
|
50851
50867
|
}, "strip", z.ZodTypeAny, {
|
|
50852
|
-
type: "
|
|
50868
|
+
type: "changePlayerCharacter";
|
|
50853
50869
|
actorId: string;
|
|
50854
50870
|
narrative?: {
|
|
50855
50871
|
text: string[];
|
|
50856
50872
|
} | undefined;
|
|
50857
50873
|
}, {
|
|
50858
|
-
type: "
|
|
50874
|
+
type: "changePlayerCharacter";
|
|
50859
50875
|
actorId: string;
|
|
50860
50876
|
narrative?: {
|
|
50861
50877
|
text: string[];
|
|
@@ -51048,7 +51064,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
51048
51064
|
text: string[];
|
|
51049
51065
|
} | undefined;
|
|
51050
51066
|
} | {
|
|
51051
|
-
type: "
|
|
51067
|
+
type: "changePlayerCharacter";
|
|
51052
51068
|
actorId: string;
|
|
51053
51069
|
narrative?: {
|
|
51054
51070
|
text: string[];
|
|
@@ -51225,7 +51241,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
51225
51241
|
text: string[];
|
|
51226
51242
|
} | undefined;
|
|
51227
51243
|
} | {
|
|
51228
|
-
type: "
|
|
51244
|
+
type: "changePlayerCharacter";
|
|
51229
51245
|
actorId: string;
|
|
51230
51246
|
narrative?: {
|
|
51231
51247
|
text: string[];
|
|
@@ -51405,7 +51421,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
51405
51421
|
text: string[];
|
|
51406
51422
|
} | undefined;
|
|
51407
51423
|
} | {
|
|
51408
|
-
type: "
|
|
51424
|
+
type: "changePlayerCharacter";
|
|
51409
51425
|
actorId: string;
|
|
51410
51426
|
narrative?: {
|
|
51411
51427
|
text: string[];
|
|
@@ -51586,7 +51602,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
51586
51602
|
text: string[];
|
|
51587
51603
|
} | undefined;
|
|
51588
51604
|
} | {
|
|
51589
|
-
type: "
|
|
51605
|
+
type: "changePlayerCharacter";
|
|
51590
51606
|
actorId: string;
|
|
51591
51607
|
narrative?: {
|
|
51592
51608
|
text: string[];
|
|
@@ -51786,7 +51802,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
51786
51802
|
text: string[];
|
|
51787
51803
|
} | undefined;
|
|
51788
51804
|
} | {
|
|
51789
|
-
type: "
|
|
51805
|
+
type: "changePlayerCharacter";
|
|
51790
51806
|
actorId: string;
|
|
51791
51807
|
narrative?: {
|
|
51792
51808
|
text: string[];
|
|
@@ -51986,7 +52002,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
51986
52002
|
text: string[];
|
|
51987
52003
|
} | undefined;
|
|
51988
52004
|
} | {
|
|
51989
|
-
type: "
|
|
52005
|
+
type: "changePlayerCharacter";
|
|
51990
52006
|
actorId: string;
|
|
51991
52007
|
narrative?: {
|
|
51992
52008
|
text: string[];
|
|
@@ -52188,7 +52204,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
52188
52204
|
text: string[];
|
|
52189
52205
|
} | undefined;
|
|
52190
52206
|
} | {
|
|
52191
|
-
type: "
|
|
52207
|
+
type: "changePlayerCharacter";
|
|
52192
52208
|
actorId: string;
|
|
52193
52209
|
narrative?: {
|
|
52194
52210
|
text: string[];
|
|
@@ -52390,7 +52406,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
52390
52406
|
text: string[];
|
|
52391
52407
|
} | undefined;
|
|
52392
52408
|
} | {
|
|
52393
|
-
type: "
|
|
52409
|
+
type: "changePlayerCharacter";
|
|
52394
52410
|
actorId: string;
|
|
52395
52411
|
narrative?: {
|
|
52396
52412
|
text: string[];
|
|
@@ -52595,7 +52611,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
52595
52611
|
text: string[];
|
|
52596
52612
|
} | undefined;
|
|
52597
52613
|
} | {
|
|
52598
|
-
type: "
|
|
52614
|
+
type: "changePlayerCharacter";
|
|
52599
52615
|
actorId: string;
|
|
52600
52616
|
narrative?: {
|
|
52601
52617
|
text: string[];
|
|
@@ -52802,7 +52818,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
52802
52818
|
text: string[];
|
|
52803
52819
|
} | undefined;
|
|
52804
52820
|
} | {
|
|
52805
|
-
type: "
|
|
52821
|
+
type: "changePlayerCharacter";
|
|
52806
52822
|
actorId: string;
|
|
52807
52823
|
narrative?: {
|
|
52808
52824
|
text: string[];
|
|
@@ -53136,7 +53152,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
53136
53152
|
text: string[];
|
|
53137
53153
|
} | undefined;
|
|
53138
53154
|
} | {
|
|
53139
|
-
type: "
|
|
53155
|
+
type: "changePlayerCharacter";
|
|
53140
53156
|
actorId: string;
|
|
53141
53157
|
narrative?: {
|
|
53142
53158
|
text: string[];
|
|
@@ -53344,7 +53360,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
53344
53360
|
text: string[];
|
|
53345
53361
|
} | undefined;
|
|
53346
53362
|
} | {
|
|
53347
|
-
type: "
|
|
53363
|
+
type: "changePlayerCharacter";
|
|
53348
53364
|
actorId: string;
|
|
53349
53365
|
narrative?: {
|
|
53350
53366
|
text: string[];
|
|
@@ -53670,7 +53686,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
53670
53686
|
text: string[];
|
|
53671
53687
|
} | undefined;
|
|
53672
53688
|
} | {
|
|
53673
|
-
type: "
|
|
53689
|
+
type: "changePlayerCharacter";
|
|
53674
53690
|
actorId: string;
|
|
53675
53691
|
narrative?: {
|
|
53676
53692
|
text: string[];
|
|
@@ -53878,7 +53894,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
53878
53894
|
text: string[];
|
|
53879
53895
|
} | undefined;
|
|
53880
53896
|
} | {
|
|
53881
|
-
type: "
|
|
53897
|
+
type: "changePlayerCharacter";
|
|
53882
53898
|
actorId: string;
|
|
53883
53899
|
narrative?: {
|
|
53884
53900
|
text: string[];
|
|
@@ -54524,7 +54540,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
54524
54540
|
text: string[];
|
|
54525
54541
|
} | undefined;
|
|
54526
54542
|
}>, z.ZodObject<{
|
|
54527
|
-
type: z.ZodLiteral<"
|
|
54543
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
54528
54544
|
actorId: z.ZodString;
|
|
54529
54545
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
54530
54546
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -54534,13 +54550,13 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
54534
54550
|
text: string[];
|
|
54535
54551
|
}>>;
|
|
54536
54552
|
}, "strip", z.ZodTypeAny, {
|
|
54537
|
-
type: "
|
|
54553
|
+
type: "changePlayerCharacter";
|
|
54538
54554
|
actorId: string;
|
|
54539
54555
|
narrative?: {
|
|
54540
54556
|
text: string[];
|
|
54541
54557
|
} | undefined;
|
|
54542
54558
|
}, {
|
|
54543
|
-
type: "
|
|
54559
|
+
type: "changePlayerCharacter";
|
|
54544
54560
|
actorId: string;
|
|
54545
54561
|
narrative?: {
|
|
54546
54562
|
text: string[];
|
|
@@ -54733,7 +54749,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
54733
54749
|
text: string[];
|
|
54734
54750
|
} | undefined;
|
|
54735
54751
|
} | {
|
|
54736
|
-
type: "
|
|
54752
|
+
type: "changePlayerCharacter";
|
|
54737
54753
|
actorId: string;
|
|
54738
54754
|
narrative?: {
|
|
54739
54755
|
text: string[];
|
|
@@ -54910,7 +54926,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
54910
54926
|
text: string[];
|
|
54911
54927
|
} | undefined;
|
|
54912
54928
|
} | {
|
|
54913
|
-
type: "
|
|
54929
|
+
type: "changePlayerCharacter";
|
|
54914
54930
|
actorId: string;
|
|
54915
54931
|
narrative?: {
|
|
54916
54932
|
text: string[];
|
|
@@ -55090,7 +55106,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
55090
55106
|
text: string[];
|
|
55091
55107
|
} | undefined;
|
|
55092
55108
|
} | {
|
|
55093
|
-
type: "
|
|
55109
|
+
type: "changePlayerCharacter";
|
|
55094
55110
|
actorId: string;
|
|
55095
55111
|
narrative?: {
|
|
55096
55112
|
text: string[];
|
|
@@ -55271,7 +55287,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
55271
55287
|
text: string[];
|
|
55272
55288
|
} | undefined;
|
|
55273
55289
|
} | {
|
|
55274
|
-
type: "
|
|
55290
|
+
type: "changePlayerCharacter";
|
|
55275
55291
|
actorId: string;
|
|
55276
55292
|
narrative?: {
|
|
55277
55293
|
text: string[];
|
|
@@ -55828,7 +55844,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
55828
55844
|
text: string[];
|
|
55829
55845
|
} | undefined;
|
|
55830
55846
|
} | {
|
|
55831
|
-
type: "
|
|
55847
|
+
type: "changePlayerCharacter";
|
|
55832
55848
|
actorId: string;
|
|
55833
55849
|
narrative?: {
|
|
55834
55850
|
text: string[];
|
|
@@ -56090,7 +56106,7 @@ export declare const v2GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
56090
56106
|
text: string[];
|
|
56091
56107
|
} | undefined;
|
|
56092
56108
|
} | {
|
|
56093
|
-
type: "
|
|
56109
|
+
type: "changePlayerCharacter";
|
|
56094
56110
|
actorId: string;
|
|
56095
56111
|
narrative?: {
|
|
56096
56112
|
text: string[];
|
|
@@ -57438,7 +57454,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
57438
57454
|
text: string[];
|
|
57439
57455
|
} | undefined;
|
|
57440
57456
|
}>, z.ZodObject<{
|
|
57441
|
-
type: z.ZodLiteral<"
|
|
57457
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
57442
57458
|
actorId: z.ZodString;
|
|
57443
57459
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
57444
57460
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -57448,13 +57464,13 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
57448
57464
|
text: string[];
|
|
57449
57465
|
}>>;
|
|
57450
57466
|
}, "strip", z.ZodTypeAny, {
|
|
57451
|
-
type: "
|
|
57467
|
+
type: "changePlayerCharacter";
|
|
57452
57468
|
actorId: string;
|
|
57453
57469
|
narrative?: {
|
|
57454
57470
|
text: string[];
|
|
57455
57471
|
} | undefined;
|
|
57456
57472
|
}, {
|
|
57457
|
-
type: "
|
|
57473
|
+
type: "changePlayerCharacter";
|
|
57458
57474
|
actorId: string;
|
|
57459
57475
|
narrative?: {
|
|
57460
57476
|
text: string[];
|
|
@@ -57658,7 +57674,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
57658
57674
|
text: string[];
|
|
57659
57675
|
} | undefined;
|
|
57660
57676
|
} | {
|
|
57661
|
-
type: "
|
|
57677
|
+
type: "changePlayerCharacter";
|
|
57662
57678
|
actorId: string;
|
|
57663
57679
|
narrative?: {
|
|
57664
57680
|
text: string[];
|
|
@@ -57853,7 +57869,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
57853
57869
|
text: string[];
|
|
57854
57870
|
} | undefined;
|
|
57855
57871
|
} | {
|
|
57856
|
-
type: "
|
|
57872
|
+
type: "changePlayerCharacter";
|
|
57857
57873
|
actorId: string;
|
|
57858
57874
|
narrative?: {
|
|
57859
57875
|
text: string[];
|
|
@@ -58496,7 +58512,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
58496
58512
|
text: string[];
|
|
58497
58513
|
} | undefined;
|
|
58498
58514
|
}>, z.ZodObject<{
|
|
58499
|
-
type: z.ZodLiteral<"
|
|
58515
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
58500
58516
|
actorId: z.ZodString;
|
|
58501
58517
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
58502
58518
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -58506,13 +58522,13 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
58506
58522
|
text: string[];
|
|
58507
58523
|
}>>;
|
|
58508
58524
|
}, "strip", z.ZodTypeAny, {
|
|
58509
|
-
type: "
|
|
58525
|
+
type: "changePlayerCharacter";
|
|
58510
58526
|
actorId: string;
|
|
58511
58527
|
narrative?: {
|
|
58512
58528
|
text: string[];
|
|
58513
58529
|
} | undefined;
|
|
58514
58530
|
}, {
|
|
58515
|
-
type: "
|
|
58531
|
+
type: "changePlayerCharacter";
|
|
58516
58532
|
actorId: string;
|
|
58517
58533
|
narrative?: {
|
|
58518
58534
|
text: string[];
|
|
@@ -58705,7 +58721,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
58705
58721
|
text: string[];
|
|
58706
58722
|
} | undefined;
|
|
58707
58723
|
} | {
|
|
58708
|
-
type: "
|
|
58724
|
+
type: "changePlayerCharacter";
|
|
58709
58725
|
actorId: string;
|
|
58710
58726
|
narrative?: {
|
|
58711
58727
|
text: string[];
|
|
@@ -58882,7 +58898,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
58882
58898
|
text: string[];
|
|
58883
58899
|
} | undefined;
|
|
58884
58900
|
} | {
|
|
58885
|
-
type: "
|
|
58901
|
+
type: "changePlayerCharacter";
|
|
58886
58902
|
actorId: string;
|
|
58887
58903
|
narrative?: {
|
|
58888
58904
|
text: string[];
|
|
@@ -59062,7 +59078,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
59062
59078
|
text: string[];
|
|
59063
59079
|
} | undefined;
|
|
59064
59080
|
} | {
|
|
59065
|
-
type: "
|
|
59081
|
+
type: "changePlayerCharacter";
|
|
59066
59082
|
actorId: string;
|
|
59067
59083
|
narrative?: {
|
|
59068
59084
|
text: string[];
|
|
@@ -59243,7 +59259,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
59243
59259
|
text: string[];
|
|
59244
59260
|
} | undefined;
|
|
59245
59261
|
} | {
|
|
59246
|
-
type: "
|
|
59262
|
+
type: "changePlayerCharacter";
|
|
59247
59263
|
actorId: string;
|
|
59248
59264
|
narrative?: {
|
|
59249
59265
|
text: string[];
|
|
@@ -59443,7 +59459,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
59443
59459
|
text: string[];
|
|
59444
59460
|
} | undefined;
|
|
59445
59461
|
} | {
|
|
59446
|
-
type: "
|
|
59462
|
+
type: "changePlayerCharacter";
|
|
59447
59463
|
actorId: string;
|
|
59448
59464
|
narrative?: {
|
|
59449
59465
|
text: string[];
|
|
@@ -59643,7 +59659,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
59643
59659
|
text: string[];
|
|
59644
59660
|
} | undefined;
|
|
59645
59661
|
} | {
|
|
59646
|
-
type: "
|
|
59662
|
+
type: "changePlayerCharacter";
|
|
59647
59663
|
actorId: string;
|
|
59648
59664
|
narrative?: {
|
|
59649
59665
|
text: string[];
|
|
@@ -59845,7 +59861,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
59845
59861
|
text: string[];
|
|
59846
59862
|
} | undefined;
|
|
59847
59863
|
} | {
|
|
59848
|
-
type: "
|
|
59864
|
+
type: "changePlayerCharacter";
|
|
59849
59865
|
actorId: string;
|
|
59850
59866
|
narrative?: {
|
|
59851
59867
|
text: string[];
|
|
@@ -60047,7 +60063,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
60047
60063
|
text: string[];
|
|
60048
60064
|
} | undefined;
|
|
60049
60065
|
} | {
|
|
60050
|
-
type: "
|
|
60066
|
+
type: "changePlayerCharacter";
|
|
60051
60067
|
actorId: string;
|
|
60052
60068
|
narrative?: {
|
|
60053
60069
|
text: string[];
|
|
@@ -60252,7 +60268,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
60252
60268
|
text: string[];
|
|
60253
60269
|
} | undefined;
|
|
60254
60270
|
} | {
|
|
60255
|
-
type: "
|
|
60271
|
+
type: "changePlayerCharacter";
|
|
60256
60272
|
actorId: string;
|
|
60257
60273
|
narrative?: {
|
|
60258
60274
|
text: string[];
|
|
@@ -60459,7 +60475,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
60459
60475
|
text: string[];
|
|
60460
60476
|
} | undefined;
|
|
60461
60477
|
} | {
|
|
60462
|
-
type: "
|
|
60478
|
+
type: "changePlayerCharacter";
|
|
60463
60479
|
actorId: string;
|
|
60464
60480
|
narrative?: {
|
|
60465
60481
|
text: string[];
|
|
@@ -60777,7 +60793,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
60777
60793
|
text: string[];
|
|
60778
60794
|
} | undefined;
|
|
60779
60795
|
} | {
|
|
60780
|
-
type: "
|
|
60796
|
+
type: "changePlayerCharacter";
|
|
60781
60797
|
actorId: string;
|
|
60782
60798
|
narrative?: {
|
|
60783
60799
|
text: string[];
|
|
@@ -60985,7 +61001,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
60985
61001
|
text: string[];
|
|
60986
61002
|
} | undefined;
|
|
60987
61003
|
} | {
|
|
60988
|
-
type: "
|
|
61004
|
+
type: "changePlayerCharacter";
|
|
60989
61005
|
actorId: string;
|
|
60990
61006
|
narrative?: {
|
|
60991
61007
|
text: string[];
|
|
@@ -61311,7 +61327,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
61311
61327
|
text: string[];
|
|
61312
61328
|
} | undefined;
|
|
61313
61329
|
} | {
|
|
61314
|
-
type: "
|
|
61330
|
+
type: "changePlayerCharacter";
|
|
61315
61331
|
actorId: string;
|
|
61316
61332
|
narrative?: {
|
|
61317
61333
|
text: string[];
|
|
@@ -61519,7 +61535,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
61519
61535
|
text: string[];
|
|
61520
61536
|
} | undefined;
|
|
61521
61537
|
} | {
|
|
61522
|
-
type: "
|
|
61538
|
+
type: "changePlayerCharacter";
|
|
61523
61539
|
actorId: string;
|
|
61524
61540
|
narrative?: {
|
|
61525
61541
|
text: string[];
|
|
@@ -62527,7 +62543,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
62527
62543
|
text: string[];
|
|
62528
62544
|
} | undefined;
|
|
62529
62545
|
}>, z.ZodObject<{
|
|
62530
|
-
type: z.ZodLiteral<"
|
|
62546
|
+
type: z.ZodLiteral<"changePlayerCharacter">;
|
|
62531
62547
|
actorId: z.ZodString;
|
|
62532
62548
|
narrative: z.ZodOptional<z.ZodObject<{
|
|
62533
62549
|
text: z.ZodArray<z.ZodString, "many">;
|
|
@@ -62537,13 +62553,13 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
62537
62553
|
text: string[];
|
|
62538
62554
|
}>>;
|
|
62539
62555
|
}, "strip", z.ZodTypeAny, {
|
|
62540
|
-
type: "
|
|
62556
|
+
type: "changePlayerCharacter";
|
|
62541
62557
|
actorId: string;
|
|
62542
62558
|
narrative?: {
|
|
62543
62559
|
text: string[];
|
|
62544
62560
|
} | undefined;
|
|
62545
62561
|
}, {
|
|
62546
|
-
type: "
|
|
62562
|
+
type: "changePlayerCharacter";
|
|
62547
62563
|
actorId: string;
|
|
62548
62564
|
narrative?: {
|
|
62549
62565
|
text: string[];
|
|
@@ -62736,7 +62752,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
62736
62752
|
text: string[];
|
|
62737
62753
|
} | undefined;
|
|
62738
62754
|
} | {
|
|
62739
|
-
type: "
|
|
62755
|
+
type: "changePlayerCharacter";
|
|
62740
62756
|
actorId: string;
|
|
62741
62757
|
narrative?: {
|
|
62742
62758
|
text: string[];
|
|
@@ -62913,7 +62929,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
62913
62929
|
text: string[];
|
|
62914
62930
|
} | undefined;
|
|
62915
62931
|
} | {
|
|
62916
|
-
type: "
|
|
62932
|
+
type: "changePlayerCharacter";
|
|
62917
62933
|
actorId: string;
|
|
62918
62934
|
narrative?: {
|
|
62919
62935
|
text: string[];
|
|
@@ -63093,7 +63109,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
63093
63109
|
text: string[];
|
|
63094
63110
|
} | undefined;
|
|
63095
63111
|
} | {
|
|
63096
|
-
type: "
|
|
63112
|
+
type: "changePlayerCharacter";
|
|
63097
63113
|
actorId: string;
|
|
63098
63114
|
narrative?: {
|
|
63099
63115
|
text: string[];
|
|
@@ -63274,7 +63290,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
63274
63290
|
text: string[];
|
|
63275
63291
|
} | undefined;
|
|
63276
63292
|
} | {
|
|
63277
|
-
type: "
|
|
63293
|
+
type: "changePlayerCharacter";
|
|
63278
63294
|
actorId: string;
|
|
63279
63295
|
narrative?: {
|
|
63280
63296
|
text: string[];
|
|
@@ -63469,7 +63485,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
63469
63485
|
text: string[];
|
|
63470
63486
|
} | undefined;
|
|
63471
63487
|
} | {
|
|
63472
|
-
type: "
|
|
63488
|
+
type: "changePlayerCharacter";
|
|
63473
63489
|
actorId: string;
|
|
63474
63490
|
narrative?: {
|
|
63475
63491
|
text: string[];
|
|
@@ -63731,7 +63747,7 @@ export declare const v3GameDesignSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
63731
63747
|
text: string[];
|
|
63732
63748
|
} | undefined;
|
|
63733
63749
|
} | {
|
|
63734
|
-
type: "
|
|
63750
|
+
type: "changePlayerCharacter";
|
|
63735
63751
|
actorId: string;
|
|
63736
63752
|
narrative?: {
|
|
63737
63753
|
text: string[];
|