From 2df7e9ffe7010c348505a0ea34289ae5e0feed55 Mon Sep 17 00:00:00 2001 From: Aliceee2ch <160794176+Aliceee2ch@users.noreply.github.com> Date: Sun, 7 Sep 2025 10:43:51 +0300 Subject: [PATCH] You can eject more materials from autolathe now (#92818) ## About The Pull Request yeah ## Changelog :cl: fix: Fixed oversight from "Material tab for the autolathe" PR. You can now eject BS crystals, allien alloy and mythril from autolathe. /:cl: --- .../research/designs/autolathe/materials.dm | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/code/modules/research/designs/autolathe/materials.dm b/code/modules/research/designs/autolathe/materials.dm index cc07a59ea7e..8fdc01234ce 100644 --- a/code/modules/research/designs/autolathe/materials.dm +++ b/code/modules/research/designs/autolathe/materials.dm @@ -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, + )