Gives engi/medical borgs an abductor tool upgrade from the exosuit fabricator (#14341)

* Gives engi/med  borgs abductor upgrades

* Removes unneeded line

* Henks and Aquilars suggestion

Co-authored-by: Qwertytoforty <qwertytoforty@gmail.com>
This commit is contained in:
Qwertytoforty
2020-09-25 16:13:26 -04:00
committed by GitHub
parent c21cfa1a09
commit fbb34fe482
3 changed files with 97 additions and 1 deletions
@@ -74,7 +74,7 @@
var/list/temp_list = modules
modules = list()
for(var/obj/O in temp_list)
if(O)
if(!QDELETED(O)) //so items getting deleted don't stay in module list and haunt you
modules += O
/obj/item/robot_module/proc/add_languages(mob/living/silicon/robot/R)
@@ -1081,6 +1081,26 @@
construction_time = 120
category = list("Cyborg Upgrade Modules")
/datum/design/borg_upgrade_abductor_engi
name = "Cyborg Upgrade (Abdcutor Engineering Equipment)"
id = "borg_upgade_abductor_engi"
build_type = MECHFAB
build_path = /obj/item/borg/upgrade/abductor_engi
req_tech = list("engineering" = 7, "materials" = 7, "abductor" = 4)
materials = list(MAT_METAL = 25000, MAT_SILVER = 12500, MAT_PLASMA = 5000, MAT_TITANIUM = 10000, MAT_DIAMOND = 10000) //Base abductor engineering tools * 4
construction_time = 120
category = list("Cyborg Upgrade Modules")
/datum/design/borg_upgrade_abductor_medi
name = "Cyborg Upgrade (Abdcutor Medical Equipment)"
id = "borg_upgade_abductor_medi"
build_type = MECHFAB
build_path = /obj/item/borg/upgrade/abductor_medi
req_tech = list("biotech" = 7, "materials" = 7, "abductor" = 4)
materials = list(MAT_METAL = 18000, MAT_GLASS = 1500, MAT_SILVER = 13000, MAT_GOLD = 1000, MAT_PLASMA = 4000, MAT_TITANIUM = 12000, MAT_DIAMOND = 1000) //Base abductor engineering tools *8 + IMS cost
construction_time = 120
category = list("Cyborg Upgrade Modules")
/datum/design/borg_upgrade_lavaproof
name = "Cyborg Upgrade (Lavaproof Chassis)"
id = "borg_upgrade_lavaproof"