mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 10:11:09 +00:00
* EFT * E * EEE * E * INTO TO ORBIT * I hate this but I'm going to ignore it. * Seriously, fuck this. * Update CentCom_skyrat_z2.dmm * Update tgstation.dme * oops * Update positronic_alert_console.dm * E
28 lines
1.2 KiB
Plaintext
28 lines
1.2 KiB
Plaintext
/obj/item/stack/sheet/spaceship
|
|
name = "spaceship plating"
|
|
desc = "A metal sheet made out of a titanium alloy, rivited for use in spaceship walls."
|
|
icon = 'modular_skyrat/modules/mapping/icons/unique/spaceships/shipstacks.dmi'
|
|
icon_state = "sheet-spaceship"
|
|
inhand_icon_state = "sheet-plastitaniumglass"
|
|
singular_name = "spaceship plate"
|
|
sheettype = "spaceship"
|
|
merge_type = /obj/item/stack/sheet/spaceship
|
|
walltype = /turf/closed/wall/mineral/titanium/spaceship
|
|
|
|
/obj/item/stack/sheet/spaceshipglass
|
|
name = "spaceship window plates"
|
|
desc = "A glass sheet made out of a titanium-silicate alloy, rivited for use in spaceship window frames."
|
|
icon = 'modular_skyrat/modules/mapping/icons/unique/spaceships/shipstacks.dmi'
|
|
icon_state = "sheet-spaceshipglass"
|
|
inhand_icon_state = "sheet-plastitaniumglass"
|
|
singular_name = "spaceship window plate"
|
|
merge_type = /obj/item/stack/sheet/spaceshipglass
|
|
|
|
GLOBAL_LIST_INIT(spaceshipglass_recipes, list(
|
|
new/datum/stack_recipe("spaceship window", /obj/structure/window/reinforced/shuttle/spaceship/unanchored, 2, time = 4 SECONDS, on_floor = TRUE, window_checks = TRUE), \
|
|
))
|
|
|
|
/obj/item/stack/sheet/spaceshipglass/get_main_recipes()
|
|
. = ..()
|
|
. += GLOB.spaceshipglass_recipes
|