Skip to content

Commit

Permalink
fix: nerf goblin encampment charcoal reserves (#62621)
Browse files Browse the repository at this point in the history
so one of the goblin encampment chunks makes calls to some
itemgroups containing this line:

{ "item": "charcoal", "count": [ 20, 75 ], "prob": 20 },

aka give me some charcoal items, but like each has 50 charges so
spawn 50 charges worth times 20 to 75 charcoal, a few.

change it so it's less, way less, still a fair amount 10 to 50 charges
times 2 to 5, I like this cause it'll spawn a very randomized amount
each time

Co-authored-by: casswedson <[email protected]>
  • Loading branch information
casswedson and casswedson authored Dec 8, 2022
1 parent b0c9b48 commit b33b40d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/mods/Magiclysm/itemgroups/itemgroups.json
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@
"id": "wood_fuel",
"//": "fuel for a cookpot",
"items": [
{ "item": "charcoal", "count": [ 20, 75 ], "prob": 20 },
{ "item": "charcoal", "count": [ 2, 5 ], "charges": [ 10, 50 ], "prob": 20 },
{ "item": "log", "count": [ 1, 3 ], "prob": 40 },
{ "item": "2x4", "count": [ 4, 8 ], "prob": 40 }
]
Expand Down

0 comments on commit b33b40d

Please sign in to comment.