mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-24 00:21:52 +00:00
* Makes the Bitrunning Den area a cargo subtype (#79907) ## About The Pull Request Converts the bitrunning areas from a station area subtype to a cargo area subtype. `/area/station/bitrunning -> /area/station/cargo/bitrunning` `/area/station/bitrunning/den -> /area/station/cargo/bitrunning/den` This includes an updatepaths script. Neat! ## Why It's Good For The Game It's a cargo role, and it's always located within cargo. I think it's a cargo area. Unity for _all_ jobs under the great Cargonian umbrella! ## Changelog 🆑 Rhials code: Bitrunning/Bitrunning Den areas are now cargo area subtypes, rather than station area subtypes. /🆑 * Makes the Bitrunning Den area a cargo subtype * UpdatePaths --------- Co-authored-by: Rhials <28870487+Rhials@users.noreply.github.com> Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com>
52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
/// Station side
|
|
|
|
/area/station/cargo/bitrunning
|
|
name = "Bitrunning"
|
|
|
|
/area/station/cargo/bitrunning/den
|
|
name = "Bitrunning Den"
|
|
desc = "Office of bitrunners, houses their equipment."
|
|
icon_state = "bit_den"
|
|
|
|
/// VDOM
|
|
|
|
/area/virtual_domain
|
|
name = "Virtual Domain Ruins"
|
|
icon_state = "bit_ruin"
|
|
icon = 'icons/area/areas_station.dmi'
|
|
area_flags = UNIQUE_AREA | NOTELEPORT | ABDUCTOR_PROOF | EVENT_PROTECTED | HIDDEN_AREA
|
|
has_gravity = STANDARD_GRAVITY
|
|
requires_power = FALSE
|
|
|
|
/area/virtual_domain/fullbright
|
|
static_lighting = FALSE
|
|
base_lighting_alpha = 255
|
|
|
|
/// Safehouse
|
|
|
|
/area/virtual_domain/safehouse
|
|
name = "Virtual Domain Safehouse"
|
|
area_flags = UNIQUE_AREA | NOTELEPORT | ABDUCTOR_PROOF | EVENT_PROTECTED
|
|
icon_state = "bit_safe"
|
|
requires_power = FALSE
|
|
sound_environment = SOUND_ENVIRONMENT_ROOM
|
|
|
|
/// Custom subtypes
|
|
|
|
/area/lavaland/surface/outdoors/virtual_domain
|
|
name = "Virtual Domain Lava Ruins"
|
|
icon_state = "bit_ruin"
|
|
area_flags = UNIQUE_AREA | NOTELEPORT | ABDUCTOR_PROOF | EVENT_PROTECTED | HIDDEN_AREA
|
|
|
|
/area/icemoon/underground/explored/virtual_domain
|
|
name = "Virtual Domain Ice Ruins"
|
|
icon_state = "bit_ice"
|
|
area_flags = UNIQUE_AREA | NOTELEPORT | ABDUCTOR_PROOF | EVENT_PROTECTED | HIDDEN_AREA
|
|
|
|
/area/ruin/space/has_grav/powered/virtual_domain
|
|
name = "Virtual Domain Space Ruins"
|
|
icon = 'icons/area/areas_station.dmi'
|
|
icon_state = "bit_space"
|
|
area_flags = UNIQUE_AREA | NOTELEPORT | ABDUCTOR_PROOF | EVENT_PROTECTED | HIDDEN_AREA
|
|
|