diff --git a/code/modules/overmap/bluespace_rift_vr.dm b/code/modules/overmap/bluespace_rift_vr.dm index 88e20fd048..6e299222b4 100644 --- a/code/modules/overmap/bluespace_rift_vr.dm +++ b/code/modules/overmap/bluespace_rift_vr.dm @@ -4,8 +4,6 @@ icon = 'icons/obj/overmap_vr.dmi' icon_state = "portal" color = "#2288FF" - - known = FALSE //shows up on nav computers automatically scannable = TRUE //if set to TRUE will show up on ship sensors for detailed scans var/obj/effect/overmap/bluespace_rift/partner diff --git a/code/modules/overmap/events/overmap_event.dm b/code/modules/overmap/events/overmap_event.dm index 7b1faa68f6..e64f71170b 100644 --- a/code/modules/overmap/events/overmap_event.dm +++ b/code/modules/overmap/events/overmap_event.dm @@ -9,7 +9,6 @@ icon = 'icons/obj/overmap.dmi' icon_state = "event" opacity = 1 - known = FALSE var/list/events // List of event datum paths var/list/event_icon_states // Randomly picked from var/difficulty = EVENT_LEVEL_MODERATE diff --git a/code/modules/overmap/ships/landable.dm b/code/modules/overmap/ships/landable.dm index fed030ba6f..4c16b991bc 100644 --- a/code/modules/overmap/ships/landable.dm +++ b/code/modules/overmap/ships/landable.dm @@ -7,8 +7,7 @@ var/obj/effect/shuttle_landmark/ship/landmark // Record our open space landmark for easy reference. var/multiz = 0 // Index of multi-z levels, starts at 0 var/status = SHIP_STATUS_LANDED - icon_state = "shuttle" - moving_state = "shuttle_moving" + icon_state = "shuttle_nosprite" /obj/effect/overmap/visitable/ship/landable/Destroy() GLOB.shuttle_pre_move_event.unregister(SSshuttles.shuttles[shuttle], src) diff --git a/code/modules/tgui/modules/admin_shuttle_controller.dm b/code/modules/tgui/modules/admin_shuttle_controller.dm index d2ce9bc69e..6e88874b5d 100644 --- a/code/modules/tgui/modules/admin_shuttle_controller.dm +++ b/code/modules/tgui/modules/admin_shuttle_controller.dm @@ -22,7 +22,7 @@ for(var/ship in SSshuttles.ships) var/obj/effect/overmap/visitable/ship/S = ship overmap_ships.Add(list(list( - "name" = S.scanner_name || S.name, + "name" = S.name, "ref" = REF(S), ))) data["overmap_ships"] = overmap_ships diff --git a/maps/expedition_vr/aerostat/_aerostat.dm b/maps/expedition_vr/aerostat/_aerostat.dm index ae612247ba..9a98a76461 100644 --- a/maps/expedition_vr/aerostat/_aerostat.dm +++ b/maps/expedition_vr/aerostat/_aerostat.dm @@ -8,10 +8,11 @@ [i]Habitability[/i]: Low (High Temperature, Toxic Atmosphere) [b]Notice[/b]: Planetary environment not suitable for life. Landing may be hazardous."} icon_state = "globe" - color = "#dfff3f" //Bright yellow in_space = 0 initial_generic_waypoints = list("aerostat_west","aerostat_east","aerostat_south","aerostat_northwest","aerostat_northeast") extra_z_levels = list(Z_LEVEL_AEROSTAT_SURFACE) + known = TRUE + icon_state = "chlorine" // -- Datums -- // diff --git a/maps/expedition_vr/alienship/_alienship.dm b/maps/expedition_vr/alienship/_alienship.dm index 9646dd12de..890f1e5c77 100644 --- a/maps/expedition_vr/alienship/_alienship.dm +++ b/maps/expedition_vr/alienship/_alienship.dm @@ -1,12 +1,13 @@ // -- Datums -- // /obj/effect/overmap/visitable/sector/alienship - name = "Unknown Vessel" + name = "precursor vessel" + icon_state = "unkn_o" + unknown_state = "ship" desc = "An unknown vessel detected by sensors." start_x = 12 start_y = 12 icon_state = "ship" - color = "#ff00ff" //Sandy initial_generic_waypoints = list("tether_excursion_alienship") // -- Objs -- // diff --git a/maps/expedition_vr/beach/_beach.dm b/maps/expedition_vr/beach/_beach.dm index fdd52402d9..515e7746bb 100644 --- a/maps/expedition_vr/beach/_beach.dm +++ b/maps/expedition_vr/beach/_beach.dm @@ -8,10 +8,11 @@ [i]Habitability[/i]: Moderate (High Temperature) [b]Notice[/b]: Request authorization from planetary authorities before attempting to construct settlements"} icon_state = "globe" - color = "#ffd300" //Sandy in_space = 0 initial_generic_waypoints = list("beach_e", "beach_c", "beach_nw") extra_z_levels = list(Z_LEVEL_BEACH_CAVE) + known = TRUE + icon_state = "desert" //This is a special subtype of the thing that generates ores on a map //It will generate more rich ores because of the lower numbers than the normal one diff --git a/maps/expedition_vr/space/_debrisfield.dm b/maps/expedition_vr/space/_debrisfield.dm index cf63350a59..6fe07d2cb9 100644 --- a/maps/expedition_vr/space/_debrisfield.dm +++ b/maps/expedition_vr/space/_debrisfield.dm @@ -9,6 +9,7 @@ known = FALSE color = "#ee3333" //Redish, so it stands out against the other debris-like icons initial_generic_waypoints = list("debrisfield_se", "debrisfield_nw") + icon_state = "spacehulk_g" // -- Objs -- // @@ -146,7 +147,7 @@ . = ..() /obj/effect/overmap/visitable/ship/landable/tinycarrier - scanner_name = "TBD" + name = "TBD" scanner_desc = "TBD" vessel_mass = 12000 vessel_size = SHIP_SIZE_SMALL @@ -156,7 +157,7 @@ . = ..() var/datum/lore/organization/O = loremaster.organizations[/datum/lore/organization/other/sysdef] var/newname = "SDV [pick(O.ship_names)]" - scanner_name = newname + name = newname scanner_desc = {"\[i\]Registration\[/i\]: [newname] \[i\]Class\[/i\]: Light Escort Carrier \[i\]Transponder\[/i\]: Transmitting (MIL), Weak Signal diff --git a/maps/expedition_vr/space/_fueldepot.dm b/maps/expedition_vr/space/_fueldepot.dm index 1b31997bbc..0b8aa3b1e8 100644 --- a/maps/expedition_vr/space/_fueldepot.dm +++ b/maps/expedition_vr/space/_fueldepot.dm @@ -9,6 +9,9 @@ icon_state = "fueldepot" color = "#33FF33" initial_generic_waypoints = list("fueldepot_east","fueldepot_west","fueldepot_north","fueldepot_south") + unknown_state = "station" + known = TRUE + icon_state = "fueldepot_g" /area/tether_away/fueldepot name = "Away Mission - Fuel Depot" diff --git a/maps/gateway_vr/carpfarm.dm b/maps/gateway_vr/carpfarm.dm index 54195554f9..281ff2e01b 100644 --- a/maps/gateway_vr/carpfarm.dm +++ b/maps/gateway_vr/carpfarm.dm @@ -1,6 +1,6 @@ /obj/effect/overmap/visitable/sector/tether_gateway/carpfarm initial_generic_waypoints = list("carpfarm1", "carpfarm2") - scanner_name = "Carp-Infested Outpost" + name = "Carp-Infested Outpost" scanner_desc = @{"[i]Registration[/i]: UNKNOWN [i]Class[/i]: Installation [i]Transponder[/i]: None Detected diff --git a/maps/gateway_vr/listeningpost.dm b/maps/gateway_vr/listeningpost.dm index 0c031d3436..14d95aa2dd 100644 --- a/maps/gateway_vr/listeningpost.dm +++ b/maps/gateway_vr/listeningpost.dm @@ -1,6 +1,6 @@ /obj/effect/overmap/visitable/sector/tether_gateway/listeningpost initial_generic_waypoints = list("tether_excursion_listeningpost") - scanner_name = "Strange Asteroid" + name = "Strange Asteroid" scanner_desc = @{"[i]Registration[/i]: UNKNOWN [i]Class[/i]: Wreckage [i]Transponder[/i]: None Detected"} diff --git a/maps/gateway_vr/snow_outpost.dm b/maps/gateway_vr/snow_outpost.dm index a77c03451f..c840ce401a 100644 --- a/maps/gateway_vr/snow_outpost.dm +++ b/maps/gateway_vr/snow_outpost.dm @@ -1,7 +1,7 @@ /obj/effect/overmap/visitable/sector/tether_gateway/snowoutpost initial_generic_waypoints = list("tether_excursion_snow_outpost") in_space = 0 - scanner_name = "Snowy Outpost" + name = "Snowy Outpost" scanner_desc = @{"[i]Stellar Body[/i]>: UNKNOWN [i]Class[/i]>: M-Class Planetoid [i]Habitability[/i]>: Moderate (Low Temperature) diff --git a/maps/gateway_vr/snowfield.dm b/maps/gateway_vr/snowfield.dm index a2116137a6..fc68f82aa9 100644 --- a/maps/gateway_vr/snowfield.dm +++ b/maps/gateway_vr/snowfield.dm @@ -1,11 +1,14 @@ /obj/effect/overmap/visitable/sector/tether_gateway/snowfield initial_generic_waypoints = list("tether_excursion_snowfield") in_space = 0 - scanner_name = "Snowy Field" + name = "Snowy Field" scanner_desc = @{"[i]Stellar Body[/i]: UNKNOWN [i]Class[/i]: M-Class Planetoid [i]Habitability[/i]: Moderate (Low Temperature) [b]Notice[/b]: Very cold atmosphere, minimal life signs detected"} + unknown_state = "planet" + known = FALSE + icon_state = "frozen" // -- Areas -- // diff --git a/maps/gateway_vr/variable/arynthilake.dm b/maps/gateway_vr/variable/arynthilake.dm index a1f414b3da..e710acf305 100644 --- a/maps/gateway_vr/variable/arynthilake.dm +++ b/maps/gateway_vr/variable/arynthilake.dm @@ -4,8 +4,9 @@ scanner_desc = @{"It is difficult to tell just what is beyond this strange shimmering shape. The air beyond seems breathable."} icon = 'icons/obj/overmap_vr.dmi' icon_state = "shimmer" - color = "#171DFF" //bloo in_space = 0 + unknown_state = "field" + known = FALSE /datum/map_template/tether_lateload/gateway/arynthilake/on_map_loaded(z) . = ..() diff --git a/maps/gateway_vr/variable/honlethhighlands.dm b/maps/gateway_vr/variable/honlethhighlands.dm index 526cfb3a8e..9eb1104f22 100644 --- a/maps/gateway_vr/variable/honlethhighlands.dm +++ b/maps/gateway_vr/variable/honlethhighlands.dm @@ -6,6 +6,7 @@ icon_state = "shimmer" color = "#171DFF" //bloo in_space = 0 + unknown_state = "field" /datum/map_template/tether_lateload/gateway/honlethhighlands_a/on_map_loaded(z) . = ..() diff --git a/maps/gateway_vr/wildwest.dm b/maps/gateway_vr/wildwest.dm index e2c0d2cb9a..e2ef2240ba 100644 --- a/maps/gateway_vr/wildwest.dm +++ b/maps/gateway_vr/wildwest.dm @@ -184,4 +184,7 @@ icon = 'icons/obj/overmap_vr.dmi' icon_state = "shimmer" color = "#8b0b0b" //red - in_space = 1 \ No newline at end of file + in_space = 1 + unknown_state = "field" + known = FALSE + \ No newline at end of file diff --git a/maps/offmap_vr/om_ships/abductor.dm b/maps/offmap_vr/om_ships/abductor.dm index 0b10f1c756..74bb329a59 100644 --- a/maps/offmap_vr/om_ships/abductor.dm +++ b/maps/offmap_vr/om_ships/abductor.dm @@ -26,20 +26,18 @@ // The 'Abductor Ship' /obj/effect/overmap/visitable/ship/abductor - name = "spacecraft" + name = "strange spacecraft" desc = "Spacefaring vessel." - icon_state = "shuttle" - moving_state = "shuttle" - scanner_name = "unknown vessel" + icon_state = "unkn_r" scanner_desc = @{"[i]Registration[/i]: Unknown [i]Class[/i]: Corvette [i]Transponder[/i]: No transponder detected." [b]Notice[/b]: Deep scans detect unknown power signatures, and onboard transporter technology."} - color = "#11414c" //STEALTH vessel_mass = 8000 vessel_size = SHIP_SIZE_SMALL initial_generic_waypoints = list("abductor_port", "abductor_starboard") fore_dir = NORTH + known = FALSE /obj/item/weapon/paper/alien/abductor name = "Read Me" diff --git a/maps/offmap_vr/om_ships/aro.dm b/maps/offmap_vr/om_ships/aro.dm index b6ef237453..c4c464442f 100644 --- a/maps/offmap_vr/om_ships/aro.dm +++ b/maps/offmap_vr/om_ships/aro.dm @@ -45,7 +45,6 @@ /obj/effect/overmap/visitable/ship/aro name = "Aronai Sieyes" desc = "It's Aronai. Did you know he's actually a spaceship? Yeah it's weird." - color = "#00aaff" //Bluey vessel_mass = 8000 vessel_size = SHIP_SIZE_SMALL initial_generic_waypoints = list("aronai_fore", "aronai_aft", "aronai_port", "aronai_starboard") diff --git a/maps/offmap_vr/om_ships/aro2.dm b/maps/offmap_vr/om_ships/aro2.dm index 5d7f834663..d31b8f2ca1 100644 --- a/maps/offmap_vr/om_ships/aro2.dm +++ b/maps/offmap_vr/om_ships/aro2.dm @@ -56,12 +56,11 @@ /obj/effect/overmap/visitable/ship/aro2 name = "spacecraft" desc = "Spacefaring vessel. Friendly IFF detected." - scanner_name = "Aronai Sieyes" + name = "Aronai Sieyes" scanner_desc = @{"[i]Registration[/i]: Aronai Sieyes [i]Class[/i]: Small Frigate (Low Displacement) [i]Transponder[/i]: Transmitting (CIV), non-hostile [b]Notice[/b]: Automated vessel"} - color = "#00aaff" //Bluey vessel_mass = 8000 vessel_size = SHIP_SIZE_SMALL initial_generic_waypoints = list("aronai2_fore", "aronai2_aft", "aronai2_port", "aronai2_starboard") diff --git a/maps/offmap_vr/om_ships/aro3.dm b/maps/offmap_vr/om_ships/aro3.dm index 5d4c4d82c9..724e803854 100644 --- a/maps/offmap_vr/om_ships/aro3.dm +++ b/maps/offmap_vr/om_ships/aro3.dm @@ -77,9 +77,9 @@ // The 'ship' /obj/effect/overmap/visitable/ship/aro3 - name = "spacecraft" + name = "Aronai Sieyes" desc = "Spacefaring vessel. Friendly IFF detected." - scanner_name = "Aronai Sieyes" + icon_state = "moe_cruiser_g" scanner_desc = @{"[i]Registration[/i]: Aronai Sieyes [i]Class[/i]: Small Frigate (Low Displacement) [i]Transponder[/i]: Transmitting (CIV), non-hostile @@ -90,6 +90,7 @@ initial_generic_waypoints = list("aronai3_fore", "aronai3_aft", "aronai3_port", "aronai3_starboard") initial_restricted_waypoints = list("Aro's Boat" = list("omship_spawn_aroboat3")) fore_dir = NORTH + known = FALSE skybox_icon = 'aro3.dmi' skybox_icon_state = "skybox" diff --git a/maps/offmap_vr/om_ships/bearcat.dm b/maps/offmap_vr/om_ships/bearcat.dm index 003e938803..69cb39e81f 100644 --- a/maps/offmap_vr/om_ships/bearcat.dm +++ b/maps/offmap_vr/om_ships/bearcat.dm @@ -55,14 +55,12 @@ shuttle_type = /datum/shuttle/autodock/overmap/bearcat /obj/effect/overmap/visitable/ship/landable/bearcat - scanner_name = "Binturong-class Salvage Vessel" + name = "Binturong-class Salvage Vessel" scanner_desc = @{"[i]Registration[/i]: IRV Bearcat [i]Class:[/i] Corvette [i]Transponder[/i]: Transmitting \'Keep-Away\' Signal [b]Notice[/b]: Abandoned under unclear circumstances."} known = FALSE - color = "#ee3333" //Reddish, so it looks kinda rusty and beat up -// initial_generic_waypoints = list("bearcat_dock_w", "bearcat_dock_e") vessel_mass = 3500 vessel_size = SHIP_SIZE_LARGE shuttle = "Bearcat" diff --git a/maps/offmap_vr/om_ships/cruiser.dm b/maps/offmap_vr/om_ships/cruiser.dm index f07d1e8bf1..ab47fc272e 100644 --- a/maps/offmap_vr/om_ships/cruiser.dm +++ b/maps/offmap_vr/om_ships/cruiser.dm @@ -125,14 +125,13 @@ mappath = 'cruiser.dmm' /obj/effect/overmap/visitable/ship/cruiser - name = "spacecraft" + name = "NDV Daedalus" + icon_state = "oberth_destroyer_g" desc = "Spacefaring vessel. NanoTrasen IFF detected." - scanner_name = "NDV Daedalus" scanner_desc = @{"[i]Registration[/i]: NDV Daedalus [i]Class[/i]: Light Cruiser [i]Transponder[/i]: Transmitting (MIL), NanoTrasen IFF [b]Notice[/b]: Military vessel, do not approach"} - color = "#0033ff" //Bluey vessel_mass = 15000 vessel_size = SHIP_SIZE_LARGE initial_generic_waypoints = list("cruiser_fore", "cruiser_aft", "cruiser_port", "cruiser_starboard", "ws_port_dock_1", "ws_port_dock_2", "ws_starboard_dock_1", "ws_starboard_dock_2") diff --git a/maps/offmap_vr/om_ships/curashuttle.dm b/maps/offmap_vr/om_ships/curashuttle.dm index 158d145894..e2a44154e6 100644 --- a/maps/offmap_vr/om_ships/curashuttle.dm +++ b/maps/offmap_vr/om_ships/curashuttle.dm @@ -56,12 +56,11 @@ // The 'ship' /obj/effect/overmap/visitable/ship/landable/curashuttle - scanner_name = "CRV Doom Delay" + name = "CRV Doom Delay" scanner_desc = @{"[i]Registration[/i]: Curabitur Scimed [i]Class[/i]: Small Shuttle [i]Transponder[/i]: Transmitting (CIV), non-hostile [b]Notice[/b]: Small private vessel"} - color = "#01A9DB" vessel_mass = 2000 vessel_size = SHIP_SIZE_TINY shuttle = "Cura" \ No newline at end of file diff --git a/maps/offmap_vr/om_ships/geckos.dm b/maps/offmap_vr/om_ships/geckos.dm index adc7545e8d..dd24fe4e20 100644 --- a/maps/offmap_vr/om_ships/geckos.dm +++ b/maps/offmap_vr/om_ships/geckos.dm @@ -146,34 +146,31 @@ // The 'ship' /obj/effect/overmap/visitable/ship/landable/gecko_sh - scanner_name = "Gecko-class Transport" + name = "Gecko-class Transport" scanner_desc = @{"[i]Registration[/i]: ITV Sticky Fingers [i]Class[/i]: Medium Shuttle [i]Transponder[/i]: Transmitting (CIV), non-hostile [b]Notice[/b]: Medium personnel transport vessel"} - color = "#3366FF" vessel_mass = 6500 vessel_size = SHIP_SIZE_LARGE shuttle = "Gecko Stationhopper" /obj/effect/overmap/visitable/ship/landable/gecko_cr - scanner_name = "Gecko-class Transport" + name = "Gecko-class Transport" scanner_desc = @{"[i]Registration[/i]: ITV Sticky Business [i]Class[/i]: Medium Shuttle [i]Transponder[/i]: Transmitting (CIV), non-hostile [b]Notice[/b]: Medium cargo transport vessel"} - color = "#3366FF" vessel_mass = 6500 vessel_size = SHIP_SIZE_LARGE shuttle = "Gecko Cargo Hauler" /obj/effect/overmap/visitable/ship/landable/gecko_cr_wreck - scanner_name = "Wrecked Gecko-class Transport" + name = "Wrecked Gecko-class Transport" scanner_desc = @{"[i]Registration[/i]: ITV Sticky Situation [i]Class[/i]: Medium Shuttle [i]Transponder[/i]: Weakly transmitting (CIV), non-hostile [b]Notice[/b]: Medium cargo transport vessel, significant damage inflicted"} - color = "#3366FF" vessel_mass = 6500 vessel_size = SHIP_SIZE_LARGE shuttle = "Wrecked Gecko Cargo Hauler" \ No newline at end of file diff --git a/maps/offmap_vr/om_ships/generic_shuttle.dm b/maps/offmap_vr/om_ships/generic_shuttle.dm index 0c5f894b29..65cfb4b4cc 100644 --- a/maps/offmap_vr/om_ships/generic_shuttle.dm +++ b/maps/offmap_vr/om_ships/generic_shuttle.dm @@ -45,7 +45,7 @@ // The 'ship' /obj/effect/overmap/visitable/ship/landable/generic_shuttle - scanner_name = "Private Vessel" + name = "Private Vessel" scanner_desc = @{"[i]Registration[/i]: PRIVATE [i]Class[/i]: Small Shuttle [i]Transponder[/i]: Transmitting (CIV), non-hostile diff --git a/maps/offmap_vr/om_ships/hybridshuttle.dm b/maps/offmap_vr/om_ships/hybridshuttle.dm index 2194ea3416..c35c9af290 100644 --- a/maps/offmap_vr/om_ships/hybridshuttle.dm +++ b/maps/offmap_vr/om_ships/hybridshuttle.dm @@ -41,12 +41,12 @@ // The 'ship' /obj/effect/overmap/visitable/ship/landable/hybridshuttle - scanner_name = "XN-29 Prototype Shuttle" + name = "XN-29 Prototype Shuttle" + icon_state = "unkn_o" scanner_desc = @{"[i]Registration[/i]: UNKNOWN [i]Class[/i]: Shuttle [i]Transponder[/i]: Transmitting (MIL), NanoTrasen [b]Notice[/b]: Experimental vessel"} - color = "#00aaff" //Bluey vessel_mass = 3000 vessel_size = SHIP_SIZE_SMALL shuttle = "XN-29 Prototype Shuttle" \ No newline at end of file diff --git a/maps/offmap_vr/om_ships/itglight.dm b/maps/offmap_vr/om_ships/itglight.dm index f9a31db30d..9671a4aecd 100644 --- a/maps/offmap_vr/om_ships/itglight.dm +++ b/maps/offmap_vr/om_ships/itglight.dm @@ -85,14 +85,13 @@ // The 'Dauntless' /obj/effect/overmap/visitable/ship/itglight - name = "spacecraft" + name = "ITG Dauntless" + icon_state = "serb_destroyer_g" desc = "Spacefaring vessel. Friendly IFF detected." - scanner_name = "ITG Dauntless" scanner_desc = @{"[i]Registration[/i]: ITG Dauntless [i]Class[/i]: Small Cargo Frigate (Low Displacement) [i]Transponder[/i]: Transmitting (CIV), non-hostile" [b]Notice[/b]: May carry passengers"} - color = "#d98c1a" //orng vessel_mass = 8000 vessel_size = SHIP_SIZE_SMALL initial_generic_waypoints = list("itglight_fore", "itglight_aft", "itglight_port", "itglight_starboard", "itglight_port_dock", "itglight_starboard_dock") diff --git a/maps/offmap_vr/om_ships/mackerels.dm b/maps/offmap_vr/om_ships/mackerels.dm index 7a1aeb8a83..f18d04e526 100644 --- a/maps/offmap_vr/om_ships/mackerels.dm +++ b/maps/offmap_vr/om_ships/mackerels.dm @@ -191,56 +191,51 @@ // The 'ship' /obj/effect/overmap/visitable/ship/landable/mackerel_sh - scanner_name = "Mackerel-class Transport" + name = "Mackerel-class Transport" scanner_desc = @{"[i]Registration[/i]: ITV Phish Phlake [i]Class[/i]: Small Shuttle [i]Transponder[/i]: Transmitting (CIV), non-hostile [b]Notice[/b]: Small private vessel"} - color = "#3366FF" vessel_mass = 1000 vessel_size = SHIP_SIZE_TINY shuttle = "Mackerel Stationhopper" /obj/effect/overmap/visitable/ship/landable/mackerel_lc - scanner_name = "Mackerel-class Transport" + name = "Mackerel-class Transport" scanner_desc = @{"[i]Registration[/i]: ITV Phishy Business [i]Class[/i]: Small Shuttle [i]Transponder[/i]: Transmitting (CIV), non-hostile [b]Notice[/b]: Small private vessel"} - color = "#0099FF" vessel_mass = 1000 vessel_size = SHIP_SIZE_TINY shuttle = "Mackerel Light Cargo" /obj/effect/overmap/visitable/ship/landable/mackerel_hc - scanner_name = "Mackerel-class Transport" + name = "Mackerel-class Transport" scanner_desc = @{"[i]Registration[/i]: ITV Phish Pharma [i]Class[/i]: Small Shuttle [i]Transponder[/i]: Transmitting (CIV), non-hostile [b]Notice[/b]: Small private vessel"} - color = "#33CCCC" vessel_mass = 1500 vessel_size = SHIP_SIZE_TINY shuttle = "Mackerel Heavy Cargo" /obj/effect/overmap/visitable/ship/landable/mackerel_hc_skel - scanner_name = "Mackerel-class Transport (Spartanized)" + name = "Mackerel-class Transport (Spartanized)" scanner_desc = @{"[i]Registration[/i]: ITV Phish Pond [i]Class[/i]: Small Shuttle [i]Transponder[/i]: Transmitting (CIV), non-hostile [b]Notice[/b]: Small private vessel"} - color = "#33CCCC" vessel_mass = 1500 vessel_size = SHIP_SIZE_TINY shuttle = "Mackerel Heavy Cargo Spartan" /obj/effect/overmap/visitable/ship/landable/mackerel_lc_wreck - scanner_name = "Wrecked Mackerel-class Transport" + name = "Wrecked Mackerel-class Transport" scanner_desc = @{"[i]Registration[/i]: ITV Phish Phood [i]Class[/i]: Small Shuttle Wreck [i]Transponder[/i]: Not Transmitting [b]Notice[/b]: Critical Damage Sustained"} - color = "#0099FF" vessel_mass = 1000 vessel_size = SHIP_SIZE_TINY shuttle = "Mackerel Light Cargo II" diff --git a/maps/offmap_vr/om_ships/mercship.dm b/maps/offmap_vr/om_ships/mercship.dm index e4bc8477d1..3229dbb3ff 100644 --- a/maps/offmap_vr/om_ships/mercship.dm +++ b/maps/offmap_vr/om_ships/mercship.dm @@ -64,12 +64,12 @@ // The 'ship' /obj/effect/overmap/visitable/ship/mercship name = "Unknown Vessel" + icon_state = "moe_destroyer_r" desc = "Spacefaring vessel. No IFF detected." scanner_desc = @{"[i]Registration[/i]: UNKNOWN [i]Class[/i]: UNKNOWN [i]Transponder[/i]: None Detected [b]Notice[/b]: Unregistered vessel"} - color = "#f23000" //Red vessel_mass = 8000 vessel_size = SHIP_SIZE_SMALL initial_generic_waypoints = list("carrier_fore", "carrier_aft", "carrier_port", "carrier_starboard", "base_dock") diff --git a/maps/offmap_vr/om_ships/salamander.dm b/maps/offmap_vr/om_ships/salamander.dm index 8dbd5d53c3..a94780d12e 100644 --- a/maps/offmap_vr/om_ships/salamander.dm +++ b/maps/offmap_vr/om_ships/salamander.dm @@ -148,12 +148,11 @@ // The 'ship' /obj/effect/overmap/visitable/ship/landable/salamander - scanner_name = "Salamander-class Corvette" + name = "Salamander-class Corvette" scanner_desc = @{"[i]Registration[/i]: ITV Independence [i]Class[/i]: Corvette [i]Transponder[/i]: Transmitting (CIV), non-hostile [b]Notice[/b]: Multirole independent vessel"} - color = "#00AA00" //green, because money vessel_mass = 4500 vessel_size = SHIP_SIZE_LARGE fore_dir = EAST @@ -179,12 +178,11 @@ // The 'ship' /obj/effect/overmap/visitable/ship/landable/salamander_wreck - scanner_name = "Wrecked Salamander-class Corvette" + name = "Wrecked Salamander-class Corvette" scanner_desc = @{"[i]Registration[/i]: ITV Unity [i]Class[/i]: Corvette [i]Transponder[/i]: Not Transmitting [b]Notice[/b]: Damage to hull is consistent with intentional scuttling procedures, no distress call logged"} - color = "#008800" //green, because money vessel_mass = 4500 vessel_size = SHIP_SIZE_LARGE fore_dir = EAST diff --git a/maps/offmap_vr/om_ships/screebarge.dm b/maps/offmap_vr/om_ships/screebarge.dm index 317f34396b..08d4390269 100644 --- a/maps/offmap_vr/om_ships/screebarge.dm +++ b/maps/offmap_vr/om_ships/screebarge.dm @@ -48,7 +48,6 @@ /obj/effect/overmap/visitable/ship/landable/screebarge name = "Battle Barge" desc = "Some sort of makeshift battle barge. Appears to be armed." - color = "#95c633" //Greenish vessel_mass = 3000 vessel_size = SHIP_SIZE_SMALL shuttle = "Battle Barge" \ No newline at end of file diff --git a/maps/offmap_vr/om_ships/shelter_5.dm b/maps/offmap_vr/om_ships/shelter_5.dm index 28dd871bbf..e23a6814c1 100644 --- a/maps/offmap_vr/om_ships/shelter_5.dm +++ b/maps/offmap_vr/om_ships/shelter_5.dm @@ -40,7 +40,7 @@ // The 'ship' /obj/effect/overmap/visitable/ship/landable/escapepod - scanner_name = "Escape Pod" + name = "Escape Pod" scanner_desc = @{"[i]Registration[/i]: NOT AVAILABLE [i]Class[/i]: Escape Pod [i]Transponder[/i]: Transmitting (CIV), non-hostile diff --git a/maps/offmap_vr/om_ships/shelter_6.dm b/maps/offmap_vr/om_ships/shelter_6.dm index d6f5f78063..40ff4cdaeb 100644 --- a/maps/offmap_vr/om_ships/shelter_6.dm +++ b/maps/offmap_vr/om_ships/shelter_6.dm @@ -42,12 +42,11 @@ // The 'ship' /obj/effect/overmap/visitable/ship/landable/tabiranth - scanner_name = "Experimental Dropship" + name = "Experimental Dropship" scanner_desc = @{"[i]Registration[/i]: UNKNOWN [i]Class[/i]: Assault Dropship [i]Transponder[/i]: Transmitting (MIL), NanoTrasen [b]Notice[/b]: Experimental vessel"} - color = "#8800ff" //Indigo vessel_mass = 3000 vessel_size = SHIP_SIZE_SMALL shuttle = "NDV Tabiranth" diff --git a/maps/offmap_vr/om_ships/vespa.dm b/maps/offmap_vr/om_ships/vespa.dm index 04a680abb9..b6a2b1b963 100644 --- a/maps/offmap_vr/om_ships/vespa.dm +++ b/maps/offmap_vr/om_ships/vespa.dm @@ -120,12 +120,11 @@ // The 'ship' /obj/effect/overmap/visitable/ship/vespa desc = "A spacefaring vessel, of Hephaestus design." - scanner_name = "HPV Vespa" + name = "HPV Vespa" scanner_desc = @{"[i]Registration[/i]: HPV Vespa [i]Class[/i]: Cruiser [i]Transponder[/i]: Transmitting (CIV), Hephaestus Industries [b]Notice[/b]: Corporate vessel"} - color = "#4cad73" //Green vessel_mass = 10000 vessel_size = SHIP_SIZE_LARGE initial_generic_waypoints = list("hpv_port", "hpv_starboard", "hpv_hangar") diff --git a/maps/offmap_vr/talon/talon_v2.dm b/maps/offmap_vr/talon/talon_v2.dm index 4e376b8203..d914fce7a0 100644 --- a/maps/offmap_vr/talon/talon_v2.dm +++ b/maps/offmap_vr/talon/talon_v2.dm @@ -38,18 +38,18 @@ var/global/list/latejoin_talon = list() /////////////////////////// //// The Talon /obj/effect/overmap/visitable/ship/talon - scanner_name = "ITV Talon" + name = "ITV Talon" + icon_state = "talon_v2" scanner_desc = @{"[i]Registration[/i]: ITV Talon [i]Class[/i]: Frigate [i]Transponder[/i]: Transmitting (CIV) [b]Notice[/b]: Independent trader vessel"} - color = "#aacccc" vessel_mass = 10000 vessel_size = SHIP_SIZE_LARGE initial_generic_waypoints = list("talon_v2_near_fore_port", "talon_v2_near_fore_star", "talon_v2_near_aft_port", "talon_v2_near_aft_star", "talon_v2_wing_port", "talon_v2_wing_star") initial_restricted_waypoints = list("Talon's Shuttle" = list("offmap_spawn_talonboat")) - skybox_icon = 'talon.dmi' //Art by Gwyvern, distributed under Creative Commons license + skybox_icon = 'talon.dmi' skybox_icon_state = "skybox" skybox_pixel_x = 270 skybox_pixel_y = 60 diff --git a/maps/southern_cross/overmap/sectors.dm b/maps/southern_cross/overmap/sectors.dm index 36b074235c..c198ecc31c 100644 --- a/maps/southern_cross/overmap/sectors.dm +++ b/maps/southern_cross/overmap/sectors.dm @@ -11,6 +11,7 @@ mountain_color = "#735555" ice_color = "FFFFFF" icecaps = "icecaps" + icon_state = "frozen" /obj/effect/overmap/visitable/planet/Sif/Initialize() atmosphere = new(CELL_VOLUME) diff --git a/maps/submaps/admin_use_vr/ert.dm b/maps/submaps/admin_use_vr/ert.dm index e46164f94c..bfa9a49c5c 100644 --- a/maps/submaps/admin_use_vr/ert.dm +++ b/maps/submaps/admin_use_vr/ert.dm @@ -110,12 +110,12 @@ // The 'ship' /obj/effect/overmap/visitable/ship/ert_ship name = "NRV Von Braun" + icon_state = "oberth_destroyer_g" desc = "Spacefaring vessel. Broadcasting Corporate Emergency Responder IFF." scanner_desc = @{"[i]Registration[/i]: Nanotrasen RRV Von Braun [i]Class[/i]: [i]Kepler[/i]-class Frigate [i]Transponder[/i]: Broadcasting (ER-CORP) [b]Notice[/b]: Impeding or interfering with emergency response vessels is a breach of numerous interstellar codes. Approach with caution."} - color = "#9999ff" //Blue vessel_mass = 8000 vessel_size = SHIP_SIZE_LARGE fore_dir = EAST diff --git a/maps/submaps/admin_use_vr/fun.dm b/maps/submaps/admin_use_vr/fun.dm index 62daa9c289..4544fb187c 100644 --- a/maps/submaps/admin_use_vr/fun.dm +++ b/maps/submaps/admin_use_vr/fun.dm @@ -197,9 +197,8 @@ // This is a stationary overmap sector, you can spawn it in any zlevel and it will pop onto the overmap to represent those zlevels. It always moves to 2,2 on the overmap and you can move it elsewhere. /obj/effect/overmap/visitable/admin_use - name = "space destination" + name = "REPLACE ME" desc = "Some space destination!" - scanner_name = "REPLACE ME" scanner_desc = @{"[i]Registration[/i]: REPLACE ME [i]Class[/i]: REPLACE ME [i]Transponder[/i]: REPLACE ME @@ -215,9 +214,8 @@ // This is the same, but makes a whole spaceship! /obj/effect/overmap/visitable/ship/admin_use - name = "spacecraft" + name = "REPLACE ME" desc = "Spacefaring vessel." - scanner_name = "REPLACE ME" scanner_desc = @{"[i]Registration[/i]: REPLACE ME [i]Class[/i]: REPLACE ME [i]Transponder[/i]: REPLACE ME diff --git a/maps/submaps/admin_use_vr/guttersite.dm b/maps/submaps/admin_use_vr/guttersite.dm index 3d99c8ef0b..24d745a554 100644 --- a/maps/submaps/admin_use_vr/guttersite.dm +++ b/maps/submaps/admin_use_vr/guttersite.dm @@ -6,9 +6,8 @@ scanner_desc = @{"[i]Transponder[/i]: Strong Comms Signal [b]Notice[/b]: WARNING! KEEP OUT! MEMBERS ONLY!"} icon = 'icons/obj/overmap_vr.dmi' - icon_state = "guttersite" + icon_state = "os_fortress_r" known = FALSE - color = "#ee3333" //Redish, so it stands out against the other debris-like icons initial_generic_waypoints = list("guttersite_lshuttle", "guttersite_sshuttle", "guttersite_mshuttle") // -- Objs -- // diff --git a/maps/submaps/admin_use_vr/mercship.dm b/maps/submaps/admin_use_vr/mercship.dm index 2f30d3e8ac..7d94300073 100644 --- a/maps/submaps/admin_use_vr/mercship.dm +++ b/maps/submaps/admin_use_vr/mercship.dm @@ -139,7 +139,6 @@ [i]Class[/i]: [i]Manta[/i]-class Cruiser [i]Transponder[/i]: Broadcasting (PMC) [b]Notice[/b]: SAARE are unlikely to tolerate civilian or corporate personnel interfering with their affairs. Approach with caution."} - color = "#333333" //TACTICAL BLACK vessel_mass = 8000 vessel_size = SHIP_SIZE_LARGE initial_generic_waypoints = list("manta_ship_near_fore", "manta_ship_near_aft", "manta_ship_near_port", "manta_ship_near_star", "manta_ship_port", "manta_ship_star", "manta_ship_base_dock", "omship_spawn_manta_lander") @@ -201,14 +200,12 @@ defer_initialisation = TRUE /obj/effect/overmap/visitable/ship/landable/manta_ship_boat - scanner_name = "SAARE Landing Craft" + name = "SAARE Landing Craft" desc = "Spacefaring vessel. Broadcasting Private Military Contractor IFF." scanner_desc = @{"[i]Registration[/i]: SAARE Mercenary Cruiser Typhon Four-Niner's Lander [i]Class[/i]: Unknown Shuttle-approximate [i]Transponder[/i]: Broadcasting (PMC) [b]Notice[/b]: SAARE are unlikely to tolerate civilian or corporate personnel interfering with their affairs. Approach with caution."} - color = "#3366FF" - color = "#333333" //TACTICAL BLACK vessel_mass = 500 vessel_size = SHIP_SIZE_TINY shuttle = "Boarding Craft" diff --git a/maps/submaps/depreciated_vr/talon.dm b/maps/submaps/depreciated_vr/talon.dm index cd7d227f91..3493a45ed0 100644 --- a/maps/submaps/depreciated_vr/talon.dm +++ b/maps/submaps/depreciated_vr/talon.dm @@ -38,12 +38,12 @@ var/global/list/latejoin_talon = list() /////////////////////////// //// The Talon /obj/effect/overmap/visitable/ship/talon - scanner_name = "ITV Talon" + name = "ITV Talon" + icon_state = "talon_v2" scanner_desc = @{"[i]Registration[/i]: ITV Talon [i]Class[/i]: Frigate [i]Transponder[/i]: Transmitting (CIV) [b]Notice[/b]: Independent trader vessel"} - color = "#aacccc" vessel_mass = 10000 vessel_size = SHIP_SIZE_LARGE initial_generic_waypoints = list("talon_fore", "talon_aft", "talon_port", "talon_starboard") diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm index a5ab946684..41d8074005 100644 --- a/maps/tether/tether_defines.dm +++ b/maps/tether/tether_defines.dm @@ -246,8 +246,7 @@ [i]Transponder[/i]: Transmitting (CIV), NanoTrasen IFF [b]Notice[/b]: NanoTrasen Base, authorized personnel only"} base = 1 - icon_state = "globe" - color = "#d35b5b" + icon_state = "reddwarf" initial_generic_waypoints = list( "tether_dockarm_d1a1", //Bottom left, "tether_dockarm_d1a2", //Top left, diff --git a/maps/tether/tether_shuttles.dm b/maps/tether/tether_shuttles.dm index e380c18003..0481ba9741 100644 --- a/maps/tether/tether_shuttles.dm +++ b/maps/tether/tether_shuttles.dm @@ -200,6 +200,7 @@ /obj/effect/overmap/visitable/ship/landable/excursion name = "Excursion Shuttle" desc = "The traditional Excursion Shuttle. NT Approved!" + icon_state = "htu_destroyer_g" vessel_mass = 8000 vessel_size = SHIP_SIZE_SMALL shuttle = "Excursion Shuttle" @@ -225,6 +226,7 @@ /obj/effect/overmap/visitable/ship/landable/tourbus name = "Tour Bus" desc = "A small 'space bus', if you will." + icon_state = "htu_frigate_g" vessel_mass = 2000 vessel_size = SHIP_SIZE_SMALL shuttle = "Tour Bus" @@ -250,6 +252,7 @@ /obj/effect/overmap/visitable/ship/landable/medivac name = "Medivac Shuttle" desc = "A medical evacuation shuttle." + icon_state = "htu_frigate_g" vessel_mass = 4000 vessel_size = SHIP_SIZE_SMALL shuttle = "Medivac Shuttle" @@ -275,6 +278,7 @@ /obj/effect/overmap/visitable/ship/landable/securiship name = "Securiship Shuttle" desc = "A security transport ship." + icon_state = "htu_frigate_g" vessel_mass = 4000 vessel_size = SHIP_SIZE_SMALL shuttle = "Securiship Shuttle"