-
Notifications
You must be signed in to change notification settings - Fork 6
/
Settings.json
112 lines (110 loc) · 3 KB
/
Settings.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"logger": {
"logName": "MainLog",
"logFolder": "./Run/logs",
"logBackupFolder": "./Run/logs/LogBackups",
"maxSeverity": 5,
"maxFileSeverity": 5,
"printTextColor": 7,
"backgroundColor": 0
},
"server": {
"host": "0.0.0.0",
"port": 8080,
"name": "AgarOSS",
"playerBots": 0,
"minionsPerPlayer": 0,
"maxConnections": 500,
"maxSupportedProtocol": 20,
"minSupportedProtocol": 1
},
"game": {
"mode": 0,
"timeStep": 40,
"leaderboardLength": 10,
"mapWidth": 14142.135623730952,
"mapHeight": 14142.135623730952,
"quadTreeLeafCapacity": 64,
"quadTreeMaxDepth": 32
},
"player": {
"maxNameLength": 15,
"skinNameTags": "<>",
"maxCells": 16,
"maxFreeroamScale": 0.4,
"maxFreeroamSpeed": 32,
"viewBoxWidth": 1920,
"viewBoxHeight": 1080,
"baseRemergeTime": 30,
"chanceToSpawnFromEjected": 25,
"collisionIgnoreTime": 12
},
"playerBot": {
},
"minion": {
},
"entity": {
"decelerationPerTick": 10.25,
"minAcceleration": 0.0,
"minEatOverlap": 0.4,
"minEatSizeMult": 1.15
},
"playerCell": {
"baseRadius": 32,
"maxMass": 22500,
"minMassToSplit": 36,
"minRadiusToEject": 59.16079783,
"minVirusSplitMass": 19.36,
"ejectAngleVariation": 0.3,
"radiusDecayRate": 0.998,
"initialAcceleration": 800,
"isSpiked": false,
"isAgitated": false,
"canEat": [ "playercells", "mothercells", "ejected", "viruses", "food" ],
"avoidSpawningOn": [ "playercells", "viruses", "mothercells" ],
"speedMultiplier": 1
},
"food": {
"baseRadius": 10,
"maxRadius": 20,
"startAmount": 3000,
"maxAmount": 6000,
"canGrow": true,
"isSpiked": false,
"isAgitated": false,
"canEat": [ "nothing" ],
"avoidSpawningOn": [ "ejected" ]
},
"virus": {
"baseRadius": 100,
"maxRadius": 141.421356237,
"startAmount": 52,
"maxAmount": 78,
"initialAcceleration": 800,
"isSpiked": true,
"isAgitated": false,
"canEat": [ "ejected" ],
"avoidSpawningOn": [ "playercells", "ejected", "mothercells" ],
"color": [ 51, 255, 51 ]
},
"motherCell": {
"baseRadius": 149,
"maxRadius": 65535,
"startAmount": 25,
"maxAmount": 25,
"isSpiked": true,
"isAgitated": false,
"canEat": [ "playercells", "ejected", "viruses" ],
"avoidSpawningOn": [ "playercells", "ejected", "mothercells", "viruses" ],
"color": [ 206, 99, 99 ]
},
"ejected": {
"baseRadius": 42.4264,
"maxRadius": 42.4264,
"efficiency": 80,
"initialAcceleration": 800,
"isSpiked": false,
"isAgitated": false,
"canEat": [ "nothing" ]
}
}