Skip to content

Commit

Permalink
Merge pull request #21 from zer0Kerbal/0.7.0
Browse files Browse the repository at this point in the history
# Version 0.7.0 (2015-08-11) - Monolith tweaks.
- Monolith scaled up 85% to give it dimensions close to the TMA-1 monolith from 2001.
- Monolith given a probe core, small reaction wheel, battery, internal generator.
- Monolith classified as a "Space Object" instead of debris.
- Monolith mass drastically reduced, to give it air-density, as mentioned in the 2010 book.
- Monolith texture problem fixed. Should be black again.
- Monolith now has top and bottom stack nodes, in addition to its surface attachment node.
- closes #13
  • Loading branch information
zer0Kerbal authored Dec 19, 2021
2 parents f7750cc + 9d2be81 commit ab75209
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 9 deletions.
8 changes: 8 additions & 0 deletions JoolianDiscovery-CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.7 (2015-08-11) - Monolith tweaks.
- Monolith scaled up 85% to give it dimensions close to the TMA-1 monolith from 2001.
- Monolith given a probe core, small reaction wheel, battery, internal generator.
- Monolith classified as a "Space Object" instead of debris.
- Monolith mass drasitcally reduced, to give it air-density, as mentioned in the 2010 book.
- Monolith texture problem fixed. Should be black again.
- Monolith now has top and bottom stack nodes, in addition to its surface attachment node.

0.6 (2015-05-01) - KSP 1.0.1 corrections
- Adjusted engine heat & thrust for KSP 1.0.1 compatability.
- Converted textures to DDS format.
Expand Down
4 changes: 2 additions & 2 deletions JoolianDiscovery/JoolianDiscovery.version
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"DOWNLOAD": "https://kerbalstuff.com/mod/240/Joolian%20Discovery",
"VERSION": {
"MAJOR": 0,
"MINOR": 6,
"MINOR": 7,
"PATCH": 0
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 0,
"PATCH": 1
"PATCH": 4
}
}
Binary file modified JoolianDiscovery/Parts/joolianMonolith/joolianMonolithSpecular.dds
Binary file not shown.
Binary file modified JoolianDiscovery/Parts/joolianMonolith/model.mu
Binary file not shown.
58 changes: 51 additions & 7 deletions JoolianDiscovery/Parts/joolianMonolith/part.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ author = NecroBones

// --- asset parameters ---
mesh = model.mu
rescaleFactor = 1.0
rescaleFactor = 1.85

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


Expand All @@ -30,10 +31,10 @@ subcategory = 0
title = Mysterious Alien Monolith
manufacturer = Mysterious Aliens
description = Our researchers dug this up somewhere, and thought it might come in handy someday. Nothing is known about it, except that it is black, and has dimensions that measure 1x4x9 (the squares of the first three integers). Some rapid gravitational acceleration tests might be useful.
attachRules = 0,1,0,1,0
attachRules = 1,1,1,1,0

// --- standard part parameters ---
mass = 4
mass = 0.0022
dragModelType = default
maximum_drag = 0.2
minimum_drag = 0.2
Expand All @@ -45,11 +46,54 @@ bulkheadProfiles = srf
stageOffset = 1
childStageOffset = 1

vesselType = SpaceObject

MODULE
{
name = ModuleCommand
minimumCrew = 0
RESOURCE
{
name = ElectricCharge
rate = 0.0001
}
}
RESOURCE
{
name = ElectricCharge
amount = 10
maxAmount = 10
}
MODULE
{
name = ModuleReactionWheel
PitchTorque = 0.1
YawTorque = 0.1
RollTorque = 0.1
RESOURCE
{
name = ElectricCharge
rate = 0.01
}
}

MODULE
{
name = ModuleGenerator
isAlwaysActive = true
OUTPUT_RESOURCE
{
name = ElectricCharge
rate = 0.001
}
}

MODULE
{
name = ModuleDecouple
ejectionForce = 10
explosiveNodeID = srf
name = ModuleDecouple
ejectionForce = 1
//explosiveNodeID = srf
isOmniDecoupler = true
}

MODULE
Expand Down

0 comments on commit ab75209

Please sign in to comment.