Mk1 Command Pod
From Kerbal Space Program Wiki
{{Part | intro=The Command Pod Mk1 houses the Kerbal crew during their mission. At least one is required to build any kind of rocket. | usage=Generally placed at the top of the rocket, the aim of the game is to get your crew into space and land them safely again back on the surface of Kearth. | attributes=*Mass: 1
- Drag: .15 - .2
| config=
// this is a sample config file, for determining a good file format for defining part parameters // comment line - ignored by cfg parser // empty lines, or lines without a '=' sign are also ignored // all other lines are split at the '=' sign, and the left operand is used to know what parameter we are setting // diferent parameters require data in different formats (see docs), and each module has it's own parameters (again, see docs) // each assignment must be in a single line. Lines without assignments will be ignored. (You CAN turn on word wrap, though) // each keyword here relates to an existing variable in the assigned module. If the keyword isn't found, it is ignored. // conversely, if a keyword is left unassigned (as in not in the file), it will be initialized with it's default value // This is done automatically, so any public variable defined in the loaded module can be accessed this way (provided it's value can be parsed) // --- general parameters --- name = mk1pod module = CommandPod author = Mrbrownce // --- asset parameters --- mesh = mk1pod.DAE scale = 0.1 texture = mk1podtexture.png specPower = 0.1 rimFalloff = 3 alphaCutoff = 0.0 // --- node definitions --- // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z node_stack_bottom = 0.0, -3.02662, 0.0, 0.0, 1.0, 0.0, 1 node_stack_top = 0.0, 3.93121, 0.0, 0.0, 1.0, 0.0, 0 // --- editor parameters --- cost = 1600 category = 1 subcategory = 0 title = Command Pod Mk1 //manufacturer = Kerlington Model Rockets and Paper Products Inc. description = Originally built as a placeholder for a demonstration mock-up of a rocket, the Mk1 Command Pod was heralded as a far safer and more reliable option than it's predecessors by rocket scientists throughout the world. It is now commonly seen in active service. // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision attachRules = 1,0,1,0,0 // --- standard part parameters --- mass = 1 dragModelType = default maximum_drag = 0.2 minimum_drag = 0.15 angularDrag = 2 crashTolerance = 14 maxTemp = 3400 // --- pod/rcs parameters --- rotPower = 5 linPower = 10 // --- generic engine parameters --- maxThrust = 100 minThrust = 100 heatProduction = 800 fuelConsumption = 8 internalFuel = 0 // --- more engine parameters --- thrustVectoringCapable = False gymbalRange = 0 differentialThrustCapable = False differentialThrustRange = 0 // --- fuel tank parameters --- fuel = 500 dryMass = 0.4 fuelMass = 0.008 // --- winglet parameters --- deflectionLiftCoeff = 0.1 // --- tweakables (coming soon...) --- // ----- DO NOT EDIT BELOW THIS POINT ------