You can eject more materials from autolathe now (#92818)

## About The Pull Request

yeah

## Changelog

🆑
fix: Fixed oversight from "Material tab for the autolathe" PR. You can
now eject BS crystals, allien alloy and mythril from autolathe.
/🆑
This commit is contained in:
Aliceee2ch
2025-09-07 09:43:51 +02:00
committed by GitHub
parent 7a5f7f1bee
commit 2df7e9ffe7
@@ -130,3 +130,36 @@
RND_CATEGORY_INITIAL,
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_MATERIALS,
)
/datum/design/bs_crystal
name = "Bluespace Crystal"
id = "bscrystal"
build_type = AUTOLATHE
materials = list(/datum/material/bluespace = SHEET_MATERIAL_AMOUNT)
build_path = /obj/item/stack/sheet/bluespace_crystal
category = list(
RND_CATEGORY_INITIAL,
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_MATERIALS,
)
/datum/design/mythril
name = "Mythril"
id = "mythril"
build_type = AUTOLATHE
materials = list(/datum/material/mythril = SHEET_MATERIAL_AMOUNT)
build_path = /obj/item/stack/sheet/mineral/mythril
category = list(
RND_CATEGORY_INITIAL,
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_MATERIALS,
)
/datum/design/alien_alloy
name = "Alien Alloy"
id = "allienalloy"
build_type = AUTOLATHE
materials = list(/datum/material/alloy/alien = SHEET_MATERIAL_AMOUNT)
build_path = /obj/item/stack/sheet/mineral/abductor
category = list(
RND_CATEGORY_INITIAL,
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_MATERIALS,
)