mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 03:51:49 +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:
@@ -5,7 +5,8 @@
|
||||
the Sol Alliance over the loss of such a wealthy system, while NanoTrasen continues to have a heavy hand in all levels of Tau Ceti."
|
||||
cargo_price_coef = list("nt" = 0.8, "hpi" = 0.8, "zhu" = 0.8, "een" = 1, "get" = 0.8, "arz" = 1, "blm" = 1,
|
||||
"iac" = 1, "zsc" = 1, "vfc" = 1, "bis" = 0,8, "xmg" = 0.8, "npi" = 0.8)
|
||||
possible_exoplanets = list(/obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid, /obj/effect/overmap/visitable/sector/exoplanet/barren)
|
||||
possible_exoplanets = list(/obj/effect/overmap/visitable/sector/exoplanet/lava/caprice, /obj/effect/overmap/visitable/sector/exoplanet/desert/luthien, /obj/effect/overmap/visitable/sector/exoplanet/barren/valkyrie,
|
||||
/obj/effect/overmap/visitable/sector/exoplanet/snow/new_gibson, /obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/ice/chandras, /obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/dumas)
|
||||
starlight_color = "#9cd0fd"
|
||||
starlight_power = 5
|
||||
starlight_range = 2
|
||||
|
||||
@@ -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