-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestJson.json
72 lines (72 loc) · 1.45 KB
/
testJson.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
{
"battleStatus": {
"isBattleOver": false,
"commandQueue": [],
"commandMsg": null,
"commandIndex": 0,
"isDuringTurn": false,
"combatants": [
{
"id": "combatant_001",
"name": "Harry Potter",
"hp": 104,
"maxHp": 104,
"attacks": [
{
"id": "attack_001",
"name": "Stupefy",
"damage": 20
},
{
"id": "attack_002",
"name": "Expelliarmus",
"damage": 10
},
{
"id": "attack_003",
"name": "Expecto Patronum",
"damage": 65
}
],
"attributes": {
"speed": 5,
"attack": 10,
"defense": 10
}
},
{
"id": "combatant_002",
"name": "Lord Voldemort",
"hp": 200,
"maxHp": 200,
"attacks": [
{
"id": "attack_004",
"name": "Crucio",
"damage": 35
},
{
"id": "attack_005",
"name": "Morsmorde",
"damage": 20
},
{
"id": "attack_006",
"name": "Avada Kedavra",
"damage": 9999
}
],
"attributes": {
"speed": 5,
"attack": 10,
"defense": 10
}
}
]
},
"scoreboard": {
"battles": 0,
"combatant_001": 0,
"combatant_002": 0
}
}