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, + )