ekms 9.4.5 → 9.5.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 (43) hide show
  1. package/common/animals.instance.json +40 -280
  2. package/common/colors.instance.json +92 -320
  3. package/common/comparable.instance.json +42 -10
  4. package/common/crew.instance.json +673 -965
  5. package/common/crew.js +0 -15
  6. package/common/dates.instance.json +2 -84
  7. package/common/dates.js +1 -0
  8. package/common/dimension.instance.json +2 -2
  9. package/common/dimension.js +1 -1
  10. package/common/edible.instance.json +874 -2097
  11. package/common/fastfood.instance.json +4865 -6422
  12. package/common/fastfood.js +1 -0
  13. package/common/gdefaults.js +34 -2
  14. package/common/helpers/concept.js +2 -1
  15. package/common/helpers/dialogues.js +2 -1
  16. package/common/kirk.instance.json +3 -23
  17. package/common/latin.instance.json +472 -1
  18. package/common/latin.js +145 -19
  19. package/common/latin.test.json +5325 -0
  20. package/common/latin_helpers.js +358 -0
  21. package/common/length.instance.json +128 -384
  22. package/common/menus.instance.json +21 -61
  23. package/common/people.instance.json +128 -96
  24. package/common/percentages.js +1 -0
  25. package/common/pipboy.instance.json +84 -366
  26. package/common/pipboy.js +2 -1
  27. package/common/pipboy.test.json +1690 -0
  28. package/common/pokemon.instance.json +351 -103
  29. package/common/pos.js +39 -34
  30. package/common/pressure.instance.json +32 -124
  31. package/common/properties.js +0 -16
  32. package/common/reminders.test.json +2702 -2786
  33. package/common/reports.instance.json +2 -2
  34. package/common/reports.js +4 -1
  35. package/common/reports.test.json +5547 -4514
  36. package/common/spock.instance.json +3 -23
  37. package/common/temperature.instance.json +40 -196
  38. package/common/tokenize.js +30 -2
  39. package/common/weight.instance.json +241 -301
  40. package/common/wp.instance.json +347 -373
  41. package/common/wp.js +25 -4
  42. package/common/wp.test.json +3104 -0
  43. package/package.json +3 -2
package/common/pipboy.js CHANGED
@@ -124,7 +124,7 @@ const config = {
124
124
  "([putOn|] ([wearable]))",
125
125
  "(([put]) <on>)",
126
126
  "([call] ([nameable]) ([outfit]))",
127
- "((condition/1,2) <propertyCondition|> (weapon/1))",
127
+ "((condition/1,2) <propertyCondition|> (weapon/0))",
128
128
  // "([call] ([outfit]) ([outfitName]))",
129
129
  // wear the city outfit / wear a suit / wear a suit and hat / wear that
130
130
  // call this the town outfit
@@ -250,6 +250,7 @@ const config = {
250
250
  where: where(),
251
251
  id: "equip",
252
252
  isA: ['verb'],
253
+ words: ['use'],
253
254
  level: 0,
254
255
  localHierarchy: [ ['weapon', 'equipable'], ['thisitthat', 'equipable'], ['equipable', 'unknown'] ],
255
256
  bridge: "{ ...next(operator), item: after[0] }",