-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcharacters.js
More file actions
40 lines (39 loc) · 940 Bytes
/
characters.js
File metadata and controls
40 lines (39 loc) · 940 Bytes
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
const characters = [
{
"class_id": "1",
"class_name": "Zwinne nogi",
"speed": 4,
"bomb_amount": 1,
"bomb_range": 2,
"lives": 2,
"description": "Zwiększa szybkość postaci o 1",
},
{
"class_id": "2",
"class_name": "Bomber",
"speed": 2,
"bomb_amount": 2,
"bomb_range": 1,
"lives": 3,
"description": "Zwiększa liczbę bomb o 1",
},
{
"class_id": "3",
"class_name": "Medyk",
"speed": 3,
"bomb_amount": 1,
"bomb_range": 1,
"lives": 4,
"description": "Zwiększa liczbę żyć o 1",
},
{
"class_id": "4",
"class_name": "Rage Bomber",
"speed": 3,
"bomb_amount": 1,
"bomb_range": 2,
"lives": 3,
"description": "Zwiększa zasięg bomb o 1",
}
]
module.exports = {characters}