Horizon Shuttle Enhancements: Multiple Areas + Power + Layout Changes (#13691)

This commit is contained in:
WickedCybs
2022-05-08 18:03:34 +02:00
committed by GitHub
parent 1d125a73cc
commit d011f8428b
9 changed files with 1298 additions and 667 deletions
@@ -430,3 +430,14 @@
item_state = "folding_chair"
base_icon = "folding_chair"
origin_type = /obj/structure/bed/stool/chair/folding
//Maybe if you tried hard, you could sit on these too.
/obj/structure/bed/handrail
name = "handrail"
desc = "A railing that allows one to easily secure themselves via a series of straps and buckles."
icon = 'icons/obj/handrail.dmi'
icon_state = "handrail"
base_icon = "handrail"
buckle_dir = FALSE
buckle_lying = FALSE
can_dismantle = FALSE
+8
View File
@@ -86,6 +86,14 @@
cell_type = /obj/item/cell
req_access = list(access_captain)
/obj/machinery/power/apc/intrepid
cell_type = /obj/item/cell/high
req_one_access = list(access_intrepid,access_engine_equip)
/obj/machinery/power/apc/mining_pod
cell_type = /obj/item/cell/high
req_one_access = list(access_mining,access_engine_equip)
// Construction site APC, starts turned off
/obj/machinery/power/apc/high/inactive
cell_type = /obj/item/cell/high
+11
View File
@@ -70,6 +70,17 @@
output_level = 500000
charge =1.5e+7
// The Horizon's shuttles want something with decent capacity to sustain themselves and enough transmission to meet their energy needs.
/obj/machinery/power/smes/buildable/horizon_shuttle/Initialize()
. = ..()
component_parts += new /obj/item/smes_coil/super_io(src)
component_parts += new /obj/item/smes_coil/super_capacity(src)
input_attempt = TRUE
output_attempt = TRUE
input_level = 1300000
output_level = 1300000
charge = 5.55e+007
// END SMES SUBTYPES
// SMES itself
+43
View File
@@ -0,0 +1,43 @@
################################
# Example Changelog File
#
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
#
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
# When it is, any changes listed below will disappear.
#
# Valid Prefixes:
# bugfix
# wip (For works in progress)
# tweak
# soundadd
# sounddel
# rscadd (general adding of nice things)
# rscdel (general deleting of nice things)
# imageadd
# imagedel
# maptweak
# spellcheck (typo fixes)
# experiment
# balance
# admin
# backend
# security
# refactor
#################################
# Your name.
author: WickedCybs
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- maptweak: "The Intrepid has been remapped to lose its rightmost airlock. In exchange the little engine nacelle has been expanded into a full fledged room that will supply both ship thrusters. It also includes a power source and the scrubbers canister. The rest of the Intrepid has had minor tweaks for ease of use. such as handrails within the airlocks, additional scrubbers and air vents, a medical sleeper and a bit more."
- balance: "The Intrepid and Mining Pod now require power to stay operational. They have SMES's that are topped with power and can get more just by landing back at the Horizon, or via alternate means like a generator if it really comes to it!"
- rscadd: "Added handrails. This is a type of object you can buckle onto securely to avoid getting knocked into stuff due to acceleration. They're usually found in shuttle airlocks. Sprite is from Baystation."
Binary file not shown.

After

Width:  |  Height:  |  Size: 385 B

+1
View File
@@ -52,6 +52,7 @@
/area/shuttle/mining
name = "Mining Shuttle"
requires_power = TRUE
/area/shuttle/transport1
icon_state = "shuttle"
@@ -294,6 +294,20 @@
/area/shuttle/intrepid
name = "Intrepid"
icon_state = "intrepid"
requires_power = TRUE
/area/shuttle/intrepid/crew_compartment
name = "Intrepid Crew Compartment"
/area/shuttle/intrepid/cargo_bay
name = "Intrepid Cargo Bay"
/area/shuttle/intrepid/medical_compartment
name = "Intrepid Medical Compartment"
/area/shuttle/intrepid/engine_compartment
name = "Engine Compartment"
/area/shuttle/intrepid/atmos_compartment
name = "Atmos Compartment"
/area/shuttle/intrepid/cockpit
name = "Cockpit"
// Exterior
/area/horizonexterior
@@ -156,7 +156,7 @@
/datum/shuttle/autodock/overmap/intrepid
name = "Intrepid"
move_time = 20
shuttle_area = list(/area/shuttle/intrepid)
shuttle_area = list(/area/shuttle/intrepid/crew_compartment, /area/shuttle/intrepid/cargo_bay, /area/shuttle/intrepid/medical_compartment, /area/shuttle/intrepid/engine_compartment, /area/shuttle/intrepid/atmos_compartment, /area/shuttle/intrepid/cockpit)
dock_target = "intrepid_shuttle"
current_location = "nav_hangar_intrepid"
landmark_transition = "nav_transit_intrepid"
File diff suppressed because it is too large Load Diff