-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweapons.json
More file actions
42 lines (42 loc) · 1.06 KB
/
weapons.json
File metadata and controls
42 lines (42 loc) · 1.06 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
[
{
"__comment": "Should be self-explanatory",
"name": "fists",
"__comment_": "Whether this is a blunt or sharp weapon. Blunt weapons can get through blocks more easily, but sharp weapons cause bleeding.",
"damageType": "blunt",
"__comment__": "Should also be self-explanatory. People have 100 health.",
"damage": 3,
"__comment___": "The chance of a successful block when using this weapon (0-1)",
"blockChance": 0.22,
"__comment____": "The chance of breaking through a block when using this weapon.",
"pierceChance": 0.08
},
{
"name": "club",
"damageType": "blunt",
"damage": 7,
"blockChance": 0.31,
"pierceChance": 0.1
},
{
"name": "knife",
"damageType": "sharp",
"damage": 13,
"blockChance": 0.26,
"pierceChance": 0.3
},
{
"name": "gladius",
"damageType": "sharp",
"damage": 17,
"blockChance": 0.33,
"pierceChance": 0.35
},
{
"name": "an evil-looking mace",
"damageType": "blunt",
"damage": 13,
"blockChance": 0.28,
"pierceChange": 0.19
}
]