Guide to modding the Cataclysm! (WIP)

I couldn’t find the power converter, but if you go to directory/data/json/items/generic.json has the antenna and amplifier. Seems kinda weird they wouldn’t be in something like electronics.json instead.

A lot of stuff gets shoved into the generic files, and splitting that stuff out makes merges more difficult, so it stays.

Power converters are also in data/json/items/generic.json

So after pushing your commits how do you find where are the erros that keeps the check from succeding ?

I suspect that the json I modified are not all formatted correctly but how do I find the ones that are messed up ?

Also the web linting tool seems to systematically change “column” by “lines”

“items”: [
[ “fertilizer_commercial”, 100 ],
[ “fertilizer_liquid”, 60 ],
[ “material_quicklime”, 80 ]
]

by

“items”: [ [ “fertilizer_commercial”, 100 ], [ “fertilizer_liquid”, 60 ], [ “material_quicklime”, 80 ] ]

But every list of component in the jsons seems to be in column by default so is that an error ?

Looking at some of the flags in that neon I see

Nocollide

Could I add that flag to them damn bushes that If I hit wrecks my damn car?

The following passes the JSON linter for me:

    "breaks_into": [
      { "item": "steel_lump", "count": [ 6, 8 ] },
      { "item": "steel_chunk", "count": [ 6, 8 ] },
      { "item": "scrap", "count": [ 6, 8 ] }
    ],
    "flags": [ "MULTISQUARE", "TOOL_WRENCH" ]