Advertisement
Guest User

inlineSep

a guest
Nov 24th, 2014
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. PART
  2. {
  3. // Kerbal Space Program - Part Config
  4. // Sepratron I Solid Fuel Booster
  5. //
  6.  
  7. // --- general parameters ---
  8. name = sepInline
  9. module = Part
  10. author = CPN
  11.  
  12. // --- asset parameters ---
  13. mesh = model.mu
  14. rescaleFactor = 1.25
  15.  
  16. node_stack_top = 0.0, 0.075, 0.0, 0.0, 1.0, 0.0
  17. node_stack_bottom = 0.0, -0.075, 0.0, 0.0, 1.0, 0.0
  18.  
  19. // --- FX definitions ---
  20.  
  21. fx_exhaustFlame_yellow_tiny = 0.0, -0.17, 0.163, 0.0, 0.0, 0.0, running
  22.  
  23. // --- Sound FX definition ---
  24.  
  25. sound_vent_medium = engage
  26. sound_rocket_mini = running
  27. sound_vent_soft = disengage
  28.  
  29. // --- editor parameters ---
  30. TechRequired = generalRocketry
  31. entryCost = 1100
  32. cost = 50
  33. category = Propulsion
  34. subcategory = 0
  35. title = InlineSepratron
  36. manufacturer = ME
  37. description = custompart
  38.  
  39. // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision
  40. attachRules = 1,0,1,1,1
  41.  
  42. // --- standard part parameters ---
  43. mass = 0.025
  44. dragModelType = default
  45. maximum_drag = 0.3
  46. minimum_drag = 0.2
  47. angularDrag = 2
  48. crashTolerance = 7
  49. maxTemp = 3600
  50.  
  51. ActivatesEvenIfDisconnected = true
  52.  
  53. stagingIcon = SOLID_BOOSTER
  54.  
  55. MODULE
  56. {
  57. name = ModuleEngines
  58. thrustVectorTransformName = thrustTransform
  59. throttleLocked = True
  60. exhaustDamage = True
  61. allowShutdown = False
  62. ignitionThreshold = 0.1
  63. minThrust = 0
  64. maxThrust = 36
  65. heatProduction = 550
  66. fxOffset = 0, 0, .075
  67. PROPELLANT
  68. {
  69. name = SolidFuel
  70. ratio = 1.0
  71. DrawGauge = True
  72. }
  73. atmosphereCurve
  74. {
  75. key = 0 100
  76. key = 1 100
  77. }
  78.  
  79. }
  80.  
  81.  
  82. RESOURCE
  83. {
  84. name = SolidFuel
  85. amount = 16
  86. maxAmount = 16
  87. }
  88.  
  89.  
  90. MODULE
  91. {
  92. name = ModuleTestSubject
  93.  
  94. // nowhere: 0, srf: 1, ocean: 2, atmo: 4, space: 8
  95. environments = 15
  96.  
  97. useStaging = True
  98. useEvent = False
  99. }
  100. MODULE
  101. {
  102. name = TweakScale
  103. defaultScale = 1.25
  104. type = stack
  105. }
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement