tpmkms_4wp 7.12.3 → 7.12.4
Sign up to get free protection for your applications and to get access to all the features.
- 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.js +3 -2
- package/common/currency.js +2 -0
- package/common/dialogues.js +3 -1
- package/common/dimension.js +3 -1
- package/common/edible.js +1 -2
- package/common/emotions.js +2 -0
- package/common/fastfood.instance.json +92 -192
- 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 +112 -0
- 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
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
|
|
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
|
}
|