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.
Files changed (2) hide show
  1. package/index.js +5 -10
  2. 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 — interior corners of 22×22 map for max coverage
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 for buy and sell orders
31
- buySpreadFactors: [0.85, 0.92, 1.0],
32
- sellSpreadFactors: [1.0, 1.08, 1.15],
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screepsmod-market-simulator",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Populates the Screeps market order book with buy/sell orders for phantom rooms to test bot trading systems",
5
5
  "main": "index.js",
6
6
  "author": "Custom",