diff --git a/aurorastation.dme b/aurorastation.dme
index 2013165e834..1b5f60b1191 100644
--- a/aurorastation.dme
+++ b/aurorastation.dme
@@ -2362,6 +2362,7 @@
#include "code\modules\maps\planet_types\lore\burzsia.dm"
#include "code\modules\maps\planet_types\lore\konyang.dm"
#include "code\modules\maps\planet_types\lore\srandmarr.dm"
+#include "code\modules\maps\planet_types\lore\tauceti.dm"
#include "code\modules\martial_arts\gunkata.dm"
#include "code\modules\martial_arts\martial.dm"
#include "code\modules\martial_arts\plasma_fist.dm"
diff --git a/code/modules/background/space_sectors/tauceti.dm b/code/modules/background/space_sectors/tauceti.dm
index eb3c029b73d..51269f81ed6 100644
--- a/code/modules/background/space_sectors/tauceti.dm
+++ b/code/modules/background/space_sectors/tauceti.dm
@@ -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
diff --git a/code/modules/maps/planet_types/lore/tauceti.dm b/code/modules/maps/planet_types/lore/tauceti.dm
new file mode 100644
index 00000000000..e137ee8322a
--- /dev/null
+++ b/code/modules/maps/planet_types/lore/tauceti.dm
@@ -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 = "
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 = "
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 = "
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 = "
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 = "
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 = "
No notable deposits underground"
diff --git a/html/changelogs/alberyk-taucetiplanets.yml b/html/changelogs/alberyk-taucetiplanets.yml
new file mode 100644
index 00000000000..41a9ca06a77
--- /dev/null
+++ b/html/changelogs/alberyk-taucetiplanets.yml
@@ -0,0 +1,6 @@
+author: Alberyk
+
+delete-after: True
+
+changes:
+ - rscadd: "Added planets to the Tau Ceti system."