Advertisement
Guest User

Untitled

a guest
Sep 9th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. CONTRACT_TYPE
  2. {
  3. name = Station Core
  4. title = Staton test contract 1
  5. genericTitle = Core to Orbit
  6. genericDescription = Testone for StationBuilding
  7. notes = Cost To start
  8. synopsis = Get the core up
  9. completedMessage = Did it work?
  10. agent = MultiPlayers United
  11. minExpiry = 500.0
  12. maxExpiry = 1000.0
  13. cancellable = true
  14. declinable = true
  15. prestige = Significant
  16. targetBody = Kerbin
  17. rewardScience = 1.0
  18. rewardReputation = 1.0
  19. rewardFunds = -1.0
  20. failureReputation = 10.0
  21. failureFunds = 10000.0
  22. advanceFunds = -10000.0
  23.  
  24.  
  25.  
  26. PARAMETER
  27. {
  28. name = VesselParameterGroup
  29. type = VesselParameterGroup
  30. define = KerbinStationCore
  31.  
  32.  
  33. PARAMETER
  34. {
  35. name = StationCoreParts
  36. type = All
  37. title = Place a station Core
  38.  
  39. PARAMETER
  40. {
  41. name = NewVessel
  42. type = NewVessel
  43. }
  44.  
  45. PARAMETER
  46. {
  47. name = PartValidationDock
  48. type = PartValidation
  49. partModuleType = Dock
  50. minCount = 3
  51. title = Expandability Is key
  52. }
  53.  
  54. PARAMETER
  55. {
  56. name = PartValidationBattery
  57. type = PartValidation
  58. partModuleType = Generator
  59. //partModule = ModuleGenerator
  60. //partModule = ModuleDeployableSolarPanel
  61.  
  62. minCount = 1
  63. title = Basic Power Generation
  64. }
  65.  
  66. PARAMETER
  67. {
  68. name = HasResourceCapacity
  69. type = HasResourceCapacity
  70. resource = ElectricCharge
  71. minQuantity = 1000
  72. }
  73.  
  74. PARAMETER
  75. {
  76. name = PartValidationComms
  77. type = PartValidation
  78. partModuleType = Antenna
  79. minCount = 1
  80. title = Minimum Coms
  81. }
  82.  
  83. }
  84.  
  85. PARAMETER
  86. {
  87. name = HasCrew
  88. type = HasCrew
  89. trait = Pilot
  90. maxCrew = 1
  91.  
  92. }
  93.  
  94. PARAMETER
  95. {
  96. name = HasCrewCapacity
  97. type = HasCrewCapacity
  98. minCapacity = 3
  99. }
  100.  
  101.  
  102. PARAMETER{
  103. name = PutItInSpace
  104. type = Orbit
  105. situation = ORBITING
  106. minAltitude = 100000
  107. maxAltitude = 200000
  108. maxInclination = 1
  109. maxEccentricity = 0.1
  110. }
  111. }
  112.  
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement