mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
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:
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user