Life Support Enabled Operating Table - Final Update

* Adds the boards to RnD
* Fixes a few icon glitches
* Actually gives them icons.
This commit is contained in:
skull132
2015-11-04 16:33:20 +02:00
parent 376ac177e3
commit 7b8efc9115
5 changed files with 45 additions and 30 deletions
+17
View File
@@ -1295,6 +1295,23 @@ datum/design/mechfab
materials = list("$glass" = 2000, "sacid" = 20)
build_path = "/obj/item/weapon/circuitboard/mechfab"
datum/design/optable
name = "Operating Table"
desc = "The circuit board for an Operating Table"
id = "optable"
req_tech = list("programming" = 1, "biotech" = 2)
build_type = IMPRINTER
materials = list("$glass" = 2000, "sacid" = 20)
build_path = "/obj/item/weapon/circuitboard/optable"
datum/design/optable_lifesupport
name = "Life Support Enabled Operating Table"
desc = "The circuit board for an advanced Operating Table"
id = "adv_optable"
req_tech = list("programming" = 3, "biotech" = 4)
build_type = IMPRINTER
materials = list("$glass" = 2000, "sacid" = 20)
build_path = "/obj/item/weapon/circuitboard/optable_lifesupport"
/////////////////////////////////////////
////////////Power Stuff//////////////////