-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-config.json
More file actions
58 lines (58 loc) · 1.01 KB
/
Copy pathtest-config.json
File metadata and controls
58 lines (58 loc) · 1.01 KB
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
{
"worldSize": 10000,
"maxPlayers": 16,
"teams": [
{
"name": "Federation",
"color": "#0000FF",
"maxShips": 8,
"startingShip": "Scout"
},
{
"name": "Romulans",
"color": "#00FF00",
"maxShips": 8,
"startingShip": "Scout"
}
],
"planets": [
{
"name": "Earth",
"x": -4000,
"y": 0,
"type": 3,
"homeWorld": true,
"teamID": 0,
"initialArmies": 30
},
{
"name": "Romulus",
"x": 4000,
"y": 0,
"type": 3,
"homeWorld": true,
"teamID": 1,
"initialArmies": 30
}
],
"physics": {
"gravity": 0,
"friction": 0.1,
"collisionDamage": 20
},
"network": {
"updateRate": 20,
"ticksPerState": 3,
"usePartialState": true,
"serverPort": 4566,
"serverAddress": "localhost:4566"
},
"gameRules": {
"winCondition": "conquest",
"timeLimit": 1800,
"maxScore": 100,
"respawnDelay": 5,
"friendlyFire": false,
"startingArmies": 0
}
}