Parts/Command/mk1pod/mk1Pod.cfg

From Kerbal Space Program Wiki
< Parts
Revision as of 22:01, 7 June 2013 by Dgelessus (talk | contribs) (Created page with "<pre> PART { // 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 ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
PART
{
// 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 = NovaSilisko

// --- asset parameters ---
mesh = model.mu
scale = 1
rescaleFactor = 1

// --- node definitions ---
// definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z
node_stack_bottom = 0.0, -0.4050379, 0.0, 0.0, 1.0, 0.0, 1
node_stack_top = 0.0, 0.6423756, 0.0, 0.0, 1.0, 0.0, 0


// --- editor parameters ---
cost = 600
category = Pods
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 its 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,1,0

// --- standard part parameters ---
mass = 0.8
dragModelType = default
maximum_drag = 0.2
minimum_drag = 0.15
angularDrag = 2
crashTolerance = 14
maxTemp = 3400

// --- pod/rcs parameters ---

rotPower = 5
linPower = 1

Kp = 1.0
Kd = 1.0

// --- tweakables (coming soon...) ---

vesselType = Ship

// --- internal setup ---
CrewCapacity = 1

INTERNAL
{
  name = mk1PodCockpit
}

MODULE
{
	name = ModuleCommand
	minimumCrew = 1	
}
RESOURCE
{
	name = ElectricCharge
	amount = 50
	maxAmount = 50
}

// ----- DO NOT EDIT BELOW THIS POINT ------

}