So lately I’ve been experimenting with editing jsons in order to put items into the game that I think should be there.
Most of what I make is usually melee weapons or guns/ammo, cool stuff…
but I’m interested in seeing what you have either made yourself in the game, or suggestions for me to make, which I will do if it’s a good suggestion.
I will post the jsons with a spoiler, which you can download and slap in the corresponding json file and play with the weapon.
these are for the experimental version, by the way.
(I’m playing on version 0.C-12466-g2b4d317)
I will post the first one:
The wooden baton, a step down from the pre-apocalyptic police batons, but is still a pretty great bashing weapon:
{
"type":"GENERIC",
"id" : "baton_wood",
"name" : "wooden baton",
"description" : "A short wooden baton. It has been carefully designed for melee combat.",
"weight" : 750,
"to_hit" : 3,
"color" : "brown",
"symbol" : "/",
"material" : ["wood"],
"techniques" : ["WBLOCK_1", "WBLOCK_2", "RAPID", "PRECISE"],
"flags" : ["DURABLE_MELEE"],
"volume" : 4,
"bashing" : 12,
"price" : 10000,
"price_postapoc": 700
},
and also the recipe, if you’re interested in making one with one of your characters:
{
“type” : “recipe”,
“result”: “baton_wood”,
“category”: “CC_WEAPON”,
“subcategory”: “CSC_WEAPON_BASHING”,
“skill_used”: “fabrication”,
“difficulty”: 1,
“time”: 1200,
“reversible”: false,
“autolearn”: true,
“qualities”:[
{“id”:“CUT”,“level”:1,“amount”:1}
],
“components”: [
[
[ “stick”, 1 ],
[ “broom”, 1 ],
[ “2x4”, 1 ],
[ “pool_cue”, 1 ]
]
]
},