mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-21 12:56:10 +01:00
bfb076eea5
Adds 3 Crescent Expanse regions due to how large a region it is: - Crescent Expanse (West): Nralakk and Solarian heavy region. - Crescent Expanse (East): Coalition and Solarian heavy region. - Crescent Expanse (Uncharted): Deep Crescent expanse, independents and certain surveyors only. Also adds a Lemurian Sea (Uncharted) sector if we ever go there. Adds a `ccia_link` variable for sectors. Only usage is to block outbound faxes to Central Command. For uncharted sectors. EBS remains an option due to necessary CCIA functions (eg. scuttling), per Bear's wishes. Adds `low_supply` variants of most vending machines and dispensers. For later use, none mapped in. Removes the `TEMPLATE_FLAG_SPAWN_GUARANTEED` flag from the sensors array, because it meant it wasn't affected by `sectors_blacklist`. The sensors array isn't so important it needs to be in every sector anyway. Removes Burzsia from the `ALL_DANGEROUS_SECTORS` list, as the crisis has passed and humanitarian relief efforts completed. Adds the `ALL_EVENT_ONLY_SECTORS` for limited usage during event arcs/similar where canon odysseys or certain thirdparties may infringe upon an arc's narrative. Allows selective enabling/disabling of canon odysseys or third parties for said arcs. Not intended for liberal application. ### Asset Licenses The following assets that **have not** been created by myself are included in this PR: | Path | Original Author | License | | --- | --- | --- | sound/music/lobby/crescent_expanse/crescent_expanse_1.ogg | "Lüüü - Weedance" by Lüüü, Obtained from https://myprivateunderground.bandcamp.com/track/lu-u-u-weedance | CC BY-NC-SA 3.0. sound/music/lobby/crescent_expanse/crescent_expanse_2.ogg | "Little Bradley - Sunset Drive" by Little Bradley, Obtained from https://myprivateunderground.bandcamp.com/track/little-bradley-sunset-drive | CC BY-NC 3.0 sound/music/lobby/dangerous_space/dangerous_space_1.ogg | "You Can't Kill The Boogeyman" by Karl Casey. Obtained from https://karlcasey.bandcamp.com/track/you-can-t-kill-the-boogeyman | CC BY 3.0 sound/music/lobby/dangerous_space_2.ogg | "Prison Planet" by Karl Casey, Obtained from https://karlcasey.bandcamp.com/track/prison-planet | CC BY 3.0 sound/music/lobby/lights_edge/lights_edge_1.ogg | "Is Anyone Left?" by Karl Casey. Obtained from https://karlcasey.bandcamp.com/track/is-anyone-left | CC BY 3.0 sound/music/lobby/lights_edge/lights_edge_2.ogg | "Running From The Wendigo" by Karl Casey. Obtained from https://karlcasey.bandcamp.com/track/running-from-the-wendigo | CC BY 3.0
33 lines
2.3 KiB
Plaintext
33 lines
2.3 KiB
Plaintext
//Light's Edge sectors
|
||
/datum/space_sector/lights_edge//Uses the Weeping Stars attributes since it's neighboring and this is not exactly the void just yet
|
||
name = SECTOR_LIGHTS_EDGE
|
||
description = "An unusual region which is sparsely populated even in the 25th century, Light’s Edge was the furthest extent of the Alliance’s hegemonic era exploration efforts in the southeastern Spur. Few attempts were made to colonize it prior to the Interstellar War and even fewer of these attempts were successful, with Assunzione being the most successful of all hegemonic era colonies in the region. Light’s Edge derives its name from its position next to Lemurian Sea, a vast and mostly uncharted region which is entirely devoid of stars. Both Light’s Edge and the Lemurian Sea are home to a variety of unusual stellar phenomena which have attracted widespread scientific interest."
|
||
skybox_icon = "weeping_stars"
|
||
starlight_color = "#615bff"
|
||
starlight_power = 1//slightly darker though for spooky factor
|
||
starlight_range = 2
|
||
|
||
lobby_tracks = list(
|
||
'sound/music/lobby/lights_edge/lights_edge_1.ogg',
|
||
'sound/music/lobby/lights_edge/lights_edge_2.ogg'
|
||
)
|
||
|
||
/datum/space_sector/lemurian_sea//The actual proposed area of void as written. Should be as dark as possible, due to no starlight
|
||
name = SECTOR_LEMURIAN_SEA
|
||
description = "The Lemurian Sea is an astrological curiosity which is entirely free of stars. This region is a relatively new discovery and classification, having only been officially broken off of Light’s Edge by most astrographical institutions following the rediscovery of Assunzione and limited exploration beyond its position on the border of what would become the Lemurian Sea. Most astrological charts advise avoiding the region as travelers are known to report a feeling of general uneasiness while passing through it and many vessels are known to have disappeared within the Sea. "
|
||
skybox_icon = "void"//its just black
|
||
possible_exoplanets = null//nothing should be here
|
||
starlight_color = "#000000"
|
||
starlight_power = 0
|
||
starlight_range = 0
|
||
|
||
lobby_tracks = list(
|
||
'sound/music/lobby/lights_edge/lights_edge_1.ogg',
|
||
'sound/music/lobby/lights_edge/lights_edge_2.ogg',
|
||
'sound/music/lobby/dangerous_space/dangerous_space_1.ogg'
|
||
)
|
||
|
||
/datum/space_sector/lemurian_sea/far
|
||
name = SECTOR_LEMURIAN_SEA_FAR
|
||
ccia_link = FALSE
|