Skip to content

Commit e7d1b77

Browse files
authored
Merge pull request #22 from zer0Kerbal/0.8.0
# Version 0.8.0 (2015-08-14) - Tweaks. - Added Community Tech Tree support, moving parts to more advanced tech nodes. - Added a radially-attachable KAL-9999 probe core, using existing art assets. - closes #14
2 parents ab75209 + a258e79 commit e7d1b77

File tree

8 files changed

+110
-1
lines changed

8 files changed

+110
-1
lines changed

JoolianDiscovery-CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.8 (2015-08-14) - Tweaks.
2+
- Added Community Tech Tree support, moving parts to more advanced tech nodes.
3+
- Added a radially-attachable KAL-9999 probe core, using existing art assets.
4+
15
0.7 (2015-08-11) - Monolith tweaks.
26
- Monolith scaled up 85% to give it dimensions close to the TMA-1 monolith from 2001.
37
- Monolith given a probe core, small reaction wheel, battery, internal generator.

JoolianDiscovery/CTTpatch.cfg

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@PART[JoolianEngine|JoolianBoomTank?]:NEEDS[CommunityTechTree]
2+
{
3+
@TechRequired = advNuclearPropulsion
4+
}
5+
@PART[JoolianCommBox|JoolianMainTank]:NEEDS[CommunityTechTree]
6+
{
7+
@TechRequired = improvedNuclearPropulsion
8+
}
9+
@PART[JoolianKALcore|JoolianDiscPod]:NEEDS[CommunityTechTree]
10+
{
11+
@TechRequired = artificialIntelligence
12+
}

JoolianDiscovery/JoolianDiscovery.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"DOWNLOAD": "https://kerbalstuff.com/mod/240/Joolian%20Discovery",
55
"VERSION": {
66
"MAJOR": 0,
7-
"MINOR": 7,
7+
"MINOR": 8,
88
"PATCH": 0
99
},
1010
"KSP_VERSION_MIN": {
Binary file not shown.
Loading
Loading

JoolianDiscovery/Parts/KAL/KAL.cfg

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
PART
2+
{
3+
name = JoolianKALcore
4+
module = Part
5+
author = NecroBones
6+
7+
// --- asset parameters ---
8+
MODEL
9+
{
10+
model = JoolianDiscovery/Parts/KAL/KAL
11+
texture = JoolianPod-IVApanels-Specular, JoolianDiscovery/Parts/JoolianPodIVA/JoolianPod-IVApanels-Specular
12+
texture = JoolianPod-IVApanels-Emissive, JoolianDiscovery/Parts/JoolianPodIVA/JoolianPod-IVApanels-Emissive
13+
scale = 1.0, 1.0, 1.0
14+
}
15+
scale = 1.0
16+
rescaleFactor = 2.5
17+
18+
node_attach = 0.0, 0.0, 0.0, 0.0, 0.0, -1.0
19+
20+
21+
TechRequired = advUnmanned
22+
entryCost = 1000
23+
cost = 800
24+
category = Pods
25+
subcategory = 0
26+
title = KAL-9999 Algorithmic Heuristic Computer
27+
manufacturer = Discovery Space Tech
28+
description = One of the most advanced computer systems ever designed, the KAL-9999 unit is incapable of error. However, we can not make assurances as to whether it will attempt to kill the crew.
29+
30+
attachRules = 0,1,0,0,1
31+
32+
mass = 0.01
33+
dragModelType = default
34+
maximum_drag = 0.2
35+
minimum_drag = 0.15
36+
angularDrag = 1.5
37+
crashTolerance = 12
38+
maxTemp = 1500
39+
bulkheadProfiles = srf
40+
41+
explosionPotential = 0
42+
43+
vesselType = Probe
44+
45+
CrewCapacity = 0
46+
47+
PhysicsSignificance = 1
48+
49+
MODULE
50+
{
51+
name = ModuleCommand
52+
minimumCrew = 0
53+
54+
RESOURCE
55+
{
56+
name = ElectricCharge
57+
rate = 0.05
58+
}
59+
}
60+
61+
MODULE
62+
{
63+
name = ModuleSAS
64+
SASServiceLevel = 3
65+
}
66+
67+
RESOURCE
68+
{
69+
name = ElectricCharge
70+
amount = 1
71+
maxAmount = 1
72+
}
73+
74+
75+
MODULE
76+
{
77+
name = ModuleSPU
78+
}
79+
80+
MODULE
81+
{
82+
name = ModuleRTAntennaPassive
83+
TechRequired = unmannedTech
84+
OmniRange = 3000
85+
86+
TRANSMITTER
87+
{
88+
PacketInterval = 0.3
89+
PacketSize = 2
90+
PacketResourceCost = 15.0
91+
}
92+
}
93+
}

JoolianDiscovery/Parts/KAL/KAL.mu

17.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)