mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
The medical cyborg MK2 upgrade now also doubles the storage capacity for consumables. (#28755)
* Thing * Update robot_upgrades.dm * Update robot_upgrades.dm * Changes
This commit is contained in:
committed by
GitHub
parent
5bd6eeb5bd
commit
03466285fd
@@ -227,16 +227,23 @@
|
||||
R.SetEmagged()
|
||||
|
||||
//Medical Stuff
|
||||
/obj/item/borg/upgrade/medical
|
||||
/obj/item/borg/upgrade/medical_upgrade
|
||||
name = "medical cyborg MK-2 upgrade board"
|
||||
desc = "Used to give a medical cyborg advanced care tools."
|
||||
desc = "Used to give a medical cyborg advanced care tools. Also increases storage capacity for medical consumables."
|
||||
icon_state = "cyborg_upgrade"
|
||||
required_modules = list(MEDICAL_MODULE, SYNDIE_CRISIS_MODULE)
|
||||
modules_to_add = list(/obj/item/weapon/melee/defibrillator,/obj/item/weapon/reagent_containers/borghypo/upgraded)
|
||||
|
||||
/obj/item/borg/upgrade/medical/surgery
|
||||
/obj/item/borg/upgrade/medical_upgrade/attempt_action(var/mob/living/silicon/robot/R, var/mob/living/user)
|
||||
if(..())
|
||||
return FAILED_TO_ADD
|
||||
R.module.respawnables_max_amount = MEDICAL_MAX_KIT * 2
|
||||
|
||||
/obj/item/borg/upgrade/surgery
|
||||
name = "medical cyborg advanced surgery pack"
|
||||
desc = "Enables a medical cyborg to have advanced surgery tools."
|
||||
icon_state = "cyborg_upgrade"
|
||||
required_modules = list(MEDICAL_MODULE, SYNDIE_CRISIS_MODULE)
|
||||
modules_to_add = list(/obj/item/weapon/scalpel/laser/tier2, /obj/item/weapon/circular_saw/plasmasaw,
|
||||
/obj/item/weapon/retractor/manager, /obj/item/weapon/hemostat/pico, /obj/item/weapon/surgicaldrill/diamond,
|
||||
/obj/item/weapon/bonesetter/bone_mender, /obj/item/weapon/FixOVein/clot)
|
||||
@@ -244,11 +251,12 @@
|
||||
/obj/item/weapon/circular_saw, /obj/item/weapon/cautery, /obj/item/weapon/surgicaldrill, /obj/item/weapon/bonesetter,
|
||||
/obj/item/weapon/FixOVein)
|
||||
|
||||
/obj/item/borg/upgrade/medical/organ_gripper
|
||||
/obj/item/borg/upgrade/organ_gripper
|
||||
name = "medical cyborg organ gripper upgrade"
|
||||
desc = "Used to give a medical cyborg a organ gripper."
|
||||
icon = 'icons/obj/device.dmi'
|
||||
icon_state = "gripper-medical"
|
||||
required_modules = list(MEDICAL_MODULE, SYNDIE_CRISIS_MODULE)
|
||||
modules_to_add = list(/obj/item/weapon/gripper/organ)
|
||||
|
||||
//Engineering stuff
|
||||
|
||||
@@ -95,7 +95,7 @@
|
||||
req_tech = list(Tc_BIOTECH = 3, Tc_ENGINEERING = 3)
|
||||
build_type = MECHFAB
|
||||
materials = list(MAT_IRON=80000, MAT_GLASS=20000, MAT_SILVER=5000)
|
||||
build_path = /obj/item/borg/upgrade/medical
|
||||
build_path = /obj/item/borg/upgrade/medical_upgrade
|
||||
category = "Robotic_Upgrade_Modules"
|
||||
|
||||
/datum/design/medical_module_surgery
|
||||
@@ -105,7 +105,7 @@
|
||||
req_tech = list(Tc_MATERIALS = 5, Tc_ENGINEERING = 4, Tc_BIOTECH = 5, Tc_PLASMATECH = 3) //Same as a plasma saw
|
||||
build_type = MECHFAB
|
||||
materials = list(MAT_IRON = 70000, MAT_GLASS = 38000, MAT_SILVER = 1750, MAT_GOLD = 500, MAT_URANIUM = 750, MAT_PLASMA = 580) //Diamonds are on the house
|
||||
build_path = /obj/item/borg/upgrade/medical/surgery
|
||||
build_path = /obj/item/borg/upgrade/surgery
|
||||
category = "Robotic_Upgrade_Modules"
|
||||
|
||||
/datum/design/borg_organ_gripper_board
|
||||
@@ -114,7 +114,7 @@
|
||||
id = "borg_organ_gripper_board"
|
||||
req_tech = list(Tc_BIOTECH = 5, Tc_ENGINEERING = 4, Tc_ANOMALY = 3)
|
||||
build_type = MECHFAB
|
||||
build_path = /obj/item/borg/upgrade/medical/organ_gripper
|
||||
build_path = /obj/item/borg/upgrade/organ_gripper
|
||||
category = "Robotic_Upgrade_Modules"
|
||||
materials = list(MAT_IRON=80000, MAT_PLASMA=50000, MAT_SILVER=5000, MAT_GOLD=5000, MAT_PLASTIC=5000)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user