tpmkms 8.0.0-beta.53 → 8.0.0-beta.55
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 +78 -78
- package/common/articles.js +1 -1
- package/common/colors.instance.json +84 -112
- package/common/comparable.js +15 -3
- package/common/comparable.test.json +438 -2
- package/common/concept.js +1 -1
- package/common/countable.js +1 -1
- package/common/crew.instance.json +340 -156
- package/common/dialogues.js +1 -1
- package/common/dimension.instance.json +7 -7
- package/common/edible.instance.json +194 -306
- package/common/emotions.instance.json +66 -6
- package/common/evaluate.js +1 -1
- package/common/events.js +1 -1
- package/common/fastfood.instance.json +1928 -1565
- package/common/fastfood.js +4 -4
- package/common/formulas.instance.json +10 -10
- package/common/formulas.js +2 -2
- package/common/helpers/concept.js +1 -1
- package/common/kirk.instance.json +6 -6
- package/common/length.instance.json +105 -105
- package/common/math.instance.json +8 -8
- package/common/math.js +1 -1
- package/common/nameable.js +2 -2
- package/common/negation.js +1 -1
- package/common/ordering.instance.json +12 -80
- package/common/people.instance.json +48 -48
- package/common/pipboy.instance.json +134 -190
- package/common/pipboy.js +16 -16
- package/common/pokemon.instance.json +78 -78
- package/common/pos.js +8 -8
- package/common/pressure.instance.json +28 -28
- package/common/properties.instance.json +6 -6
- package/common/reports.instance.json +41 -21
- package/common/reports.js +9 -8
- package/common/sizeable.js +1 -1
- package/common/spock.instance.json +6 -6
- package/common/stm.js +1 -1
- package/common/temperature.instance.json +28 -28
- package/common/ui.instance.json +11 -11
- package/common/ui.js +5 -5
- package/common/weight.instance.json +84 -84
- package/package.json +2 -2
package/common/pipboy.js
CHANGED
@@ -117,7 +117,7 @@ let config = {
|
|
117
117
|
// "([weapon])",
|
118
118
|
// "([44_pistol|])",
|
119
119
|
"([apparel])",
|
120
|
-
"((!articlePOS/0 && !
|
120
|
+
"((!articlePOS/0 && !verb/0) [outfit|outfit])",
|
121
121
|
// this doesnt work because the speech recognizer hears 'where'
|
122
122
|
"([wear] ([wearable]))",
|
123
123
|
"([strip])",
|
@@ -152,7 +152,7 @@ let config = {
|
|
152
152
|
{
|
153
153
|
where: where(),
|
154
154
|
id: "put",
|
155
|
-
isA: ['
|
155
|
+
isA: ['verb'],
|
156
156
|
level: 0,
|
157
157
|
bridge: "{ ...next(operator) }",
|
158
158
|
generatorp: ({context}) => `put on`,
|
@@ -179,7 +179,7 @@ let config = {
|
|
179
179
|
{
|
180
180
|
where: where(),
|
181
181
|
id: "change",
|
182
|
-
isA: ['
|
182
|
+
isA: ['verb'],
|
183
183
|
level: 0,
|
184
184
|
bridge: "{ ...next(operator), item: after[0] }",
|
185
185
|
localHierarchy: [ ['weapon', 'changeable'] ],
|
@@ -191,7 +191,7 @@ let config = {
|
|
191
191
|
{
|
192
192
|
where: where(),
|
193
193
|
id: "disarm",
|
194
|
-
isA: ['
|
194
|
+
isA: ['verb'],
|
195
195
|
level: 0,
|
196
196
|
bridge: "{ ...next(operator) }",
|
197
197
|
generatorp: ({context}) => `disarm`,
|
@@ -202,7 +202,7 @@ let config = {
|
|
202
202
|
{
|
203
203
|
where: where(),
|
204
204
|
id: "strip",
|
205
|
-
isA: ['
|
205
|
+
isA: ['verb'],
|
206
206
|
level: 0,
|
207
207
|
bridge: "{ ...next(operator) }",
|
208
208
|
generatorp: ({context}) => `strip`,
|
@@ -213,7 +213,7 @@ let config = {
|
|
213
213
|
{
|
214
214
|
where: where(),
|
215
215
|
id: "call",
|
216
|
-
isA: ['
|
216
|
+
isA: ['verb'],
|
217
217
|
level: 0,
|
218
218
|
bridge: "{ ...next(operator), item: after[0], name: after[1] }",
|
219
219
|
generatorp: async ({context, g}) => `call ${await g(context.item)} ${await g(context.name)}`,
|
@@ -224,7 +224,7 @@ let config = {
|
|
224
224
|
{
|
225
225
|
where: where(),
|
226
226
|
id: "putOn",
|
227
|
-
isA: ['
|
227
|
+
isA: ['verb'],
|
228
228
|
level: 0,
|
229
229
|
bridge: "{ ...next(operator), item: after[0] }",
|
230
230
|
generatorp: async ({context, g}) => `put on ${await g(context.item)}`,
|
@@ -239,7 +239,7 @@ let config = {
|
|
239
239
|
{
|
240
240
|
where: where(),
|
241
241
|
id: "wear",
|
242
|
-
isA: ['
|
242
|
+
isA: ['verb'],
|
243
243
|
words: ['where'], // the speech recognizer hears 'where' not 'wear'
|
244
244
|
level: 0,
|
245
245
|
bridge: "{ ...next(operator), item: after[0] }",
|
@@ -255,7 +255,7 @@ let config = {
|
|
255
255
|
{
|
256
256
|
where: where(),
|
257
257
|
id: "equip",
|
258
|
-
isA: ['
|
258
|
+
isA: ['verb'],
|
259
259
|
level: 0,
|
260
260
|
localHierarchy: [ ['weapon', 'equipable'], ['thisitthat', 'equipable'] ],
|
261
261
|
bridge: "{ ...next(operator), item: after[0] }",
|
@@ -271,7 +271,7 @@ let config = {
|
|
271
271
|
{
|
272
272
|
where: where(),
|
273
273
|
id: "toDrink",
|
274
|
-
isA: ['
|
274
|
+
isA: ['verb'],
|
275
275
|
level: 0,
|
276
276
|
bridge: "{ ...next(operator), item: after[0] }",
|
277
277
|
generatorp: async ({context, g}) => `drink ${await g(context.item)}`,
|
@@ -283,7 +283,7 @@ let config = {
|
|
283
283
|
{
|
284
284
|
where: where(),
|
285
285
|
id: "eat",
|
286
|
-
isA: ['
|
286
|
+
isA: ['verb'],
|
287
287
|
level: 0,
|
288
288
|
bridge: "{ ...next(operator), item: after[0] }",
|
289
289
|
generatorp: async ({context, g}) => `eat ${await g(context.item)}`,
|
@@ -294,7 +294,7 @@ let config = {
|
|
294
294
|
{
|
295
295
|
where: where(),
|
296
296
|
id: "take",
|
297
|
-
isA: ['
|
297
|
+
isA: ['verb'],
|
298
298
|
level: 0,
|
299
299
|
bridge: "{ ...next(operator), item: after[0] }",
|
300
300
|
generatorp: async ({context, g}) => `take ${await g(context.item)}`,
|
@@ -368,7 +368,7 @@ let config = {
|
|
368
368
|
*/
|
369
369
|
{
|
370
370
|
id: "apply",
|
371
|
-
isA: ['
|
371
|
+
isA: ['verb'],
|
372
372
|
level: 0,
|
373
373
|
bridge: "{ ...next(operator), item: after[0] }",
|
374
374
|
generatorp: async ({context, g}) => `apply ${await g(context.item)}`,
|
@@ -380,7 +380,7 @@ let config = {
|
|
380
380
|
},
|
381
381
|
{
|
382
382
|
id: "go",
|
383
|
-
isA: ['
|
383
|
+
isA: ['verb'],
|
384
384
|
level: 0,
|
385
385
|
bridge: "{ ...next(operator), showable: after[0].showable }",
|
386
386
|
generatorp: async ({context, g}) => `go to ${await g(context.showable)}`,
|
@@ -397,7 +397,7 @@ let config = {
|
|
397
397
|
},
|
398
398
|
{
|
399
399
|
id: "showWeapons",
|
400
|
-
isA: ['
|
400
|
+
isA: ['verb'],
|
401
401
|
level: 0,
|
402
402
|
bridge: "{ ...next(operator), showable: after[0] }",
|
403
403
|
generatorp: async ({context, g}) => `show ${await g(context.showable)}`,
|
@@ -411,7 +411,7 @@ let config = {
|
|
411
411
|
},
|
412
412
|
{
|
413
413
|
id: "show",
|
414
|
-
isA: ['
|
414
|
+
isA: ['verb'],
|
415
415
|
level: 0,
|
416
416
|
bridge: "{ ...next(operator), showable: after[0] }",
|
417
417
|
generatorp: async ({context, g}) => `show ${await g(context.showable)}`,
|