From 6f36a9d742433b5d7a254b2d1aed7e42579bee16 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Sat, 11 Mar 2023 13:04:28 -0300 Subject: [PATCH] Tweaks overmap planets colors (#15984) --- code/modules/maps/planet_types/barren.dm | 2 +- code/modules/maps/planet_types/lava.dm | 2 +- code/modules/maps/planet_types/lore/srandmarr.dm | 6 +++--- html/changelogs/alberyk-planetcolor.yml | 6 ++++++ 4 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 html/changelogs/alberyk-planetcolor.yml diff --git a/code/modules/maps/planet_types/barren.dm b/code/modules/maps/planet_types/barren.dm index 13a94cf4f67..2169ae9f130 100644 --- a/code/modules/maps/planet_types/barren.dm +++ b/code/modules/maps/planet_types/barren.dm @@ -1,7 +1,7 @@ /obj/effect/overmap/visitable/sector/exoplanet/barren name = "barren exoplanet" desc = "An exoplanet that couldn't hold its atmosphere." - color = "#6c6c6c" + color = "#ad9c9c" planetary_area = /area/exoplanet/barren rock_colors = list(COLOR_BEIGE, COLOR_GRAY80, COLOR_BROWN) possible_themes = list(/datum/exoplanet_theme/mountains) diff --git a/code/modules/maps/planet_types/lava.dm b/code/modules/maps/planet_types/lava.dm index 3b2d078180f..02a61e55462 100644 --- a/code/modules/maps/planet_types/lava.dm +++ b/code/modules/maps/planet_types/lava.dm @@ -8,7 +8,7 @@ map_generators = list(/datum/random_map/noise/exoplanet/lava, /datum/random_map/noise/ore) ruin_tags_blacklist = RUIN_HABITAT|RUIN_WATER features_budget = 4 - surface_color = "#575d5e" + surface_color = "#cf1020" water_color = null possible_random_ruins = list( diff --git a/code/modules/maps/planet_types/lore/srandmarr.dm b/code/modules/maps/planet_types/lore/srandmarr.dm index 6553a913f48..2986bb11db7 100644 --- a/code/modules/maps/planet_types/lore/srandmarr.dm +++ b/code/modules/maps/planet_types/lore/srandmarr.dm @@ -2,7 +2,7 @@ /obj/effect/overmap/visitable/sector/exoplanet/barren/aethemir name = "Ae'themir" desc = "A planet comprised mainly of solid common minerals and silicate." - color = "#B1A69B" + color = "#bf7c39" icon_state = "globe1" rock_colors = list(COLOR_GRAY80) possible_themes = list(/datum/exoplanet_theme/mountains) @@ -29,7 +29,7 @@ /obj/effect/overmap/visitable/sector/exoplanet/barren/azmar name = "Az'Mar" desc = "A small planet with a caustic shale crust. The surface is extremely hot and dense." - color = "#4a3f41" + color = "#8f4754" icon_state = "globe2" rock_colors = null plant_colors = null @@ -74,7 +74,7 @@ name = "Raskara" desc = "A barren moon orbiting Adhomai." icon_state = "globe1" - color = "#373737" + color = "#ab46d4" rock_colors = list("#373737") planetary_area = /area/exoplanet/barren/raskara possible_themes = list(/datum/exoplanet_theme/mountains) diff --git a/html/changelogs/alberyk-planetcolor.yml b/html/changelogs/alberyk-planetcolor.yml new file mode 100644 index 00000000000..e5b7ba968db --- /dev/null +++ b/html/changelogs/alberyk-planetcolor.yml @@ -0,0 +1,6 @@ +author: Alberyk + +delete-after: True + +changes: + - rscadd: "Overmap planets now have brighter colors."