mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +00:00
14 lines
384 B
Plaintext
14 lines
384 B
Plaintext
/datum/design/circuit
|
|
build_type = IMPRINTER
|
|
req_tech = list(TECH_DATA = 2)
|
|
materials = list(MATERIAL_GLASS = 2000)
|
|
chemicals = list("sacid" = 20)
|
|
design_order = 0
|
|
|
|
/datum/design/circuit/AssembleDesignName()
|
|
..()
|
|
name = "Circuit Design ([item_name])"
|
|
|
|
/datum/design/circuit/AssembleDesignDesc()
|
|
if(!desc)
|
|
desc = "Allows for the construction of \a [item_name] circuit board." |