mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-02 13:32:32 +00:00
Converts reagents to use typepaths instead of IDs.
Centralises reagent spawning in a lot of places to use reagents_to_add instead of a variety of custom methods or initialise overrides.
14 lines
396 B
Plaintext
14 lines
396 B
Plaintext
/datum/design/circuit
|
|
build_type = IMPRINTER
|
|
req_tech = list(TECH_DATA = 2)
|
|
materials = list(MATERIAL_GLASS = 2000)
|
|
chemicals = list(/datum/reagent/acid = 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." |