Skip to content

Commit

Permalink
Merge pull request #56717 from TheShadowFerret/ClothingDamage
Browse files Browse the repository at this point in the history
Add damage and charge randomization to reenactor loot
  • Loading branch information
Rivet-the-Zombie authored Apr 11, 2022
2 parents 96935e9 + fe9b599 commit 5fe200b
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions data/json/monsterdrops/misc.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,42 +67,42 @@
{
"distribution": [
{ "item": "pockknife", "prob": 10 },
{ "collection": [ { "item": "pipe_tobacco" }, { "item": "tobacco" } ], "prob": 10 },
{ "collection": [ { "item": "pipe_tobacco" }, { "item": "tobacco", "charges": [ 0, 40 ] } ], "prob": 10 },
{ "item": "hatchet", "prob": 10 },
{ "item": "hardtack", "prob": 10 },
{ "item": "hardtack", "charges": [ 1, 3 ], "prob": 10 },
{ "item": "pipe_cleaner", "prob": 10 }
],
"prob": 10
},
{
"collection": [
{ "item": "knee_high_boots", "prob": 20 },
{ "item": "breeches", "prob": 50 },
{ "item": "waistcoat", "prob": 30 },
{ "item": "peacoat", "prob": 50 },
{ "item": "leather_belt", "prob": 10 },
{ "item": "knit_scarf", "prob": 10 },
{ "item": "tricorne", "prob": 30 },
{ "item": "gloves_leather", "prob": 10 },
{ "item": "stockings", "prob": 20 },
{ "group": "underwear" }
{ "item": "knee_high_boots", "damage": [ 1, 4 ], "prob": 20 },
{ "item": "breeches", "damage": [ 1, 4 ], "prob": 50 },
{ "item": "waistcoat", "damage": [ 1, 4 ], "prob": 30 },
{ "item": "peacoat", "damage": [ 1, 4 ], "prob": 50 },
{ "item": "leather_belt", "damage": [ 1, 4 ], "prob": 10 },
{ "item": "knit_scarf", "damage": [ 1, 4 ], "prob": 10 },
{ "item": "tricorne", "damage": [ 1, 4 ], "prob": 30 },
{ "item": "gloves_leather", "damage": [ 1, 4 ], "prob": 10 },
{ "item": "stockings", "damage": [ 1, 4 ], "prob": 20 },
{ "group": "underwear", "damage": [ 1, 4 ] }
]
},
{
"distribution": [
{
"distribution": [
{ "item": "rifle_flintlock", "contents-item": "shoulder_strap", "prob": 50 },
{ "item": "pistol_flintlock", "prob": 20 },
{ "item": "longrifle_flintlock", "contents-item": "shoulder_strap", "prob": 30 }
{ "item": "rifle_flintlock", "charges": [ 0, 1 ], "contents-item": "shoulder_strap", "prob": 50 },
{ "item": "pistol_flintlock", "charges": [ 0, 1 ], "prob": 20 },
{ "item": "longrifle_flintlock", "charges": [ 0, 1 ], "contents-item": "shoulder_strap", "prob": 30 }
],
"prob": 50
},
{
"collection": [ { "item": "flintlock_pouch" }, { "item": "flintlock_ammo", "charges-min": 0, "charges-max": 14 } ],
"collection": [ { "item": "flintlock_pouch", "damage": [ 1, 4 ] }, { "item": "flintlock_ammo", "charges-min": 0, "charges-max": 14 } ],
"prob": 30
},
{ "item": "lamp_oil", "container-item": "bottle_plastic_small", "prob": 10 }
{ "item": "lamp_oil", "charges": [ 0, 250 ], "container-item": "bottle_plastic_small", "prob": 10 }
]
}
]
Expand Down

0 comments on commit 5fe200b

Please sign in to comment.