mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-15 20:22:07 +00:00
* increase roundstart power available to SM rooms (#66393) Swap the normal APC cell for a high grade one for all maps SM rooms to allow more time to setup the SM * [NO GBP]increase roundstart power available to SM rooms Co-authored-by: Ghilker <42839747+Ghilker@users.noreply.github.com>
27 lines
900 B
Plaintext
27 lines
900 B
Plaintext
/obj/machinery/power/apc/unlocked
|
|
locked = FALSE
|
|
|
|
/obj/machinery/power/apc/syndicate //general syndicate access
|
|
req_access = list(ACCESS_SYNDICATE)
|
|
|
|
/obj/machinery/power/apc/away //general away mission access
|
|
req_access = list(ACCESS_AWAY_GENERAL)
|
|
|
|
/obj/machinery/power/apc/highcap/five_k
|
|
cell_type = /obj/item/stock_parts/cell/upgraded/plus
|
|
|
|
/obj/machinery/power/apc/highcap/ten_k
|
|
cell_type = /obj/item/stock_parts/cell/high
|
|
|
|
/obj/machinery/power/apc/auto_name
|
|
auto_name = TRUE
|
|
|
|
/obj/machinery/power/apc/sm_apc
|
|
auto_name = TRUE
|
|
cell_type = /obj/item/stock_parts/cell/high
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/power/apc/auto_name, APC_PIXEL_OFFSET)
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/power/apc/five_k, APC_PIXEL_OFFSET)
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/power/apc/ten_k, APC_PIXEL_OFFSET)
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/power/apc/sm_apc, APC_PIXEL_OFFSET)
|