diff --git a/kubejs/data/ad_astra/planets/mars_orbit.json b/kubejs/data/ad_astra/planets/mars_orbit.json index 137449f3b..6f4b02e20 100644 --- a/kubejs/data/ad_astra/planets/mars_orbit.json +++ b/kubejs/data/ad_astra/planets/mars_orbit.json @@ -5,5 +5,5 @@ "solar_power": 64, "solar_system": "ad_astra:solar_system", "temperature": -270, - "tier": 10 + "tier": 2 } \ No newline at end of file diff --git a/kubejs/data/ad_astra/planets/moon_orbit.json b/kubejs/data/ad_astra/planets/moon_orbit.json index b6b2dcc4c..ba3d02d0f 100644 --- a/kubejs/data/ad_astra/planets/moon_orbit.json +++ b/kubejs/data/ad_astra/planets/moon_orbit.json @@ -5,5 +5,5 @@ "solar_power": 128, "solar_system": "ad_astra:solar_system", "temperature": -270, - "tier": 10 + "tier": 1 } \ No newline at end of file diff --git a/kubejs/data/ad_astra/planets/venus_orbit.json b/kubejs/data/ad_astra/planets/venus_orbit.json index 3e11c72bc..736f8626a 100644 --- a/kubejs/data/ad_astra/planets/venus_orbit.json +++ b/kubejs/data/ad_astra/planets/venus_orbit.json @@ -5,5 +5,5 @@ "solar_power": 128, "solar_system": "ad_astra:solar_system", "temperature": -270, - "tier": 10 + "tier": 3 } \ No newline at end of file diff --git a/kubejs/server_scripts/ad_astra/recipes.js b/kubejs/server_scripts/ad_astra/recipes.js index 4a7f55eba..20b69d3ac 100644 --- a/kubejs/server_scripts/ad_astra/recipes.js +++ b/kubejs/server_scripts/ad_astra/recipes.js @@ -652,7 +652,20 @@ const registerAdAstraRecipes = (event) => { { count: 4, ingredient: { item: "minecraft:glowstone_dust" }}, { count: 1, ingredient: { item: "ad_astra:launch_pad" }} ], - structure: "tfg:earth_orbit/space_station" + structure: "tfg:space_station/earth_orbit" }) + + event.custom({ + type: "ad_astra:space_station_recipe", + dimension: "ad_astra:moon_orbit", + ingredients: [ + { count: 43, ingredient: { item: "gtceu:aluminium_frame" }}, + { count: 24, ingredient: { item: "gtceu:glass_plate" }}, + { count: 4, ingredient: { item: "minecraft:glowstone_dust" }}, + { count: 1, ingredient: { item: "ad_astra:launch_pad" }} + ], + structure: "tfg:space_station/moon_orbit" + }) + //#endregion }