generated from Outer-Wilds-New-Horizons/nh-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- A lot of new celestial bodies! Gas giant moons, dwarf planets, asteroids, and a few more local stars. - A lot of new spacecraft scattered around the system. - A lot of new textures and visual improvements. - Spaceflight music by @gpixl. - Ship Log icons by @ClassicalBro. - Gateway structures for fast travel between Earth, Proxima b, and Barnard's Star b. - Improved orbits and sizes to be more consistent and realistic. - Slightly whimsical details, such as gas giant interiors, dust devils on Mars, and meteors spewing from Io. - Star evolutions and timed events due to them, such as rings fading and terrestrial planets melting. - Milky Way skybox. - Achievements. - Some aquatic life ;)
- Loading branch information
Showing
342 changed files
with
7,704 additions
and
1,093 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
|
||
*.zip | ||
config.json | ||
*.nhcache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/Outer-Wilds-New-Horizons/new-horizons/main/NewHorizons/Schemas/addon_manifest_schema.json", | ||
"achievements" : [ | ||
{ | ||
"ID" : "RSS_AllSpacecraft", | ||
"secret" : false, | ||
"signalIDs" : [ "Parker Solar Probe", "MESSENGER", "Venera 9", "International Space Station", "Hubble Space Telescope", "Aquarius", "Lunar Reconnaissance Orbiter", "Perseverance", "Mars Odyssey", "Europa Clipper", "Laplace-P", "Jupiter Icy Moons Explorer", "Cassini", "Huygens", "Uranus Orbiter", "Neptune Odyssey", "Pioneer 11", "Voyager 2", "Voyager 1", "Pioneer 10" ] | ||
}, | ||
{ | ||
"ID" : "RSS_AllJellyfish", | ||
"secret" : false, | ||
"conditionIDs" : [ "RSS_MetGustavo", "RSS_MetGarry", "RSS_MetGeoffrey", "RSS_MetGriffin", "RSS_MetGertrude", "RSS_MetGooseberry", "RSS_MetGabro", "RSS_MetGoldie", "RSS_MetGideon", "RSS_MetGregory", "RSS_MetGerald" ] | ||
}, | ||
{ | ||
"ID" : "RSS_FindJammer", | ||
"secret" : false, | ||
"conditionIDs" : [ "RSS_MetJammer" ] | ||
}, | ||
{ | ||
"ID" : "RSS_FindVesselWormhole", | ||
"secret" : false | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"filename": "NewHorizonsConfig.dll", | ||
"author": "xen", | ||
"author": "Trifid, xen, MegaPiggy", | ||
"name": "Real Solar System", | ||
"uniqueName": "xen.RealSolarSystem", | ||
"version": "0.6.7", | ||
"version": "1.0.0", | ||
"owmlVersion": "2.1.0", | ||
"dependencies": [ "xen.NewHorizons" ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,46 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/xen-42/outer-wilds-new-horizons/master/NewHorizons/schema.json", | ||
"$schema": "https://raw.githubusercontent.com/Outer-Wilds-New-Horizons/new-horizons/main/NewHorizons/Schemas/body_schema.json", | ||
"name" : "Deimos", | ||
"starSystem" : "xen.RealSolarSystem", | ||
"Base" : | ||
{ | ||
"surfaceGravity" : 1, | ||
"surfaceSize" : 20, | ||
"hasMapMarker" : true, | ||
"hasAmbientLight" : true | ||
"surfaceSize" : 6 | ||
}, | ||
"MapMarker": | ||
{ | ||
"enabled": true | ||
}, | ||
"Orbit" : | ||
{ | ||
"semiMajorAxis" : 650, | ||
"inclination" : 1, | ||
"semiMajorAxis" : 550, | ||
"inclination" : 26, | ||
"primaryBody" : "Mars", | ||
"isMoon" : true, | ||
"longitudeOfAscendingNode" : 0, | ||
"eccentricity" : 0, | ||
"argumentOfPeriapsis": 0, | ||
"axialTilt" : 0 | ||
"longitudeOfAscendingNode" : 180, | ||
"trueAnomaly": 30, | ||
"axialTilt" : 26, | ||
"isTidallyLocked" : true, | ||
"alignmentAxis": {"x": -1, "y": 0, "z": 0}, | ||
"tint" : | ||
{ | ||
"r" : 185, | ||
"g" : 175, | ||
"b" : 160, | ||
"a" : 255 | ||
} | ||
}, | ||
"HeightMap" : | ||
{ | ||
"heightMap" : "planets/assets/deimos_heightmap.png", | ||
"textureMap" : "planets/assets/deimos_texturemap.png", | ||
"minHeight" : 10, | ||
"maxHeight" : 18 | ||
"minHeight" : 5, | ||
"maxHeight" : 8 | ||
}, | ||
"ShipLog" : { | ||
"spriteFolder": "planets/shiplogs/sprites", | ||
"mapMode" : { | ||
"revealedSprite": "planets/shiplogs/icons/Deimos log.png" | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.