ekms 8.1.0 → 8.3.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.
Files changed (44) hide show
  1. package/common/animals.instance.json +65 -13
  2. package/common/colors.instance.json +195 -14
  3. package/common/comparable.instance.json +18 -3
  4. package/common/concept.test.json +688 -0
  5. package/common/countable.test.json +664 -317
  6. package/common/crew.instance.json +27 -569
  7. package/common/dialogues.js +11 -4
  8. package/common/dimension.instance.json +15 -1
  9. package/common/edible.instance.json +334 -32
  10. package/common/edible.test.json +860 -316
  11. package/common/emotions.instance.json +1 -61
  12. package/common/fastfood.instance.json +902 -506
  13. package/common/fastfood.test.json +20879 -15283
  14. package/common/formulas.instance.json +6 -1
  15. package/common/formulas.test.json +5242 -1930
  16. package/common/gdefaults.js +14 -8
  17. package/common/helpers/concept.js +8 -4
  18. package/common/helpers/properties.js +20 -8
  19. package/common/hierarchy.js +1 -0
  20. package/common/kirk.instance.json +1 -6
  21. package/common/length.instance.json +334 -262
  22. package/common/math.instance.json +6 -1
  23. package/common/numbers.js +34 -27
  24. package/common/numbers.test.json +73 -18
  25. package/common/ordering.instance.json +12 -3
  26. package/common/ordinals.js +1 -0
  27. package/common/ordinals.test.json +106 -0
  28. package/common/people.instance.json +66 -284
  29. package/common/people.test.json +1815 -1073
  30. package/common/percentages.js +1 -0
  31. package/common/percentages.test.json +37 -37
  32. package/common/pipboy.instance.json +290 -27
  33. package/common/pokemon.instance.json +30 -13
  34. package/common/pressure.instance.json +150 -97
  35. package/common/properties.instance.json +1 -1
  36. package/common/properties.js +8 -0
  37. package/common/reports.instance.json +21 -1
  38. package/common/scorekeeper.test.json +3563 -2096
  39. package/common/spock.instance.json +1 -6
  40. package/common/temperature.instance.json +206 -149
  41. package/common/ui.instance.json +6 -1
  42. package/common/ui.js +1 -0
  43. package/common/weight.instance.json +309 -224
  44. package/package.json +2 -2
@@ -207,13 +207,19 @@
207
207
  "words": [
208
208
  "where"
209
209
  ],
210
+ "localHierarchy": [
211
+ [
212
+ "unknown",
213
+ "wearable"
214
+ ]
215
+ ],
210
216
  "level": 0,
211
217
  "bridge": "{ ...next(operator), item: after[0] }",
212
218
  "generatorp": "async ({context, g}) => `wear ${await g(context.item)}`",
213
219
  "semantic": "({api, context}) => {\n if (context.item.name) {\n api.wear({ name: context.item.name.value, type: 'outfit' })\n } else {\n api.wear({ type: context.item.value })\n }\n }"
214
220
  },
215
221
  {
216
- "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:256",
222
+ "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:257",
217
223
  "id": "equip",
218
224
  "isA": [
219
225
  "verb"
@@ -238,7 +244,7 @@
238
244
  "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
245
  },
240
246
  {
241
- "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:272",
247
+ "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:273",
242
248
  "id": "toDrink",
243
249
  "isA": [
244
250
  "verb"
@@ -249,8 +255,14 @@
249
255
  "semantic": "async ({api, context, e}) => {\n const value = await e(context.item)\n api.drink(value.value)\n }"
250
256
  },
251
257
  {
252
- "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:284",
258
+ "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:285",
253
259
  "id": "eat",
260
+ "localHierarchy": [
261
+ [
262
+ "unknown",
263
+ "edible"
264
+ ]
265
+ ],
254
266
  "isA": [
255
267
  "verb"
256
268
  ],
@@ -260,7 +272,7 @@
260
272
  "semantic": "async ({api, context}) => {\n api.eat(context.item.value)\n }"
261
273
  },
262
274
  {
263
- "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:295",
275
+ "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:297",
264
276
  "id": "take",
265
277
  "isA": [
266
278
  "verb"
@@ -271,7 +283,7 @@
271
283
  "semantic": "async ({api, context, e}) => {\n const value = await e(context.item)\n api.take(value.value)\n }"
272
284
  },
273
285
  {
274
- "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:307",
286
+ "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:309",
275
287
  "id": "nameable",
276
288
  "isA": [
277
289
  "theAble"
@@ -672,6 +684,11 @@
672
684
  "ifAble",
673
685
  false
674
686
  ],
687
+ [
688
+ "integer",
689
+ "number",
690
+ false
691
+ ],
675
692
  [
676
693
  "is",
677
694
  "canBeQuestion",
@@ -1139,7 +1156,7 @@
1139
1156
  ],
1140
1157
  [
1141
1158
  "theAble",
1142
- "theAble",
1159
+ "queryable",
1143
1160
  false
1144
1161
  ],
1145
1162
  [
@@ -1555,6 +1572,7 @@
1555
1572
  },
1556
1573
  "types": [
1557
1574
  "list",
1575
+ "queryable",
1558
1576
  "unknown"
1559
1577
  ],
1560
1578
  "listable": true,
@@ -1571,6 +1589,10 @@
1571
1589
  "end": 6
1572
1590
  },
1573
1591
  "dead": true,
1592
+ "types": [
1593
+ "queryable",
1594
+ "unknown"
1595
+ ],
1574
1596
  "level": 1
1575
1597
  },
1576
1598
  {
@@ -1584,6 +1606,10 @@
1584
1606
  "end": 13
1585
1607
  },
1586
1608
  "dead": true,
1609
+ "types": [
1610
+ "queryable",
1611
+ "unknown"
1612
+ ],
1587
1613
  "level": 1
1588
1614
  },
1589
1615
  {
@@ -1597,6 +1623,10 @@
1597
1623
  "end": 22
1598
1624
  },
1599
1625
  "dead": true,
1626
+ "types": [
1627
+ "queryable",
1628
+ "unknown"
1629
+ ],
1600
1630
  "level": 1
1601
1631
  },
1602
1632
  {
@@ -1609,6 +1639,10 @@
1609
1639
  "start": 24,
1610
1640
  "end": 28
1611
1641
  },
1642
+ "types": [
1643
+ "queryable",
1644
+ "unknown"
1645
+ ],
1612
1646
  "dead": true,
1613
1647
  "level": 1
1614
1648
  },
@@ -1622,6 +1656,10 @@
1622
1656
  "start": 34,
1623
1657
  "end": 41
1624
1658
  },
1659
+ "types": [
1660
+ "queryable",
1661
+ "unknown"
1662
+ ],
1625
1663
  "dead": true,
1626
1664
  "level": 1
1627
1665
  }
@@ -1711,6 +1749,20 @@
1711
1749
  1
1712
1750
  ]
1713
1751
  ],
1752
+ [
1753
+ [
1754
+ "is",
1755
+ 0
1756
+ ],
1757
+ [
1758
+ "list",
1759
+ 1
1760
+ ],
1761
+ [
1762
+ "unknown",
1763
+ 1
1764
+ ]
1765
+ ],
1714
1766
  [
1715
1767
  [
1716
1768
  "is",
@@ -1959,6 +2011,11 @@
1959
2011
  "ifAble",
1960
2012
  false
1961
2013
  ],
2014
+ [
2015
+ "integer",
2016
+ "number",
2017
+ false
2018
+ ],
1962
2019
  [
1963
2020
  "is",
1964
2021
  "canBeQuestion",
@@ -2586,7 +2643,7 @@
2586
2643
  ],
2587
2644
  [
2588
2645
  "theAble",
2589
- "theAble",
2646
+ "queryable",
2590
2647
  false
2591
2648
  ],
2592
2649
  [
@@ -3278,6 +3335,11 @@
3278
3335
  "ifAble",
3279
3336
  false
3280
3337
  ],
3338
+ [
3339
+ "integer",
3340
+ "number",
3341
+ false
3342
+ ],
3281
3343
  [
3282
3344
  "is",
3283
3345
  "canBeQuestion",
@@ -3910,7 +3972,7 @@
3910
3972
  ],
3911
3973
  [
3912
3974
  "theAble",
3913
- "theAble",
3975
+ "queryable",
3914
3976
  false
3915
3977
  ],
3916
3978
  [
@@ -4489,6 +4551,11 @@
4489
4551
  "ifAble",
4490
4552
  false
4491
4553
  ],
4554
+ [
4555
+ "integer",
4556
+ "number",
4557
+ false
4558
+ ],
4492
4559
  [
4493
4560
  "is",
4494
4561
  "canBeQuestion",
@@ -5121,7 +5188,7 @@
5121
5188
  ],
5122
5189
  [
5123
5190
  "theAble",
5124
- "theAble",
5191
+ "queryable",
5125
5192
  false
5126
5193
  ],
5127
5194
  [
@@ -5946,6 +6013,11 @@
5946
6013
  "ifAble",
5947
6014
  false
5948
6015
  ],
6016
+ [
6017
+ "integer",
6018
+ "number",
6019
+ false
6020
+ ],
5949
6021
  [
5950
6022
  "is",
5951
6023
  "canBeQuestion",
@@ -6593,7 +6665,7 @@
6593
6665
  ],
6594
6666
  [
6595
6667
  "theAble",
6596
- "theAble",
6668
+ "queryable",
6597
6669
  false
6598
6670
  ],
6599
6671
  [
@@ -7212,6 +7284,11 @@
7212
7284
  "ifAble",
7213
7285
  false
7214
7286
  ],
7287
+ [
7288
+ "integer",
7289
+ "number",
7290
+ false
7291
+ ],
7215
7292
  [
7216
7293
  "is",
7217
7294
  "canBeQuestion",
@@ -7859,7 +7936,7 @@
7859
7936
  ],
7860
7937
  [
7861
7938
  "theAble",
7862
- "theAble",
7939
+ "queryable",
7863
7940
  false
7864
7941
  ],
7865
7942
  [
@@ -8198,6 +8275,7 @@
8198
8275
  },
8199
8276
  "types": [
8200
8277
  "list",
8278
+ "queryable",
8201
8279
  "unknown"
8202
8280
  ],
8203
8281
  "listable": true,
@@ -8214,6 +8292,10 @@
8214
8292
  "end": 3
8215
8293
  },
8216
8294
  "dead": true,
8295
+ "types": [
8296
+ "queryable",
8297
+ "unknown"
8298
+ ],
8217
8299
  "level": 1
8218
8300
  },
8219
8301
  {
@@ -8226,6 +8308,10 @@
8226
8308
  "start": 5,
8227
8309
  "end": 9
8228
8310
  },
8311
+ "types": [
8312
+ "queryable",
8313
+ "unknown"
8314
+ ],
8229
8315
  "dead": true,
8230
8316
  "level": 1
8231
8317
  },
@@ -8239,6 +8325,10 @@
8239
8325
  "start": 15,
8240
8326
  "end": 19
8241
8327
  },
8328
+ "types": [
8329
+ "queryable",
8330
+ "unknown"
8331
+ ],
8242
8332
  "dead": true,
8243
8333
  "level": 1
8244
8334
  }
@@ -8328,6 +8418,20 @@
8328
8418
  1
8329
8419
  ]
8330
8420
  ],
8421
+ [
8422
+ [
8423
+ "is",
8424
+ 0
8425
+ ],
8426
+ [
8427
+ "list",
8428
+ 1
8429
+ ],
8430
+ [
8431
+ "unknown",
8432
+ 1
8433
+ ]
8434
+ ],
8331
8435
  [
8332
8436
  [
8333
8437
  "is",
@@ -8776,6 +8880,11 @@
8776
8880
  "ifAble",
8777
8881
  false
8778
8882
  ],
8883
+ [
8884
+ "integer",
8885
+ "number",
8886
+ false
8887
+ ],
8779
8888
  [
8780
8889
  "is",
8781
8890
  "canBeQuestion",
@@ -9463,7 +9572,7 @@
9463
9572
  ],
9464
9573
  [
9465
9574
  "theAble",
9466
- "theAble",
9575
+ "queryable",
9467
9576
  false
9468
9577
  ],
9469
9578
  [
@@ -10311,6 +10420,11 @@
10311
10420
  "ifAble",
10312
10421
  false
10313
10422
  ],
10423
+ [
10424
+ "integer",
10425
+ "number",
10426
+ false
10427
+ ],
10314
10428
  [
10315
10429
  "is",
10316
10430
  "canBeQuestion",
@@ -10998,7 +11112,7 @@
10998
11112
  ],
10999
11113
  [
11000
11114
  "theAble",
11001
- "theAble",
11115
+ "queryable",
11002
11116
  false
11003
11117
  ],
11004
11118
  [
@@ -11791,6 +11905,11 @@
11791
11905
  "ifAble",
11792
11906
  false
11793
11907
  ],
11908
+ [
11909
+ "integer",
11910
+ "number",
11911
+ false
11912
+ ],
11794
11913
  [
11795
11914
  "is",
11796
11915
  "canBeQuestion",
@@ -12478,7 +12597,7 @@
12478
12597
  ],
12479
12598
  [
12480
12599
  "theAble",
12481
- "theAble",
12600
+ "queryable",
12482
12601
  false
12483
12602
  ],
12484
12603
  [
@@ -13412,6 +13531,11 @@
13412
13531
  "ifAble",
13413
13532
  false
13414
13533
  ],
13534
+ [
13535
+ "integer",
13536
+ "number",
13537
+ false
13538
+ ],
13415
13539
  [
13416
13540
  "is",
13417
13541
  "canBeQuestion",
@@ -14099,7 +14223,7 @@
14099
14223
  ],
14100
14224
  [
14101
14225
  "theAble",
14102
- "theAble",
14226
+ "queryable",
14103
14227
  false
14104
14228
  ],
14105
14229
  [
@@ -15008,6 +15132,11 @@
15008
15132
  "ifAble",
15009
15133
  false
15010
15134
  ],
15135
+ [
15136
+ "integer",
15137
+ "number",
15138
+ false
15139
+ ],
15011
15140
  [
15012
15141
  "is",
15013
15142
  "canBeQuestion",
@@ -15695,7 +15824,7 @@
15695
15824
  ],
15696
15825
  [
15697
15826
  "theAble",
15698
- "theAble",
15827
+ "queryable",
15699
15828
  false
15700
15829
  ],
15701
15830
  [
@@ -16675,6 +16804,11 @@
16675
16804
  "ifAble",
16676
16805
  false
16677
16806
  ],
16807
+ [
16808
+ "integer",
16809
+ "number",
16810
+ false
16811
+ ],
16678
16812
  [
16679
16813
  "is",
16680
16814
  "canBeQuestion",
@@ -17362,7 +17496,7 @@
17362
17496
  ],
17363
17497
  [
17364
17498
  "theAble",
17365
- "theAble",
17499
+ "queryable",
17366
17500
  false
17367
17501
  ],
17368
17502
  [
@@ -18346,6 +18480,11 @@
18346
18480
  "ifAble",
18347
18481
  false
18348
18482
  ],
18483
+ [
18484
+ "integer",
18485
+ "number",
18486
+ false
18487
+ ],
18349
18488
  [
18350
18489
  "is",
18351
18490
  "canBeQuestion",
@@ -19073,7 +19212,7 @@
19073
19212
  ],
19074
19213
  [
19075
19214
  "theAble",
19076
- "theAble",
19215
+ "queryable",
19077
19216
  false
19078
19217
  ],
19079
19218
  [
@@ -19402,6 +19541,7 @@
19402
19541
  },
19403
19542
  "types": [
19404
19543
  "list",
19544
+ "queryable",
19405
19545
  "unknown"
19406
19546
  ],
19407
19547
  "listable": true,
@@ -19417,6 +19557,10 @@
19417
19557
  "start": 0,
19418
19558
  "end": 9
19419
19559
  },
19560
+ "types": [
19561
+ "queryable",
19562
+ "unknown"
19563
+ ],
19420
19564
  "dead": true,
19421
19565
  "level": 1
19422
19566
  },
@@ -19430,6 +19574,10 @@
19430
19574
  "start": 15,
19431
19575
  "end": 19
19432
19576
  },
19577
+ "types": [
19578
+ "queryable",
19579
+ "unknown"
19580
+ ],
19433
19581
  "dead": true,
19434
19582
  "level": 1
19435
19583
  }
@@ -20224,6 +20372,11 @@
20224
20372
  "ifAble",
20225
20373
  false
20226
20374
  ],
20375
+ [
20376
+ "integer",
20377
+ "number",
20378
+ false
20379
+ ],
20227
20380
  [
20228
20381
  "is",
20229
20382
  "canBeQuestion",
@@ -20951,7 +21104,7 @@
20951
21104
  ],
20952
21105
  [
20953
21106
  "theAble",
20954
- "theAble",
21107
+ "queryable",
20955
21108
  false
20956
21109
  ],
20957
21110
  [
@@ -21320,6 +21473,7 @@
21320
21473
  },
21321
21474
  "types": [
21322
21475
  "list",
21476
+ "queryable",
21323
21477
  "unknown"
21324
21478
  ],
21325
21479
  "listable": true,
@@ -21335,6 +21489,10 @@
21335
21489
  "start": 0,
21336
21490
  "end": 3
21337
21491
  },
21492
+ "types": [
21493
+ "queryable",
21494
+ "unknown"
21495
+ ],
21338
21496
  "dead": true,
21339
21497
  "level": 1
21340
21498
  },
@@ -21348,6 +21506,10 @@
21348
21506
  "start": 9,
21349
21507
  "end": 11
21350
21508
  },
21509
+ "types": [
21510
+ "queryable",
21511
+ "unknown"
21512
+ ],
21351
21513
  "dead": true,
21352
21514
  "level": 1
21353
21515
  }
@@ -22182,6 +22344,11 @@
22182
22344
  "ifAble",
22183
22345
  false
22184
22346
  ],
22347
+ [
22348
+ "integer",
22349
+ "number",
22350
+ false
22351
+ ],
22185
22352
  [
22186
22353
  "is",
22187
22354
  "canBeQuestion",
@@ -22949,7 +23116,7 @@
22949
23116
  ],
22950
23117
  [
22951
23118
  "theAble",
22952
- "theAble",
23119
+ "queryable",
22953
23120
  false
22954
23121
  ],
22955
23122
  [
@@ -23318,6 +23485,7 @@
23318
23485
  },
23319
23486
  "types": [
23320
23487
  "list",
23488
+ "queryable",
23321
23489
  "unknown"
23322
23490
  ],
23323
23491
  "listable": true,
@@ -23333,6 +23501,10 @@
23333
23501
  "start": 0,
23334
23502
  "end": 7
23335
23503
  },
23504
+ "types": [
23505
+ "queryable",
23506
+ "unknown"
23507
+ ],
23336
23508
  "dead": true,
23337
23509
  "level": 1
23338
23510
  },
@@ -23346,6 +23518,10 @@
23346
23518
  "start": 13,
23347
23519
  "end": 20
23348
23520
  },
23521
+ "types": [
23522
+ "queryable",
23523
+ "unknown"
23524
+ ],
23349
23525
  "dead": true,
23350
23526
  "level": 1
23351
23527
  }
@@ -24158,6 +24334,11 @@
24158
24334
  "ifAble",
24159
24335
  false
24160
24336
  ],
24337
+ [
24338
+ "integer",
24339
+ "number",
24340
+ false
24341
+ ],
24161
24342
  [
24162
24343
  "is",
24163
24344
  "canBeQuestion",
@@ -25040,7 +25221,7 @@
25040
25221
  ],
25041
25222
  [
25042
25223
  "theAble",
25043
- "theAble",
25224
+ "queryable",
25044
25225
  false
25045
25226
  ],
25046
25227
  [
@@ -26126,6 +26307,11 @@
26126
26307
  "ifAble",
26127
26308
  false
26128
26309
  ],
26310
+ [
26311
+ "integer",
26312
+ "number",
26313
+ false
26314
+ ],
26129
26315
  [
26130
26316
  "is",
26131
26317
  "canBeQuestion",
@@ -27128,7 +27314,7 @@
27128
27314
  ],
27129
27315
  [
27130
27316
  "theAble",
27131
- "theAble",
27317
+ "queryable",
27132
27318
  false
27133
27319
  ],
27134
27320
  [
@@ -28103,6 +28289,7 @@
28103
28289
  },
28104
28290
  "types": [
28105
28291
  "list",
28292
+ "queryable",
28106
28293
  "unknown"
28107
28294
  ],
28108
28295
  "listable": true,
@@ -28119,6 +28306,10 @@
28119
28306
  "end": 5
28120
28307
  },
28121
28308
  "dead": true,
28309
+ "types": [
28310
+ "queryable",
28311
+ "unknown"
28312
+ ],
28122
28313
  "level": 1
28123
28314
  },
28124
28315
  {
@@ -28132,6 +28323,10 @@
28132
28323
  "end": 10
28133
28324
  },
28134
28325
  "dead": true,
28326
+ "types": [
28327
+ "queryable",
28328
+ "unknown"
28329
+ ],
28135
28330
  "level": 1
28136
28331
  },
28137
28332
  {
@@ -28145,6 +28340,10 @@
28145
28340
  "end": 13
28146
28341
  },
28147
28342
  "dead": true,
28343
+ "types": [
28344
+ "queryable",
28345
+ "unknown"
28346
+ ],
28148
28347
  "level": 1
28149
28348
  },
28150
28349
  {
@@ -28158,6 +28357,10 @@
28158
28357
  "end": 18
28159
28358
  },
28160
28359
  "dead": true,
28360
+ "types": [
28361
+ "queryable",
28362
+ "unknown"
28363
+ ],
28161
28364
  "level": 1
28162
28365
  },
28163
28366
  {
@@ -28171,6 +28374,10 @@
28171
28374
  "end": 24
28172
28375
  },
28173
28376
  "dead": true,
28377
+ "types": [
28378
+ "queryable",
28379
+ "unknown"
28380
+ ],
28174
28381
  "level": 1
28175
28382
  },
28176
28383
  {
@@ -28184,6 +28391,10 @@
28184
28391
  "end": 27
28185
28392
  },
28186
28393
  "dead": true,
28394
+ "types": [
28395
+ "queryable",
28396
+ "unknown"
28397
+ ],
28187
28398
  "level": 1
28188
28399
  },
28189
28400
  {
@@ -28197,6 +28408,10 @@
28197
28408
  "end": 36
28198
28409
  },
28199
28410
  "dead": true,
28411
+ "types": [
28412
+ "queryable",
28413
+ "unknown"
28414
+ ],
28200
28415
  "level": 1
28201
28416
  },
28202
28417
  {
@@ -28209,6 +28424,10 @@
28209
28424
  "start": 38,
28210
28425
  "end": 42
28211
28426
  },
28427
+ "types": [
28428
+ "queryable",
28429
+ "unknown"
28430
+ ],
28212
28431
  "dead": true,
28213
28432
  "level": 1
28214
28433
  },
@@ -28222,6 +28441,10 @@
28222
28441
  "start": 48,
28223
28442
  "end": 55
28224
28443
  },
28444
+ "types": [
28445
+ "queryable",
28446
+ "unknown"
28447
+ ],
28225
28448
  "dead": true,
28226
28449
  "level": 1
28227
28450
  }
@@ -28589,11 +28812,17 @@
28589
28812
  "words": [
28590
28813
  "where"
28591
28814
  ],
28815
+ "localHierarchy": [
28816
+ [
28817
+ "unknown",
28818
+ "wearable"
28819
+ ]
28820
+ ],
28592
28821
  "level": 0,
28593
28822
  "bridge": "{ ...next(operator), item: after[0] }"
28594
28823
  },
28595
28824
  {
28596
- "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:256",
28825
+ "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:257",
28597
28826
  "id": "equip",
28598
28827
  "isA": [
28599
28828
  "verb"
@@ -28616,7 +28845,7 @@
28616
28845
  "bridge": "{ ...next(operator), item: after[0] }"
28617
28846
  },
28618
28847
  {
28619
- "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:272",
28848
+ "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:273",
28620
28849
  "id": "toDrink",
28621
28850
  "isA": [
28622
28851
  "verb"
@@ -28625,8 +28854,14 @@
28625
28854
  "bridge": "{ ...next(operator), item: after[0] }"
28626
28855
  },
28627
28856
  {
28628
- "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:284",
28857
+ "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:285",
28629
28858
  "id": "eat",
28859
+ "localHierarchy": [
28860
+ [
28861
+ "unknown",
28862
+ "edible"
28863
+ ]
28864
+ ],
28630
28865
  "isA": [
28631
28866
  "verb"
28632
28867
  ],
@@ -28634,7 +28869,7 @@
28634
28869
  "bridge": "{ ...next(operator), item: after[0] }"
28635
28870
  },
28636
28871
  {
28637
- "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:295",
28872
+ "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:297",
28638
28873
  "id": "take",
28639
28874
  "isA": [
28640
28875
  "verb"
@@ -28643,7 +28878,7 @@
28643
28878
  "bridge": "{ ...next(operator), item: after[0] }"
28644
28879
  },
28645
28880
  {
28646
- "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:307",
28881
+ "where": "/home/dev/code/theprogrammablemind/kms/common/pipboy.js:309",
28647
28882
  "id": "nameable",
28648
28883
  "isA": [
28649
28884
  "theAble"
@@ -29708,6 +29943,34 @@
29708
29943
  1
29709
29944
  ]
29710
29945
  ],
29946
+ [
29947
+ [
29948
+ "is",
29949
+ 0
29950
+ ],
29951
+ [
29952
+ "list",
29953
+ 1
29954
+ ],
29955
+ [
29956
+ "unknown",
29957
+ 1
29958
+ ]
29959
+ ],
29960
+ [
29961
+ [
29962
+ "is",
29963
+ 0
29964
+ ],
29965
+ [
29966
+ "list",
29967
+ 1
29968
+ ],
29969
+ [
29970
+ "unknown",
29971
+ 1
29972
+ ]
29973
+ ],
29711
29974
  [
29712
29975
  [
29713
29976
  "is",