ekms 8.0.0-beta.54 → 8.0.0-beta.55

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. package/common/animals.instance.json +78 -78
  2. package/common/articles.js +1 -1
  3. package/common/colors.instance.json +84 -84
  4. package/common/comparable.js +1 -1
  5. package/common/concept.js +1 -1
  6. package/common/countable.js +1 -1
  7. package/common/crew.instance.json +156 -156
  8. package/common/dialogues.js +1 -1
  9. package/common/dimension.instance.json +7 -7
  10. package/common/edible.instance.json +192 -192
  11. package/common/emotions.instance.json +6 -6
  12. package/common/evaluate.js +1 -1
  13. package/common/events.js +1 -1
  14. package/common/fastfood.instance.json +710 -710
  15. package/common/fastfood.js +4 -4
  16. package/common/formulas.instance.json +10 -10
  17. package/common/formulas.js +2 -2
  18. package/common/helpers/concept.js +1 -1
  19. package/common/kirk.instance.json +6 -6
  20. package/common/length.instance.json +105 -105
  21. package/common/math.instance.json +8 -8
  22. package/common/math.js +1 -1
  23. package/common/nameable.js +2 -2
  24. package/common/negation.js +1 -1
  25. package/common/ordering.instance.json +12 -12
  26. package/common/people.instance.json +48 -48
  27. package/common/pipboy.instance.json +134 -134
  28. package/common/pipboy.js +16 -16
  29. package/common/pokemon.instance.json +78 -78
  30. package/common/pos.js +8 -8
  31. package/common/pressure.instance.json +28 -28
  32. package/common/properties.instance.json +6 -6
  33. package/common/reports.instance.json +20 -20
  34. package/common/reports.js +4 -4
  35. package/common/sizeable.js +1 -1
  36. package/common/spock.instance.json +6 -6
  37. package/common/stm.js +1 -1
  38. package/common/temperature.instance.json +28 -28
  39. package/common/ui.instance.json +11 -11
  40. package/common/ui.js +5 -5
  41. package/common/weight.instance.json +84 -84
  42. package/package.json +2 -2
package/common/pipboy.js CHANGED
@@ -117,7 +117,7 @@ let config = {
117
117
  // "([weapon])",
118
118
  // "([44_pistol|])",
119
119
  "([apparel])",
120
- "((!articlePOS/0 && !verby/0) [outfit|outfit])",
120
+ "((!articlePOS/0 && !verb/0) [outfit|outfit])",
121
121
  // this doesnt work because the speech recognizer hears 'where'
122
122
  "([wear] ([wearable]))",
123
123
  "([strip])",
@@ -152,7 +152,7 @@ let config = {
152
152
  {
153
153
  where: where(),
154
154
  id: "put",
155
- isA: ['verby'],
155
+ isA: ['verb'],
156
156
  level: 0,
157
157
  bridge: "{ ...next(operator) }",
158
158
  generatorp: ({context}) => `put on`,
@@ -179,7 +179,7 @@ let config = {
179
179
  {
180
180
  where: where(),
181
181
  id: "change",
182
- isA: ['verby'],
182
+ isA: ['verb'],
183
183
  level: 0,
184
184
  bridge: "{ ...next(operator), item: after[0] }",
185
185
  localHierarchy: [ ['weapon', 'changeable'] ],
@@ -191,7 +191,7 @@ let config = {
191
191
  {
192
192
  where: where(),
193
193
  id: "disarm",
194
- isA: ['verby'],
194
+ isA: ['verb'],
195
195
  level: 0,
196
196
  bridge: "{ ...next(operator) }",
197
197
  generatorp: ({context}) => `disarm`,
@@ -202,7 +202,7 @@ let config = {
202
202
  {
203
203
  where: where(),
204
204
  id: "strip",
205
- isA: ['verby'],
205
+ isA: ['verb'],
206
206
  level: 0,
207
207
  bridge: "{ ...next(operator) }",
208
208
  generatorp: ({context}) => `strip`,
@@ -213,7 +213,7 @@ let config = {
213
213
  {
214
214
  where: where(),
215
215
  id: "call",
216
- isA: ['verby'],
216
+ isA: ['verb'],
217
217
  level: 0,
218
218
  bridge: "{ ...next(operator), item: after[0], name: after[1] }",
219
219
  generatorp: async ({context, g}) => `call ${await g(context.item)} ${await g(context.name)}`,
@@ -224,7 +224,7 @@ let config = {
224
224
  {
225
225
  where: where(),
226
226
  id: "putOn",
227
- isA: ['verby'],
227
+ isA: ['verb'],
228
228
  level: 0,
229
229
  bridge: "{ ...next(operator), item: after[0] }",
230
230
  generatorp: async ({context, g}) => `put on ${await g(context.item)}`,
@@ -239,7 +239,7 @@ let config = {
239
239
  {
240
240
  where: where(),
241
241
  id: "wear",
242
- isA: ['verby'],
242
+ isA: ['verb'],
243
243
  words: ['where'], // the speech recognizer hears 'where' not 'wear'
244
244
  level: 0,
245
245
  bridge: "{ ...next(operator), item: after[0] }",
@@ -255,7 +255,7 @@ let config = {
255
255
  {
256
256
  where: where(),
257
257
  id: "equip",
258
- isA: ['verby'],
258
+ isA: ['verb'],
259
259
  level: 0,
260
260
  localHierarchy: [ ['weapon', 'equipable'], ['thisitthat', 'equipable'] ],
261
261
  bridge: "{ ...next(operator), item: after[0] }",
@@ -271,7 +271,7 @@ let config = {
271
271
  {
272
272
  where: where(),
273
273
  id: "toDrink",
274
- isA: ['verby'],
274
+ isA: ['verb'],
275
275
  level: 0,
276
276
  bridge: "{ ...next(operator), item: after[0] }",
277
277
  generatorp: async ({context, g}) => `drink ${await g(context.item)}`,
@@ -283,7 +283,7 @@ let config = {
283
283
  {
284
284
  where: where(),
285
285
  id: "eat",
286
- isA: ['verby'],
286
+ isA: ['verb'],
287
287
  level: 0,
288
288
  bridge: "{ ...next(operator), item: after[0] }",
289
289
  generatorp: async ({context, g}) => `eat ${await g(context.item)}`,
@@ -294,7 +294,7 @@ let config = {
294
294
  {
295
295
  where: where(),
296
296
  id: "take",
297
- isA: ['verby'],
297
+ isA: ['verb'],
298
298
  level: 0,
299
299
  bridge: "{ ...next(operator), item: after[0] }",
300
300
  generatorp: async ({context, g}) => `take ${await g(context.item)}`,
@@ -368,7 +368,7 @@ let config = {
368
368
  */
369
369
  {
370
370
  id: "apply",
371
- isA: ['verby'],
371
+ isA: ['verb'],
372
372
  level: 0,
373
373
  bridge: "{ ...next(operator), item: after[0] }",
374
374
  generatorp: async ({context, g}) => `apply ${await g(context.item)}`,
@@ -380,7 +380,7 @@ let config = {
380
380
  },
381
381
  {
382
382
  id: "go",
383
- isA: ['verby'],
383
+ isA: ['verb'],
384
384
  level: 0,
385
385
  bridge: "{ ...next(operator), showable: after[0].showable }",
386
386
  generatorp: async ({context, g}) => `go to ${await g(context.showable)}`,
@@ -397,7 +397,7 @@ let config = {
397
397
  },
398
398
  {
399
399
  id: "showWeapons",
400
- isA: ['verby'],
400
+ isA: ['verb'],
401
401
  level: 0,
402
402
  bridge: "{ ...next(operator), showable: after[0] }",
403
403
  generatorp: async ({context, g}) => `show ${await g(context.showable)}`,
@@ -411,7 +411,7 @@ let config = {
411
411
  },
412
412
  {
413
413
  id: "show",
414
- isA: ['verby'],
414
+ isA: ['verb'],
415
415
  level: 0,
416
416
  bridge: "{ ...next(operator), showable: after[0] }",
417
417
  generatorp: async ({context, g}) => `show ${await g(context.showable)}`,