Skip to content

Commit

Permalink
Add remaining outer planets
Browse files Browse the repository at this point in the history
  • Loading branch information
behindcurtain3 committed Dec 30, 2024
1 parent 678449c commit 811d308
Show file tree
Hide file tree
Showing 4 changed files with 166 additions and 0 deletions.
43 changes: 43 additions & 0 deletions Pulsar4X/GameEngine/Data/basemod/blueprints/neptune.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[
{
"Type": "SystemBody",
"Payload": {
"UniqueID": "neptune",
"Name": "Neptune",
"Colonizable": true,
"GeoSurveyPointsRequired": 2500,
"GenerateMinerals": "random",
"Info": {
"Gravity": 11.15,
"Type": "ice-giant",
"Albedo": 0.29,
"AxialTilt": 28.32,
"Mass": 1.02413E26,
"Radius": 24764
},
"Orbit": {
"SemiMajorAxis": 4.5E9,
"Eccentricity": 0.008678,
"EclipticInclination": 1.77,
"LoAN": 131.783,
"AoP": 273.187,
"MeanAnomaly": 259.883
},
"Atmosphere": {
"Pressure": 986.923267,
"Hydrosphere": false,
"HyrdoExtent": 0,
"GreenhouseFactor": 0,
"GreenhousePressure": 0,
"SurfaceTemperature": -201,
"Gases": [
{ "Symbol": "H2", "Percent": 0.8 },
{ "Symbol": "He", "Percent": 0.19 },
{ "Symbol": "CH4", "Percent": 0.015 },
{ "Symbol": "HD", "Percent": 0.00019 },
{ "Symbol": "C2H6", "Percent": 0.0000015 }
]
}
}
}
]
78 changes: 78 additions & 0 deletions Pulsar4X/GameEngine/Data/basemod/blueprints/saturn.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
[
{
"Type": "SystemBody",
"Payload": {
"UniqueID": "saturn",
"Name": "Saturn",
"Colonizable": false,
"GeoSurveyPointsRequired": 2500,
"Info": {
"Type": "gas-giant",
"Albedo": 0.342,
"Mass": 5.6834E26,
"Radius": 60268
},
"Orbit": {
"SemiMajorAxis": 1.51450E9,
"Eccentricity": 0.0565,
"EclipticInclination": 2.485,
"LoAN": 113.665,
"AoP": 339.293,
"MeanAnomaly": 317.02
},
"Atmosphere": {
"Pressure": 1.38169257,
"Hydrosphere": false,
"HyrdoExtent": 0,
"GreenhouseFactor": 0,
"GreenhousePressure": 0,
"SurfaceTemperature": -139,
"Gases": [
{ "Symbol": "H2", "Percent": 0.963 },
{ "Symbol": "He", "Percent": 0.0325 },
{ "Symbol": "CH4", "Percent": 0.0045 },
{ "Symbol": "NH3", "Percent": 0.000125 },
{ "Symbol": "HD", "Percent": 0.00011 },
{ "Symbol": "C2H6", "Percent": 0.000007 }
]
}
}
},
{
"Type": "SystemBody",
"Payload": {
"UniqueID": "moon-titan",
"Name": "Titan",
"Parent": "Saturn",
"Colonizable": true,
"GeoSurveyPointsRequired": 500,
"Info": {
"Type": "moon",
"Albedo": 0.22,
"Mass": 1.3452E23,
"Radius": 2574.73
},
"Orbit": {
"SemiMajorAxis": 1221870,
"Eccentricity": 0.0288,
"EclipticInclination": 0.34854,
"LoAN": 0,
"AoP": 0,
"MeanAnomaly": 0
},
"Atmosphere": {
"Pressure": 1.45,
"Hydrosphere": false,
"HyrdoExtent": 0,
"GreenhouseFactor": 0,
"GreenhousePressure": 0,
"SurfaceTemperature": -179.5,
"Gases": [
{ "Symbol": "N2", "Percent": 0.984 },
{ "Symbol": "CH4", "Percent": 0.014 },
{ "Symbol": "H2", "Percent": 0.002 }
]
}
}
}
]
42 changes: 42 additions & 0 deletions Pulsar4X/GameEngine/Data/basemod/blueprints/uranus.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"Type": "SystemBody",
"Payload": {
"UniqueID": "uranus",
"Name": "Uranus",
"Colonizable": true,
"GeoSurveyPointsRequired": 2500,
"GenerateMinerals": "random",
"Info": {
"Gravity": 8.69,
"Type": "ice-giant",
"Albedo": 0.3,
"AxialTilt": 82.23,
"Mass": 8.6810E25,
"Radius": 25559
},
"Orbit": {
"SemiMajorAxis": 2.870972E9,
"Eccentricity": 0.04717,
"EclipticInclination": 0.773,
"LoAN": 74.006,
"AoP": 96.998857,
"MeanAnomaly": 142.2386
},
"Atmosphere": {
"Pressure": 1.28300025,
"Hydrosphere": false,
"HyrdoExtent": 0,
"GreenhouseFactor": 0,
"GreenhousePressure": 0,
"SurfaceTemperature": -197.2,
"Gases": [
{ "Symbol": "H2", "Percent": 0.83 },
{ "Symbol": "He", "Percent": 0.15 },
{ "Symbol": "CH4", "Percent": 0.023 },
{ "Symbol": "HD", "Percent": 0.00009 }
]
}
}
}
]
3 changes: 3 additions & 0 deletions Pulsar4X/GameEngine/Data/basemod/modInfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
"blueprints/luna.json",
"blueprints/mars.json",
"blueprints/jupiter.json",
"blueprints/saturn.json",
"blueprints/uranus.json",
"blueprints/neptune.json",
"blueprints/componentDesigns.json",
"blueprints/shipDesigns.json"
]
Expand Down

0 comments on commit 811d308

Please sign in to comment.