tpmkms 8.0.0-beta.30 → 8.0.0-beta.32

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.
Files changed (38) hide show
  1. package/common/animals.instance.json +325 -0
  2. package/common/articles.js +108 -0
  3. package/common/articles.test.json +310 -0
  4. package/common/colors.instance.json +340 -0
  5. package/common/crew.instance.json +525 -0
  6. package/common/dialogues.js +66 -102
  7. package/common/dimension.instance.json +20 -0
  8. package/common/edible.instance.json +650 -28
  9. package/common/emotions.instance.json +25 -0
  10. package/common/evaluate.instance.json +2 -0
  11. package/common/evaluate.js +55 -0
  12. package/common/evaluate.test.json +574 -0
  13. package/common/fastfood.instance.json +1989 -329
  14. package/common/formulas.instance.json +20 -0
  15. package/common/gdefaults.js +6 -6
  16. package/common/help.test.json +16 -4
  17. package/common/helpers.js +1 -1
  18. package/common/kirk.instance.json +20 -0
  19. package/common/length.instance.json +300 -0
  20. package/common/math.instance.json +25 -0
  21. package/common/nameable.instance.json +2 -0
  22. package/common/nameable.js +137 -0
  23. package/common/nameable.test.json +1545 -0
  24. package/common/ordering.instance.json +50 -0
  25. package/common/people.instance.json +165 -0
  26. package/common/pipboy.instance.json +340 -0
  27. package/common/pokemon.instance.json +265 -0
  28. package/common/pressure.instance.json +80 -0
  29. package/common/properties.instance.json +25 -0
  30. package/common/reports.instance.json +41 -1
  31. package/common/spock.instance.json +20 -0
  32. package/common/stm.js +109 -3
  33. package/common/stm.test.json +1702 -1
  34. package/common/temperature.instance.json +192 -0
  35. package/common/ui.instance.json +20 -0
  36. package/common/weight.instance.json +240 -0
  37. package/main.js +6 -0
  38. package/package.json +13 -2
@@ -148,6 +148,11 @@
148
148
  "queryable",
149
149
  false
150
150
  ],
151
+ [
152
+ "evaluate",
153
+ "verby",
154
+ false
155
+ ],
151
156
  [
152
157
  "expression",
153
158
  "expression",
@@ -393,6 +398,11 @@
393
398
  "theAble",
394
399
  false
395
400
  ],
401
+ [
402
+ "memorable",
403
+ "theAble",
404
+ false
405
+ ],
396
406
  [
397
407
  "minusExpression",
398
408
  "mathematicalExpression",
@@ -558,6 +568,16 @@
558
568
  "theAble",
559
569
  false
560
570
  ],
571
+ [
572
+ "remember",
573
+ "verby",
574
+ false
575
+ ],
576
+ [
577
+ "stm_before",
578
+ "adjective",
579
+ false
580
+ ],
561
581
  [
562
582
  "testingValue",
563
583
  "testingValue",
@@ -1112,6 +1132,11 @@
1112
1132
  "queryable",
1113
1133
  false
1114
1134
  ],
1135
+ [
1136
+ "evaluate",
1137
+ "verby",
1138
+ false
1139
+ ],
1115
1140
  [
1116
1141
  "expression",
1117
1142
  "expression",
@@ -1357,6 +1382,11 @@
1357
1382
  "theAble",
1358
1383
  false
1359
1384
  ],
1385
+ [
1386
+ "memorable",
1387
+ "theAble",
1388
+ false
1389
+ ],
1360
1390
  [
1361
1391
  "minusExpression",
1362
1392
  "mathematicalExpression",
@@ -1522,6 +1552,16 @@
1522
1552
  "theAble",
1523
1553
  false
1524
1554
  ],
1555
+ [
1556
+ "remember",
1557
+ "verby",
1558
+ false
1559
+ ],
1560
+ [
1561
+ "stm_before",
1562
+ "adjective",
1563
+ false
1564
+ ],
1525
1565
  [
1526
1566
  "temperature",
1527
1567
  "dimension",
@@ -2544,6 +2584,11 @@
2544
2584
  "queryable",
2545
2585
  false
2546
2586
  ],
2587
+ [
2588
+ "evaluate",
2589
+ "verby",
2590
+ false
2591
+ ],
2547
2592
  [
2548
2593
  "expression",
2549
2594
  "expression",
@@ -2869,6 +2914,11 @@
2869
2914
  "theAble",
2870
2915
  false
2871
2916
  ],
2917
+ [
2918
+ "memorable",
2919
+ "theAble",
2920
+ false
2921
+ ],
2872
2922
  [
2873
2923
  "minusExpression",
2874
2924
  "mathematicalExpression",
@@ -3034,6 +3084,16 @@
3034
3084
  "theAble",
3035
3085
  false
3036
3086
  ],
3087
+ [
3088
+ "remember",
3089
+ "verby",
3090
+ false
3091
+ ],
3092
+ [
3093
+ "stm_before",
3094
+ "adjective",
3095
+ false
3096
+ ],
3037
3097
  [
3038
3098
  "temperature",
3039
3099
  "dimension",
@@ -3710,6 +3770,36 @@
3710
3770
  0
3711
3771
  ]
3712
3772
  ],
3773
+ [
3774
+ [
3775
+ "celcius",
3776
+ 0
3777
+ ],
3778
+ [
3779
+ "divideByOperator",
3780
+ 0
3781
+ ],
3782
+ [
3783
+ "equals",
3784
+ 0
3785
+ ],
3786
+ [
3787
+ "fahrenheit",
3788
+ 0
3789
+ ],
3790
+ [
3791
+ "number",
3792
+ 0
3793
+ ],
3794
+ [
3795
+ "plusOperator",
3796
+ 0
3797
+ ],
3798
+ [
3799
+ "timesOperator",
3800
+ 0
3801
+ ]
3802
+ ],
3713
3803
  [
3714
3804
  [
3715
3805
  "celcius",
@@ -3989,6 +4079,11 @@
3989
4079
  "queryable",
3990
4080
  false
3991
4081
  ],
4082
+ [
4083
+ "evaluate",
4084
+ "verby",
4085
+ false
4086
+ ],
3992
4087
  [
3993
4088
  "expression",
3994
4089
  "expression",
@@ -4314,6 +4409,11 @@
4314
4409
  "theAble",
4315
4410
  false
4316
4411
  ],
4412
+ [
4413
+ "memorable",
4414
+ "theAble",
4415
+ false
4416
+ ],
4317
4417
  [
4318
4418
  "minusExpression",
4319
4419
  "mathematicalExpression",
@@ -4479,6 +4579,16 @@
4479
4579
  "theAble",
4480
4580
  false
4481
4581
  ],
4582
+ [
4583
+ "remember",
4584
+ "verby",
4585
+ false
4586
+ ],
4587
+ [
4588
+ "stm_before",
4589
+ "adjective",
4590
+ false
4591
+ ],
4482
4592
  [
4483
4593
  "temperature",
4484
4594
  "dimension",
@@ -5367,6 +5477,32 @@
5367
5477
  0
5368
5478
  ]
5369
5479
  ],
5480
+ [
5481
+ [
5482
+ "celcius",
5483
+ 0
5484
+ ],
5485
+ [
5486
+ "divideByOperator",
5487
+ 0
5488
+ ],
5489
+ [
5490
+ "equals",
5491
+ 0
5492
+ ],
5493
+ [
5494
+ "number",
5495
+ 0
5496
+ ],
5497
+ [
5498
+ "plusOperator",
5499
+ 0
5500
+ ],
5501
+ [
5502
+ "timesOperator",
5503
+ 0
5504
+ ]
5505
+ ],
5370
5506
  [
5371
5507
  [
5372
5508
  "celcius",
@@ -5564,6 +5700,36 @@
5564
5700
  0
5565
5701
  ]
5566
5702
  ],
5703
+ [
5704
+ [
5705
+ "celcius",
5706
+ 0
5707
+ ],
5708
+ [
5709
+ "divideByOperator",
5710
+ 0
5711
+ ],
5712
+ [
5713
+ "equals",
5714
+ 0
5715
+ ],
5716
+ [
5717
+ "fahrenheit",
5718
+ 0
5719
+ ],
5720
+ [
5721
+ "number",
5722
+ 0
5723
+ ],
5724
+ [
5725
+ "plusOperator",
5726
+ 0
5727
+ ],
5728
+ [
5729
+ "timesOperator",
5730
+ 0
5731
+ ]
5732
+ ],
5567
5733
  [
5568
5734
  [
5569
5735
  "celcius",
@@ -5718,6 +5884,32 @@
5718
5884
  0
5719
5885
  ]
5720
5886
  ],
5887
+ [
5888
+ [
5889
+ "celcius",
5890
+ 0
5891
+ ],
5892
+ [
5893
+ "divideByOperator",
5894
+ 0
5895
+ ],
5896
+ [
5897
+ "equals",
5898
+ 0
5899
+ ],
5900
+ [
5901
+ "number",
5902
+ 0
5903
+ ],
5904
+ [
5905
+ "plusOperator",
5906
+ 0
5907
+ ],
5908
+ [
5909
+ "timesOperator",
5910
+ 0
5911
+ ]
5912
+ ],
5721
5913
  [
5722
5914
  [
5723
5915
  "celcius",
@@ -94,6 +94,11 @@
94
94
  "direction",
95
95
  false
96
96
  ],
97
+ [
98
+ "evaluate",
99
+ "verby",
100
+ false
101
+ ],
97
102
  [
98
103
  "hasCountOfPieces",
99
104
  "countable",
@@ -279,6 +284,11 @@
279
284
  "theAble",
280
285
  false
281
286
  ],
287
+ [
288
+ "memorable",
289
+ "theAble",
290
+ false
291
+ ],
282
292
  [
283
293
  "minusExpression",
284
294
  "mathematicalExpression",
@@ -449,6 +459,11 @@
449
459
  "theAble",
450
460
  false
451
461
  ],
462
+ [
463
+ "remember",
464
+ "verby",
465
+ false
466
+ ],
452
467
  [
453
468
  "right",
454
469
  "direction",
@@ -459,6 +474,11 @@
459
474
  "verby",
460
475
  false
461
476
  ],
477
+ [
478
+ "stm_before",
479
+ "adjective",
480
+ false
481
+ ],
462
482
  [
463
483
  "stop",
464
484
  "verby",