forked from TapiocaFox/Noversi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
57 lines (57 loc) · 1.26 KB
/
manifest.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
{
"name": "Noversi",
"version": "0.0.0",
"displayname": "NOOXY Reversi Service",
"description": "Online reversi based on NOOXY service framework.",
"Authors": [
"magneticchen",
"NOOXY"
],
"implementation_api": false,
"dependencies": {
"node_packages": {},
"services": {}
},
"JSONfunciton_prototypes": {
"joinmatch": {
"displayname": "Join Match",
"description": "Join a Reversi Match.",
"secure": false,
"protocol": {
"JSON_call": {
},
"JSON_return": {
"mi": "Match ID",
"ps": "User's Position, p1 or p2.",
"p1": {
"n": "Player1 username.",
"rk": "Player1 rank.",
"rt": "Player1 rating."
},
"p2": {
"n": "Player2 username.",
"rk": "Player2 rank.",
"rt": "Player2 rating."
}
}
}
},
"drop": {
"displayname": "Drop chess",
"description": "Drop a chess on praticular position on board.",
"secure": false,
"protocol": {
"JSON_call": {
"r": "Row",
"c": "Column"
},
"JSON_return": {
"e": "Error report."
}
}
}
},
"settings": {
"match_timeout": null
}
}