forked from owenashurst/agar.io-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
37 lines (37 loc) · 791 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module.exports = {
host: "0.0.0.0",
port: 3000,
logpath: "logger.php",
foodMass: 1,
fireFood: 20,
limitSplit: 16,
defaultPlayerMass: 5,
virus: {
fill: "#33ff33",
stroke: "#8a2be2",
strokeWidth: 20,
defaultMass: {
from: 50,
to: 150
},
splitMass: 180,
uniformDisposition: false,
},
gameWidth: 15000,
gameHeight: 15000,
adminPass: "DEFAULT",
gameMass: 2500000,
maxFood: 60000,
maxVirus: 800,
slowBase: 4.5,
logChat: 0,
networkUpdateFactor: 40,
maxHeartbeatInterval: 5000,
foodUniformDisposition: true,
newPlayerInitialPosition: "farthest",
massLossRate: 1,
minMassLoss: 50,
sqlinfo: {
fileName: "db.sqlite3",
}
};