mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
25 lines
1009 B
Plaintext
25 lines
1009 B
Plaintext
// Various beakers
|
|
|
|
/datum/design/item/beaker/AssembleDesignName()
|
|
name = "Beaker prototype ([item_name])"
|
|
|
|
/datum/design/item/beaker/noreact
|
|
name = "cryostasis"
|
|
desc = "A cryostasis beaker that allows for chemical storage without reactions. Can hold up to 50 units."
|
|
id = "splitbeaker"
|
|
req_tech = list(TECH_MATERIAL = 2)
|
|
materials = list(MAT_STEEL = 3000)
|
|
build_path = /obj/item/reagent_containers/glass/beaker/noreact
|
|
sort_string = "IAAAA"
|
|
department = LATHE_ALL | LATHE_MEDICAL // CHOMPAdd
|
|
|
|
/datum/design/item/beaker/bluespace
|
|
name = TECH_BLUESPACE
|
|
desc = "A bluespace beaker, powered by experimental bluespace technology and Element Cuban combined with the Compound Pete. Can hold up to 300 units."
|
|
id = "bluespacebeaker"
|
|
req_tech = list(TECH_BLUESPACE = 2, TECH_MATERIAL = 6)
|
|
materials = list(MAT_STEEL = 3000, MAT_PHORON = 3000, MAT_DIAMOND = 500)
|
|
build_path = /obj/item/reagent_containers/glass/beaker/bluespace
|
|
sort_string = "IAAAB"
|
|
department = LATHE_ALL | LATHE_MEDICAL // CHOMPAdd
|