Files
RoxyandGitHub 0d4938228f Fix CI Failures [IDB IGNORE] [MDB IGNORE] (#5126)
## 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
2026-01-15 00:59:34 -05:00

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