ekms 9.4.5 → 9.5.0-beta.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/common/animals.instance.json +40 -280
- package/common/colors.instance.json +92 -320
- package/common/comparable.instance.json +42 -10
- package/common/crew.instance.json +673 -965
- package/common/crew.js +0 -15
- package/common/dates.instance.json +2 -84
- package/common/dates.js +1 -0
- package/common/dimension.instance.json +2 -2
- package/common/dimension.js +1 -1
- package/common/edible.instance.json +874 -2097
- package/common/fastfood.instance.json +4865 -6422
- package/common/fastfood.js +1 -0
- package/common/gdefaults.js +34 -2
- package/common/helpers/concept.js +2 -1
- package/common/helpers/dialogues.js +2 -1
- package/common/kirk.instance.json +3 -23
- package/common/latin.instance.json +472 -1
- package/common/latin.js +145 -19
- package/common/latin.test.json +5325 -0
- package/common/latin_helpers.js +358 -0
- package/common/length.instance.json +128 -384
- package/common/menus.instance.json +21 -61
- package/common/people.instance.json +128 -96
- package/common/percentages.js +1 -0
- package/common/pipboy.instance.json +84 -366
- package/common/pipboy.js +2 -1
- package/common/pipboy.test.json +1690 -0
- package/common/pokemon.instance.json +351 -103
- package/common/pos.js +39 -34
- package/common/pressure.instance.json +32 -124
- package/common/properties.js +0 -16
- package/common/reminders.test.json +2702 -2786
- package/common/reports.instance.json +2 -2
- package/common/reports.js +4 -1
- package/common/reports.test.json +5547 -4514
- package/common/spock.instance.json +3 -23
- package/common/temperature.instance.json +40 -196
- package/common/tokenize.js +30 -2
- package/common/weight.instance.json +241 -301
- package/common/wp.instance.json +347 -373
- package/common/wp.js +25 -4
- package/common/wp.test.json +3104 -0
- package/package.json +3 -2
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"([putOn|] ([wearable]))",
|
|
39
39
|
"(([put]) <on>)",
|
|
40
40
|
"([call] ([nameable]) ([outfit]))",
|
|
41
|
-
"((condition/1,2) <propertyCondition|> (weapon/
|
|
41
|
+
"((condition/1,2) <propertyCondition|> (weapon/0))"
|
|
42
42
|
],
|
|
43
43
|
"hierarchy": [
|
|
44
44
|
[
|
|
@@ -218,6 +218,9 @@
|
|
|
218
218
|
"isA": [
|
|
219
219
|
"verb"
|
|
220
220
|
],
|
|
221
|
+
"words": [
|
|
222
|
+
"use"
|
|
223
|
+
],
|
|
221
224
|
"level": 0,
|
|
222
225
|
"localHierarchy": [
|
|
223
226
|
[
|
|
@@ -238,7 +241,7 @@
|
|
|
238
241
|
"semantic": "async ({api, context}) => {\n let condition\n if (context.item.condition) {\n condition = { selector: context.item.condition.marker, property: context.item.condition.property[0].marker }\n }\n api.equip({ type: context.item.value, condition })\n }"
|
|
239
242
|
},
|
|
240
243
|
{
|
|
241
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:
|
|
244
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:267",
|
|
242
245
|
"id": "toDrink",
|
|
243
246
|
"isA": [
|
|
244
247
|
"verb"
|
|
@@ -249,7 +252,7 @@
|
|
|
249
252
|
"semantic": "async ({api, context, e}) => {\n const value = await e(context.item)\n api.drink(value.value)\n }"
|
|
250
253
|
},
|
|
251
254
|
{
|
|
252
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:
|
|
255
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:279",
|
|
253
256
|
"id": "eat",
|
|
254
257
|
"localHierarchy": [
|
|
255
258
|
[
|
|
@@ -266,7 +269,7 @@
|
|
|
266
269
|
"semantic": "async ({api, context}) => {\n api.eat(context.item.value)\n }"
|
|
267
270
|
},
|
|
268
271
|
{
|
|
269
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:
|
|
272
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:291",
|
|
270
273
|
"id": "take",
|
|
271
274
|
"isA": [
|
|
272
275
|
"verb"
|
|
@@ -277,7 +280,7 @@
|
|
|
277
280
|
"semantic": "async ({api, context, e}) => {\n const value = await e(context.item)\n api.take(value.value)\n }"
|
|
278
281
|
},
|
|
279
282
|
{
|
|
280
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:
|
|
283
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:303",
|
|
281
284
|
"id": "nameable",
|
|
282
285
|
"isA": [
|
|
283
286
|
"theAble"
|
|
@@ -1713,20 +1716,6 @@
|
|
|
1713
1716
|
0
|
|
1714
1717
|
]
|
|
1715
1718
|
],
|
|
1716
|
-
[
|
|
1717
|
-
[
|
|
1718
|
-
"is",
|
|
1719
|
-
0
|
|
1720
|
-
],
|
|
1721
|
-
[
|
|
1722
|
-
"list",
|
|
1723
|
-
1
|
|
1724
|
-
],
|
|
1725
|
-
[
|
|
1726
|
-
"unknown",
|
|
1727
|
-
0
|
|
1728
|
-
]
|
|
1729
|
-
],
|
|
1730
1719
|
[
|
|
1731
1720
|
[
|
|
1732
1721
|
"is",
|
|
@@ -3759,7 +3748,7 @@
|
|
|
3759
3748
|
"end": 4
|
|
3760
3749
|
},
|
|
3761
3750
|
"dead": true,
|
|
3762
|
-
"level":
|
|
3751
|
+
"level": 0
|
|
3763
3752
|
},
|
|
3764
3753
|
{
|
|
3765
3754
|
"value": "grenade",
|
|
@@ -3837,24 +3826,6 @@
|
|
|
3837
3826
|
0
|
|
3838
3827
|
]
|
|
3839
3828
|
],
|
|
3840
|
-
[
|
|
3841
|
-
[
|
|
3842
|
-
"grenade",
|
|
3843
|
-
0
|
|
3844
|
-
],
|
|
3845
|
-
[
|
|
3846
|
-
"is",
|
|
3847
|
-
0
|
|
3848
|
-
],
|
|
3849
|
-
[
|
|
3850
|
-
"list",
|
|
3851
|
-
0
|
|
3852
|
-
],
|
|
3853
|
-
[
|
|
3854
|
-
"unknown",
|
|
3855
|
-
0
|
|
3856
|
-
]
|
|
3857
|
-
],
|
|
3858
3829
|
[
|
|
3859
3830
|
[
|
|
3860
3831
|
"is",
|
|
@@ -3988,7 +3959,7 @@
|
|
|
3988
3959
|
{
|
|
3989
3960
|
"marker": [
|
|
3990
3961
|
"mine",
|
|
3991
|
-
|
|
3962
|
+
0
|
|
3992
3963
|
],
|
|
3993
3964
|
"range": {
|
|
3994
3965
|
"start": 0,
|
|
@@ -5285,7 +5256,7 @@
|
|
|
5285
5256
|
"types": [
|
|
5286
5257
|
"explosive"
|
|
5287
5258
|
],
|
|
5288
|
-
"level":
|
|
5259
|
+
"level": 0
|
|
5289
5260
|
},
|
|
5290
5261
|
"two": {
|
|
5291
5262
|
"value": "weapon",
|
|
@@ -5301,7 +5272,7 @@
|
|
|
5301
5272
|
"types": [
|
|
5302
5273
|
"weapon"
|
|
5303
5274
|
],
|
|
5304
|
-
"level":
|
|
5275
|
+
"level": 0,
|
|
5305
5276
|
"concept": true
|
|
5306
5277
|
},
|
|
5307
5278
|
"dead": true,
|
|
@@ -5339,16 +5310,6 @@
|
|
|
5339
5310
|
"weapon",
|
|
5340
5311
|
0
|
|
5341
5312
|
]
|
|
5342
|
-
],
|
|
5343
|
-
[
|
|
5344
|
-
[
|
|
5345
|
-
"is",
|
|
5346
|
-
0
|
|
5347
|
-
],
|
|
5348
|
-
[
|
|
5349
|
-
"weapon",
|
|
5350
|
-
0
|
|
5351
|
-
]
|
|
5352
5313
|
]
|
|
5353
5314
|
],
|
|
5354
5315
|
"summaries": [
|
|
@@ -5394,7 +5355,7 @@
|
|
|
5394
5355
|
{
|
|
5395
5356
|
"marker": [
|
|
5396
5357
|
"explosive",
|
|
5397
|
-
|
|
5358
|
+
0
|
|
5398
5359
|
],
|
|
5399
5360
|
"range": {
|
|
5400
5361
|
"start": 0,
|
|
@@ -5429,7 +5390,7 @@
|
|
|
5429
5390
|
{
|
|
5430
5391
|
"marker": [
|
|
5431
5392
|
"explosive",
|
|
5432
|
-
|
|
5393
|
+
0
|
|
5433
5394
|
],
|
|
5434
5395
|
"range": {
|
|
5435
5396
|
"start": 0,
|
|
@@ -5449,7 +5410,7 @@
|
|
|
5449
5410
|
{
|
|
5450
5411
|
"marker": [
|
|
5451
5412
|
"weapon",
|
|
5452
|
-
|
|
5413
|
+
0
|
|
5453
5414
|
],
|
|
5454
5415
|
"range": {
|
|
5455
5416
|
"start": 15,
|
|
@@ -6779,7 +6740,7 @@
|
|
|
6779
6740
|
"end": 6
|
|
6780
6741
|
},
|
|
6781
6742
|
"dead": true,
|
|
6782
|
-
"level":
|
|
6743
|
+
"level": 0
|
|
6783
6744
|
},
|
|
6784
6745
|
{
|
|
6785
6746
|
"value": "rifle",
|
|
@@ -6792,7 +6753,7 @@
|
|
|
6792
6753
|
"end": 13
|
|
6793
6754
|
},
|
|
6794
6755
|
"dead": true,
|
|
6795
|
-
"level":
|
|
6756
|
+
"level": 0
|
|
6796
6757
|
},
|
|
6797
6758
|
{
|
|
6798
6759
|
"value": "shotgun",
|
|
@@ -6881,32 +6842,10 @@
|
|
|
6881
6842
|
],
|
|
6882
6843
|
[
|
|
6883
6844
|
"list",
|
|
6884
|
-
|
|
6885
|
-
],
|
|
6886
|
-
[
|
|
6887
|
-
"rifle",
|
|
6888
|
-
0
|
|
6889
|
-
],
|
|
6890
|
-
[
|
|
6891
|
-
"shotgun",
|
|
6892
|
-
0
|
|
6893
|
-
],
|
|
6894
|
-
[
|
|
6895
|
-
"unknown",
|
|
6896
|
-
0
|
|
6897
|
-
]
|
|
6898
|
-
],
|
|
6899
|
-
[
|
|
6900
|
-
[
|
|
6901
|
-
"is",
|
|
6902
|
-
0
|
|
6903
|
-
],
|
|
6904
|
-
[
|
|
6905
|
-
"list",
|
|
6906
|
-
0
|
|
6845
|
+
1
|
|
6907
6846
|
],
|
|
6908
6847
|
[
|
|
6909
|
-
"
|
|
6848
|
+
"pistol",
|
|
6910
6849
|
0
|
|
6911
6850
|
],
|
|
6912
6851
|
[
|
|
@@ -7067,7 +7006,7 @@
|
|
|
7067
7006
|
{
|
|
7068
7007
|
"marker": [
|
|
7069
7008
|
"pistol",
|
|
7070
|
-
|
|
7009
|
+
0
|
|
7071
7010
|
],
|
|
7072
7011
|
"range": {
|
|
7073
7012
|
"start": 0,
|
|
@@ -7132,7 +7071,7 @@
|
|
|
7132
7071
|
{
|
|
7133
7072
|
"marker": [
|
|
7134
7073
|
"pistol",
|
|
7135
|
-
|
|
7074
|
+
0
|
|
7136
7075
|
],
|
|
7137
7076
|
"range": {
|
|
7138
7077
|
"start": 0,
|
|
@@ -7142,7 +7081,7 @@
|
|
|
7142
7081
|
{
|
|
7143
7082
|
"marker": [
|
|
7144
7083
|
"rifle",
|
|
7145
|
-
|
|
7084
|
+
0
|
|
7146
7085
|
],
|
|
7147
7086
|
"range": {
|
|
7148
7087
|
"start": 8,
|
|
@@ -7197,7 +7136,7 @@
|
|
|
7197
7136
|
{
|
|
7198
7137
|
"marker": [
|
|
7199
7138
|
"pistol",
|
|
7200
|
-
|
|
7139
|
+
0
|
|
7201
7140
|
],
|
|
7202
7141
|
"range": {
|
|
7203
7142
|
"start": 0,
|
|
@@ -8539,7 +8478,7 @@
|
|
|
8539
8478
|
"types": [
|
|
8540
8479
|
"firearm"
|
|
8541
8480
|
],
|
|
8542
|
-
"level":
|
|
8481
|
+
"level": 0
|
|
8543
8482
|
},
|
|
8544
8483
|
"two": {
|
|
8545
8484
|
"value": "weapon",
|
|
@@ -8555,7 +8494,7 @@
|
|
|
8555
8494
|
"types": [
|
|
8556
8495
|
"weapon"
|
|
8557
8496
|
],
|
|
8558
|
-
"level":
|
|
8497
|
+
"level": 0,
|
|
8559
8498
|
"concept": true
|
|
8560
8499
|
},
|
|
8561
8500
|
"dead": true,
|
|
@@ -8593,16 +8532,6 @@
|
|
|
8593
8532
|
"weapon",
|
|
8594
8533
|
0
|
|
8595
8534
|
]
|
|
8596
|
-
],
|
|
8597
|
-
[
|
|
8598
|
-
[
|
|
8599
|
-
"is",
|
|
8600
|
-
0
|
|
8601
|
-
],
|
|
8602
|
-
[
|
|
8603
|
-
"weapon",
|
|
8604
|
-
0
|
|
8605
|
-
]
|
|
8606
8535
|
]
|
|
8607
8536
|
],
|
|
8608
8537
|
"summaries": [
|
|
@@ -8648,7 +8577,7 @@
|
|
|
8648
8577
|
{
|
|
8649
8578
|
"marker": [
|
|
8650
8579
|
"firearm",
|
|
8651
|
-
|
|
8580
|
+
0
|
|
8652
8581
|
],
|
|
8653
8582
|
"range": {
|
|
8654
8583
|
"start": 0,
|
|
@@ -8683,7 +8612,7 @@
|
|
|
8683
8612
|
{
|
|
8684
8613
|
"marker": [
|
|
8685
8614
|
"firearm",
|
|
8686
|
-
|
|
8615
|
+
0
|
|
8687
8616
|
],
|
|
8688
8617
|
"range": {
|
|
8689
8618
|
"start": 0,
|
|
@@ -8703,7 +8632,7 @@
|
|
|
8703
8632
|
{
|
|
8704
8633
|
"marker": [
|
|
8705
8634
|
"weapon",
|
|
8706
|
-
|
|
8635
|
+
0
|
|
8707
8636
|
],
|
|
8708
8637
|
"range": {
|
|
8709
8638
|
"start": 13,
|
|
@@ -10196,20 +10125,6 @@
|
|
|
10196
10125
|
0
|
|
10197
10126
|
]
|
|
10198
10127
|
],
|
|
10199
|
-
[
|
|
10200
|
-
[
|
|
10201
|
-
"is",
|
|
10202
|
-
0
|
|
10203
|
-
],
|
|
10204
|
-
[
|
|
10205
|
-
"list",
|
|
10206
|
-
1
|
|
10207
|
-
],
|
|
10208
|
-
[
|
|
10209
|
-
"unknown",
|
|
10210
|
-
0
|
|
10211
|
-
]
|
|
10212
|
-
],
|
|
10213
10128
|
[
|
|
10214
10129
|
[
|
|
10215
10130
|
"is",
|
|
@@ -12103,7 +12018,7 @@
|
|
|
12103
12018
|
"modifiers": [
|
|
12104
12019
|
"determiner"
|
|
12105
12020
|
],
|
|
12106
|
-
"level":
|
|
12021
|
+
"level": 0
|
|
12107
12022
|
},
|
|
12108
12023
|
"two": {
|
|
12109
12024
|
"value": "equipable",
|
|
@@ -12144,20 +12059,6 @@
|
|
|
12144
12059
|
""
|
|
12145
12060
|
],
|
|
12146
12061
|
"associations": [
|
|
12147
|
-
[
|
|
12148
|
-
[
|
|
12149
|
-
"a",
|
|
12150
|
-
0
|
|
12151
|
-
],
|
|
12152
|
-
[
|
|
12153
|
-
"is",
|
|
12154
|
-
0
|
|
12155
|
-
],
|
|
12156
|
-
[
|
|
12157
|
-
"unknown",
|
|
12158
|
-
0
|
|
12159
|
-
]
|
|
12160
|
-
],
|
|
12161
12062
|
[
|
|
12162
12063
|
[
|
|
12163
12064
|
"a",
|
|
@@ -12184,6 +12085,10 @@
|
|
|
12184
12085
|
[
|
|
12185
12086
|
"unknown",
|
|
12186
12087
|
0
|
|
12088
|
+
],
|
|
12089
|
+
[
|
|
12090
|
+
"weapon",
|
|
12091
|
+
0
|
|
12187
12092
|
]
|
|
12188
12093
|
]
|
|
12189
12094
|
],
|
|
@@ -12295,7 +12200,7 @@
|
|
|
12295
12200
|
{
|
|
12296
12201
|
"marker": [
|
|
12297
12202
|
"weapon",
|
|
12298
|
-
|
|
12203
|
+
0
|
|
12299
12204
|
],
|
|
12300
12205
|
"range": {
|
|
12301
12206
|
"start": 2,
|
|
@@ -12330,7 +12235,7 @@
|
|
|
12330
12235
|
{
|
|
12331
12236
|
"marker": [
|
|
12332
12237
|
"weapon",
|
|
12333
|
-
|
|
12238
|
+
0
|
|
12334
12239
|
],
|
|
12335
12240
|
"range": {
|
|
12336
12241
|
"start": 0,
|
|
@@ -13827,7 +13732,7 @@
|
|
|
13827
13732
|
"types": [
|
|
13828
13733
|
"clothe"
|
|
13829
13734
|
],
|
|
13830
|
-
"level":
|
|
13735
|
+
"level": 0
|
|
13831
13736
|
},
|
|
13832
13737
|
"two": {
|
|
13833
13738
|
"value": "wearable",
|
|
@@ -13881,16 +13786,6 @@
|
|
|
13881
13786
|
"unknown",
|
|
13882
13787
|
0
|
|
13883
13788
|
]
|
|
13884
|
-
],
|
|
13885
|
-
[
|
|
13886
|
-
[
|
|
13887
|
-
"is",
|
|
13888
|
-
0
|
|
13889
|
-
],
|
|
13890
|
-
[
|
|
13891
|
-
"unknown",
|
|
13892
|
-
0
|
|
13893
|
-
]
|
|
13894
13789
|
]
|
|
13895
13790
|
],
|
|
13896
13791
|
"summaries": [
|
|
@@ -13971,7 +13866,7 @@
|
|
|
13971
13866
|
{
|
|
13972
13867
|
"marker": [
|
|
13973
13868
|
"clothe",
|
|
13974
|
-
|
|
13869
|
+
0
|
|
13975
13870
|
],
|
|
13976
13871
|
"range": {
|
|
13977
13872
|
"start": 0,
|
|
@@ -17293,7 +17188,7 @@
|
|
|
17293
17188
|
"types": [
|
|
17294
17189
|
"edible"
|
|
17295
17190
|
],
|
|
17296
|
-
"level":
|
|
17191
|
+
"level": 0,
|
|
17297
17192
|
"concept": true
|
|
17298
17193
|
},
|
|
17299
17194
|
"dead": true,
|
|
@@ -17331,16 +17226,6 @@
|
|
|
17331
17226
|
"unknown",
|
|
17332
17227
|
0
|
|
17333
17228
|
]
|
|
17334
|
-
],
|
|
17335
|
-
[
|
|
17336
|
-
[
|
|
17337
|
-
"is",
|
|
17338
|
-
0
|
|
17339
|
-
],
|
|
17340
|
-
[
|
|
17341
|
-
"unknown",
|
|
17342
|
-
0
|
|
17343
|
-
]
|
|
17344
17229
|
]
|
|
17345
17230
|
],
|
|
17346
17231
|
"summaries": [
|
|
@@ -17441,7 +17326,7 @@
|
|
|
17441
17326
|
{
|
|
17442
17327
|
"marker": [
|
|
17443
17328
|
"edible",
|
|
17444
|
-
|
|
17329
|
+
0
|
|
17445
17330
|
],
|
|
17446
17331
|
"range": {
|
|
17447
17332
|
"start": 8,
|
|
@@ -20878,7 +20763,7 @@
|
|
|
20878
20763
|
"types": [
|
|
20879
20764
|
"food"
|
|
20880
20765
|
],
|
|
20881
|
-
"level":
|
|
20766
|
+
"level": 0,
|
|
20882
20767
|
"concept": true
|
|
20883
20768
|
},
|
|
20884
20769
|
"dead": true,
|
|
@@ -20916,16 +20801,6 @@
|
|
|
20916
20801
|
"unknown",
|
|
20917
20802
|
0
|
|
20918
20803
|
]
|
|
20919
|
-
],
|
|
20920
|
-
[
|
|
20921
|
-
[
|
|
20922
|
-
"is",
|
|
20923
|
-
0
|
|
20924
|
-
],
|
|
20925
|
-
[
|
|
20926
|
-
"unknown",
|
|
20927
|
-
0
|
|
20928
|
-
]
|
|
20929
20804
|
]
|
|
20930
20805
|
],
|
|
20931
20806
|
"summaries": [
|
|
@@ -21026,7 +20901,7 @@
|
|
|
21026
20901
|
{
|
|
21027
20902
|
"marker": [
|
|
21028
20903
|
"food",
|
|
21029
|
-
|
|
20904
|
+
0
|
|
21030
20905
|
],
|
|
21031
20906
|
"range": {
|
|
21032
20907
|
"start": 8,
|
|
@@ -22844,7 +22719,7 @@
|
|
|
22844
22719
|
"types": [
|
|
22845
22720
|
"food"
|
|
22846
22721
|
],
|
|
22847
|
-
"level":
|
|
22722
|
+
"level": 0,
|
|
22848
22723
|
"concept": true
|
|
22849
22724
|
},
|
|
22850
22725
|
"dead": true,
|
|
@@ -22900,16 +22775,6 @@
|
|
|
22900
22775
|
"list",
|
|
22901
22776
|
1
|
|
22902
22777
|
]
|
|
22903
|
-
],
|
|
22904
|
-
[
|
|
22905
|
-
[
|
|
22906
|
-
"is",
|
|
22907
|
-
0
|
|
22908
|
-
],
|
|
22909
|
-
[
|
|
22910
|
-
"list",
|
|
22911
|
-
1
|
|
22912
|
-
]
|
|
22913
22778
|
]
|
|
22914
22779
|
],
|
|
22915
22780
|
"summaries": [
|
|
@@ -23140,7 +23005,7 @@
|
|
|
23140
23005
|
{
|
|
23141
23006
|
"marker": [
|
|
23142
23007
|
"food",
|
|
23143
|
-
|
|
23008
|
+
0
|
|
23144
23009
|
],
|
|
23145
23010
|
"range": {
|
|
23146
23011
|
"start": 25,
|
|
@@ -25038,7 +24903,7 @@
|
|
|
25038
24903
|
"types": [
|
|
25039
24904
|
"drink"
|
|
25040
24905
|
],
|
|
25041
|
-
"level":
|
|
24906
|
+
"level": 0,
|
|
25042
24907
|
"concept": true
|
|
25043
24908
|
},
|
|
25044
24909
|
"dead": true,
|
|
@@ -25094,16 +24959,6 @@
|
|
|
25094
24959
|
"list",
|
|
25095
24960
|
1
|
|
25096
24961
|
]
|
|
25097
|
-
],
|
|
25098
|
-
[
|
|
25099
|
-
[
|
|
25100
|
-
"is",
|
|
25101
|
-
0
|
|
25102
|
-
],
|
|
25103
|
-
[
|
|
25104
|
-
"list",
|
|
25105
|
-
1
|
|
25106
|
-
]
|
|
25107
24962
|
]
|
|
25108
24963
|
],
|
|
25109
24964
|
"summaries": [
|
|
@@ -25334,7 +25189,7 @@
|
|
|
25334
25189
|
{
|
|
25335
25190
|
"marker": [
|
|
25336
25191
|
"drink",
|
|
25337
|
-
|
|
25192
|
+
0
|
|
25338
25193
|
],
|
|
25339
25194
|
"range": {
|
|
25340
25195
|
"start": 17,
|
|
@@ -32545,7 +32400,7 @@
|
|
|
32545
32400
|
"modifiers": [
|
|
32546
32401
|
"modifier_item"
|
|
32547
32402
|
],
|
|
32548
|
-
"level":
|
|
32403
|
+
"level": 0,
|
|
32549
32404
|
"concept": true
|
|
32550
32405
|
},
|
|
32551
32406
|
"dead": true,
|
|
@@ -32637,6 +32492,10 @@
|
|
|
32637
32492
|
"is",
|
|
32638
32493
|
0
|
|
32639
32494
|
],
|
|
32495
|
+
[
|
|
32496
|
+
"item_property",
|
|
32497
|
+
0
|
|
32498
|
+
],
|
|
32640
32499
|
[
|
|
32641
32500
|
"list",
|
|
32642
32501
|
1
|
|
@@ -34661,7 +34520,7 @@
|
|
|
34661
34520
|
{
|
|
34662
34521
|
"marker": [
|
|
34663
34522
|
"item_property",
|
|
34664
|
-
|
|
34523
|
+
0
|
|
34665
34524
|
],
|
|
34666
34525
|
"range": {
|
|
34667
34526
|
"start": 61,
|
|
@@ -34734,7 +34593,7 @@
|
|
|
34734
34593
|
"([putOn|] ([wearable]))",
|
|
34735
34594
|
"(([put]) <on>)",
|
|
34736
34595
|
"([call] ([nameable]) ([outfit]))",
|
|
34737
|
-
"((condition/1,2) <propertyCondition|> (weapon/
|
|
34596
|
+
"((condition/1,2) <propertyCondition|> (weapon/0))"
|
|
34738
34597
|
],
|
|
34739
34598
|
"hierarchy": [
|
|
34740
34599
|
[
|
|
@@ -34899,6 +34758,9 @@
|
|
|
34899
34758
|
"isA": [
|
|
34900
34759
|
"verb"
|
|
34901
34760
|
],
|
|
34761
|
+
"words": [
|
|
34762
|
+
"use"
|
|
34763
|
+
],
|
|
34902
34764
|
"level": 0,
|
|
34903
34765
|
"localHierarchy": [
|
|
34904
34766
|
[
|
|
@@ -34917,7 +34779,7 @@
|
|
|
34917
34779
|
"bridge": "{ ...next(operator), item: after[0] }"
|
|
34918
34780
|
},
|
|
34919
34781
|
{
|
|
34920
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:
|
|
34782
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:267",
|
|
34921
34783
|
"id": "toDrink",
|
|
34922
34784
|
"isA": [
|
|
34923
34785
|
"verb"
|
|
@@ -34926,7 +34788,7 @@
|
|
|
34926
34788
|
"bridge": "{ ...next(operator), item: after[0] }"
|
|
34927
34789
|
},
|
|
34928
34790
|
{
|
|
34929
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:
|
|
34791
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:279",
|
|
34930
34792
|
"id": "eat",
|
|
34931
34793
|
"localHierarchy": [
|
|
34932
34794
|
[
|
|
@@ -34941,7 +34803,7 @@
|
|
|
34941
34803
|
"bridge": "{ ...next(operator), item: after[0] }"
|
|
34942
34804
|
},
|
|
34943
34805
|
{
|
|
34944
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:
|
|
34806
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:291",
|
|
34945
34807
|
"id": "take",
|
|
34946
34808
|
"isA": [
|
|
34947
34809
|
"verb"
|
|
@@ -34950,7 +34812,7 @@
|
|
|
34950
34812
|
"bridge": "{ ...next(operator), item: after[0] }"
|
|
34951
34813
|
},
|
|
34952
34814
|
{
|
|
34953
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:
|
|
34815
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:303",
|
|
34954
34816
|
"id": "nameable",
|
|
34955
34817
|
"isA": [
|
|
34956
34818
|
"theAble"
|
|
@@ -35151,20 +35013,6 @@
|
|
|
35151
35013
|
0
|
|
35152
35014
|
]
|
|
35153
35015
|
],
|
|
35154
|
-
[
|
|
35155
|
-
[
|
|
35156
|
-
"a",
|
|
35157
|
-
0
|
|
35158
|
-
],
|
|
35159
|
-
[
|
|
35160
|
-
"is",
|
|
35161
|
-
0
|
|
35162
|
-
],
|
|
35163
|
-
[
|
|
35164
|
-
"unknown",
|
|
35165
|
-
0
|
|
35166
|
-
]
|
|
35167
|
-
],
|
|
35168
35016
|
[
|
|
35169
35017
|
[
|
|
35170
35018
|
"a",
|
|
@@ -35353,24 +35201,6 @@
|
|
|
35353
35201
|
0
|
|
35354
35202
|
]
|
|
35355
35203
|
],
|
|
35356
|
-
[
|
|
35357
|
-
[
|
|
35358
|
-
"grenade",
|
|
35359
|
-
0
|
|
35360
|
-
],
|
|
35361
|
-
[
|
|
35362
|
-
"is",
|
|
35363
|
-
0
|
|
35364
|
-
],
|
|
35365
|
-
[
|
|
35366
|
-
"list",
|
|
35367
|
-
0
|
|
35368
|
-
],
|
|
35369
|
-
[
|
|
35370
|
-
"unknown",
|
|
35371
|
-
0
|
|
35372
|
-
]
|
|
35373
|
-
],
|
|
35374
35204
|
[
|
|
35375
35205
|
[
|
|
35376
35206
|
"is",
|
|
@@ -35439,24 +35269,12 @@
|
|
|
35439
35269
|
0
|
|
35440
35270
|
],
|
|
35441
35271
|
[
|
|
35442
|
-
"
|
|
35443
|
-
0
|
|
35444
|
-
],
|
|
35445
|
-
[
|
|
35446
|
-
"pistol",
|
|
35447
|
-
0
|
|
35448
|
-
],
|
|
35449
|
-
[
|
|
35450
|
-
"rifle",
|
|
35272
|
+
"item_property",
|
|
35451
35273
|
0
|
|
35452
35274
|
],
|
|
35453
35275
|
[
|
|
35454
|
-
"
|
|
35455
|
-
|
|
35456
|
-
],
|
|
35457
|
-
[
|
|
35458
|
-
"unknown",
|
|
35459
|
-
0
|
|
35276
|
+
"list",
|
|
35277
|
+
1
|
|
35460
35278
|
]
|
|
35461
35279
|
],
|
|
35462
35280
|
[
|
|
@@ -35469,25 +35287,11 @@
|
|
|
35469
35287
|
0
|
|
35470
35288
|
],
|
|
35471
35289
|
[
|
|
35472
|
-
"
|
|
35473
|
-
0
|
|
35474
|
-
],
|
|
35475
|
-
[
|
|
35476
|
-
"shotgun",
|
|
35477
|
-
0
|
|
35478
|
-
],
|
|
35479
|
-
[
|
|
35480
|
-
"unknown",
|
|
35481
|
-
0
|
|
35482
|
-
]
|
|
35483
|
-
],
|
|
35484
|
-
[
|
|
35485
|
-
[
|
|
35486
|
-
"is",
|
|
35290
|
+
"pistol",
|
|
35487
35291
|
0
|
|
35488
35292
|
],
|
|
35489
35293
|
[
|
|
35490
|
-
"
|
|
35294
|
+
"rifle",
|
|
35491
35295
|
0
|
|
35492
35296
|
],
|
|
35493
35297
|
[
|
|
@@ -35541,36 +35345,6 @@
|
|
|
35541
35345
|
0
|
|
35542
35346
|
]
|
|
35543
35347
|
],
|
|
35544
|
-
[
|
|
35545
|
-
[
|
|
35546
|
-
"is",
|
|
35547
|
-
0
|
|
35548
|
-
],
|
|
35549
|
-
[
|
|
35550
|
-
"list",
|
|
35551
|
-
1
|
|
35552
|
-
]
|
|
35553
|
-
],
|
|
35554
|
-
[
|
|
35555
|
-
[
|
|
35556
|
-
"is",
|
|
35557
|
-
0
|
|
35558
|
-
],
|
|
35559
|
-
[
|
|
35560
|
-
"list",
|
|
35561
|
-
1
|
|
35562
|
-
]
|
|
35563
|
-
],
|
|
35564
|
-
[
|
|
35565
|
-
[
|
|
35566
|
-
"is",
|
|
35567
|
-
0
|
|
35568
|
-
],
|
|
35569
|
-
[
|
|
35570
|
-
"list",
|
|
35571
|
-
1
|
|
35572
|
-
]
|
|
35573
|
-
],
|
|
35574
35348
|
[
|
|
35575
35349
|
[
|
|
35576
35350
|
"is",
|
|
@@ -35581,19 +35355,9 @@
|
|
|
35581
35355
|
1
|
|
35582
35356
|
],
|
|
35583
35357
|
[
|
|
35584
|
-
"
|
|
35585
|
-
0
|
|
35586
|
-
]
|
|
35587
|
-
],
|
|
35588
|
-
[
|
|
35589
|
-
[
|
|
35590
|
-
"is",
|
|
35358
|
+
"pistol",
|
|
35591
35359
|
0
|
|
35592
35360
|
],
|
|
35593
|
-
[
|
|
35594
|
-
"list",
|
|
35595
|
-
1
|
|
35596
|
-
],
|
|
35597
35361
|
[
|
|
35598
35362
|
"unknown",
|
|
35599
35363
|
0
|
|
@@ -35687,52 +35451,6 @@
|
|
|
35687
35451
|
[
|
|
35688
35452
|
"unknown",
|
|
35689
35453
|
0
|
|
35690
|
-
]
|
|
35691
|
-
],
|
|
35692
|
-
[
|
|
35693
|
-
[
|
|
35694
|
-
"is",
|
|
35695
|
-
0
|
|
35696
|
-
],
|
|
35697
|
-
[
|
|
35698
|
-
"unknown",
|
|
35699
|
-
0
|
|
35700
|
-
]
|
|
35701
|
-
],
|
|
35702
|
-
[
|
|
35703
|
-
[
|
|
35704
|
-
"is",
|
|
35705
|
-
0
|
|
35706
|
-
],
|
|
35707
|
-
[
|
|
35708
|
-
"unknown",
|
|
35709
|
-
0
|
|
35710
|
-
]
|
|
35711
|
-
],
|
|
35712
|
-
[
|
|
35713
|
-
[
|
|
35714
|
-
"is",
|
|
35715
|
-
0
|
|
35716
|
-
],
|
|
35717
|
-
[
|
|
35718
|
-
"unknown",
|
|
35719
|
-
0
|
|
35720
|
-
]
|
|
35721
|
-
],
|
|
35722
|
-
[
|
|
35723
|
-
[
|
|
35724
|
-
"is",
|
|
35725
|
-
0
|
|
35726
|
-
],
|
|
35727
|
-
[
|
|
35728
|
-
"weapon",
|
|
35729
|
-
0
|
|
35730
|
-
]
|
|
35731
|
-
],
|
|
35732
|
-
[
|
|
35733
|
-
[
|
|
35734
|
-
"is",
|
|
35735
|
-
0
|
|
35736
35454
|
],
|
|
35737
35455
|
[
|
|
35738
35456
|
"weapon",
|
|
@@ -36702,7 +36420,7 @@
|
|
|
36702
36420
|
{
|
|
36703
36421
|
"marker": [
|
|
36704
36422
|
"mine",
|
|
36705
|
-
|
|
36423
|
+
0
|
|
36706
36424
|
],
|
|
36707
36425
|
"range": {
|
|
36708
36426
|
"start": 0,
|
|
@@ -36862,7 +36580,7 @@
|
|
|
36862
36580
|
{
|
|
36863
36581
|
"marker": [
|
|
36864
36582
|
"explosive",
|
|
36865
|
-
|
|
36583
|
+
0
|
|
36866
36584
|
],
|
|
36867
36585
|
"range": {
|
|
36868
36586
|
"start": 0,
|
|
@@ -36897,7 +36615,7 @@
|
|
|
36897
36615
|
{
|
|
36898
36616
|
"marker": [
|
|
36899
36617
|
"explosive",
|
|
36900
|
-
|
|
36618
|
+
0
|
|
36901
36619
|
],
|
|
36902
36620
|
"range": {
|
|
36903
36621
|
"start": 0,
|
|
@@ -36917,7 +36635,7 @@
|
|
|
36917
36635
|
{
|
|
36918
36636
|
"marker": [
|
|
36919
36637
|
"weapon",
|
|
36920
|
-
|
|
36638
|
+
0
|
|
36921
36639
|
],
|
|
36922
36640
|
"range": {
|
|
36923
36641
|
"start": 15,
|
|
@@ -37097,7 +36815,7 @@
|
|
|
37097
36815
|
{
|
|
37098
36816
|
"marker": [
|
|
37099
36817
|
"pistol",
|
|
37100
|
-
|
|
36818
|
+
0
|
|
37101
36819
|
],
|
|
37102
36820
|
"range": {
|
|
37103
36821
|
"start": 0,
|
|
@@ -37162,7 +36880,7 @@
|
|
|
37162
36880
|
{
|
|
37163
36881
|
"marker": [
|
|
37164
36882
|
"pistol",
|
|
37165
|
-
|
|
36883
|
+
0
|
|
37166
36884
|
],
|
|
37167
36885
|
"range": {
|
|
37168
36886
|
"start": 0,
|
|
@@ -37172,7 +36890,7 @@
|
|
|
37172
36890
|
{
|
|
37173
36891
|
"marker": [
|
|
37174
36892
|
"rifle",
|
|
37175
|
-
|
|
36893
|
+
0
|
|
37176
36894
|
],
|
|
37177
36895
|
"range": {
|
|
37178
36896
|
"start": 8,
|
|
@@ -37227,7 +36945,7 @@
|
|
|
37227
36945
|
{
|
|
37228
36946
|
"marker": [
|
|
37229
36947
|
"pistol",
|
|
37230
|
-
|
|
36948
|
+
0
|
|
37231
36949
|
],
|
|
37232
36950
|
"range": {
|
|
37233
36951
|
"start": 0,
|
|
@@ -37377,7 +37095,7 @@
|
|
|
37377
37095
|
{
|
|
37378
37096
|
"marker": [
|
|
37379
37097
|
"firearm",
|
|
37380
|
-
|
|
37098
|
+
0
|
|
37381
37099
|
],
|
|
37382
37100
|
"range": {
|
|
37383
37101
|
"start": 0,
|
|
@@ -37412,7 +37130,7 @@
|
|
|
37412
37130
|
{
|
|
37413
37131
|
"marker": [
|
|
37414
37132
|
"firearm",
|
|
37415
|
-
|
|
37133
|
+
0
|
|
37416
37134
|
],
|
|
37417
37135
|
"range": {
|
|
37418
37136
|
"start": 0,
|
|
@@ -37432,7 +37150,7 @@
|
|
|
37432
37150
|
{
|
|
37433
37151
|
"marker": [
|
|
37434
37152
|
"weapon",
|
|
37435
|
-
|
|
37153
|
+
0
|
|
37436
37154
|
],
|
|
37437
37155
|
"range": {
|
|
37438
37156
|
"start": 13,
|
|
@@ -38022,7 +37740,7 @@
|
|
|
38022
37740
|
{
|
|
38023
37741
|
"marker": [
|
|
38024
37742
|
"weapon",
|
|
38025
|
-
|
|
37743
|
+
0
|
|
38026
37744
|
],
|
|
38027
37745
|
"range": {
|
|
38028
37746
|
"start": 2,
|
|
@@ -38057,7 +37775,7 @@
|
|
|
38057
37775
|
{
|
|
38058
37776
|
"marker": [
|
|
38059
37777
|
"weapon",
|
|
38060
|
-
|
|
37778
|
+
0
|
|
38061
37779
|
],
|
|
38062
37780
|
"range": {
|
|
38063
37781
|
"start": 0,
|
|
@@ -38197,7 +37915,7 @@
|
|
|
38197
37915
|
{
|
|
38198
37916
|
"marker": [
|
|
38199
37917
|
"clothe",
|
|
38200
|
-
|
|
37918
|
+
0
|
|
38201
37919
|
],
|
|
38202
37920
|
"range": {
|
|
38203
37921
|
"start": 0,
|
|
@@ -38517,7 +38235,7 @@
|
|
|
38517
38235
|
{
|
|
38518
38236
|
"marker": [
|
|
38519
38237
|
"edible",
|
|
38520
|
-
|
|
38238
|
+
0
|
|
38521
38239
|
],
|
|
38522
38240
|
"range": {
|
|
38523
38241
|
"start": 8,
|
|
@@ -38797,7 +38515,7 @@
|
|
|
38797
38515
|
{
|
|
38798
38516
|
"marker": [
|
|
38799
38517
|
"food",
|
|
38800
|
-
|
|
38518
|
+
0
|
|
38801
38519
|
],
|
|
38802
38520
|
"range": {
|
|
38803
38521
|
"start": 8,
|
|
@@ -39067,7 +38785,7 @@
|
|
|
39067
38785
|
{
|
|
39068
38786
|
"marker": [
|
|
39069
38787
|
"food",
|
|
39070
|
-
|
|
38788
|
+
0
|
|
39071
38789
|
],
|
|
39072
38790
|
"range": {
|
|
39073
38791
|
"start": 25,
|
|
@@ -39337,7 +39055,7 @@
|
|
|
39337
39055
|
{
|
|
39338
39056
|
"marker": [
|
|
39339
39057
|
"drink",
|
|
39340
|
-
|
|
39058
|
+
0
|
|
39341
39059
|
],
|
|
39342
39060
|
"range": {
|
|
39343
39061
|
"start": 17,
|
|
@@ -41777,7 +41495,7 @@
|
|
|
41777
41495
|
{
|
|
41778
41496
|
"marker": [
|
|
41779
41497
|
"item_property",
|
|
41780
|
-
|
|
41498
|
+
0
|
|
41781
41499
|
],
|
|
41782
41500
|
"range": {
|
|
41783
41501
|
"start": 61,
|