tpmkms 7.12.8-beta.6 → 7.12.8-beta.8
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 +66 -66
- package/common/characters.js +5 -0
- package/common/crew.instance.json +217 -345
- package/common/dialogues.js +3 -3
- package/common/dimension.instance.json +9 -9
- package/common/edible.instance.json +250 -138
- package/common/emotions.instance.json +21 -81
- package/common/fastfood.instance.json +1151 -1103
- package/common/formulas.instance.json +6 -6
- package/common/gdefaults.js +2 -0
- package/common/help.js +3 -0
- package/common/help.test.json +9 -5
- package/common/length.instance.json +36 -36
- package/common/math.instance.json +6 -6
- package/common/meta.js +6 -0
- package/common/numbers.js +0 -3
- package/common/ordering.instance.json +27 -95
- package/common/people.instance.json +24 -24
- package/common/pipboy.instance.json +164 -108
- package/common/pokemon.instance.json +30 -30
- package/common/pressure.instance.json +9 -9
- package/common/properties.instance.json +15 -15
- package/common/reports.instance.json +5 -5
- package/common/temperature.instance.json +12 -12
- package/common/tokenize.js +46 -0
- package/common/tokenize.test.json +2 -0
- package/common/weight.instance.json +24 -24
- package/main.js +2 -0
- package/package.json +7 -3
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 }" },
|
@@ -890,28 +890,28 @@
|
|
890
890
|
"listable": true,
|
891
891
|
"value": [
|
892
892
|
{
|
893
|
-
"marker": "unknown",
|
894
893
|
"value": "dimension",
|
895
|
-
"
|
894
|
+
"unknown": true,
|
896
895
|
"text": "dimension",
|
896
|
+
"marker": "unknown",
|
897
|
+
"word": "dimension",
|
897
898
|
"range": {
|
898
899
|
"start": 0,
|
899
900
|
"end": 8
|
900
901
|
},
|
901
|
-
"unknown": true,
|
902
902
|
"dead": true,
|
903
903
|
"level": 2
|
904
904
|
},
|
905
905
|
{
|
906
|
-
"marker": "unknown",
|
907
906
|
"value": "unit",
|
908
|
-
"
|
907
|
+
"unknown": true,
|
909
908
|
"text": "unit",
|
909
|
+
"marker": "unknown",
|
910
|
+
"word": "unit",
|
910
911
|
"range": {
|
911
912
|
"start": 14,
|
912
913
|
"end": 17
|
913
914
|
},
|
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
|
-
"marker": "unknown",
|
932
931
|
"value": "concepts",
|
933
|
-
"
|
932
|
+
"unknown": true,
|
934
933
|
"text": "concepts",
|
934
|
+
"marker": "unknown",
|
935
|
+
"word": "concepts",
|
935
936
|
"range": {
|
936
937
|
"start": 23,
|
937
938
|
"end": 30
|
938
939
|
},
|
939
|
-
"unknown": true,
|
940
940
|
"dead": true,
|
941
941
|
"types": [
|
942
942
|
"unknown"
|