I've been trying to do some fairly simple 'modding'. Okay, EXTREMELY simple modding. I wanted to join a bunch of trusses together to reduce part count. (Yes, I'm aware of the 'UbioWeldingLtd' mod, and it sounds excellent, but for some reason it is broken for me in 24.2 with MechJeb, InfernalRobotics, and TweakScale.) Turns out even a stack of four trusses was too complicated for starters. So I tried what I thought would be The Very Simplest Thing : Make a 'new' truss that is basically a re-badged clone of a stock truss. That's right, an 'assembly' of one part, changing none of its parameters. I had imagined that what would go in my config file would be something like this: PART { name = trussClone module = Part author = NovaSilisko, Jamin MODEL { model = Squad/Parts/Structural/trussPiece1x/model } title = Clone of the 1x1 Truss manufacturer = Jamin Corporation description = Nothing at all like a plain 1x1 truss, except for everything. [INDENT]}[/INDENT] In my fantasy-land, everything else would be inherited in some smart fashion when it was noticed that PART{} contained one or more MODEL{}. So maybe the default cost and mass could be the sum of all the costs of the MODELs within, the strength and temperature of the assembly could be that of the least strong and most melty components within, and maybe there's some wise way to combine attachRules of all the pieces into default attachRules for the new part. I was very astonished to learn that the minimum needed to accomplish my goal of make a clone of the 1x1 truss was more like this (and it still might not be quite right): PART { name = trussClone module = Part author = NovaSilisko, Jamin MODEL { model = Squad/Parts/Structural/trussPiece1x/model } rescaleFactor=1.0 // default is something like 2, why??? node_stack_bottom = 0.0, -0.5592728, 0.0, 0.0, 1.0, 0.0, 1 node_stack_top = 0.0, 0.5592728, 0.0, 0.0, 1.0, 0.0, 1 node_attach = 0.0, -0.5592728, 0.0, 0.0, -1.0, 0.0 cost = 25 category = Structural subcategory = 0 title = Clone of the 1x1 Truss manufacturer = Jamin Corporation description = Nothing at all like a plain 1x1 truss, except for everything. attachRules = 1,1,1,1,0 mass = 0.1 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.2 angularDrag = 1 crashTolerance = 80 breakingForce = 200 breakingTorque = 200 maxTemp = 5000 } I think the greatest offender might have to be 'rescaleFactor'; lacking inheritance, I would have expected the default to be 1.