tpmkms 7.12.8-beta.1 → 7.12.8-beta.10
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/animals.instance.json +89 -249
- package/common/animals.js +1 -1
- package/common/avatar.js +7 -5
- package/common/characters.js +12 -5
- package/common/crew.instance.json +289 -577
- package/common/crew.js +1 -1
- package/common/currency.js +0 -2
- package/common/dialogues.js +16 -14
- package/common/dimension.instance.json +13 -13
- package/common/dimension.js +1 -1
- package/common/edible.instance.json +293 -297
- package/common/edible.js +1 -1
- package/common/emotions.instance.json +29 -65
- package/common/emotions.js +1 -1
- package/common/fastfood.instance.json +517 -1473
- package/common/fastfood.js +1 -1
- package/common/formulas.instance.json +9 -9
- package/common/formulas.js +2 -2
- package/common/gdefaults.js +2 -0
- package/common/help.js +7 -2
- package/common/help.test.json +9 -5
- package/common/helpers.js +5 -0
- package/common/javascript.js +8 -6
- package/common/kirk.instance.json +1 -1
- package/common/kirk.js +1 -1
- package/common/length.instance.json +49 -229
- package/common/length.js +1 -1
- package/common/math.instance.json +21 -41
- package/common/math.js +1 -1
- package/common/meta.instance.json +1 -1
- package/common/meta.js +35 -10
- package/common/numbers.js +28 -24
- package/common/ordering.instance.json +37 -101
- package/common/ordering.js +1 -1
- package/common/people.instance.json +50 -78
- package/common/people.js +1 -1
- package/common/pipboy.instance.json +197 -201
- package/common/pipboy.js +1 -1
- package/common/pokemon.instance.json +41 -97
- package/common/pokemon.js +1 -1
- package/common/pressure.instance.json +13 -33
- package/common/pressure.js +1 -1
- package/common/properties.instance.json +21 -49
- package/common/properties.js +13 -8
- package/common/reports.instance.json +7 -63
- package/common/reports.js +9 -7
- package/common/scorekeeper.instance.json +1 -1
- package/common/scorekeeper.js +9 -7
- package/common/spock.instance.json +1 -1
- package/common/spock.js +1 -1
- package/common/tell.js +4 -2
- package/common/temperature.instance.json +17 -133
- package/common/temperature.js +1 -1
- package/common/time.js +36 -20
- package/common/time.test.json +66 -44
- package/common/tokenize.js +46 -0
- package/common/tokenize.test.json +2 -0
- package/common/ui.instance.json +1 -1
- package/common/weight.instance.json +33 -201
- package/common/weight.js +1 -1
- package/main.js +2 -0
- package/package.json +7 -3
package/common/crew.js
CHANGED
package/common/currency.js
CHANGED
package/common/dialogues.js
CHANGED
@@ -54,7 +54,7 @@ let configStruct = {
|
|
54
54
|
"([what:optional])",
|
55
55
|
"(<the|> ([theAble|]))",
|
56
56
|
"(<a|a,an> ([theAble|]))",
|
57
|
-
"([unknown])",
|
57
|
+
// "([unknown])",
|
58
58
|
"([not] ([notAble|]))",
|
59
59
|
|
60
60
|
"([be] ([briefOrWordy|]))",
|
@@ -150,8 +150,8 @@ let configStruct = {
|
|
150
150
|
{ id: "yesno", level: 0, bridge: "{ ...next(operator) }" },
|
151
151
|
{ id: "canBeQuestion", level: 0, bridge: "{ ...next(operator) }" },
|
152
152
|
{ id: "canBeQuestion", level: 1, bridge: "{ ...next(operator) }" },
|
153
|
-
{ id: "unknown", level: 0, bridge: "{ ...next(operator), unknown: true, dead: true }" },
|
154
|
-
{ id: "unknown", level: 1, bridge: "{ ...next(operator) }" },
|
153
|
+
// { id: "unknown", level: 0, bridge: "{ ...next(operator), unknown: true, dead: true }" },
|
154
|
+
// { id: "unknown", level: 1, bridge: "{ ...next(operator) }" },
|
155
155
|
{ id: "queryable", level: 0, bridge: "{ ...next(operator) }" },
|
156
156
|
{ id: "questionMark", level: 0, bridge: "{ ...before[0], query: [before.marker] }" },
|
157
157
|
// { id: "isEd", level: 0, bridge: "{ ...context, query: true }" },
|
@@ -275,17 +275,19 @@ let configStruct = {
|
|
275
275
|
},
|
276
276
|
],
|
277
277
|
words: {
|
278
|
-
"
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
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
|
-
"
|
2
|
+
"configs": [
|
3
3
|
"dimension and unit are concepts",
|
4
4
|
{
|
5
5
|
"name": "dimension",
|
@@ -890,28 +890,28 @@
|
|
890
890
|
"listable": true,
|
891
891
|
"value": [
|
892
892
|
{
|
893
|
+
"value": "dimension",
|
894
|
+
"unknown": true,
|
895
|
+
"text": "dimension",
|
893
896
|
"marker": "unknown",
|
897
|
+
"word": "dimension",
|
894
898
|
"range": {
|
895
899
|
"start": 0,
|
896
900
|
"end": 8
|
897
901
|
},
|
898
|
-
"word": "dimension",
|
899
|
-
"text": "dimension",
|
900
|
-
"value": "dimension",
|
901
|
-
"unknown": true,
|
902
902
|
"dead": true,
|
903
903
|
"level": 2
|
904
904
|
},
|
905
905
|
{
|
906
|
+
"value": "unit",
|
907
|
+
"unknown": true,
|
908
|
+
"text": "unit",
|
906
909
|
"marker": "unknown",
|
910
|
+
"word": "unit",
|
907
911
|
"range": {
|
908
912
|
"start": 14,
|
909
913
|
"end": 17
|
910
914
|
},
|
911
|
-
"word": "unit",
|
912
|
-
"text": "unit",
|
913
|
-
"value": "unit",
|
914
|
-
"unknown": true,
|
915
915
|
"dead": true,
|
916
916
|
"level": 2
|
917
917
|
}
|
@@ -928,15 +928,15 @@
|
|
928
928
|
"level": 1
|
929
929
|
},
|
930
930
|
"two": {
|
931
|
+
"value": "concepts",
|
932
|
+
"unknown": true,
|
933
|
+
"text": "concepts",
|
931
934
|
"marker": "unknown",
|
935
|
+
"word": "concepts",
|
932
936
|
"range": {
|
933
937
|
"start": 23,
|
934
938
|
"end": 30
|
935
939
|
},
|
936
|
-
"word": "concepts",
|
937
|
-
"text": "concepts",
|
938
|
-
"value": "concepts",
|
939
|
-
"unknown": true,
|
940
940
|
"dead": true,
|
941
941
|
"types": [
|
942
942
|
"unknown"
|