tpmkms_4wp 7.12.2-beta.5 → 7.12.3-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/avatar.js +1 -2
- package/common/comparable.js +1 -1
- package/common/concept.js +2 -0
- package/common/countable.js +1 -1
- package/common/crew.instance.json +36 -0
- package/common/crew.js +3 -2
- package/common/currency.js +2 -0
- package/common/dialogues.js +3 -1
- package/common/dimension.js +3 -1
- package/common/edible.instance.json +56 -0
- package/common/edible.js +1 -2
- package/common/emotions.js +2 -0
- package/common/fastfood.instance.json +935 -491
- package/common/fastfood.js +3 -4
- package/common/formulas.js +3 -1
- package/common/formulasTemplate.js +1 -1
- package/common/help.js +2 -0
- package/common/hierarchy.js +2 -0
- package/common/javascript.js +2 -0
- package/common/math.js +1 -4
- package/common/mathTemplate.js +1 -1
- package/common/ordering.js +2 -0
- package/common/people.instance.json +0 -60
- package/common/people.js +2 -0
- package/common/pipboy.js +3 -1
- package/common/pipboy.test.json +13 -5
- package/common/pipboyTemplate.js +1 -1
- package/common/pokemon.js +2 -0
- package/common/properties.js +3 -3
- package/common/reports.instance.json +1 -1
- package/common/reports.js +4 -1
- package/common/scorekeeper.js +3 -3
- package/common/sizeable.js +1 -1
- package/common/stgame.js +2 -0
- package/common/tell.js +2 -0
- package/common/temperature.instance.json +0 -84
- package/common/time.js +2 -0
- package/common/ui.js +3 -1
- package/package.json +2 -2
package/common/avatar.js
CHANGED
package/common/comparable.js
CHANGED
package/common/concept.js
CHANGED
package/common/countable.js
CHANGED
@@ -20932,6 +20932,24 @@
|
|
20932
20932
|
1
|
20933
20933
|
]
|
20934
20934
|
],
|
20935
|
+
[
|
20936
|
+
[
|
20937
|
+
"is",
|
20938
|
+
0
|
20939
|
+
],
|
20940
|
+
[
|
20941
|
+
"propertyOf",
|
20942
|
+
0
|
20943
|
+
],
|
20944
|
+
[
|
20945
|
+
"the",
|
20946
|
+
0
|
20947
|
+
],
|
20948
|
+
[
|
20949
|
+
"unknown",
|
20950
|
+
1
|
20951
|
+
]
|
20952
|
+
],
|
20935
20953
|
[
|
20936
20954
|
[
|
20937
20955
|
"is",
|
@@ -34404,6 +34422,24 @@
|
|
34404
34422
|
1
|
34405
34423
|
]
|
34406
34424
|
],
|
34425
|
+
[
|
34426
|
+
[
|
34427
|
+
"is",
|
34428
|
+
0
|
34429
|
+
],
|
34430
|
+
[
|
34431
|
+
"propertyOf",
|
34432
|
+
0
|
34433
|
+
],
|
34434
|
+
[
|
34435
|
+
"the",
|
34436
|
+
0
|
34437
|
+
],
|
34438
|
+
[
|
34439
|
+
"unknown",
|
34440
|
+
1
|
34441
|
+
]
|
34442
|
+
],
|
34407
34443
|
[
|
34408
34444
|
[
|
34409
34445
|
"is",
|
package/common/crew.js
CHANGED
@@ -37,8 +37,8 @@ const template = {
|
|
37
37
|
|
38
38
|
const createConfig = () => {
|
39
39
|
const config = new Config({ name: 'crew', }, module)
|
40
|
-
config.
|
41
|
-
config.add(animals())
|
40
|
+
config.stop_auto_rebuild()
|
41
|
+
config.add(avatar(), animals())
|
42
42
|
crew_instance.base = 'avatar'
|
43
43
|
config.initializer( ({config, apis}) => {
|
44
44
|
const api = apis('properties')
|
@@ -73,6 +73,7 @@ const createConfig = () => {
|
|
73
73
|
after: [{tag: 'weapon', id: 'weapon'}],
|
74
74
|
config })
|
75
75
|
})
|
76
|
+
config.restart_auto_rebuild()
|
76
77
|
return config
|
77
78
|
}
|
78
79
|
|
package/common/currency.js
CHANGED
@@ -94,6 +94,7 @@ let configStruct = {
|
|
94
94
|
|
95
95
|
const createConfig = () => {
|
96
96
|
const config = new Config(configStruct, module)
|
97
|
+
config.stop_auto_rebuild()
|
97
98
|
config.add(numbersKM())
|
98
99
|
config.api = api
|
99
100
|
config.initializer( ({config, objects, apis, addWord, addGenerator, baseConfig, uuid}) => {
|
@@ -129,6 +130,7 @@ const createConfig = () => {
|
|
129
130
|
})
|
130
131
|
}
|
131
132
|
})
|
133
|
+
config.restart_auto_rebuild()
|
132
134
|
return config
|
133
135
|
}
|
134
136
|
|
package/common/dialogues.js
CHANGED
@@ -853,8 +853,9 @@ let configStruct = {
|
|
853
853
|
|
854
854
|
const createConfig = () => {
|
855
855
|
const config = new Config(configStruct, module)
|
856
|
+
config.stop_auto_rebuild()
|
856
857
|
config.api = api
|
857
|
-
config.add(gdefaults()
|
858
|
+
config.add(gdefaults(), sdefaults(), pos(), stm(), meta(), punctuation())
|
858
859
|
config.initializer( ({objects, config, isModule}) => {
|
859
860
|
/* TODO add this beck in. some stuff from config needs to be here
|
860
861
|
config.addArgs((args) => ({
|
@@ -888,6 +889,7 @@ const createConfig = () => {
|
|
888
889
|
config.addWord("doesable", { id: "doesAble", "initial": "{}" })
|
889
890
|
}
|
890
891
|
})
|
892
|
+
config.restart_auto_rebuild()
|
891
893
|
return config
|
892
894
|
}
|
893
895
|
|
package/common/dimension.js
CHANGED
@@ -168,8 +168,10 @@ let configStruct = {
|
|
168
168
|
|
169
169
|
const createConfig = () => {
|
170
170
|
const config = new Config(configStruct, module)
|
171
|
-
config.
|
171
|
+
config.stop_auto_rebuild()
|
172
|
+
config.add(base(), formulas(), testing())
|
172
173
|
config.api = api
|
174
|
+
config.restart_auto_rebuild()
|
173
175
|
return config
|
174
176
|
}
|
175
177
|
|
@@ -31243,6 +31243,20 @@
|
|
31243
31243
|
1
|
31244
31244
|
]
|
31245
31245
|
],
|
31246
|
+
[
|
31247
|
+
[
|
31248
|
+
"a",
|
31249
|
+
0
|
31250
|
+
],
|
31251
|
+
[
|
31252
|
+
"is",
|
31253
|
+
0
|
31254
|
+
],
|
31255
|
+
[
|
31256
|
+
"unknown",
|
31257
|
+
1
|
31258
|
+
]
|
31259
|
+
],
|
31246
31260
|
[
|
31247
31261
|
[
|
31248
31262
|
"is",
|
@@ -33169,6 +33183,20 @@
|
|
33169
33183
|
1
|
33170
33184
|
]
|
33171
33185
|
],
|
33186
|
+
[
|
33187
|
+
[
|
33188
|
+
"a",
|
33189
|
+
0
|
33190
|
+
],
|
33191
|
+
[
|
33192
|
+
"is",
|
33193
|
+
0
|
33194
|
+
],
|
33195
|
+
[
|
33196
|
+
"unknown",
|
33197
|
+
1
|
33198
|
+
]
|
33199
|
+
],
|
33172
33200
|
[
|
33173
33201
|
[
|
33174
33202
|
"is",
|
@@ -46907,6 +46935,34 @@
|
|
46907
46935
|
1
|
46908
46936
|
]
|
46909
46937
|
],
|
46938
|
+
[
|
46939
|
+
[
|
46940
|
+
"a",
|
46941
|
+
0
|
46942
|
+
],
|
46943
|
+
[
|
46944
|
+
"is",
|
46945
|
+
0
|
46946
|
+
],
|
46947
|
+
[
|
46948
|
+
"unknown",
|
46949
|
+
1
|
46950
|
+
]
|
46951
|
+
],
|
46952
|
+
[
|
46953
|
+
[
|
46954
|
+
"a",
|
46955
|
+
0
|
46956
|
+
],
|
46957
|
+
[
|
46958
|
+
"is",
|
46959
|
+
0
|
46960
|
+
],
|
46961
|
+
[
|
46962
|
+
"unknown",
|
46963
|
+
1
|
46964
|
+
]
|
46965
|
+
],
|
46910
46966
|
[
|
46911
46967
|
[
|
46912
46968
|
"apple",
|
package/common/edible.js
CHANGED
package/common/emotions.js
CHANGED
@@ -45,6 +45,7 @@ const createConfig = () => {
|
|
45
45
|
['sentientBeing', 'unknown'],
|
46
46
|
]
|
47
47
|
}, module)
|
48
|
+
config.stop_auto_rebuild()
|
48
49
|
config.add(hierarchy())
|
49
50
|
config.initializer( ({config, apis}) => {
|
50
51
|
const api = apis('properties')
|
@@ -56,6 +57,7 @@ const createConfig = () => {
|
|
56
57
|
doAble: true,
|
57
58
|
config })
|
58
59
|
})
|
60
|
+
config.restart_auto_rebuild()
|
59
61
|
//config.load(template, emotions_instance)
|
60
62
|
return config
|
61
63
|
}
|