@sharpee/lang-en-us 3.0.0 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/asking.d.ts.map +1 -1
- package/actions/asking.js +1 -3
- package/actions/asking.js.map +1 -1
- package/actions/attacking.d.ts +3 -0
- package/actions/attacking.d.ts.map +1 -1
- package/actions/attacking.js +7 -0
- package/actions/attacking.js.map +1 -1
- package/actions/climbing.d.ts +1 -0
- package/actions/climbing.d.ts.map +1 -1
- package/actions/climbing.js +3 -0
- package/actions/climbing.js.map +1 -1
- package/actions/cutting.d.ts +26 -0
- package/actions/cutting.d.ts.map +1 -0
- package/actions/cutting.js +32 -0
- package/actions/cutting.js.map +1 -0
- package/actions/digging.d.ts +26 -0
- package/actions/digging.d.ts.map +1 -0
- package/actions/digging.js +31 -0
- package/actions/digging.js.map +1 -0
- package/actions/eating.d.ts.map +1 -1
- package/actions/eating.js +0 -1
- package/actions/eating.js.map +1 -1
- package/actions/examining.d.ts +2 -0
- package/actions/examining.d.ts.map +1 -1
- package/actions/examining.js +9 -0
- package/actions/examining.js.map +1 -1
- package/actions/exiting.d.ts +2 -0
- package/actions/exiting.d.ts.map +1 -1
- package/actions/exiting.js +2 -0
- package/actions/exiting.js.map +1 -1
- package/actions/hiding.d.ts +4 -1
- package/actions/hiding.d.ts.map +1 -1
- package/actions/hiding.js +7 -2
- package/actions/hiding.js.map +1 -1
- package/actions/index.d.ts +126 -73
- package/actions/index.d.ts.map +1 -1
- package/actions/index.js +164 -157
- package/actions/index.js.map +1 -1
- package/actions/inserting.d.ts.map +1 -1
- package/actions/inserting.js +0 -1
- package/actions/inserting.js.map +1 -1
- package/actions/opening.d.ts +3 -0
- package/actions/opening.d.ts.map +1 -1
- package/actions/opening.js +5 -2
- package/actions/opening.js.map +1 -1
- package/actions/pulling.d.ts +5 -17
- package/actions/pulling.d.ts.map +1 -1
- package/actions/pulling.js +10 -23
- package/actions/pulling.js.map +1 -1
- package/actions/restarting.d.ts +23 -0
- package/actions/restarting.d.ts.map +1 -0
- package/actions/restarting.js +30 -0
- package/actions/restarting.js.map +1 -0
- package/actions/saving.d.ts.map +1 -1
- package/actions/saving.js +0 -1
- package/actions/saving.js.map +1 -1
- package/actions/searching.d.ts +3 -1
- package/actions/searching.d.ts.map +1 -1
- package/actions/searching.js +6 -1
- package/actions/searching.js.map +1 -1
- package/actions/talking.d.ts.map +1 -1
- package/actions/talking.js +0 -2
- package/actions/talking.js.map +1 -1
- package/actions/telling.d.ts.map +1 -1
- package/actions/telling.js +1 -3
- package/actions/telling.js.map +1 -1
- package/actions/touching.d.ts +0 -2
- package/actions/touching.d.ts.map +1 -1
- package/actions/touching.js +0 -2
- package/actions/touching.js.map +1 -1
- package/actions/turning.d.ts.map +1 -1
- package/actions/turning.js +1 -9
- package/actions/turning.js.map +1 -1
- package/assembler/english-assembler.d.ts +16 -0
- package/assembler/english-assembler.d.ts.map +1 -1
- package/assembler/english-assembler.js +33 -0
- package/assembler/english-assembler.js.map +1 -1
- package/assembler/index.d.ts +2 -1
- package/assembler/index.d.ts.map +1 -1
- package/assembler/index.js +2 -1
- package/assembler/index.js.map +1 -1
- package/data/verbs.d.ts +11 -0
- package/data/verbs.d.ts.map +1 -1
- package/data/verbs.js +98 -14
- package/data/verbs.js.map +1 -1
- package/grammar.d.ts +1 -1
- package/grammar.d.ts.map +1 -1
- package/grammar.js +1 -1
- package/grammar.js.map +1 -1
- package/index.d.ts +15 -14
- package/index.d.ts.map +1 -1
- package/index.js +33 -30
- package/index.js.map +1 -1
- package/language-provider.d.ts +22 -1
- package/language-provider.d.ts.map +1 -1
- package/language-provider.js +70 -37
- package/language-provider.js.map +1 -1
- package/npc/index.d.ts +4 -4
- package/npc/index.d.ts.map +1 -1
- package/npc/index.js +4 -4
- package/npc/index.js.map +1 -1
- package/package.json +3 -3
- package/perspective/index.d.ts +1 -1
- package/perspective/index.d.ts.map +1 -1
- package/perspective/index.js +5 -5
- package/perspective/index.js.map +1 -1
- package/pluralize.js +2 -2
- package/pluralize.js.map +1 -1
package/actions/index.d.ts
CHANGED
|
@@ -3,58 +3,59 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Each action has its own file with patterns, messages, and help text
|
|
5
5
|
*/
|
|
6
|
-
export * from './taking';
|
|
7
|
-
export * from './dropping';
|
|
8
|
-
export * from './looking';
|
|
9
|
-
export * from './inventory';
|
|
10
|
-
export * from './examining';
|
|
11
|
-
export * from './going';
|
|
12
|
-
export * from './opening';
|
|
13
|
-
export * from './closing';
|
|
14
|
-
export * from './putting';
|
|
15
|
-
export * from './inserting';
|
|
16
|
-
export * from './removing';
|
|
17
|
-
export * from './wearing';
|
|
18
|
-
export * from './taking-off';
|
|
19
|
-
export * from './locking';
|
|
20
|
-
export * from './unlocking';
|
|
21
|
-
export * from './entering';
|
|
22
|
-
export * from './exiting';
|
|
23
|
-
export * from './climbing';
|
|
24
|
-
export * from './searching';
|
|
25
|
-
export * from './listening';
|
|
26
|
-
export * from './smelling';
|
|
27
|
-
export * from './touching';
|
|
28
|
-
export * from './reading';
|
|
29
|
-
export * from './switching-on';
|
|
30
|
-
export * from './switching-off';
|
|
31
|
-
export * from './pushing';
|
|
32
|
-
export * from './pulling';
|
|
33
|
-
export * from './turning';
|
|
34
|
-
export * from './lowering';
|
|
35
|
-
export * from './raising';
|
|
36
|
-
export * from './giving';
|
|
37
|
-
export * from './showing';
|
|
38
|
-
export * from './talking';
|
|
39
|
-
export * from './asking';
|
|
40
|
-
export * from './telling';
|
|
41
|
-
export * from './answering';
|
|
42
|
-
export * from './throwing';
|
|
43
|
-
export * from './eating';
|
|
44
|
-
export * from './drinking';
|
|
45
|
-
export * from './attacking';
|
|
46
|
-
export * from './hiding';
|
|
47
|
-
export * from './waiting';
|
|
48
|
-
export * from './sleeping';
|
|
49
|
-
export * from './scoring';
|
|
50
|
-
export * from './help';
|
|
51
|
-
export * from './about';
|
|
52
|
-
export * from './version';
|
|
53
|
-
export * from './saving';
|
|
54
|
-
export * from './restoring';
|
|
55
|
-
export * from './quitting';
|
|
56
|
-
export * from './
|
|
57
|
-
export * from './
|
|
6
|
+
export * from './taking.js';
|
|
7
|
+
export * from './dropping.js';
|
|
8
|
+
export * from './looking.js';
|
|
9
|
+
export * from './inventory.js';
|
|
10
|
+
export * from './examining.js';
|
|
11
|
+
export * from './going.js';
|
|
12
|
+
export * from './opening.js';
|
|
13
|
+
export * from './closing.js';
|
|
14
|
+
export * from './putting.js';
|
|
15
|
+
export * from './inserting.js';
|
|
16
|
+
export * from './removing.js';
|
|
17
|
+
export * from './wearing.js';
|
|
18
|
+
export * from './taking-off.js';
|
|
19
|
+
export * from './locking.js';
|
|
20
|
+
export * from './unlocking.js';
|
|
21
|
+
export * from './entering.js';
|
|
22
|
+
export * from './exiting.js';
|
|
23
|
+
export * from './climbing.js';
|
|
24
|
+
export * from './searching.js';
|
|
25
|
+
export * from './listening.js';
|
|
26
|
+
export * from './smelling.js';
|
|
27
|
+
export * from './touching.js';
|
|
28
|
+
export * from './reading.js';
|
|
29
|
+
export * from './switching-on.js';
|
|
30
|
+
export * from './switching-off.js';
|
|
31
|
+
export * from './pushing.js';
|
|
32
|
+
export * from './pulling.js';
|
|
33
|
+
export * from './turning.js';
|
|
34
|
+
export * from './lowering.js';
|
|
35
|
+
export * from './raising.js';
|
|
36
|
+
export * from './giving.js';
|
|
37
|
+
export * from './showing.js';
|
|
38
|
+
export * from './talking.js';
|
|
39
|
+
export * from './asking.js';
|
|
40
|
+
export * from './telling.js';
|
|
41
|
+
export * from './answering.js';
|
|
42
|
+
export * from './throwing.js';
|
|
43
|
+
export * from './eating.js';
|
|
44
|
+
export * from './drinking.js';
|
|
45
|
+
export * from './attacking.js';
|
|
46
|
+
export * from './hiding.js';
|
|
47
|
+
export * from './waiting.js';
|
|
48
|
+
export * from './sleeping.js';
|
|
49
|
+
export * from './scoring.js';
|
|
50
|
+
export * from './help.js';
|
|
51
|
+
export * from './about.js';
|
|
52
|
+
export * from './version.js';
|
|
53
|
+
export * from './saving.js';
|
|
54
|
+
export * from './restoring.js';
|
|
55
|
+
export * from './quitting.js';
|
|
56
|
+
export * from './restarting.js';
|
|
57
|
+
export * from './undoing.js';
|
|
58
|
+
export * from './again.js';
|
|
58
59
|
/**
|
|
59
60
|
* All standard action language definitions
|
|
60
61
|
*/
|
|
@@ -160,6 +161,8 @@ export declare const standardActionLanguage: ({
|
|
|
160
161
|
examined_door: string;
|
|
161
162
|
examined_wall: string;
|
|
162
163
|
nothing_special: string;
|
|
164
|
+
default_description: string;
|
|
165
|
+
default_description_self: string;
|
|
163
166
|
description: string;
|
|
164
167
|
brief_description: string;
|
|
165
168
|
no_description: string;
|
|
@@ -218,6 +221,9 @@ export declare const standardActionLanguage: ({
|
|
|
218
221
|
revealing: string;
|
|
219
222
|
its_empty: string;
|
|
220
223
|
cant_reach: string;
|
|
224
|
+
no_tool: string;
|
|
225
|
+
tool_not_held: string;
|
|
226
|
+
wrong_tool: string;
|
|
221
227
|
};
|
|
222
228
|
help: {
|
|
223
229
|
description: string;
|
|
@@ -404,6 +410,8 @@ export declare const standardActionLanguage: ({
|
|
|
404
410
|
exited: string;
|
|
405
411
|
exited_from: string;
|
|
406
412
|
nowhere_to_go: string;
|
|
413
|
+
not_in_that: string;
|
|
414
|
+
not_on_that: string;
|
|
407
415
|
exit_blocked: string;
|
|
408
416
|
must_stand_first: string;
|
|
409
417
|
};
|
|
@@ -418,6 +426,7 @@ export declare const standardActionLanguage: ({
|
|
|
418
426
|
messages: {
|
|
419
427
|
no_target: string;
|
|
420
428
|
not_climbable: string;
|
|
429
|
+
climb_nowhere: string;
|
|
421
430
|
cant_go_that_way: string;
|
|
422
431
|
climbed_up: string;
|
|
423
432
|
climbed_down: string;
|
|
@@ -448,7 +457,9 @@ export declare const standardActionLanguage: ({
|
|
|
448
457
|
supporter_contents: string;
|
|
449
458
|
searched_location: string;
|
|
450
459
|
searched_object: string;
|
|
451
|
-
|
|
460
|
+
found_concealed_in_container: string;
|
|
461
|
+
found_concealed_on_supporter: string;
|
|
462
|
+
found_concealed_here: string;
|
|
452
463
|
};
|
|
453
464
|
help: {
|
|
454
465
|
description: string;
|
|
@@ -511,11 +522,9 @@ export declare const standardActionLanguage: ({
|
|
|
511
522
|
feels_normal: string;
|
|
512
523
|
feels_warm: string;
|
|
513
524
|
feels_hot: string;
|
|
514
|
-
feels_cold: string;
|
|
515
525
|
feels_soft: string;
|
|
516
526
|
feels_hard: string;
|
|
517
527
|
feels_smooth: string;
|
|
518
|
-
feels_rough: string;
|
|
519
528
|
feels_wet: string;
|
|
520
529
|
device_vibrating: string;
|
|
521
530
|
immovable_object: string;
|
|
@@ -628,23 +637,11 @@ export declare const standardActionLanguage: ({
|
|
|
628
637
|
no_target: string;
|
|
629
638
|
not_visible: string;
|
|
630
639
|
not_reachable: string;
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
lever_toggled: string;
|
|
637
|
-
cord_pulled: string;
|
|
638
|
-
bell_rings: string;
|
|
639
|
-
cord_activates: string;
|
|
640
|
-
comes_loose: string;
|
|
641
|
-
firmly_attached: string;
|
|
642
|
-
tugging_useless: string;
|
|
643
|
-
pulled_direction: string;
|
|
644
|
-
pulled_nudged: string;
|
|
645
|
-
pulled_with_effort: string;
|
|
646
|
-
pulling_does_nothing: string;
|
|
647
|
-
fixed_in_place: string;
|
|
640
|
+
cant_pull_that: string;
|
|
641
|
+
worn: string;
|
|
642
|
+
already_pulled: string;
|
|
643
|
+
pulled: string;
|
|
644
|
+
nothing_happens: string;
|
|
648
645
|
};
|
|
649
646
|
help: {
|
|
650
647
|
description: string;
|
|
@@ -980,6 +977,9 @@ export declare const standardActionLanguage: ({
|
|
|
980
977
|
need_weapon_to_damage: string;
|
|
981
978
|
wrong_weapon_type: string;
|
|
982
979
|
attack_ineffective: string;
|
|
980
|
+
attack_requires_weapon: string;
|
|
981
|
+
attack_wrong_weapon_type: string;
|
|
982
|
+
attack_invulnerable: string;
|
|
983
983
|
already_dead: string;
|
|
984
984
|
violence_not_the_answer: string;
|
|
985
985
|
'combat.cannot_attack': string;
|
|
@@ -1055,7 +1055,10 @@ export declare const standardActionLanguage: ({
|
|
|
1055
1055
|
on: string;
|
|
1056
1056
|
inside: string;
|
|
1057
1057
|
nothing_to_hide: string;
|
|
1058
|
-
|
|
1058
|
+
cant_hide_there_behind: string;
|
|
1059
|
+
cant_hide_there_under: string;
|
|
1060
|
+
cant_hide_there_on: string;
|
|
1061
|
+
cant_hide_there_inside: string;
|
|
1059
1062
|
already_hidden: string;
|
|
1060
1063
|
};
|
|
1061
1064
|
help: {
|
|
@@ -1295,6 +1298,22 @@ export declare const standardActionLanguage: ({
|
|
|
1295
1298
|
examples: string;
|
|
1296
1299
|
summary: string;
|
|
1297
1300
|
};
|
|
1301
|
+
} | {
|
|
1302
|
+
actionId: string;
|
|
1303
|
+
patterns: string[];
|
|
1304
|
+
messages: {
|
|
1305
|
+
restart_confirm: string;
|
|
1306
|
+
restart_unsaved: string;
|
|
1307
|
+
restart_requested: string;
|
|
1308
|
+
game_restarting: string;
|
|
1309
|
+
starting_over: string;
|
|
1310
|
+
new_game: string;
|
|
1311
|
+
};
|
|
1312
|
+
help: {
|
|
1313
|
+
description: string;
|
|
1314
|
+
examples: string;
|
|
1315
|
+
summary: string;
|
|
1316
|
+
};
|
|
1298
1317
|
} | {
|
|
1299
1318
|
actionId: string;
|
|
1300
1319
|
patterns: string[];
|
|
@@ -1320,5 +1339,39 @@ export declare const standardActionLanguage: ({
|
|
|
1320
1339
|
examples: string;
|
|
1321
1340
|
summary: string;
|
|
1322
1341
|
};
|
|
1342
|
+
} | {
|
|
1343
|
+
actionId: string;
|
|
1344
|
+
patterns: string[];
|
|
1345
|
+
messages: {
|
|
1346
|
+
no_target: string;
|
|
1347
|
+
not_cuttable: string;
|
|
1348
|
+
cant_cut: string;
|
|
1349
|
+
no_tool: string;
|
|
1350
|
+
tool_not_held: string;
|
|
1351
|
+
wrong_tool: string;
|
|
1352
|
+
cut: string;
|
|
1353
|
+
};
|
|
1354
|
+
help: {
|
|
1355
|
+
description: string;
|
|
1356
|
+
examples: string;
|
|
1357
|
+
summary: string;
|
|
1358
|
+
};
|
|
1359
|
+
} | {
|
|
1360
|
+
actionId: string;
|
|
1361
|
+
patterns: string[];
|
|
1362
|
+
messages: {
|
|
1363
|
+
no_target: string;
|
|
1364
|
+
not_diggable: string;
|
|
1365
|
+
cant_dig: string;
|
|
1366
|
+
no_tool: string;
|
|
1367
|
+
tool_not_held: string;
|
|
1368
|
+
wrong_tool: string;
|
|
1369
|
+
dug: string;
|
|
1370
|
+
};
|
|
1371
|
+
help: {
|
|
1372
|
+
description: string;
|
|
1373
|
+
examples: string;
|
|
1374
|
+
summary: string;
|
|
1375
|
+
};
|
|
1323
1376
|
})[];
|
|
1324
1377
|
//# sourceMappingURL=index.d.ts.map
|
package/actions/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../repos/sharpee_v2/packages/lang-en-us/src/actions/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../repos/sharpee_v2/packages/lang-en-us/src/actions/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAG3B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAG9B,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAGhC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAG/B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAG9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAG7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAG7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAG7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAG/B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAG/B,cAAc,aAAa,CAAC;AAG5B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AA4D3B;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA+ElC,CAAC"}
|
package/actions/index.js
CHANGED
|
@@ -21,191 +21,198 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
21
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
22
|
exports.standardActionLanguage = void 0;
|
|
23
23
|
// Core actions
|
|
24
|
-
__exportStar(require("./taking"), exports);
|
|
25
|
-
__exportStar(require("./dropping"), exports);
|
|
26
|
-
__exportStar(require("./looking"), exports);
|
|
27
|
-
__exportStar(require("./inventory"), exports);
|
|
28
|
-
__exportStar(require("./examining"), exports);
|
|
29
|
-
__exportStar(require("./going"), exports);
|
|
24
|
+
__exportStar(require("./taking.js"), exports);
|
|
25
|
+
__exportStar(require("./dropping.js"), exports);
|
|
26
|
+
__exportStar(require("./looking.js"), exports);
|
|
27
|
+
__exportStar(require("./inventory.js"), exports);
|
|
28
|
+
__exportStar(require("./examining.js"), exports);
|
|
29
|
+
__exportStar(require("./going.js"), exports);
|
|
30
30
|
// Container actions
|
|
31
|
-
__exportStar(require("./opening"), exports);
|
|
32
|
-
__exportStar(require("./closing"), exports);
|
|
33
|
-
__exportStar(require("./putting"), exports);
|
|
34
|
-
__exportStar(require("./inserting"), exports);
|
|
35
|
-
__exportStar(require("./removing"), exports);
|
|
31
|
+
__exportStar(require("./opening.js"), exports);
|
|
32
|
+
__exportStar(require("./closing.js"), exports);
|
|
33
|
+
__exportStar(require("./putting.js"), exports);
|
|
34
|
+
__exportStar(require("./inserting.js"), exports);
|
|
35
|
+
__exportStar(require("./removing.js"), exports);
|
|
36
36
|
// Wearable actions
|
|
37
|
-
__exportStar(require("./wearing"), exports);
|
|
38
|
-
__exportStar(require("./taking-off"), exports);
|
|
37
|
+
__exportStar(require("./wearing.js"), exports);
|
|
38
|
+
__exportStar(require("./taking-off.js"), exports);
|
|
39
39
|
// Lock actions
|
|
40
|
-
__exportStar(require("./locking"), exports);
|
|
41
|
-
__exportStar(require("./unlocking"), exports);
|
|
40
|
+
__exportStar(require("./locking.js"), exports);
|
|
41
|
+
__exportStar(require("./unlocking.js"), exports);
|
|
42
42
|
// Movement actions
|
|
43
|
-
__exportStar(require("./entering"), exports);
|
|
44
|
-
__exportStar(require("./exiting"), exports);
|
|
45
|
-
__exportStar(require("./climbing"), exports);
|
|
43
|
+
__exportStar(require("./entering.js"), exports);
|
|
44
|
+
__exportStar(require("./exiting.js"), exports);
|
|
45
|
+
__exportStar(require("./climbing.js"), exports);
|
|
46
46
|
// Sensory actions
|
|
47
|
-
__exportStar(require("./searching"), exports);
|
|
48
|
-
__exportStar(require("./listening"), exports);
|
|
49
|
-
__exportStar(require("./smelling"), exports);
|
|
50
|
-
__exportStar(require("./touching"), exports);
|
|
51
|
-
__exportStar(require("./reading"), exports);
|
|
47
|
+
__exportStar(require("./searching.js"), exports);
|
|
48
|
+
__exportStar(require("./listening.js"), exports);
|
|
49
|
+
__exportStar(require("./smelling.js"), exports);
|
|
50
|
+
__exportStar(require("./touching.js"), exports);
|
|
51
|
+
__exportStar(require("./reading.js"), exports);
|
|
52
52
|
// Device actions
|
|
53
|
-
__exportStar(require("./switching-on"), exports);
|
|
54
|
-
__exportStar(require("./switching-off"), exports);
|
|
55
|
-
__exportStar(require("./pushing"), exports);
|
|
56
|
-
__exportStar(require("./pulling"), exports);
|
|
57
|
-
__exportStar(require("./turning"), exports);
|
|
53
|
+
__exportStar(require("./switching-on.js"), exports);
|
|
54
|
+
__exportStar(require("./switching-off.js"), exports);
|
|
55
|
+
__exportStar(require("./pushing.js"), exports);
|
|
56
|
+
__exportStar(require("./pulling.js"), exports);
|
|
57
|
+
__exportStar(require("./turning.js"), exports);
|
|
58
58
|
// Capability-dispatch actions (ADR-090)
|
|
59
|
-
__exportStar(require("./lowering"), exports);
|
|
60
|
-
__exportStar(require("./raising"), exports);
|
|
59
|
+
__exportStar(require("./lowering.js"), exports);
|
|
60
|
+
__exportStar(require("./raising.js"), exports);
|
|
61
61
|
// Social actions
|
|
62
|
-
__exportStar(require("./giving"), exports);
|
|
63
|
-
__exportStar(require("./showing"), exports);
|
|
64
|
-
__exportStar(require("./talking"), exports);
|
|
65
|
-
__exportStar(require("./asking"), exports);
|
|
66
|
-
__exportStar(require("./telling"), exports);
|
|
67
|
-
__exportStar(require("./answering"), exports);
|
|
62
|
+
__exportStar(require("./giving.js"), exports);
|
|
63
|
+
__exportStar(require("./showing.js"), exports);
|
|
64
|
+
__exportStar(require("./talking.js"), exports);
|
|
65
|
+
__exportStar(require("./asking.js"), exports);
|
|
66
|
+
__exportStar(require("./telling.js"), exports);
|
|
67
|
+
__exportStar(require("./answering.js"), exports);
|
|
68
68
|
// Interaction actions
|
|
69
|
-
__exportStar(require("./throwing"), exports);
|
|
70
|
-
__exportStar(require("./eating"), exports);
|
|
71
|
-
__exportStar(require("./drinking"), exports);
|
|
72
|
-
__exportStar(require("./attacking"), exports);
|
|
69
|
+
__exportStar(require("./throwing.js"), exports);
|
|
70
|
+
__exportStar(require("./eating.js"), exports);
|
|
71
|
+
__exportStar(require("./drinking.js"), exports);
|
|
72
|
+
__exportStar(require("./attacking.js"), exports);
|
|
73
73
|
// Concealment actions (ADR-148)
|
|
74
|
-
__exportStar(require("./hiding"), exports);
|
|
74
|
+
__exportStar(require("./hiding.js"), exports);
|
|
75
75
|
// Meta actions
|
|
76
|
-
__exportStar(require("./waiting"), exports);
|
|
77
|
-
__exportStar(require("./sleeping"), exports);
|
|
78
|
-
__exportStar(require("./scoring"), exports);
|
|
79
|
-
__exportStar(require("./help"), exports);
|
|
80
|
-
__exportStar(require("./about"), exports);
|
|
81
|
-
__exportStar(require("./version"), exports);
|
|
82
|
-
__exportStar(require("./saving"), exports);
|
|
83
|
-
__exportStar(require("./restoring"), exports);
|
|
84
|
-
__exportStar(require("./quitting"), exports);
|
|
85
|
-
__exportStar(require("./
|
|
86
|
-
__exportStar(require("./
|
|
76
|
+
__exportStar(require("./waiting.js"), exports);
|
|
77
|
+
__exportStar(require("./sleeping.js"), exports);
|
|
78
|
+
__exportStar(require("./scoring.js"), exports);
|
|
79
|
+
__exportStar(require("./help.js"), exports);
|
|
80
|
+
__exportStar(require("./about.js"), exports);
|
|
81
|
+
__exportStar(require("./version.js"), exports);
|
|
82
|
+
__exportStar(require("./saving.js"), exports);
|
|
83
|
+
__exportStar(require("./restoring.js"), exports);
|
|
84
|
+
__exportStar(require("./quitting.js"), exports);
|
|
85
|
+
__exportStar(require("./restarting.js"), exports);
|
|
86
|
+
__exportStar(require("./undoing.js"), exports);
|
|
87
|
+
__exportStar(require("./again.js"), exports);
|
|
87
88
|
// Import all action language definitions
|
|
88
|
-
const
|
|
89
|
-
const
|
|
90
|
-
const
|
|
91
|
-
const
|
|
92
|
-
const
|
|
93
|
-
const
|
|
94
|
-
const
|
|
95
|
-
const
|
|
96
|
-
const
|
|
97
|
-
const
|
|
98
|
-
const
|
|
99
|
-
const
|
|
100
|
-
const
|
|
101
|
-
const
|
|
102
|
-
const
|
|
103
|
-
const
|
|
104
|
-
const
|
|
105
|
-
const
|
|
106
|
-
const
|
|
107
|
-
const
|
|
108
|
-
const
|
|
109
|
-
const
|
|
110
|
-
const
|
|
111
|
-
const
|
|
112
|
-
const
|
|
113
|
-
const
|
|
114
|
-
const
|
|
115
|
-
const
|
|
89
|
+
const taking_js_1 = require("./taking.js");
|
|
90
|
+
const dropping_js_1 = require("./dropping.js");
|
|
91
|
+
const looking_js_1 = require("./looking.js");
|
|
92
|
+
const inventory_js_1 = require("./inventory.js");
|
|
93
|
+
const examining_js_1 = require("./examining.js");
|
|
94
|
+
const going_js_1 = require("./going.js");
|
|
95
|
+
const opening_js_1 = require("./opening.js");
|
|
96
|
+
const closing_js_1 = require("./closing.js");
|
|
97
|
+
const putting_js_1 = require("./putting.js");
|
|
98
|
+
const inserting_js_1 = require("./inserting.js");
|
|
99
|
+
const removing_js_1 = require("./removing.js");
|
|
100
|
+
const wearing_js_1 = require("./wearing.js");
|
|
101
|
+
const taking_off_js_1 = require("./taking-off.js");
|
|
102
|
+
const locking_js_1 = require("./locking.js");
|
|
103
|
+
const unlocking_js_1 = require("./unlocking.js");
|
|
104
|
+
const cutting_js_1 = require("./cutting.js");
|
|
105
|
+
const digging_js_1 = require("./digging.js");
|
|
106
|
+
const entering_js_1 = require("./entering.js");
|
|
107
|
+
const exiting_js_1 = require("./exiting.js");
|
|
108
|
+
const climbing_js_1 = require("./climbing.js");
|
|
109
|
+
const searching_js_1 = require("./searching.js");
|
|
110
|
+
const listening_js_1 = require("./listening.js");
|
|
111
|
+
const smelling_js_1 = require("./smelling.js");
|
|
112
|
+
const touching_js_1 = require("./touching.js");
|
|
113
|
+
const reading_js_1 = require("./reading.js");
|
|
114
|
+
const switching_on_js_1 = require("./switching-on.js");
|
|
115
|
+
const switching_off_js_1 = require("./switching-off.js");
|
|
116
|
+
const pushing_js_1 = require("./pushing.js");
|
|
117
|
+
const pulling_js_1 = require("./pulling.js");
|
|
118
|
+
const turning_js_1 = require("./turning.js");
|
|
116
119
|
// Capability-dispatch actions (ADR-090)
|
|
117
|
-
const
|
|
118
|
-
const
|
|
119
|
-
const
|
|
120
|
-
const
|
|
121
|
-
const
|
|
122
|
-
const
|
|
123
|
-
const
|
|
124
|
-
const
|
|
125
|
-
const
|
|
126
|
-
const
|
|
127
|
-
const
|
|
128
|
-
const
|
|
129
|
-
const
|
|
130
|
-
const
|
|
131
|
-
const
|
|
132
|
-
const
|
|
133
|
-
const
|
|
134
|
-
const
|
|
135
|
-
const
|
|
136
|
-
const
|
|
137
|
-
const
|
|
138
|
-
const
|
|
139
|
-
const
|
|
140
|
-
const
|
|
120
|
+
const lowering_js_1 = require("./lowering.js");
|
|
121
|
+
const raising_js_1 = require("./raising.js");
|
|
122
|
+
const giving_js_1 = require("./giving.js");
|
|
123
|
+
const showing_js_1 = require("./showing.js");
|
|
124
|
+
const talking_js_1 = require("./talking.js");
|
|
125
|
+
const asking_js_1 = require("./asking.js");
|
|
126
|
+
const telling_js_1 = require("./telling.js");
|
|
127
|
+
const answering_js_1 = require("./answering.js");
|
|
128
|
+
const throwing_js_1 = require("./throwing.js");
|
|
129
|
+
const eating_js_1 = require("./eating.js");
|
|
130
|
+
const drinking_js_1 = require("./drinking.js");
|
|
131
|
+
const attacking_js_1 = require("./attacking.js");
|
|
132
|
+
const hiding_js_1 = require("./hiding.js");
|
|
133
|
+
const waiting_js_1 = require("./waiting.js");
|
|
134
|
+
const sleeping_js_1 = require("./sleeping.js");
|
|
135
|
+
const scoring_js_1 = require("./scoring.js");
|
|
136
|
+
const help_js_1 = require("./help.js");
|
|
137
|
+
const about_js_1 = require("./about.js");
|
|
138
|
+
const version_js_1 = require("./version.js");
|
|
139
|
+
const saving_js_1 = require("./saving.js");
|
|
140
|
+
const restoring_js_1 = require("./restoring.js");
|
|
141
|
+
const quitting_js_1 = require("./quitting.js");
|
|
142
|
+
const restarting_js_1 = require("./restarting.js");
|
|
143
|
+
const undoing_js_1 = require("./undoing.js");
|
|
144
|
+
const again_js_1 = require("./again.js");
|
|
141
145
|
/**
|
|
142
146
|
* All standard action language definitions
|
|
143
147
|
*/
|
|
144
148
|
exports.standardActionLanguage = [
|
|
145
149
|
// Core actions
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
taking_js_1.takingLanguage,
|
|
151
|
+
dropping_js_1.droppingLanguage,
|
|
152
|
+
looking_js_1.lookingLanguage,
|
|
153
|
+
inventory_js_1.inventoryLanguage,
|
|
154
|
+
examining_js_1.examiningLanguage,
|
|
155
|
+
going_js_1.goingLanguage,
|
|
152
156
|
// Container actions
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
157
|
+
opening_js_1.openingLanguage,
|
|
158
|
+
closing_js_1.closingLanguage,
|
|
159
|
+
putting_js_1.puttingLanguage,
|
|
160
|
+
inserting_js_1.insertingLanguage,
|
|
161
|
+
removing_js_1.removingLanguage,
|
|
158
162
|
// Wearable actions
|
|
159
|
-
|
|
160
|
-
|
|
163
|
+
wearing_js_1.wearingLanguage,
|
|
164
|
+
taking_off_js_1.takingOffLanguage,
|
|
161
165
|
// Lock actions
|
|
162
|
-
|
|
163
|
-
|
|
166
|
+
locking_js_1.lockingLanguage,
|
|
167
|
+
unlocking_js_1.unlockingLanguage,
|
|
168
|
+
cutting_js_1.cuttingLanguage,
|
|
169
|
+
digging_js_1.diggingLanguage,
|
|
164
170
|
// Movement actions
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
171
|
+
entering_js_1.enteringLanguage,
|
|
172
|
+
exiting_js_1.exitingLanguage,
|
|
173
|
+
climbing_js_1.climbingLanguage,
|
|
168
174
|
// Sensory actions
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
175
|
+
searching_js_1.searchingLanguage,
|
|
176
|
+
listening_js_1.listeningLanguage,
|
|
177
|
+
smelling_js_1.smellingLanguage,
|
|
178
|
+
touching_js_1.touchingLanguage,
|
|
179
|
+
reading_js_1.readingLanguage,
|
|
174
180
|
// Device actions
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
181
|
+
switching_on_js_1.switchingOnLanguage,
|
|
182
|
+
switching_off_js_1.switchingOffLanguage,
|
|
183
|
+
pushing_js_1.pushingLanguage,
|
|
184
|
+
pulling_js_1.pullingLanguage,
|
|
185
|
+
turning_js_1.turningLanguage,
|
|
180
186
|
// Capability-dispatch actions (ADR-090)
|
|
181
|
-
|
|
182
|
-
|
|
187
|
+
lowering_js_1.loweringLanguage,
|
|
188
|
+
raising_js_1.raisingLanguage,
|
|
183
189
|
// Social actions
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
+
giving_js_1.givingLanguage,
|
|
191
|
+
showing_js_1.showingLanguage,
|
|
192
|
+
talking_js_1.talkingLanguage,
|
|
193
|
+
asking_js_1.askingLanguage,
|
|
194
|
+
telling_js_1.tellingLanguage,
|
|
195
|
+
answering_js_1.answeringLanguage,
|
|
190
196
|
// Interaction actions
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
197
|
+
throwing_js_1.throwingLanguage,
|
|
198
|
+
eating_js_1.eatingLanguage,
|
|
199
|
+
drinking_js_1.drinkingLanguage,
|
|
200
|
+
attacking_js_1.attackingLanguage,
|
|
195
201
|
// Meta actions
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
202
|
+
waiting_js_1.waitingLanguage,
|
|
203
|
+
sleeping_js_1.sleepingLanguage,
|
|
204
|
+
scoring_js_1.scoringLanguage,
|
|
205
|
+
help_js_1.helpLanguage,
|
|
206
|
+
about_js_1.aboutLanguage,
|
|
207
|
+
version_js_1.versionLanguage,
|
|
208
|
+
saving_js_1.savingLanguage,
|
|
209
|
+
restoring_js_1.restoringLanguage,
|
|
210
|
+
quitting_js_1.quittingLanguage,
|
|
211
|
+
restarting_js_1.restartingLanguage,
|
|
212
|
+
undoing_js_1.undoingLanguage,
|
|
213
|
+
again_js_1.againLanguage,
|
|
207
214
|
// Concealment actions (ADR-148)
|
|
208
|
-
|
|
209
|
-
|
|
215
|
+
hiding_js_1.hidingLanguage,
|
|
216
|
+
hiding_js_1.revealingLanguage,
|
|
210
217
|
];
|
|
211
218
|
//# sourceMappingURL=index.js.map
|