tpmkms_4wp 9.2.0-beta.0 → 9.2.0-beta.2
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 +8 -8
- package/common/colors.instance.json +18 -46
- package/common/comparable.js +2 -2
- package/common/crew.instance.json +4643 -969
- package/common/crew.test.json +1904 -0
- package/common/dates.instance.json +28562 -0
- package/common/dates.js +152 -0
- package/common/dates.test.json +10239 -0
- package/common/dialogues.js +28 -9
- package/common/dimension.instance.json +2 -2
- package/common/edible.instance.json +1442 -759
- package/common/emotions.instance.json +6 -14
- package/common/emotions.js +4 -5
- package/common/fastfood.instance.json +3976 -1175
- package/common/gdefaults.js +14 -0
- package/common/helpers/concept.js +1 -0
- package/common/helpers/dialogues.js +3 -0
- package/common/helpers/properties.js +2 -27
- package/common/helpers.js +41 -0
- package/common/hierarchy.js +4 -3
- package/common/kirk.instance.json +155 -10
- package/common/length.instance.json +2 -2
- package/common/menus.js +1 -0
- package/common/menus.test.json +2418 -1355
- package/common/meta.js +3 -3
- package/common/ordering.instance.json +2 -2
- package/common/pipboy.instance.json +12 -68
- package/common/pokemon.instance.json +10 -2
- package/common/pressure.instance.json +2 -2
- package/common/properties.js +19 -5
- package/common/punctuation.js +3 -0
- package/common/reports.instance.json +22 -14
- package/common/reports.js +2 -2
- package/common/spock.instance.json +155 -10
- package/common/temperature.instance.json +146 -2
- package/common/wp.instance.json +379 -151
- package/common/wp.js +10 -0
- package/main.js +2 -0
- package/package.json +6 -2
@@ -60,11 +60,6 @@
|
|
60
60
|
"article",
|
61
61
|
false
|
62
62
|
],
|
63
|
-
[
|
64
|
-
"emotion",
|
65
|
-
"unknown",
|
66
|
-
false
|
67
|
-
],
|
68
63
|
[
|
69
64
|
"evaluate",
|
70
65
|
"verb",
|
@@ -255,11 +250,6 @@
|
|
255
250
|
"verb",
|
256
251
|
false
|
257
252
|
],
|
258
|
-
[
|
259
|
-
"sentientBeing",
|
260
|
-
"unknown",
|
261
|
-
false
|
262
|
-
],
|
263
253
|
[
|
264
254
|
"stm_before",
|
265
255
|
"adjective",
|
@@ -756,7 +746,7 @@
|
|
756
746
|
"value": "sentientbeing1",
|
757
747
|
"unknown": true,
|
758
748
|
"text": "sentientbeing1",
|
759
|
-
"marker": "
|
749
|
+
"marker": "unknown",
|
760
750
|
"word": "sentientbeing1",
|
761
751
|
"raw_text": "sentientBeing1",
|
762
752
|
"range": {
|
@@ -765,7 +755,8 @@
|
|
765
755
|
},
|
766
756
|
"dead": true,
|
767
757
|
"types": [
|
768
|
-
"sentientBeing"
|
758
|
+
"sentientBeing",
|
759
|
+
"unknown"
|
769
760
|
],
|
770
761
|
"level": 0
|
771
762
|
},
|
@@ -773,7 +764,7 @@
|
|
773
764
|
"value": "emotion1",
|
774
765
|
"unknown": true,
|
775
766
|
"text": "emotion1",
|
776
|
-
"marker": "
|
767
|
+
"marker": "unknown",
|
777
768
|
"word": "emotion1",
|
778
769
|
"range": {
|
779
770
|
"start": 21,
|
@@ -781,7 +772,8 @@
|
|
781
772
|
},
|
782
773
|
"dead": true,
|
783
774
|
"types": [
|
784
|
-
"emotion"
|
775
|
+
"emotion",
|
776
|
+
"unknown"
|
785
777
|
],
|
786
778
|
"level": 0
|
787
779
|
},
|
package/common/emotions.js
CHANGED
@@ -38,11 +38,6 @@ const config = {
|
|
38
38
|
priorities: [
|
39
39
|
{ "context": [['feel', 0], ['means', 0], ], "choose": [0] },
|
40
40
|
],
|
41
|
-
|
42
|
-
hierarchy: [
|
43
|
-
['emotion', 'unknown'],
|
44
|
-
['sentientBeing', 'unknown'],
|
45
|
-
]
|
46
41
|
}
|
47
42
|
|
48
43
|
const initializer = ({config, apis}) => {
|
@@ -52,6 +47,10 @@ const initializer = ({config, apis}) => {
|
|
52
47
|
create: ['feel'/*, 'emotion'*/],
|
53
48
|
before: [{tag: 'sentientBeing', id: 'sentientBeing'}],
|
54
49
|
after: [{tag: 'emotion', id: 'emotion'}],
|
50
|
+
localHierarchy: [
|
51
|
+
['unknown', 'emotion'],
|
52
|
+
['unknown', 'sentientBeing'],
|
53
|
+
],
|
55
54
|
doAble: true,
|
56
55
|
config })
|
57
56
|
}
|