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
|
[
{
"id": "shot_000",
"type": "AMMO",
"looks_like": "shot_00",
"name": { "str_sp": "12ga 000 buckshot" },
"description": "A shell filled with metal pellets. Extremely damaging, plus the spread makes it very accurate at short range.",
"weight": "32 g",
"volume": "250 ml",
"price": "750 cent",
"price_postapoc": "12 USD",
"flags": [ "IRREPLACEABLE_CONSUMABLE" ],
"material": [ "plastic", "powder" ],
"symbol": "=",
"color": "red",
"dispersion": 10,
"count": 20,
"stack_size": 20,
"ammo_type": "shot",
"casing": "shot_hull",
"range": 18,
"damage": { "damage_type": "bullet", "amount": 90, "armor_multiplier": 2.0 },
"recoil": 3500,
"loudness": 160,
"effects": [ "COOKOFF", "SHOT" ]
},
{
"id": "shot_000_inc",
"copy-from": "shot_000",
"looks_like": "shot_dragon",
"type": "AMMO",
"name": { "str_sp": "12ga 000 incendiary" },
"description": "A shell filled with a mix of metal and incendiary pellets. Damaging, and may cause flammable material to ignite.",
"price": "15 USD",
"price_postapoc": "24 USD",
"extend": { "effects": [ "INCENDIARY" ] }
},
{
"id": "reloaded_shot_000",
"copy-from": "shot_000",
"type": "AMMO",
"name": { "str_sp": "12ga 000 buckshot, reloaded" },
"description": "A shell filled with metal pellets. Extremely damaging, plus the spread makes it very accurate at short range. This one has been hand-reloaded by a survivor or perhaps a pre-Cataclysm hobbyist, leading to slightly inferior performance compared to factory-produced ammo.",
"proportional": { "price": 0.7, "damage": { "damage_type": "bullet", "amount": 0.9 }, "dispersion": 1.1 },
"extend": { "effects": [ "RECYCLED" ] },
"delete": { "effects": [ "NEVER_MISFIRES" ], "flags": [ "IRREPLACEABLE_CONSUMABLE" ] }
},
{
"id": "reloaded_shot_000_inc",
"copy-from": "shot_000_inc",
"type": "AMMO",
"name": { "str_sp": "12ga 000 incendiary, reloaded" },
"description": "A shell filled with a mix of metal and incendiary pellets. Damaging, and may cause flammable material to ignite. This one has been hand-reloaded by a survivor or perhaps a pre-Cataclysm hobbyist, leading to slightly inferior performance compared to factory-produced ammo.",
"proportional": { "price": 0.7, "damage": { "damage_type": "bullet", "amount": 0.9 }, "dispersion": 1.1 },
"extend": { "effects": [ "RECYCLED" ] },
"delete": { "effects": [ "NEVER_MISFIRES" ], "flags": [ "IRREPLACEABLE_CONSUMABLE" ] }
}
]
|