tpmkms_4wp 9.1.0 → 9.1.1-beta.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.
- package/common/articles.js +2 -0
- package/common/avatar.js +0 -6
- package/common/colors.instance.json +28 -0
- package/common/comparable.js +6 -0
- package/common/crew.instance.json +0 -39
- package/common/crew.js +0 -7
- package/common/edible.instance.json +56 -0
- package/common/fastfood.instance.json +61 -337
- package/common/menus.instance.json +2 -0
- package/common/menus.js +61 -0
- package/common/menus.test.json +2 -0
- package/common/negation.js +5 -0
- package/common/pipboy.instance.json +84 -122
- package/common/pipboy.js +0 -7
- package/common/properties.js +1 -0
- package/common/reports.instance.json +1 -1
- package/common/temperature.instance.json +112 -0
- package/common/wp.instance.json +56 -0
- package/main.js +2 -0
- package/package.json +7 -3
package/common/articles.js
CHANGED
@@ -49,12 +49,14 @@ const config = {
|
|
49
49
|
{
|
50
50
|
id: 'the',
|
51
51
|
isA: ['article'],
|
52
|
+
localHierarchy: [['unknown', 'theAble']],
|
52
53
|
level: 0,
|
53
54
|
bridge: '{ ...after[0], focusableForPhrase: true, pullFromContext: true, concept: true, wantsValue: true, determiner: "the", modifiers: append(["determiner"], after[0].modifiers)}'
|
54
55
|
},
|
55
56
|
{
|
56
57
|
id: "a",
|
57
58
|
isA: ['article'],
|
59
|
+
localHierarchy: [['unknown', 'theAble']],
|
58
60
|
level: 0,
|
59
61
|
// bridge: "{ ...after[0], pullFromContext: false, instance: true, concept: true, number: 'one', wantsValue: true, determiner: operator, modifiers: append(['determiner'], after[0].modifiers) }"
|
60
62
|
bridge: "{ ...after[0], pullFromContext: false, instance: true, concept: true, number: 'one', wantsValue: true, determiner: operator, modifiers: append(['determiner'], after[0].modifiers) }"
|
package/common/avatar.js
CHANGED
@@ -3596,6 +3596,20 @@
|
|
3596
3596
|
0
|
3597
3597
|
]
|
3598
3598
|
],
|
3599
|
+
[
|
3600
|
+
[
|
3601
|
+
"is",
|
3602
|
+
0
|
3603
|
+
],
|
3604
|
+
[
|
3605
|
+
"list",
|
3606
|
+
1
|
3607
|
+
],
|
3608
|
+
[
|
3609
|
+
"unknown",
|
3610
|
+
0
|
3611
|
+
]
|
3612
|
+
],
|
3599
3613
|
[
|
3600
3614
|
[
|
3601
3615
|
"is",
|
@@ -36077,6 +36091,20 @@
|
|
36077
36091
|
0
|
36078
36092
|
]
|
36079
36093
|
],
|
36094
|
+
[
|
36095
|
+
[
|
36096
|
+
"is",
|
36097
|
+
0
|
36098
|
+
],
|
36099
|
+
[
|
36100
|
+
"list",
|
36101
|
+
1
|
36102
|
+
],
|
36103
|
+
[
|
36104
|
+
"unknown",
|
36105
|
+
0
|
36106
|
+
]
|
36107
|
+
],
|
36080
36108
|
[
|
36081
36109
|
[
|
36082
36110
|
"is",
|
package/common/comparable.js
CHANGED
@@ -16,6 +16,12 @@ const config = {
|
|
16
16
|
"([lowest])",
|
17
17
|
// "((comparable/*) <sortOrdering|>)",
|
18
18
|
],
|
19
|
+
associations: {
|
20
|
+
positive: [
|
21
|
+
{ context: [["article", 0], ["condition",0],["comparable",0]], choose: 1 },
|
22
|
+
{ context: [["article", 0], ["condition",0],["comparable",1]], choose: 1 },
|
23
|
+
]
|
24
|
+
},
|
19
25
|
bridges: [
|
20
26
|
{
|
21
27
|
id: "compare",
|
@@ -25,25 +25,6 @@
|
|
25
25
|
"spock is readonly",
|
26
26
|
"mccoy is readonly",
|
27
27
|
"arm the weapon means the status of the weapon is armed",
|
28
|
-
{
|
29
|
-
"associations": {
|
30
|
-
"positive": [
|
31
|
-
{
|
32
|
-
"context": [
|
33
|
-
[
|
34
|
-
"not",
|
35
|
-
0
|
36
|
-
],
|
37
|
-
[
|
38
|
-
"unknown",
|
39
|
-
0
|
40
|
-
]
|
41
|
-
],
|
42
|
-
"choose": 1
|
43
|
-
}
|
44
|
-
]
|
45
|
-
}
|
46
|
-
},
|
47
28
|
"disarm the weapon means the status of the weapon is not armed"
|
48
29
|
],
|
49
30
|
"resultss": [
|
@@ -45056,26 +45037,6 @@
|
|
45056
45037
|
"query": "arm the weapon means the status of the weapon is armed"
|
45057
45038
|
}
|
45058
45039
|
},
|
45059
|
-
{
|
45060
|
-
"extraConfig": true,
|
45061
|
-
"associations": {
|
45062
|
-
"positive": [
|
45063
|
-
{
|
45064
|
-
"context": [
|
45065
|
-
[
|
45066
|
-
"not",
|
45067
|
-
0
|
45068
|
-
],
|
45069
|
-
[
|
45070
|
-
"unknown",
|
45071
|
-
0
|
45072
|
-
]
|
45073
|
-
],
|
45074
|
-
"choose": 1
|
45075
|
-
}
|
45076
|
-
]
|
45077
|
-
}
|
45078
|
-
},
|
45079
45040
|
{
|
45080
45041
|
"hierarchy": [
|
45081
45042
|
[
|
package/common/crew.js
CHANGED
@@ -33,13 +33,6 @@ const template = {
|
|
33
33
|
"spock is readonly",
|
34
34
|
"mccoy is readonly",
|
35
35
|
"arm the weapon means the status of the weapon is armed",
|
36
|
-
{
|
37
|
-
associations: {
|
38
|
-
positive: [
|
39
|
-
{ context: [["not",0],["unknown",0]], choose: 1 },
|
40
|
-
]
|
41
|
-
},
|
42
|
-
},
|
43
36
|
"disarm the weapon means the status of the weapon is not armed",
|
44
37
|
],
|
45
38
|
};
|
@@ -6487,6 +6487,20 @@
|
|
6487
6487
|
0
|
6488
6488
|
]
|
6489
6489
|
],
|
6490
|
+
[
|
6491
|
+
[
|
6492
|
+
"is",
|
6493
|
+
0
|
6494
|
+
],
|
6495
|
+
[
|
6496
|
+
"list",
|
6497
|
+
1
|
6498
|
+
],
|
6499
|
+
[
|
6500
|
+
"unknown",
|
6501
|
+
0
|
6502
|
+
]
|
6503
|
+
],
|
6490
6504
|
[
|
6491
6505
|
[
|
6492
6506
|
"is",
|
@@ -24514,6 +24528,20 @@
|
|
24514
24528
|
0
|
24515
24529
|
]
|
24516
24530
|
],
|
24531
|
+
[
|
24532
|
+
[
|
24533
|
+
"is",
|
24534
|
+
0
|
24535
|
+
],
|
24536
|
+
[
|
24537
|
+
"list",
|
24538
|
+
1
|
24539
|
+
],
|
24540
|
+
[
|
24541
|
+
"unknown",
|
24542
|
+
0
|
24543
|
+
]
|
24544
|
+
],
|
24517
24545
|
[
|
24518
24546
|
[
|
24519
24547
|
"is",
|
@@ -69064,6 +69092,34 @@
|
|
69064
69092
|
0
|
69065
69093
|
]
|
69066
69094
|
],
|
69095
|
+
[
|
69096
|
+
[
|
69097
|
+
"is",
|
69098
|
+
0
|
69099
|
+
],
|
69100
|
+
[
|
69101
|
+
"list",
|
69102
|
+
1
|
69103
|
+
],
|
69104
|
+
[
|
69105
|
+
"unknown",
|
69106
|
+
0
|
69107
|
+
]
|
69108
|
+
],
|
69109
|
+
[
|
69110
|
+
[
|
69111
|
+
"is",
|
69112
|
+
0
|
69113
|
+
],
|
69114
|
+
[
|
69115
|
+
"list",
|
69116
|
+
1
|
69117
|
+
],
|
69118
|
+
[
|
69119
|
+
"unknown",
|
69120
|
+
0
|
69121
|
+
]
|
69122
|
+
],
|
69067
69123
|
[
|
69068
69124
|
[
|
69069
69125
|
"is",
|