please help with directions: i need to find in-game engine specs to be able to compare them and eventually to compile a more complete list than what we currently have on wiki and even in item browser (it lacks power for example). what i’m looking for is exactly the power output i.e. safe/max speed data. i’m ok with checking json files but here’s what i’ve been able to find there:
/data/json/vehicle_parts.json
{
"type" : "vehicle_part",
"id" : "diesel_engine_v6",
"name" : "V6 diesel engine",
"symbol" : "*",
"color" : "light_gray",
"broken_symbol" : "#",
"broken_color" : "red",
"damage_modifier" : 80,
"durability" : 400,
"epower" : -200,
"fuel_type" : "diesel",
"item" : "v6_diesel",
"difficulty" : 5,
"location" : "engine_block",
"flags" : ["ENGINE", "VARIABLE_SIZE"],
"breaks_into" : [
{"item": "steel_lump", "min": 30, "max": 40},
{"item": "steel_chunk", "min": 30, "max": 40},
{"item": "scrap", "min": 30, "max": 40}
]
}
/data/json/items/var_vehicle_parts.json
{
"type":"VAR_VEH_PART",
"id": "v6_diesel",
"symbol": ":",
"color": "light_cyan",
"name": "V6 diesel engine",
"description": "A powerful 6-cylinder diesel engine.",
"price": 20000,
"material": ["iron", "null"],
"weight": 110000,
"volume": 15,
"bashing": 12,
"cutting": 0,
"to_hit": -4,
"min-bigness": 400,
"max-bigness": 600,
"category": "veh_parts",
"bigness-aspect": "ENGINE_DISPLACEMENT"
}
no power… am i missing it somehow or is it calculated?