ekms 9.5.0 → 9.5.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/asking.js +4 -4
- package/common/characters.js +2 -2
- package/common/crew.instance.json +47 -61
- package/common/crew.test.json +4148 -3324
- package/common/dialogues.js +1 -1
- package/common/dimension.instance.json +8 -8
- package/common/dimension.js +4 -4
- package/common/edible.instance.json +72 -0
- package/common/emotions.instance.json +26 -0
- package/common/emotions.test.json +242 -174
- package/common/english_helpers.js +126 -0
- package/common/errors.js +3 -3
- package/common/evaluate.js +2 -2
- package/common/events.js +8 -8
- package/common/fastfood.instance.json +242 -18
- package/common/formulas.js +1 -1
- package/common/gdefaults.js +19 -2
- package/common/help.js +1 -1
- package/common/helpers/meta.js +1 -1
- package/common/helpers/properties.js +91 -49
- package/common/helpers.js +53 -0
- package/common/latin.instance.json +2 -2
- package/common/latin.js +4 -4
- package/common/listener.js +1 -1
- package/common/math.instance.json +8 -8
- package/common/math.js +4 -4
- package/common/meta.js +27 -27
- package/common/nameable.js +7 -7
- package/common/ordering.instance.json +78 -0
- package/common/ordering.test.json +663 -233
- package/common/people.instance.json +26 -12
- package/common/people.js +5 -3
- package/common/people.test.json +4071 -3813
- package/common/pipboy.js +2 -3
- package/common/properties.js +6 -1
- package/common/reminders.instance.json +4 -4
- package/common/reminders.js +2 -2
- package/common/reports.instance.json +2 -2
- package/common/scorekeeper.js +2 -2
- package/common/stm.js +2 -2
- package/common/tokenize.js +4 -1
- package/common/wp.instance.json +74 -2
- package/package.json +4 -2
|
@@ -5440,6 +5440,21 @@
|
|
|
5440
5440
|
],
|
|
5441
5441
|
"level": 0
|
|
5442
5442
|
},
|
|
5443
|
+
"operator": {
|
|
5444
|
+
"value": "owns",
|
|
5445
|
+
"number": "one",
|
|
5446
|
+
"text": "owns",
|
|
5447
|
+
"marker": "owns",
|
|
5448
|
+
"word": "owns",
|
|
5449
|
+
"range": {
|
|
5450
|
+
"start": 30,
|
|
5451
|
+
"end": 45
|
|
5452
|
+
},
|
|
5453
|
+
"evaluateWord": true,
|
|
5454
|
+
"imperative": false,
|
|
5455
|
+
"isVerb": true,
|
|
5456
|
+
"level": 0
|
|
5457
|
+
},
|
|
5443
5458
|
"unflatten": [
|
|
5444
5459
|
"owner",
|
|
5445
5460
|
"ownee"
|
|
@@ -5448,6 +5463,17 @@
|
|
|
5448
5463
|
"owner",
|
|
5449
5464
|
"ownee"
|
|
5450
5465
|
],
|
|
5466
|
+
"interpolate": [
|
|
5467
|
+
{
|
|
5468
|
+
"property": "owner"
|
|
5469
|
+
},
|
|
5470
|
+
{
|
|
5471
|
+
"property": "operator"
|
|
5472
|
+
},
|
|
5473
|
+
{
|
|
5474
|
+
"property": "ownee"
|
|
5475
|
+
}
|
|
5476
|
+
],
|
|
5451
5477
|
"level": 1
|
|
5452
5478
|
},
|
|
5453
5479
|
"level": 1,
|
|
@@ -8359,10 +8385,6 @@
|
|
|
8359
8385
|
"default": true,
|
|
8360
8386
|
"word": "owned",
|
|
8361
8387
|
"text": "owned",
|
|
8362
|
-
"range": {
|
|
8363
|
-
"start": 12,
|
|
8364
|
-
"end": 16
|
|
8365
|
-
},
|
|
8366
8388
|
"types": [
|
|
8367
8389
|
"owned"
|
|
8368
8390
|
],
|
|
@@ -8376,10 +8398,6 @@
|
|
|
8376
8398
|
"text": "owneevar",
|
|
8377
8399
|
"marker": "unknown",
|
|
8378
8400
|
"word": "owneevar",
|
|
8379
|
-
"range": {
|
|
8380
|
-
"start": 0,
|
|
8381
|
-
"end": 28
|
|
8382
|
-
},
|
|
8383
8401
|
"dead": true,
|
|
8384
8402
|
"types": [
|
|
8385
8403
|
"ownee",
|
|
@@ -8393,10 +8411,6 @@
|
|
|
8393
8411
|
"text": "ownervar",
|
|
8394
8412
|
"marker": "ownervar",
|
|
8395
8413
|
"word": "ownervar",
|
|
8396
|
-
"range": {
|
|
8397
|
-
"start": 21,
|
|
8398
|
-
"end": 28
|
|
8399
|
-
},
|
|
8400
8414
|
"dead": true,
|
|
8401
8415
|
"types": [
|
|
8402
8416
|
"ownervar"
|
package/common/people.js
CHANGED
|
@@ -5,7 +5,6 @@ const people_tests = require('./people.test.json')
|
|
|
5
5
|
const people_instance = require('./people.instance.json')
|
|
6
6
|
const { hashIndexesGet, hashIndexesSet, translationMapping, translationMappings, compose } = require('./helpers/meta.js')
|
|
7
7
|
|
|
8
|
-
|
|
9
8
|
// TODO first name
|
|
10
9
|
// TODO last name
|
|
11
10
|
// alive is a first name vs alive is a person
|
|
@@ -71,8 +70,11 @@ knowledgeModule( {
|
|
|
71
70
|
name: './people.test.json',
|
|
72
71
|
contents: people_tests,
|
|
73
72
|
checks: {
|
|
74
|
-
context: [
|
|
75
|
-
|
|
73
|
+
context: [
|
|
74
|
+
defaultContextCheck({ marker: 'owns', extra: ['constraints', 'owned', 'ownee'] }),
|
|
75
|
+
],
|
|
76
|
+
objects: [{ km: 'properties' }],
|
|
77
|
+
},
|
|
76
78
|
},
|
|
77
79
|
template: {
|
|
78
80
|
template,
|