ekms 7.12.8-beta.5 → 7.12.8-beta.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. package/common/animals.instance.json +67 -227
  2. package/common/animals.js +1 -1
  3. package/common/avatar.js +7 -5
  4. package/common/characters.js +7 -5
  5. package/common/crew.instance.json +257 -417
  6. package/common/crew.js +1 -1
  7. package/common/currency.js +0 -2
  8. package/common/dialogues.js +13 -11
  9. package/common/dimension.instance.json +10 -10
  10. package/common/dimension.js +1 -1
  11. package/common/edible.instance.json +139 -255
  12. package/common/edible.js +1 -1
  13. package/common/emotions.instance.json +56 -32
  14. package/common/emotions.js +1 -1
  15. package/common/fastfood.instance.json +915 -1919
  16. package/common/fastfood.js +1 -1
  17. package/common/formulas.instance.json +7 -7
  18. package/common/formulas.js +2 -2
  19. package/common/help.js +4 -2
  20. package/common/helpers.js +5 -0
  21. package/common/javascript.js +8 -6
  22. package/common/kirk.instance.json +1 -1
  23. package/common/kirk.js +1 -1
  24. package/common/length.instance.json +37 -217
  25. package/common/length.js +1 -1
  26. package/common/math.instance.json +19 -39
  27. package/common/math.js +1 -1
  28. package/common/meta.instance.json +1 -1
  29. package/common/meta.js +29 -10
  30. package/common/numbers.js +31 -24
  31. package/common/ordering.instance.json +86 -82
  32. package/common/ordering.js +1 -1
  33. package/common/people.instance.json +42 -70
  34. package/common/people.js +1 -1
  35. package/common/pipboy.instance.json +109 -169
  36. package/common/pipboy.js +1 -1
  37. package/common/pokemon.instance.json +31 -87
  38. package/common/pokemon.js +1 -1
  39. package/common/pressure.instance.json +10 -30
  40. package/common/pressure.js +1 -1
  41. package/common/properties.instance.json +16 -44
  42. package/common/properties.js +13 -8
  43. package/common/reports.instance.json +6 -62
  44. package/common/reports.js +9 -7
  45. package/common/scorekeeper.instance.json +1 -1
  46. package/common/scorekeeper.js +9 -7
  47. package/common/spock.instance.json +1 -1
  48. package/common/spock.js +1 -1
  49. package/common/tell.js +4 -2
  50. package/common/temperature.instance.json +13 -129
  51. package/common/temperature.js +1 -1
  52. package/common/time.js +36 -20
  53. package/common/time.test.json +66 -44
  54. package/common/ui.instance.json +1 -1
  55. package/common/weight.instance.json +25 -193
  56. package/common/weight.js +1 -1
  57. package/package.json +2 -2
package/common/crew.js CHANGED
@@ -7,7 +7,7 @@ const crew_instance = require('./crew.instance.json')
7
7
  const pluralize = require('pluralize')
8
8
 
9
9
  const template = {
10
- queries: [
10
+ configs: [
11
11
  "kirk's name is jim",
12
12
  "kirk's rank is captain",
13
13
  "kirk's eyes are blue",
@@ -55,8 +55,6 @@ let configStruct = {
55
55
  floaters: ['isQuery'],
56
56
  debug: true,
57
57
  "version": '3',
58
- "words": {
59
- },
60
58
 
61
59
  generators: [
62
60
  {
@@ -275,17 +275,19 @@ let configStruct = {
275
275
  },
276
276
  ],
277
277
  words: {
278
- "?": [{"id": "questionMark", "initial": "{}" }],
279
- "the": [{"id": "the", "initial": "{ modifiers: [] }" }],
280
- "who": [{"id": "what", "initial": "{ modifiers: [], query: true }" }],
281
- "yes": [{"id": "yesno", "initial": "{ value: true }" }],
282
- "no": [{"id": "yesno", "initial": "{ value: false }" }],
283
- "brief": [{"id": "briefOrWordy", "initial": "{ value: 'brief' }" }],
284
- "wordy": [{"id": "briefOrWordy", "initial": "{ value: 'wordy' }" }],
285
- "does": [{"id": "does", "initial": "{ number: 'one' }" }],
286
- "do": [{"id": "does", "initial": "{ number: 'many' }" }],
287
- "is": [{"id": "is", "initial": "{ number: 'one' }" }, {"id": "isEd", "initial": "{ number: 'one' }" }],
288
- "are": [{"id": "is", "initial": "{ number: 'many' }" }, {"id": "isEd", "initial": "{ number: 'many' }" }],
278
+ "literals": {
279
+ "?": [{"id": "questionMark", "initial": "{}" }],
280
+ "the": [{"id": "the", "initial": "{ modifiers: [] }" }],
281
+ "who": [{"id": "what", "initial": "{ modifiers: [], query: true }" }],
282
+ "yes": [{"id": "yesno", "initial": "{ value: true }" }],
283
+ "no": [{"id": "yesno", "initial": "{ value: false }" }],
284
+ "brief": [{"id": "briefOrWordy", "initial": "{ value: 'brief' }" }],
285
+ "wordy": [{"id": "briefOrWordy", "initial": "{ value: 'wordy' }" }],
286
+ "does": [{"id": "does", "initial": "{ number: 'one' }" }],
287
+ "do": [{"id": "does", "initial": "{ number: 'many' }" }],
288
+ "is": [{"id": "is", "initial": "{ number: 'one' }" }, {"id": "isEd", "initial": "{ number: 'one' }" }],
289
+ "are": [{"id": "is", "initial": "{ number: 'many' }" }, {"id": "isEd", "initial": "{ number: 'many' }" }],
290
+ }
289
291
  },
290
292
 
291
293
  floaters: ['query'],
@@ -1,5 +1,5 @@
1
1
  {
2
- "queries": [
2
+ "configs": [
3
3
  "dimension and unit are concepts",
4
4
  {
5
5
  "name": "dimension",
@@ -891,26 +891,26 @@
891
891
  "value": [
892
892
  {
893
893
  "marker": "unknown",
894
+ "value": "dimension",
895
+ "word": "dimension",
896
+ "text": "dimension",
894
897
  "range": {
895
898
  "start": 0,
896
899
  "end": 8
897
900
  },
898
- "word": "dimension",
899
- "text": "dimension",
900
- "value": "dimension",
901
901
  "unknown": true,
902
902
  "dead": true,
903
903
  "level": 2
904
904
  },
905
905
  {
906
906
  "marker": "unknown",
907
+ "value": "unit",
908
+ "word": "unit",
909
+ "text": "unit",
907
910
  "range": {
908
911
  "start": 14,
909
912
  "end": 17
910
913
  },
911
- "word": "unit",
912
- "text": "unit",
913
- "value": "unit",
914
914
  "unknown": true,
915
915
  "dead": true,
916
916
  "level": 2
@@ -929,13 +929,13 @@
929
929
  },
930
930
  "two": {
931
931
  "marker": "unknown",
932
+ "value": "concepts",
933
+ "word": "concepts",
934
+ "text": "concepts",
932
935
  "range": {
933
936
  "start": 23,
934
937
  "end": 30
935
938
  },
936
- "word": "concepts",
937
- "text": "concepts",
938
- "value": "concepts",
939
939
  "unknown": true,
940
940
  "dead": true,
941
941
  "types": [
@@ -168,7 +168,7 @@ let configStruct = {
168
168
  };
169
169
 
170
170
  const template = {
171
- queries: [
171
+ configs: [
172
172
  "dimension and unit are concepts",
173
173
  configStruct,
174
174
  ],