Adds Quicksilver to Triumph Central Command (#6084)

<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

1. **Adds Quicksilver to Triumph Central Command.**

## Why It's Good For The Game

1. _I have been going CRAZY over the awful specops shuttle still being
used on the Triumph CentCom branch. This copies over the Quicksilver I
made for the Marksman. The Marksman fleet now roams around the map._

## Changelog

<!-- If your PR modifies aspects of the game that can be concretely
observed by players or admins you should add a changelog. If your change
does NOT meet this description, remove this section. Be sure to properly
mark your PRs to prevent unnecessary GBP loss. You can read up on GBP
and it's effects on PRs in the tgstation guides for contributors. Please
note that maintainers freely reserve the right to remove and add tags
should they deem it appropriate. You can attempt to finagle the system
all you want, but it's best to shoot for clear communication right off
the bat. -->

🆑
add: Adds Quicksilver to Triumph CentCom.
/🆑

<!-- Both 🆑's are required for the changelog to work! You can put
your name to the right of the first 🆑 if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
This commit is contained in:
Captain277
2023-10-20 11:21:01 -07:00
committed by GitHub
parent 000b60254c
commit 8e759dc8fa
8 changed files with 2006 additions and 1548 deletions
+17 -3
View File
@@ -1,4 +1,4 @@
//Overmap Controller
//Atlas Overmap Controller
/obj/overmap/entity/visitable/sector/centcom
name = "NTS Demeter"
desc = "The only NanoTrasen-owned orbital body in Lythios. The NTS Demeter was constructed via prefab by Nanotrasen and is used as a midpoint for sorting cargo, transferring crew to the NSB Atlas, as homes for local employees in the residential areas, and as orbital oversight for early threat detection. Very few Central Command Officers are present here at all times, and even fewer are the defensive capabilities that are reserved primarily for the inhabitants."
@@ -33,6 +33,20 @@
start_y = pick(8, 9, 11, 12)
*/
/obj/overmap/entity/visitable/sector/centcom_triumph
name = "NDV Marksman"
desc = "The NDV Marksman is a NanoTrasen supercarrier that serves as the flagship for the eponymous Marksman Fleet."
scanner_desc = @{"[i]Information[/i]: The NDV Marksman is a NanoTrasen supercarrier that serves as the flagship for the eponymous Marksman Fleet."}
in_space = 1
known = TRUE
icon = 'icons/modules/overmap/tiled.dmi'
icon_state = "fleet"
color = "#007396"
initial_restricted_waypoints = list(
"NDV Quicksilver" = list("specops_hangar")
)
/obj/landmark/map_data/centcom
height = 1
@@ -40,10 +54,10 @@
// EXCLUSIVE NAV POINT FOR DOCKING INSIDE (ERT SHUTTLE ONLY)
/obj/effect/shuttle_landmark/specops/hangar
name = "NTS Demeter Hangar"
name = "NT Special Operations Hangar"
landmark_tag = "specops_hangar"
docking_controller = "specops_hangar_dock"
base_turf = /turf/simulated/floor/reinforced
base_turf = /turf/simulated/floor/tiled/techfloor/grid
base_area = /area/centcom/specops/dock
//ERT Cryo
@@ -22,5 +22,6 @@
"Civilian Transport" = list("triumph_civvie_home"),
"Dart EMT Shuttle" = list("triumph_emt_dock"),
"Beruang Trade Ship" = list("triumph_annex_dock"),
"Mining Shuttle" = list("triumph_mining_port")
"Mining Shuttle" = list("triumph_mining_port"),
"NDV Quicksilver" = list("triumph_specops_dock")
)