tpmkms_4wp 9.2.0-beta.1 → 9.2.0-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 +13 -0
- package/common/colors.instance.json +42 -0
- package/common/comparable.instance.json +3 -0
- package/common/crew.instance.json +98 -0
- package/common/dates.instance.json +106 -11
- package/common/dimension.instance.json +1 -0
- package/common/edible.instance.json +144 -0
- package/common/emotions.instance.json +1 -0
- package/common/fastfood.instance.json +987 -396
- package/common/fastfood.js +7 -0
- package/common/formulas.instance.json +1 -0
- package/common/helpers.js +29 -1
- package/common/kirk.instance.json +1 -0
- package/common/length.instance.json +15 -0
- package/common/math.instance.json +1 -0
- package/common/menus.instance.json +7 -0
- package/common/ordering.instance.json +2 -0
- package/common/people.instance.json +8 -0
- package/common/pipboy.instance.json +101 -0
- package/common/pokemon.instance.json +14 -1
- package/common/pressure.instance.json +4 -0
- package/common/properties.instance.json +1 -0
- package/common/reports.instance.json +3 -1
- package/common/spock.instance.json +1 -0
- package/common/temperature.instance.json +4 -144
- package/common/ui.instance.json +1 -0
- package/common/weight.instance.json +12 -0
- package/common/wp.instance.json +70 -0
- package/common/wp.js +5 -0
- package/package.json +2 -2
package/common/fastfood.js
CHANGED
@@ -369,6 +369,7 @@ const template = {
|
|
369
369
|
hierarchy: [
|
370
370
|
['meal', 'toAble'],
|
371
371
|
['drink', 'toAble'],
|
372
|
+
['smoothie_modifier', 'sizeable'],
|
372
373
|
],
|
373
374
|
bridges: [
|
374
375
|
{
|
@@ -433,6 +434,12 @@ const template = {
|
|
433
434
|
}
|
434
435
|
},
|
435
436
|
],
|
437
|
+
associations: {
|
438
|
+
positive: [
|
439
|
+
{ context: [['combo', 0], ['integer', 0]], choose: 0 },
|
440
|
+
{ context: [['combo', 0], ['integer', 1]], choose: 0 },
|
441
|
+
],
|
442
|
+
},
|
436
443
|
},
|
437
444
|
],
|
438
445
|
}
|
package/common/helpers.js
CHANGED
@@ -151,11 +151,39 @@ const toEValue = (context) => {
|
|
151
151
|
return context;
|
152
152
|
}
|
153
153
|
|
154
|
+
const defaultContextCheckValidify = (properties) => {
|
155
|
+
for (const value of properties) {
|
156
|
+
if (typeof value == 'string') {
|
157
|
+
continue
|
158
|
+
}
|
159
|
+
if (typeof value.property == 'string' && value.filter) {
|
160
|
+
continue
|
161
|
+
}
|
162
|
+
throw new Error("Expected the <checks> argument to defaultContextCheck to be a list of <property> or { property: <property>, filter: <checks> }. Where <property> is a string.")
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
154
166
|
const defaultContextCheckProperties = ['marker', 'text', 'verbatim', 'isResponse', { property: 'response', filter: ['marker', 'text', 'verbatim'] }]
|
167
|
+
|
168
|
+
const expand_checks = (properties) => {
|
169
|
+
const expanded = []
|
170
|
+
for (const property of properties) {
|
171
|
+
defaultContextCheckValidify(properties)
|
172
|
+
if (typeof property == 'string') {
|
173
|
+
expanded.push({ property, filter: defaultContextCheckProperties })
|
174
|
+
} else {
|
175
|
+
expanded.push({ property: property.property, filter: [...defaultContextCheckProperties, ...expand_checks(property.filter)] })
|
176
|
+
}
|
177
|
+
}
|
178
|
+
return expanded
|
179
|
+
}
|
180
|
+
|
155
181
|
const defaultContextCheck = (properties = []) => {
|
182
|
+
defaultContextCheckValidify(properties)
|
156
183
|
return [
|
157
184
|
...defaultContextCheckProperties,
|
158
|
-
...properties.map((property) => { return { property, filter: defaultContextCheckProperties } }),
|
185
|
+
// ...properties.map((property) => { return { property, filter: defaultContextCheckProperties } }),
|
186
|
+
...expand_checks(properties),
|
159
187
|
(object) => {
|
160
188
|
if (typeof object.value == 'object') {
|
161
189
|
return { property: 'value', filter: defaultContextCheckProperties }
|
@@ -1443,6 +1443,7 @@
|
|
1443
1443
|
}
|
1444
1444
|
],
|
1445
1445
|
"learned_contextual_priorities": [],
|
1446
|
+
"rtf_associations": [],
|
1446
1447
|
"query": "length is a dimension",
|
1447
1448
|
"key": {
|
1448
1449
|
"query": "length is a dimension"
|
@@ -3898,6 +3899,7 @@
|
|
3898
3899
|
}
|
3899
3900
|
],
|
3900
3901
|
"learned_contextual_priorities": [],
|
3902
|
+
"rtf_associations": [],
|
3901
3903
|
"query": "meter centimeter foot and inch are units of length",
|
3902
3904
|
"key": {
|
3903
3905
|
"query": "meter centimeter foot and inch are units of length"
|
@@ -5613,6 +5615,7 @@
|
|
5613
5615
|
}
|
5614
5616
|
],
|
5615
5617
|
"learned_contextual_priorities": [],
|
5618
|
+
"rtf_associations": [],
|
5616
5619
|
"query": "meters = centimeters / 100",
|
5617
5620
|
"key": {
|
5618
5621
|
"query": "meters = centimeters / 100"
|
@@ -7328,6 +7331,7 @@
|
|
7328
7331
|
}
|
7329
7332
|
],
|
7330
7333
|
"learned_contextual_priorities": [],
|
7334
|
+
"rtf_associations": [],
|
7331
7335
|
"query": "centimeters = meters * 100",
|
7332
7336
|
"key": {
|
7333
7337
|
"query": "centimeters = meters * 100"
|
@@ -9034,6 +9038,7 @@
|
|
9034
9038
|
}
|
9035
9039
|
],
|
9036
9040
|
"learned_contextual_priorities": [],
|
9041
|
+
"rtf_associations": [],
|
9037
9042
|
"query": "centimeters = millimeters / 10",
|
9038
9043
|
"key": {
|
9039
9044
|
"query": "centimeters = millimeters / 10"
|
@@ -10750,6 +10755,7 @@
|
|
10750
10755
|
}
|
10751
10756
|
],
|
10752
10757
|
"learned_contextual_priorities": [],
|
10758
|
+
"rtf_associations": [],
|
10753
10759
|
"query": "millimeters = centimeters * 10",
|
10754
10760
|
"key": {
|
10755
10761
|
"query": "millimeters = centimeters * 10"
|
@@ -12466,6 +12472,7 @@
|
|
12466
12472
|
}
|
12467
12473
|
],
|
12468
12474
|
"learned_contextual_priorities": [],
|
12475
|
+
"rtf_associations": [],
|
12469
12476
|
"query": "millimeters = meters * 1000",
|
12470
12477
|
"key": {
|
12471
12478
|
"query": "millimeters = meters * 1000"
|
@@ -14172,6 +14179,7 @@
|
|
14172
14179
|
}
|
14173
14180
|
],
|
14174
14181
|
"learned_contextual_priorities": [],
|
14182
|
+
"rtf_associations": [],
|
14175
14183
|
"query": "meters = millimeters / 1000",
|
14176
14184
|
"key": {
|
14177
14185
|
"query": "meters = millimeters / 1000"
|
@@ -15887,6 +15895,7 @@
|
|
15887
15895
|
}
|
15888
15896
|
],
|
15889
15897
|
"learned_contextual_priorities": [],
|
15898
|
+
"rtf_associations": [],
|
15890
15899
|
"query": "feet = inches / 12",
|
15891
15900
|
"key": {
|
15892
15901
|
"query": "feet = inches / 12"
|
@@ -17602,6 +17611,7 @@
|
|
17602
17611
|
}
|
17603
17612
|
],
|
17604
17613
|
"learned_contextual_priorities": [],
|
17614
|
+
"rtf_associations": [],
|
17605
17615
|
"query": "inches = feet * 12",
|
17606
17616
|
"key": {
|
17607
17617
|
"query": "inches = feet * 12"
|
@@ -19317,6 +19327,7 @@
|
|
19317
19327
|
}
|
19318
19328
|
],
|
19319
19329
|
"learned_contextual_priorities": [],
|
19330
|
+
"rtf_associations": [],
|
19320
19331
|
"query": "meters = feet / 3.28",
|
19321
19332
|
"key": {
|
19322
19333
|
"query": "meters = feet / 3.28"
|
@@ -20946,6 +20957,7 @@
|
|
20946
20957
|
}
|
20947
20958
|
],
|
20948
20959
|
"learned_contextual_priorities": [],
|
20960
|
+
"rtf_associations": [],
|
20949
20961
|
"query": "miles = 5280 * feet",
|
20950
20962
|
"key": {
|
20951
20963
|
"query": "miles = 5280 * feet"
|
@@ -22652,6 +22664,7 @@
|
|
22652
22664
|
}
|
22653
22665
|
],
|
22654
22666
|
"learned_contextual_priorities": [],
|
22667
|
+
"rtf_associations": [],
|
22655
22668
|
"query": "feet = miles / 5280",
|
22656
22669
|
"key": {
|
22657
22670
|
"query": "feet = miles / 5280"
|
@@ -24368,6 +24381,7 @@
|
|
24368
24381
|
}
|
24369
24382
|
],
|
24370
24383
|
"learned_contextual_priorities": [],
|
24384
|
+
"rtf_associations": [],
|
24371
24385
|
"query": "kilometers = meters / 1000",
|
24372
24386
|
"key": {
|
24373
24387
|
"query": "kilometers = meters / 1000"
|
@@ -26074,6 +26088,7 @@
|
|
26074
26088
|
}
|
26075
26089
|
],
|
26076
26090
|
"learned_contextual_priorities": [],
|
26091
|
+
"rtf_associations": [],
|
26077
26092
|
"query": "meters = kilometers * 1000",
|
26078
26093
|
"key": {
|
26079
26094
|
"query": "meters = kilometers * 1000"
|
@@ -1103,6 +1103,7 @@
|
|
1103
1103
|
}
|
1104
1104
|
],
|
1105
1105
|
"learned_contextual_priorities": [],
|
1106
|
+
"rtf_associations": [],
|
1106
1107
|
"query": "setidsuffix _menus",
|
1107
1108
|
"key": {
|
1108
1109
|
"query": "setidsuffix _menus"
|
@@ -2345,6 +2346,7 @@
|
|
2345
2346
|
}
|
2346
2347
|
],
|
2347
2348
|
"learned_contextual_priorities": [],
|
2349
|
+
"rtf_associations": [],
|
2348
2350
|
"query": "menu is a concept",
|
2349
2351
|
"key": {
|
2350
2352
|
"query": "menu is a concept"
|
@@ -3627,6 +3629,7 @@
|
|
3627
3629
|
}
|
3628
3630
|
],
|
3629
3631
|
"learned_contextual_priorities": [],
|
3632
|
+
"rtf_associations": [],
|
3630
3633
|
"query": "item is a concept",
|
3631
3634
|
"key": {
|
3632
3635
|
"query": "item is a concept"
|
@@ -4870,6 +4873,7 @@
|
|
4870
4873
|
}
|
4871
4874
|
],
|
4872
4875
|
"learned_contextual_priorities": [],
|
4876
|
+
"rtf_associations": [],
|
4873
4877
|
"query": "menu modifies item",
|
4874
4878
|
"key": {
|
4875
4879
|
"query": "menu modifies item"
|
@@ -6531,6 +6535,7 @@
|
|
6531
6535
|
}
|
6532
6536
|
],
|
6533
6537
|
"learned_contextual_priorities": [],
|
6538
|
+
"rtf_associations": [],
|
6534
6539
|
"query": "menus and menu items are showable",
|
6535
6540
|
"key": {
|
6536
6541
|
"query": "menus and menu items are showable"
|
@@ -7724,6 +7729,7 @@
|
|
7724
7729
|
}
|
7725
7730
|
],
|
7726
7731
|
"learned_contextual_priorities": [],
|
7732
|
+
"rtf_associations": [],
|
7727
7733
|
"query": "resetidsuffix",
|
7728
7734
|
"key": {
|
7729
7735
|
"query": "resetidsuffix"
|
@@ -8990,6 +8996,7 @@
|
|
8990
8996
|
}
|
8991
8997
|
],
|
8992
8998
|
"learned_contextual_priorities": [],
|
8999
|
+
"rtf_associations": [],
|
8993
9000
|
"query": "show showable",
|
8994
9001
|
"skipSemantics": false,
|
8995
9002
|
"key": {
|
@@ -1247,6 +1247,7 @@
|
|
1247
1247
|
}
|
1248
1248
|
],
|
1249
1249
|
"learned_contextual_priorities": [],
|
1250
|
+
"rtf_associations": [],
|
1250
1251
|
"query": "wants is xfx between wanter and wantee",
|
1251
1252
|
"key": {
|
1252
1253
|
"query": "wants is xfx between wanter and wantee"
|
@@ -3935,6 +3936,7 @@
|
|
3935
3936
|
}
|
3936
3937
|
],
|
3937
3938
|
"learned_contextual_priorities": [],
|
3939
|
+
"rtf_associations": [],
|
3938
3940
|
"query": "if x likes y or x loves y then x wants y",
|
3939
3941
|
"key": {
|
3940
3942
|
"query": "if x likes y or x loves y then x wants y"
|
@@ -652,6 +652,7 @@
|
|
652
652
|
}
|
653
653
|
],
|
654
654
|
"learned_contextual_priorities": [],
|
655
|
+
"rtf_associations": [],
|
655
656
|
"query": "first modifies name",
|
656
657
|
"key": {
|
657
658
|
"query": "first modifies name"
|
@@ -1450,6 +1451,7 @@
|
|
1450
1451
|
}
|
1451
1452
|
],
|
1452
1453
|
"learned_contextual_priorities": [],
|
1454
|
+
"rtf_associations": [],
|
1453
1455
|
"query": "last modifies name",
|
1454
1456
|
"key": {
|
1455
1457
|
"query": "last modifies name"
|
@@ -2399,6 +2401,7 @@
|
|
2399
2401
|
}
|
2400
2402
|
],
|
2401
2403
|
"learned_contextual_priorities": [],
|
2404
|
+
"rtf_associations": [],
|
2402
2405
|
"query": "surname means last name",
|
2403
2406
|
"key": {
|
2404
2407
|
"query": "surname means last name"
|
@@ -3312,6 +3315,7 @@
|
|
3312
3315
|
}
|
3313
3316
|
],
|
3314
3317
|
"learned_contextual_priorities": [],
|
3318
|
+
"rtf_associations": [],
|
3315
3319
|
"query": "given modifies name",
|
3316
3320
|
"key": {
|
3317
3321
|
"query": "given modifies name"
|
@@ -4418,6 +4422,7 @@
|
|
4418
4422
|
}
|
4419
4423
|
],
|
4420
4424
|
"learned_contextual_priorities": [],
|
4425
|
+
"rtf_associations": [],
|
4421
4426
|
"query": "given name means first name",
|
4422
4427
|
"key": {
|
4423
4428
|
"query": "given name means first name"
|
@@ -6130,6 +6135,7 @@
|
|
6130
6135
|
}
|
6131
6136
|
],
|
6132
6137
|
"learned_contextual_priorities": [],
|
6138
|
+
"rtf_associations": [],
|
6133
6139
|
"query": "ownee is owned by owner means owner owns ownee",
|
6134
6140
|
"key": {
|
6135
6141
|
"query": "ownee is owned by owner means owner owns ownee"
|
@@ -7474,6 +7480,7 @@
|
|
7474
7480
|
}
|
7475
7481
|
],
|
7476
7482
|
"learned_contextual_priorities": [],
|
7483
|
+
"rtf_associations": [],
|
7477
7484
|
"query": "ownervar is owneevar owned by",
|
7478
7485
|
"skipSemantics": false,
|
7479
7486
|
"key": {
|
@@ -8781,6 +8788,7 @@
|
|
8781
8788
|
}
|
8782
8789
|
],
|
8783
8790
|
"learned_contextual_priorities": [],
|
8791
|
+
"rtf_associations": [],
|
8784
8792
|
"query": "owneevar is owned by ownervar",
|
8785
8793
|
"skipSemantics": false,
|
8786
8794
|
"key": {
|
@@ -1718,6 +1718,20 @@
|
|
1718
1718
|
0
|
1719
1719
|
]
|
1720
1720
|
],
|
1721
|
+
[
|
1722
|
+
[
|
1723
|
+
"is",
|
1724
|
+
0
|
1725
|
+
],
|
1726
|
+
[
|
1727
|
+
"list",
|
1728
|
+
1
|
1729
|
+
],
|
1730
|
+
[
|
1731
|
+
"unknown",
|
1732
|
+
0
|
1733
|
+
]
|
1734
|
+
],
|
1721
1735
|
[
|
1722
1736
|
[
|
1723
1737
|
"is",
|
@@ -2566,6 +2580,7 @@
|
|
2566
2580
|
}
|
2567
2581
|
],
|
2568
2582
|
"learned_contextual_priorities": [],
|
2583
|
+
"rtf_associations": [],
|
2569
2584
|
"query": "pistols rifles grenades mines and shotguns are weapons",
|
2570
2585
|
"key": {
|
2571
2586
|
"query": "pistols rifles grenades mines and shotguns are weapons"
|
@@ -4103,6 +4118,7 @@
|
|
4103
4118
|
}
|
4104
4119
|
],
|
4105
4120
|
"learned_contextual_priorities": [],
|
4121
|
+
"rtf_associations": [],
|
4106
4122
|
"query": "mines and grenades are explosives",
|
4107
4123
|
"key": {
|
4108
4124
|
"query": "mines and grenades are explosives"
|
@@ -5493,6 +5509,7 @@
|
|
5493
5509
|
}
|
5494
5510
|
],
|
5495
5511
|
"learned_contextual_priorities": [],
|
5512
|
+
"rtf_associations": [],
|
5496
5513
|
"query": "explosives are weapons",
|
5497
5514
|
"key": {
|
5498
5515
|
"query": "explosives are weapons"
|
@@ -6917,6 +6934,20 @@
|
|
6917
6934
|
0
|
6918
6935
|
]
|
6919
6936
|
],
|
6937
|
+
[
|
6938
|
+
[
|
6939
|
+
"is",
|
6940
|
+
0
|
6941
|
+
],
|
6942
|
+
[
|
6943
|
+
"list",
|
6944
|
+
1
|
6945
|
+
],
|
6946
|
+
[
|
6947
|
+
"unknown",
|
6948
|
+
0
|
6949
|
+
]
|
6950
|
+
],
|
6920
6951
|
[
|
6921
6952
|
[
|
6922
6953
|
"is",
|
@@ -7310,6 +7341,7 @@
|
|
7310
7341
|
}
|
7311
7342
|
],
|
7312
7343
|
"learned_contextual_priorities": [],
|
7344
|
+
"rtf_associations": [],
|
7313
7345
|
"query": "pistols rifles and shotguns are firearms",
|
7314
7346
|
"key": {
|
7315
7347
|
"query": "pistols rifles and shotguns are firearms"
|
@@ -8755,6 +8787,7 @@
|
|
8755
8787
|
}
|
8756
8788
|
],
|
8757
8789
|
"learned_contextual_priorities": [],
|
8790
|
+
"rtf_associations": [],
|
8758
8791
|
"query": "firearms are weapons",
|
8759
8792
|
"key": {
|
8760
8793
|
"query": "firearms are weapons"
|
@@ -10207,6 +10240,20 @@
|
|
10207
10240
|
0
|
10208
10241
|
]
|
10209
10242
|
],
|
10243
|
+
[
|
10244
|
+
[
|
10245
|
+
"is",
|
10246
|
+
0
|
10247
|
+
],
|
10248
|
+
[
|
10249
|
+
"list",
|
10250
|
+
1
|
10251
|
+
],
|
10252
|
+
[
|
10253
|
+
"unknown",
|
10254
|
+
0
|
10255
|
+
]
|
10256
|
+
],
|
10210
10257
|
[
|
10211
10258
|
[
|
10212
10259
|
"is",
|
@@ -10665,6 +10712,7 @@
|
|
10665
10712
|
}
|
10666
10713
|
],
|
10667
10714
|
"learned_contextual_priorities": [],
|
10715
|
+
"rtf_associations": [],
|
10668
10716
|
"query": "hats armor and suits are clothes",
|
10669
10717
|
"key": {
|
10670
10718
|
"query": "hats armor and suits are clothes"
|
@@ -12396,6 +12444,7 @@
|
|
12396
12444
|
}
|
12397
12445
|
],
|
12398
12446
|
"learned_contextual_priorities": [],
|
12447
|
+
"rtf_associations": [],
|
12399
12448
|
"query": "a weapon is equipable",
|
12400
12449
|
"key": {
|
12401
12450
|
"query": "a weapon is equipable"
|
@@ -14041,6 +14090,7 @@
|
|
14041
14090
|
}
|
14042
14091
|
],
|
14043
14092
|
"learned_contextual_priorities": [],
|
14093
|
+
"rtf_associations": [],
|
14044
14094
|
"query": "clothes are wearable",
|
14045
14095
|
"key": {
|
14046
14096
|
"query": "clothes are wearable"
|
@@ -15773,6 +15823,7 @@
|
|
15773
15823
|
}
|
15774
15824
|
],
|
15775
15825
|
"learned_contextual_priorities": [],
|
15826
|
+
"rtf_associations": [],
|
15776
15827
|
"query": "edible is a concept",
|
15777
15828
|
"key": {
|
15778
15829
|
"query": "edible is a concept"
|
@@ -17499,6 +17550,7 @@
|
|
17499
17550
|
}
|
17500
17551
|
],
|
17501
17552
|
"learned_contextual_priorities": [],
|
17553
|
+
"rtf_associations": [],
|
17502
17554
|
"query": "food is edible",
|
17503
17555
|
"key": {
|
17504
17556
|
"query": "food is edible"
|
@@ -19251,6 +19303,7 @@
|
|
19251
19303
|
}
|
19252
19304
|
],
|
19253
19305
|
"learned_contextual_priorities": [],
|
19306
|
+
"rtf_associations": [],
|
19254
19307
|
"query": "drinks are drinkable",
|
19255
19308
|
"key": {
|
19256
19309
|
"query": "drinks are drinkable"
|
@@ -21092,6 +21145,7 @@
|
|
21092
21145
|
}
|
21093
21146
|
],
|
21094
21147
|
"learned_contextual_priorities": [],
|
21148
|
+
"rtf_associations": [],
|
21095
21149
|
"query": "meat is food",
|
21096
21150
|
"key": {
|
21097
21151
|
"query": "meat is food"
|
@@ -23210,6 +23264,7 @@
|
|
23210
23264
|
}
|
23211
23265
|
],
|
23212
23266
|
"learned_contextual_priorities": [],
|
23267
|
+
"rtf_associations": [],
|
23213
23268
|
"query": "vegetables and fruit are food",
|
23214
23269
|
"key": {
|
23215
23270
|
"query": "vegetables and fruit are food"
|
@@ -25408,6 +25463,7 @@
|
|
25408
25463
|
}
|
25409
25464
|
],
|
25410
25465
|
"learned_contextual_priorities": [],
|
25466
|
+
"rtf_associations": [],
|
25411
25467
|
"query": "cola and pop are drinks",
|
25412
25468
|
"key": {
|
25413
25469
|
"query": "cola and pop are drinks"
|
@@ -27692,6 +27748,7 @@
|
|
27692
27748
|
}
|
27693
27749
|
],
|
27694
27750
|
"learned_contextual_priorities": [],
|
27751
|
+
"rtf_associations": [],
|
27695
27752
|
"query": "medicine and stimpaks are takeable",
|
27696
27753
|
"key": {
|
27697
27754
|
"query": "medicine and stimpaks are takeable"
|
@@ -29749,6 +29806,7 @@
|
|
29749
29806
|
}
|
29750
29807
|
],
|
29751
29808
|
"learned_contextual_priorities": [],
|
29809
|
+
"rtf_associations": [],
|
29752
29810
|
"query": "item modifies property",
|
29753
29811
|
"key": {
|
29754
29812
|
"query": "item modifies property"
|
@@ -34747,6 +34805,7 @@
|
|
34747
34805
|
}
|
34748
34806
|
],
|
34749
34807
|
"learned_contextual_priorities": [],
|
34808
|
+
"rtf_associations": [],
|
34750
34809
|
"query": "damage luck hp rads value ap charisma range and accuracy are item properties",
|
34751
34810
|
"key": {
|
34752
34811
|
"query": "damage luck hp rads value ap charisma range and accuracy are item properties"
|
@@ -35681,6 +35740,48 @@
|
|
35681
35740
|
0
|
35682
35741
|
]
|
35683
35742
|
],
|
35743
|
+
[
|
35744
|
+
[
|
35745
|
+
"is",
|
35746
|
+
0
|
35747
|
+
],
|
35748
|
+
[
|
35749
|
+
"list",
|
35750
|
+
1
|
35751
|
+
],
|
35752
|
+
[
|
35753
|
+
"unknown",
|
35754
|
+
0
|
35755
|
+
]
|
35756
|
+
],
|
35757
|
+
[
|
35758
|
+
[
|
35759
|
+
"is",
|
35760
|
+
0
|
35761
|
+
],
|
35762
|
+
[
|
35763
|
+
"list",
|
35764
|
+
1
|
35765
|
+
],
|
35766
|
+
[
|
35767
|
+
"unknown",
|
35768
|
+
0
|
35769
|
+
]
|
35770
|
+
],
|
35771
|
+
[
|
35772
|
+
[
|
35773
|
+
"is",
|
35774
|
+
0
|
35775
|
+
],
|
35776
|
+
[
|
35777
|
+
"list",
|
35778
|
+
1
|
35779
|
+
],
|
35780
|
+
[
|
35781
|
+
"unknown",
|
35782
|
+
0
|
35783
|
+
]
|
35784
|
+
],
|
35684
35785
|
[
|
35685
35786
|
[
|
35686
35787
|
"is",
|
@@ -556,6 +556,7 @@
|
|
556
556
|
}
|
557
557
|
],
|
558
558
|
"learned_contextual_priorities": [],
|
559
|
+
"rtf_associations": [],
|
559
560
|
"query": "pokemon modifies type",
|
560
561
|
"key": {
|
561
562
|
"query": "pokemon modifies type"
|
@@ -1139,7 +1140,7 @@
|
|
1139
1140
|
],
|
1140
1141
|
"modifier_pokemon": {
|
1141
1142
|
"value": "pokemon",
|
1142
|
-
"number": "
|
1143
|
+
"number": "one",
|
1143
1144
|
"text": "pokemon",
|
1144
1145
|
"marker": "pokemon",
|
1145
1146
|
"word": "pokemon",
|
@@ -1431,6 +1432,7 @@
|
|
1431
1432
|
}
|
1432
1433
|
],
|
1433
1434
|
"learned_contextual_priorities": [],
|
1435
|
+
"rtf_associations": [],
|
1434
1436
|
"query": "pokemon type is a type",
|
1435
1437
|
"key": {
|
1436
1438
|
"query": "pokemon type is a type"
|
@@ -2926,6 +2928,7 @@
|
|
2926
2928
|
}
|
2927
2929
|
],
|
2928
2930
|
"learned_contextual_priorities": [],
|
2931
|
+
"rtf_associations": [],
|
2929
2932
|
"query": "pikachu squirtle weedle and pidgeot are pokemon",
|
2930
2933
|
"key": {
|
2931
2934
|
"query": "pikachu squirtle weedle and pidgeot are pokemon"
|
@@ -3772,6 +3775,7 @@
|
|
3772
3775
|
}
|
3773
3776
|
],
|
3774
3777
|
"learned_contextual_priorities": [],
|
3778
|
+
"rtf_associations": [],
|
3775
3779
|
"query": "fire modifies type",
|
3776
3780
|
"key": {
|
3777
3781
|
"query": "fire modifies type"
|
@@ -4708,6 +4712,7 @@
|
|
4708
4712
|
}
|
4709
4713
|
],
|
4710
4714
|
"learned_contextual_priorities": [],
|
4715
|
+
"rtf_associations": [],
|
4711
4716
|
"query": "water modifies type",
|
4712
4717
|
"key": {
|
4713
4718
|
"query": "water modifies type"
|
@@ -5734,6 +5739,7 @@
|
|
5734
5739
|
}
|
5735
5740
|
],
|
5736
5741
|
"learned_contextual_priorities": [],
|
5742
|
+
"rtf_associations": [],
|
5737
5743
|
"query": "earth modifies type",
|
5738
5744
|
"key": {
|
5739
5745
|
"query": "earth modifies type"
|
@@ -6850,6 +6856,7 @@
|
|
6850
6856
|
}
|
6851
6857
|
],
|
6852
6858
|
"learned_contextual_priorities": [],
|
6859
|
+
"rtf_associations": [],
|
6853
6860
|
"query": "electric modifies type",
|
6854
6861
|
"key": {
|
6855
6862
|
"query": "electric modifies type"
|
@@ -8370,6 +8377,7 @@
|
|
8370
8377
|
}
|
8371
8378
|
],
|
8372
8379
|
"learned_contextual_priorities": [],
|
8380
|
+
"rtf_associations": [],
|
8373
8381
|
"query": "fire type is a pokemon type",
|
8374
8382
|
"key": {
|
8375
8383
|
"query": "fire type is a pokemon type"
|
@@ -9895,6 +9903,7 @@
|
|
9895
9903
|
}
|
9896
9904
|
],
|
9897
9905
|
"learned_contextual_priorities": [],
|
9906
|
+
"rtf_associations": [],
|
9898
9907
|
"query": "water type is a pokemon type",
|
9899
9908
|
"key": {
|
9900
9909
|
"query": "water type is a pokemon type"
|
@@ -11425,6 +11434,7 @@
|
|
11425
11434
|
}
|
11426
11435
|
],
|
11427
11436
|
"learned_contextual_priorities": [],
|
11437
|
+
"rtf_associations": [],
|
11428
11438
|
"query": "electric type is a pokemon type",
|
11429
11439
|
"key": {
|
11430
11440
|
"query": "electric type is a pokemon type"
|
@@ -12960,6 +12970,7 @@
|
|
12960
12970
|
}
|
12961
12971
|
],
|
12962
12972
|
"learned_contextual_priorities": [],
|
12973
|
+
"rtf_associations": [],
|
12963
12974
|
"query": "earth type is a pokemon type",
|
12964
12975
|
"key": {
|
12965
12976
|
"query": "earth type is a pokemon type"
|
@@ -14465,6 +14476,7 @@
|
|
14465
14476
|
}
|
14466
14477
|
],
|
14467
14478
|
"learned_contextual_priorities": [],
|
14479
|
+
"rtf_associations": [],
|
14468
14480
|
"query": "pikachu is an electric type",
|
14469
14481
|
"key": {
|
14470
14482
|
"query": "pikachu is an electric type"
|
@@ -15972,6 +15984,7 @@
|
|
15972
15984
|
}
|
15973
15985
|
],
|
15974
15986
|
"learned_contextual_priorities": [],
|
15987
|
+
"rtf_associations": [],
|
15975
15988
|
"query": "charmander is a fire type",
|
15976
15989
|
"key": {
|
15977
15990
|
"query": "charmander is a fire type"
|