screepsmod-market-simulator 1.0.0 → 1.0.2
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/index.js +5 -10
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -17,19 +17,14 @@ const DEFAULTS = {
|
|
|
17
17
|
npcCredits: 10000000,
|
|
18
18
|
npcMoney: 10000000 * 1000,
|
|
19
19
|
|
|
20
|
-
// Phantom room names —
|
|
20
|
+
// Phantom room names — 1 room for minimal engine load
|
|
21
21
|
phantomRooms: [
|
|
22
|
-
'W9N9'
|
|
23
|
-
'E9N9',
|
|
24
|
-
'W9S9',
|
|
25
|
-
'E9S9',
|
|
26
|
-
'W5S5',
|
|
27
|
-
'E5S5'
|
|
22
|
+
'W9N9'
|
|
28
23
|
],
|
|
29
24
|
|
|
30
|
-
// Price spread factors
|
|
31
|
-
buySpreadFactors: [
|
|
32
|
-
sellSpreadFactors: [1.0
|
|
25
|
+
// Price spread factors — 1 buy and 1 sell level for minimal orders
|
|
26
|
+
buySpreadFactors: [1.0],
|
|
27
|
+
sellSpreadFactors: [1.0],
|
|
33
28
|
|
|
34
29
|
// Hard cap on order amounts (units per order per resource per spread level)
|
|
35
30
|
maxOrderAmount: 50000,
|
package/package.json
CHANGED