-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathitem.json
More file actions
102 lines (102 loc) · 1.97 KB
/
Copy pathitem.json
File metadata and controls
102 lines (102 loc) · 1.97 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[
{
"name": "coin",
"type": "material"
},
{
"name": "usp",
"type": "weapon.gun",
"atk": 3,
"clip": 12,
"shoot_interval": 20,
"reload_interval": 90,
"angle": 3
},
{
"name": "m3",
"type": "weapon.gun",
"atk": 2,
"count": 5,
"clip": 8,
"shoot_interval": 30,
"reload_interval": 120,
"angle": 15
},
{
"name": "m4a1",
"type": "weapon.gun",
"atk": 2,
"clip": 30,
"shoot_interval": 5,
"reload_interval": 120,
"angle": 5
},
{
"name": "awp",
"type": "weapon.gun",
"atk": 5,
"penetration": 3,
"clip": 10,
"shoot_interval": 120,
"reload_interval": 90,
"angle": 2
},
{
"name": "hp_potion",
"type": "consumable.potion",
"max_uses": 3,
"buffs": [
{
"name": "hp",
"value": 2
}
]
},
{
"name": "speed_potion",
"type": "consumable.potion",
"max_uses": 1,
"buffs": [
{
"name": "max_speed",
"value": 100,
"seconds": 5
}
]
},
{
"name": "passwall_potion",
"type": "consumable.potion",
"max_uses": 1,
"buffs": [
{
"name": "passwall",
"value": 10
}
]
},
{
"name": "archer_tower",
"type": "consumable.tower",
"power": 30
},
{
"name": "peaks",
"type": "consumable.trap",
"atk": 1,
"durability": 100,
"cooldown": 60
},
{
"name": "floor",
"type": "consumable.floor"
},
{
"name": "wall",
"type": "consumable.structure"
},
{
"name": "door",
"type": "consumable.structure"
}
]