ekms 8.0.0-beta.90 → 8.0.0-beta.91
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/pipboy.js +2 -0
- package/common/pipboy.test.json +2835 -0
- package/package.json +2 -2
package/common/pipboy.js
CHANGED
@@ -241,6 +241,7 @@ let config = {
|
|
241
241
|
id: "wear",
|
242
242
|
isA: ['verb'],
|
243
243
|
words: ['where'], // the speech recognizer hears 'where' not 'wear'
|
244
|
+
localHierarchy: [ ['unknown', 'wearable'] ],
|
244
245
|
level: 0,
|
245
246
|
bridge: "{ ...next(operator), item: after[0] }",
|
246
247
|
generatorp: async ({context, g}) => `wear ${await g(context.item)}`,
|
@@ -283,6 +284,7 @@ let config = {
|
|
283
284
|
{
|
284
285
|
where: where(),
|
285
286
|
id: "eat",
|
287
|
+
localHierarchy: [ ['unknown', 'edible'] ],
|
286
288
|
isA: ['verb'],
|
287
289
|
level: 0,
|
288
290
|
bridge: "{ ...next(operator), item: after[0] }",
|