mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 12:02:31 +01:00
Back to home once again (#18720)
This pr adds some basic content for the Tau ceti system. --------- Signed-off-by: Alberyk <Alberyk@users.noreply.github.com> Co-authored-by: GMR25 <GMR25@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,135 @@
|
||||
// --------------------------------- Caprice
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/lava/caprice
|
||||
name = "Caprice"
|
||||
desc = "A scorching-hot volcanic planet close to Tau Ceti."
|
||||
charted = "Charted 2147CE, Sol Alliance Department of Colonization."
|
||||
icon_state = "globe1"
|
||||
color = "#cf1020"
|
||||
generated_name = FALSE
|
||||
ring_chance = 0
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/lava/caprice/update_icon()
|
||||
return
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/lava/caprice/generate_ground_survey_result()
|
||||
ground_survey_result = "<br>Natural caverns and artificial tunnels"
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/lava/caprice/generate_atmosphere()
|
||||
..()
|
||||
if(atmosphere)
|
||||
atmosphere.remove_ratio(1)
|
||||
atmosphere.adjust_gas(GAS_NITROGEN, MOLES_O2STANDARD)
|
||||
atmosphere.temperature = T0C + 400
|
||||
atmosphere.update_values()
|
||||
|
||||
// --------------------------------- Luthien
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/desert/luthien
|
||||
name = "Luthien"
|
||||
desc = "A desert planet with a thin, unbreathable atmosphere of primarily nitrogen."
|
||||
charted = "Charted 2147CE, Sol Alliance Department of Colonization."
|
||||
icon_state = "globe1"
|
||||
rock_colors = list("#e49135")
|
||||
color = "#e49135"
|
||||
generated_name = FALSE
|
||||
ring_chance = 0
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/lava/luthien/update_icon()
|
||||
return
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/desert/luthien/generate_habitability()
|
||||
return HABITABILITY_BAD
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/desert/luthien/generate_ground_survey_result()
|
||||
ground_survey_result = "<br>Sandy soil with organic fungal contamination"
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/desert/luthien/generate_atmosphere()
|
||||
..()
|
||||
if(atmosphere)
|
||||
atmosphere.remove_ratio(1)
|
||||
atmosphere.adjust_gas(GAS_NITROGEN, MOLES_O2STANDARD)
|
||||
atmosphere.update_values()
|
||||
|
||||
// --------------------------------- Valkyrie
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/barren/valkyrie
|
||||
name = "Valkyrie"
|
||||
desc = "The moon of Tau Ceti, the third planet to be settled in the system."
|
||||
charted = "Natural satellite of Tau Ceti, charted 2147CE, Sol Alliance Department of Colonization."
|
||||
icon_state = "globe1"
|
||||
rock_colors = list("#4a3f41")
|
||||
color = "#4a3f41"
|
||||
generated_name = FALSE
|
||||
ring_chance = 0
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/barren/valkyrie/update_icon()
|
||||
return
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/barren/valkyrie/generate_ground_survey_result()
|
||||
ground_survey_result = "<br>Soil with presence of nitrogen deposits"
|
||||
|
||||
// --------------------------------- New Gibson
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/snow/new_gibson
|
||||
name = "New Gibson"
|
||||
desc = "An ice world just outside the outer edge of the habitable zone."
|
||||
charted = "Charted 2147CE, Sol Alliance Department of Colonization."
|
||||
icon_state = "globe1"
|
||||
generated_name = FALSE
|
||||
ring_chance = 0
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/snow/new_gibson/update_icon()
|
||||
return
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/snow/new_gibson/generate_habitability()
|
||||
return HABITABILITY_BAD
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/snow/new_gibson/generate_ground_survey_result()
|
||||
ground_survey_result = "<br>Mineral-rich soil with presence of artificial structures"
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/snow/new_gibson/generate_atmosphere()
|
||||
..()
|
||||
if(atmosphere)
|
||||
atmosphere.remove_ratio(1)
|
||||
atmosphere.adjust_gas(GAS_NITROGEN, MOLES_O2STANDARD)
|
||||
atmosphere.temperature = T0C - 200
|
||||
atmosphere.update_values()
|
||||
|
||||
// --------------------------------- Chandras
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/ice/chandras
|
||||
name = "Chandras"
|
||||
desc = "An an icy body in a distant orbit of Tau Ceti."
|
||||
charted = "Charted 2147CE, Sol Alliance Department of Colonization."
|
||||
icon_state = "globe1"
|
||||
color = "#b2abbf"
|
||||
rock_colors = list("#b2abbf")
|
||||
generated_name = FALSE
|
||||
ring_chance = 0
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/ice/chandras/update_icon()
|
||||
return
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/ice/chandras/generate_habitability()
|
||||
return HABITABILITY_BAD
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/ice/chandras/generate_ground_survey_result()
|
||||
ground_survey_result = "<br>Soil with presence of nitrogen and ice deposits"
|
||||
|
||||
// --------------------------------- Dumas
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/dumas
|
||||
name = "Dumas"
|
||||
desc = "An extremely small rocky body that orbits within the far reaches of Tau Ceti."
|
||||
charted = "Charted 2147CE, Sol Alliance Department of Colonization."
|
||||
icon_state = "asteroid"
|
||||
generated_name = FALSE
|
||||
ring_chance = 0
|
||||
place_near_main = null
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/dumas/update_icon()
|
||||
return
|
||||
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/dumas/generate_ground_survey_result()
|
||||
ground_survey_result = "<br>No notable deposits underground"
|
||||
Reference in New Issue
Block a user