ekms 9.4.5-beta.0 → 9.4.5-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 +40 -280
- package/common/colors.instance.json +99 -299
- package/common/comparable.instance.json +42 -10
- package/common/crew.instance.json +653 -1017
- package/common/crew.js +0 -15
- package/common/dimension.instance.json +2 -2
- package/common/dimension.js +1 -1
- package/common/edible.instance.json +261 -661
- package/common/fastfood.instance.json +4767 -3215
- package/common/fastfood.js +1 -0
- package/common/gdefaults.js +34 -2
- package/common/helpers/concept.js +2 -1
- package/common/helpers/dialogues.js +2 -1
- package/common/kirk.instance.json +3 -23
- package/common/latin.instance.json +472 -1
- package/common/latin.js +142 -22
- package/common/latin.test.json +5325 -0
- package/common/latin_helpers.js +358 -0
- package/common/length.instance.json +128 -384
- package/common/menus.instance.json +21 -61
- package/common/people.instance.json +128 -96
- package/common/pipboy.instance.json +86 -312
- package/common/pipboy.js +2 -1
- package/common/pipboy.test.json +1690 -0
- package/common/pokemon.instance.json +351 -103
- package/common/pos.js +39 -34
- package/common/pressure.instance.json +32 -124
- package/common/properties.js +0 -16
- package/common/reminders.test.json +2702 -2786
- package/common/reports.instance.json +2 -2
- package/common/spock.instance.json +3 -23
- package/common/temperature.instance.json +40 -196
- package/common/tokenize.js +16 -4
- package/common/weight.instance.json +241 -301
- package/common/wp.instance.json +357 -327
- package/common/wp.js +23 -4
- package/package.json +3 -2
package/common/crew.js
CHANGED
|
@@ -47,21 +47,6 @@ const initializer = ({config, apis}) => {
|
|
|
47
47
|
create: ['arm', 'weapon'],
|
|
48
48
|
after: [{tag: 'weapon', id: 'weapon'}],
|
|
49
49
|
config },
|
|
50
|
-
/*
|
|
51
|
-
({context, km}) => {
|
|
52
|
-
const value = {
|
|
53
|
-
"marker": "unknown",
|
|
54
|
-
"types": [
|
|
55
|
-
"unknown"
|
|
56
|
-
],
|
|
57
|
-
"unknown": true,
|
|
58
|
-
"value": "armed",
|
|
59
|
-
"word": "armed",
|
|
60
|
-
"response": true
|
|
61
|
-
}
|
|
62
|
-
km("properties").api.setProperty(context.weapon.value, 'status', value, true)
|
|
63
|
-
}
|
|
64
|
-
*/
|
|
65
50
|
)
|
|
66
51
|
|
|
67
52
|
api.createActionPrefix({
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"([unit])",
|
|
9
9
|
"((amount/1 || number/1) [amountOfDimension|] ([unit]))",
|
|
10
10
|
"(([amount]) [unit])",
|
|
11
|
-
"((dimension
|
|
11
|
+
"((dimension) [convertToUnits|in] (unit))",
|
|
12
12
|
"(([number]) [degree])",
|
|
13
13
|
{
|
|
14
14
|
"pattern": "([length])",
|
|
@@ -1554,7 +1554,7 @@
|
|
|
1554
1554
|
"([unit])",
|
|
1555
1555
|
"((amount/1 || number/1) [amountOfDimension|] ([unit]))",
|
|
1556
1556
|
"(([amount]) [unit])",
|
|
1557
|
-
"((dimension
|
|
1557
|
+
"((dimension) [convertToUnits|in] (unit))",
|
|
1558
1558
|
"(([number]) [degree])",
|
|
1559
1559
|
{
|
|
1560
1560
|
"pattern": "([length])",
|
package/common/dimension.js
CHANGED
|
@@ -60,7 +60,7 @@ const config = {
|
|
|
60
60
|
// "(([unit]) [kindOfDimension|of] ([dimension]))",
|
|
61
61
|
"((amount/1 || number/1) [amountOfDimension|] ([unit]))",
|
|
62
62
|
"(([amount]) [unit])",
|
|
63
|
-
"((dimension
|
|
63
|
+
"((dimension) [convertToUnits|in] (unit))",
|
|
64
64
|
|
|
65
65
|
"(([number]) [degree])",
|
|
66
66
|
{ pattern: "([length])", development: true },
|