-
Notifications
You must be signed in to change notification settings - Fork 1
/
config-template.json
85 lines (85 loc) · 1.71 KB
/
config-template.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
{
"db": {
"user": null,
"password": null,
"clusterString": "localhost:27017",
"database": "need-for-screech",
"options": {
}
},
"gameSessionService": {
"tickRate": 20
},
"frontendApp": {
"updateRate": 30
},
"levelEditor": {
"updateRate": 30
},
"player": {
"jump": -130,
"speed": 10,
"angle": 0,
"lifeSpan": 10,
"health": 100,
"maxspeed": 17,
"inertia": 0.9,
"minSpeed": 2.75,
"drunk": 100,
"drunk_jump": -160
},
"game_engine": {
"drunk_gravity": 1,
"gravity": 2
},
"controls": {
"up": "87",
"down": "83",
"left": "65",
"right": "68",
"shoot": "32",
"bounding": "66",
"ray": "86",
"grid": "71",
"interact": "69",
"screech": "79",
"drink": "70",
"delete": "46",
"new": "78",
"lastAni": "37",
"nextAni": "39",
"lastBg": "38",
"nextBg": "40"
},
"canvas": {
"x": 1125,
"y": 35
},
"time": {
"limit": 2500,
"drunk_duration": 1000
},
"enemy": {
"melee": {
"speed": 2,
"sight": 750,
"maxSpeed": 4,
"roamDistance": 75,
"lifeSpan": 4
},
"ranged": {
"speed": 1,
"sight": 750,
"maxSpeed": 3,
"roamDistance": 75,
"lifeSpan": 2
},
"flying": {
"speed": 2.5,
"sight": 750,
"maxSpeed": 4,
"roamDistance": 100,
"lifeSpan": 1
}
}
}