mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 21:48:39 +01:00
## About The Pull Request - null all GAGS vars for brass wirecutters as it doesn't use GAGS - Repath `mothbomb.dmi` so it actually gets deployed with the server - Generate map icons - Fix 150+ crafting material parity failures - Fix airlock lights not working - Fix certain species missing eyes ## Why It's Good For The Game Don't like red X ## Proof Of Testing If this PR is green check then you Know
30 lines
1.4 KiB
Plaintext
30 lines
1.4 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"
|
|
construction_path_type = "spaceship"
|
|
merge_type = /obj/item/stack/sheet/spaceship
|
|
walltype = /turf/closed/wall/mineral/titanium/spaceship
|
|
mats_per_unit = list(/datum/material/titanium = SHEET_MATERIAL_AMOUNT)
|
|
|
|
/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
|
|
mats_per_unit = list(/datum/material/alloy/plastitaniumglass = SHEET_MATERIAL_AMOUNT)
|
|
|
|
GLOBAL_LIST_INIT(spaceshipglass_recipes, list(
|
|
new/datum/stack_recipe("spaceship window", /obj/structure/window/reinforced/shuttle/spaceship/unanchored, 2, time = 4 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ON_SOLID_GROUND | CRAFT_IS_FULLTILE, category = CAT_WINDOWS), \
|
|
))
|
|
|
|
/obj/item/stack/sheet/spaceshipglass/get_main_recipes()
|
|
. = ..()
|
|
. += GLOB.spaceshipglass_recipes
|