mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
Merge pull request #6619 from Shadow-Quill/Chem-Master-Building
Can now (de)construct chem masters
This commit is contained in:
@@ -8,3 +8,12 @@
|
|||||||
name = T_BOARD("AI core")
|
name = T_BOARD("AI core")
|
||||||
origin_tech = list(TECH_DATA = 4, TECH_BIO = 2)
|
origin_tech = list(TECH_DATA = 4, TECH_BIO = 2)
|
||||||
board_type = "other"
|
board_type = "other"
|
||||||
|
|
||||||
|
/obj/item/weapon/circuitboard/chem_master
|
||||||
|
name = T_BOARD("ChemMaster 3000")
|
||||||
|
build_path = /obj/machinery/chem_master
|
||||||
|
board_type = new /datum/frame/frame_types/machine
|
||||||
|
origin_tech = list(TECH_DATA = 3, TECH_MAGNET = 2)
|
||||||
|
req_components = list(
|
||||||
|
/obj/item/weapon/stock_parts/matter_bin = 2,
|
||||||
|
/obj/item/weapon/stock_parts/manipulator = 2)
|
||||||
@@ -14,6 +14,7 @@
|
|||||||
anchored = 1
|
anchored = 1
|
||||||
icon = 'icons/obj/chemical.dmi'
|
icon = 'icons/obj/chemical.dmi'
|
||||||
icon_state = "mixer0"
|
icon_state = "mixer0"
|
||||||
|
circuit = /obj/item/weapon/circuitboard/chem_master
|
||||||
use_power = 1
|
use_power = 1
|
||||||
idle_power_usage = 20
|
idle_power_usage = 20
|
||||||
var/beaker = null
|
var/beaker = null
|
||||||
@@ -72,6 +73,10 @@
|
|||||||
|
|
||||||
else if(default_unfasten_wrench(user, B, 20))
|
else if(default_unfasten_wrench(user, B, 20))
|
||||||
return
|
return
|
||||||
|
if(default_deconstruction_screwdriver(user, B))
|
||||||
|
return
|
||||||
|
if(default_deconstruction_crowbar(user, B))
|
||||||
|
return
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
@@ -102,6 +102,13 @@ CIRCUITS BELOW
|
|||||||
build_path = /obj/item/weapon/circuitboard/clonescanner
|
build_path = /obj/item/weapon/circuitboard/clonescanner
|
||||||
sort_string = "FAGAG"
|
sort_string = "FAGAG"
|
||||||
|
|
||||||
|
/datum/design/circuit/chem_master
|
||||||
|
name = "ChemMaster 3000"
|
||||||
|
id = "chemmaster"
|
||||||
|
req_tech = list(TECH_DATA = 3, TECH_MAGNET = 2)
|
||||||
|
build_path = /obj/item/weapon/circuitboard/chem_master
|
||||||
|
sort_string = "FAGAH"
|
||||||
|
|
||||||
/datum/design/circuit/crewconsole
|
/datum/design/circuit/crewconsole
|
||||||
name = "crew monitoring console"
|
name = "crew monitoring console"
|
||||||
id = "crewconsole"
|
id = "crewconsole"
|
||||||
|
|||||||
Reference in New Issue
Block a user