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
|
[
{
"id": "bloodypressure",
"type": "AMMO",
"name": { "str": "pressurized blood" },
"description": "This heavily compressed blood ammunition is used specifically with vampiric guns.",
"weight": "5 g",
"volume": "250 ml",
"price": "20 USD",
"price_postapoc": "3 USD",
"material": [ "hflesh" ],
"symbol": "=",
"color": "red",
"phase": "liquid",
"count": 5,
"stack_size": 20,
"ammo_type": "ammoblood",
"range": 8,
"damage": { "damage_type": "bullet", "amount": 5, "armor_penetration": 25 },
"recoil": 450,
"loudness": 10,
"flags": [ "NO_DROP" ]
},
{
"id": "bloodyshaky",
"type": "AMMO",
"copy-from": "bloodypressure",
"name": { "str": "shaken blood" },
"description": "Blood which has slightly thickened from intense shaking. Almost compatible with vampiric guns if you desperately need to feed them.",
"count": 1,
"stack_size": 40,
"relative": {
"damage": { "damage_type": "bullet", "amount": -4, "armor_penetration": -20 },
"range": 7,
"recoil": -350,
"loudness": -5
},
"proportional": { "price": 0.5, "price_postapoc": 0.5 }
},
{
"id": "bloodyinfect",
"type": "AMMO",
"copy-from": "bloodypressure",
"name": { "str": "traversed blood" },
"description": "A combination of pure and infected blood used specifically with vampiric guns. It us much more viscous than normal blood.",
"material": [ "hflesh", "flesh" ],
"color": "green",
"count": 10,
"stack_size": 20,
"relative": {
"damage": { "damage_type": "bullet", "amount": 5, "armor_penetration": -15 },
"range": -3,
"recoil": 175,
"loudness": 20
},
"proportional": { "price": 1.5, "price_postapoc": 1.5 }
},
{
"id": "bloodshot_00",
"type": "AMMO",
"name": { "str": "00 bloodshot" },
"description": "A shell filled with compacted blood pellets. Extremely damaging, plus the spread makes it very accurate at short range. Favored by vampires.",
"weight": "35 g",
"volume": "250 ml",
"price": "315 USD",
"price_postapoc": "60 USD",
"material": [ "compactblood", "plastic", "powder" ],
"symbol": "=",
"color": "red",
"count": 20,
"stack_size": 20,
"ammo_type": "bloodshot",
"casing": "shot_hull",
"range": 6,
"damage": { "damage_type": "bullet", "amount": 65 },
"recoil": 2750,
"loudness": 160,
"effects": [ "COOKOFF", "SHOT" ]
},
{
"id": "reloaded_bloodshot_00",
"type": "AMMO",
"copy-from": "bloodshot_00",
"name": { "str": "00 bloodshot, reloaded" },
"proportional": {
"price": 0.7,
"damage": { "damage_type": "bullet", "amount": 0.9 },
"dispersion": 1.1
},
"extend": { "effects": [ "RECYCLED" ] },
"delete": { "effects": [ "NEVER_MISFIRES" ] }
}
]
|