Advertisement
jaked122

combined engine paste

Jul 13th, 2013
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. PART
  2. {
  3. // --- general parameters ---
  4. name = landerCabinSmall
  5. module = CommandPod
  6. author = Squad
  7.  
  8. // --- asset parameters ---
  9. mesh = model.mu
  10. rescaleFactor = 1.0
  11.  
  12. // --- node definitions ---
  13. // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z
  14. node_stack_bottom = 0.0, -0.625, 0.0, 0.0, 1.0, 0.0, 1
  15. node_stack_top = 0.0, 0.625, 0.0, 0.0, 1.0, 0.0, 1
  16.  
  17. fx_exhaustFlame_blue = 0.0, -2.2, 0.0, 0.0, 1.0, 0.0, running
  18. fx_exhaustLight_blue = 0.0, -2.2, 0.0, 0.0, 0.0, 1.0, running
  19. fx_smokeTrail_light = 0.0, -2.2, 0.0, 0.0, 1.0, 0.0, running
  20. fx_exhaustSparks_flameout = 0.0, -2.2, 0.0, 0.0, 1.0, 0.0, flameout
  21.  
  22.  
  23. // --- editor parameters ---
  24. cost = 600
  25. category = Pods
  26. subcategory = 0
  27. title = MK1 integrated engine
  28. manufacturer = Jebediah Kerman's Junkyard and Spaceship Parts Co.
  29. description = Some people think that it was a remarkably bad idea to attach an engine to the bottom of a landing module, I think it was a stroke of genius.
  30. // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision
  31. attachRules = 1,0,1,1,0
  32.  
  33. // --- standard part parameters ---
  34. mass = 0.6
  35. dragModelType = default
  36. maximum_drag = 0.20
  37. minimum_drag = 0.2
  38. angularDrag = 2
  39. crashTolerance = 8
  40. maxTemp = 3400
  41.  
  42. vesselType = Lander
  43.  
  44. // --- pod/rcs parameters ---
  45.  
  46. rotPower = 5
  47. linPower = 5
  48.  
  49. Kp = 1.0
  50. Kd = 1.0
  51.  
  52. // --- tweakables (coming soon...) ---
  53.  
  54.  
  55.  
  56.  
  57. // --- internal setup ---
  58. CrewCapacity = 1
  59.  
  60. INTERNAL
  61. {
  62. name = landerCabinSmallInternal
  63. }
  64.  
  65. MODULE
  66. {
  67. name = ModuleCommand
  68. minimumCrew = 1
  69. }
  70. MODULE
  71. {
  72. name = ModuleEngines
  73. thrustVectorTransformName = thrustTransform
  74. exhaustDamage = True
  75. ignitionThreshold = 0.1
  76. minThrust = 0
  77. maxThrust = 650
  78. heatProduction = 350
  79. fxOffset = 0, 0, 1.2
  80. PROPELLANT
  81. {
  82. name = LiquidFuel
  83. ratio = 0.9
  84. DrawGauge = True
  85. }
  86. PROPELLANT
  87. {
  88. name = Oxidizer
  89. ratio = 1.1
  90. }
  91. atmosphereCurve
  92. {
  93. key = 0 950
  94. key = 1 800
  95. }
  96.  
  97. }
  98. RESOURCE
  99. {
  100. name = LiquidFuel
  101. amount = 360
  102. maxAmount = 360
  103. }
  104.  
  105. RESOURCE
  106. {
  107. name = Oxidizer
  108. amount = 440
  109. maxAmount = 440
  110. }
  111. MODULE
  112. {
  113. name = ModuleAlternator
  114. RESOURCE
  115. {
  116. name = ElectricCharge
  117. rate = 2.0
  118. }
  119. }
  120. RESOURCE
  121. {
  122. name = ElectricCharge
  123. amount = 50
  124. maxAmount = 50
  125. }
  126.  
  127.  
  128. // ----- DO NOT EDIT BELOW THIS POINT ------
  129.  
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement