mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
22 lines
918 B
Plaintext
22 lines
918 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/weapon/reagent_containers/glass/beaker/noreact
|
|
sort_string = "IAAAA"
|
|
|
|
/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/weapon/reagent_containers/glass/beaker/bluespace
|
|
sort_string = "IAAAB" |