tpmkms_4wp 8.0.0-beta.2 → 8.0.0-beta.21
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 +2542 -1375
- package/common/animals.js +2 -2
- package/common/avatar.js +2 -2
- package/common/characters.js +12 -16
- package/common/colors.instance.json +6646 -3501
- package/common/colors.js +2 -2
- package/common/colors.test.json +345 -780
- package/common/comparable.js +2 -2
- package/common/concept.js +8 -6
- package/common/countable.js +2 -2
- package/common/crew.instance.json +12534 -6597
- package/common/crew.js +3 -3
- package/common/crew.test.json +714 -452
- package/common/currency.js +4 -4
- package/common/dialogues.js +5 -21
- package/common/dimension.instance.json +242 -261
- package/common/dimension.js +4 -4
- package/common/dimension.test.json +314 -502
- package/common/edible.instance.json +19282 -9954
- package/common/edible.js +2 -2
- package/common/emotions.instance.json +122 -129
- package/common/emotions.js +3 -3
- package/common/events.js +3 -3
- package/common/fastfood.instance.json +219367 -111011
- package/common/fastfood.js +4 -4
- package/common/formulas.instance.json +216 -250
- package/common/formulas.js +6 -6
- package/common/gdefaults.js +2 -2
- package/common/help.js +3 -3
- package/common/help.test.json +10 -22
- package/common/helpers/concept.js +9 -6
- package/common/hierarchy.js +3 -3
- package/common/javascript.js +3 -3
- package/common/kirk.instance.json +564 -290
- package/common/kirk.js +2 -2
- package/common/length.instance.json +5153 -4677
- package/common/length.js +2 -2
- package/common/math.instance.json +140 -1157
- package/common/math.js +6 -6
- package/common/meta.js +3 -3
- package/common/negation.instance.json +2 -0
- package/common/negation.js +38 -0
- package/common/negation.test.json +308 -0
- package/common/numbers.js +3 -3
- package/common/ordering.instance.json +292 -230
- package/common/ordering.js +4 -4
- package/common/people.instance.json +1902 -1015
- package/common/people.js +3 -3
- package/common/percentages.instance.json +2 -0
- package/common/percentages.js +57 -0
- package/common/percentages.test.json +751 -0
- package/common/pipboy.instance.json +7718 -6328
- package/common/pipboy.js +4 -4
- package/common/pokemon.instance.json +3954 -2081
- package/common/pokemon.js +3 -3
- package/common/pos.js +1 -1
- package/common/pressure.instance.json +1265 -1193
- package/common/pressure.js +2 -2
- package/common/properties.instance.json +106 -61
- package/common/properties.js +6 -4
- package/common/punctuation.js +1 -1
- package/common/reports.instance.json +557 -559
- package/common/reports.js +11 -11
- package/common/scorekeeper.js +3 -3
- package/common/sdefaults.js +11 -1
- package/common/sizeable.js +2 -2
- package/common/spock.instance.json +564 -290
- package/common/spock.js +2 -2
- package/common/stgame.js +13 -9
- package/common/stm.js +3 -3
- package/common/tell.js +4 -4
- package/common/temperature.instance.json +1380 -1208
- package/common/temperature.js +2 -2
- package/common/tester.js +2 -2
- package/common/testing.js +2 -2
- package/common/time.js +4 -4
- package/common/tokenize.js +1 -1
- package/common/ui.instance.json +238 -259
- package/common/ui.js +4 -4
- package/common/weight.instance.json +4905 -4166
- package/common/weight.js +2 -2
- package/common/yesno.js +1 -1
- package/main.js +51 -46
- package/package.json +13 -6
package/common/comparable.js
CHANGED
@@ -60,9 +60,9 @@ let configStruct = {
|
|
60
60
|
*/
|
61
61
|
};
|
62
62
|
|
63
|
-
const createConfig = () => {
|
63
|
+
const createConfig = async () => {
|
64
64
|
const config = new Config(configStruct, module)
|
65
|
-
config.add(dialogues
|
65
|
+
await config.add(dialogues, numbers)
|
66
66
|
return config
|
67
67
|
}
|
68
68
|
|
package/common/concept.js
CHANGED
@@ -14,7 +14,7 @@ const concept_instance = require('./concept.instance.json')
|
|
14
14
|
plain and regular fries mean the same thing
|
15
15
|
*/
|
16
16
|
|
17
|
-
const createConfig = () => {
|
17
|
+
const createConfig = async () => {
|
18
18
|
const config = new Config({
|
19
19
|
name: 'concept',
|
20
20
|
operators: [
|
@@ -121,10 +121,12 @@ const createConfig = () => {
|
|
121
121
|
let modifiers
|
122
122
|
if (context.literally) {
|
123
123
|
literalModifiers = context.modifiers[0]
|
124
|
-
modifiers = literalModifiers.value.map(modifier => modifier.value)
|
124
|
+
// modifiers = literalModifiers.value.map(modifier => modifier.value)
|
125
|
+
modifiers = literalModifiers.value
|
125
126
|
modifiers = modifiers.slice(0, -1).concat([literalModifiers.marker]).concat(modifiers.slice(-1))
|
126
127
|
} else {
|
127
|
-
modifiers = context.modifiers
|
128
|
+
modifiers = context.modifiers
|
129
|
+
// modifiers = context.modifiers.map(modifier => modifier.value)
|
128
130
|
}
|
129
131
|
// km('concept').api.kindOfConcept({ config, modifiers, object: context.concept.value || context.concept.marker })
|
130
132
|
km('concept').api.kindOfConcept({ config, modifiers, object: context.concept })
|
@@ -133,9 +135,9 @@ const createConfig = () => {
|
|
133
135
|
],
|
134
136
|
}, module)
|
135
137
|
config.stop_auto_rebuild()
|
136
|
-
config.
|
137
|
-
config.add(dialogues
|
138
|
-
config.restart_auto_rebuild()
|
138
|
+
await config.setApi(new API())
|
139
|
+
await config.add(dialogues)
|
140
|
+
await config.restart_auto_rebuild()
|
139
141
|
return config
|
140
142
|
}
|
141
143
|
|
package/common/countable.js
CHANGED
@@ -75,9 +75,9 @@ let configStruct = {
|
|
75
75
|
]
|
76
76
|
};
|
77
77
|
|
78
|
-
const createConfig = () => {
|
78
|
+
const createConfig = async () => {
|
79
79
|
const config = new Config(configStruct, module)
|
80
|
-
config.add(dialogues
|
80
|
+
await config.add(dialogues, numbers)
|
81
81
|
return config
|
82
82
|
}
|
83
83
|
|