tpmkms_4wp 8.0.0-beta.3 → 8.0.0-beta.31
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 +9 -11
- package/common/colors.instance.json +6646 -3529
- package/common/colors.js +2 -2
- package/common/colors.test.json +345 -780
- package/common/comparable.js +2 -15
- package/common/concept.js +17 -11
- package/common/countable.js +5 -5
- package/common/crew.instance.json +12534 -6597
- package/common/crew.js +4 -4
- package/common/crew.test.json +714 -452
- package/common/currency.js +7 -7
- package/common/dialogues.js +53 -138
- package/common/dimension.instance.json +246 -265
- package/common/dimension.js +12 -12
- package/common/dimension.test.json +446 -1640
- package/common/edible.instance.json +19308 -10008
- package/common/edible.js +2 -2
- package/common/emotions.instance.json +122 -129
- package/common/emotions.js +4 -4
- package/common/events.js +6 -6
- package/common/fastfood.instance.json +219409 -111252
- package/common/fastfood.js +24 -24
- package/common/formulas.instance.json +222 -256
- package/common/formulas.js +14 -14
- package/common/gdefaults.js +13 -13
- package/common/help.js +4 -4
- package/common/help.test.json +10 -22
- package/common/helpers/concept.js +9 -6
- package/common/helpers/dialogues.js +2 -3
- package/common/helpers/properties.js +48 -58
- package/common/hierarchy.js +12 -16
- package/common/javascript.js +8 -8
- 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 +152 -1169
- package/common/math.js +11 -11
- package/common/meta.js +22 -29
- 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 +5 -5
- package/common/people.instance.json +1902 -1015
- package/common/people.js +4 -5
- 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 +7720 -6386
- package/common/pipboy.js +29 -32
- package/common/pokemon.instance.json +3954 -2081
- package/common/pokemon.js +4 -4
- 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 +54 -125
- package/common/punctuation.js +2 -2
- package/common/reports.instance.json +557 -559
- package/common/reports.js +54 -74
- package/common/scorekeeper.js +13 -21
- package/common/sdefaults.js +13 -3
- 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 +4 -4
- package/common/tell.js +10 -10
- package/common/temperature.instance.json +1297 -1209
- package/common/temperature.js +2 -2
- package/common/tester.js +2 -2
- package/common/testing.js +5 -5
- package/common/time.js +7 -7
- package/common/tokenize.js +1 -1
- package/common/ui.instance.json +238 -259
- package/common/ui.js +9 -9
- 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/ui.js
CHANGED
@@ -58,7 +58,7 @@ const configStruct = {
|
|
58
58
|
{
|
59
59
|
where: where(),
|
60
60
|
match: ({context, isA}) => isA(context, 'direction'),
|
61
|
-
apply: ({context, insert, s, fragments}) => {
|
61
|
+
apply: async ({context, insert, s, fragments}) => {
|
62
62
|
const direction = context
|
63
63
|
const fragment = fragments("move direction")
|
64
64
|
const mappings = [{
|
@@ -66,8 +66,8 @@ const configStruct = {
|
|
66
66
|
match: ({context}) => context.value == 'direction',
|
67
67
|
apply: ({context}) => Object.assign(context, direction),
|
68
68
|
}]
|
69
|
-
const instantiation = fragment.instantiate(mappings)
|
70
|
-
s(instantiation)
|
69
|
+
const instantiation = await fragment.instantiate(mappings)
|
70
|
+
await s(instantiation)
|
71
71
|
}
|
72
72
|
},
|
73
73
|
],
|
@@ -117,7 +117,7 @@ const configStruct = {
|
|
117
117
|
isA: ['verby'],
|
118
118
|
level: 0,
|
119
119
|
bridge: "{ ...next(operator), action: after[0] }",
|
120
|
-
generatorp: ({context, g}) => `stop ${g(context.action)}`,
|
120
|
+
generatorp: async ({context, g}) => `stop ${await g(context.action)}`,
|
121
121
|
semantic: ({api, context}) => {
|
122
122
|
api.stop(context.action.value)
|
123
123
|
}
|
@@ -128,7 +128,7 @@ const configStruct = {
|
|
128
128
|
isA: ['verby'],
|
129
129
|
level: 0,
|
130
130
|
bridge: "{ ...next(operator), direction: after[0] }",
|
131
|
-
generatorp: ({context, g}) => `move ${g(context.direction)}`,
|
131
|
+
generatorp: async ({context, g}) => `move ${await g(context.direction)}`,
|
132
132
|
semantic: ({api, context}) => {
|
133
133
|
api.move(context.direction.value, context.direction.steps ? context.direction.steps.value : 1)
|
134
134
|
}
|
@@ -183,12 +183,12 @@ const template = {
|
|
183
183
|
],
|
184
184
|
}
|
185
185
|
|
186
|
-
const createConfig = () => {
|
186
|
+
const createConfig = async () => {
|
187
187
|
const config = new Config(configStruct, module)
|
188
188
|
config.stop_auto_rebuild()
|
189
|
-
config.add(dialogues
|
190
|
-
config.
|
191
|
-
config.restart_auto_rebuild()
|
189
|
+
await config.add(dialogues, math)
|
190
|
+
await config.setApi(new API())
|
191
|
+
await config.restart_auto_rebuild()
|
192
192
|
return config
|
193
193
|
}
|
194
194
|
|