mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Medical borg enables Gripper Use (#32234)
* Medical Borg Useful Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> * Enable medical gripper to hold specific items Added can_hold list for medical gripper to allow holding various medical containers. Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> * Add iv_bag to Can_hold list Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> * Update code/game/objects/items/robot/cyborg_gripper.dm Co-authored-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> * Add large glass beaker to robot modules Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> * Reverted Request Got flip flopped around accidentally added it Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> * Remove large glass beaker from robot modules Removed large glass beaker from robot modules. Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> * Fixes robot beaker * Rename large robot beaker to large integrated beaker to seperate the beaker and to prevent the borg from grabbing in the inventory Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> * Fix typo in interaction message for large integrated beaker] beaker Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> * Update code/modules/reagents/reagent_containers/glass_containers.dm Co-authored-by: Kameň <167246105+StoneyFox29@users.noreply.github.com> Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> * Update code/modules/reagents/reagent_containers/glass_containers.dm Co-authored-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> --------- Signed-off-by: juryteacher67 <129633830+juryteacher67@users.noreply.github.com> Signed-off-by: Kameň <167246105+StoneyFox29@users.noreply.github.com> Co-authored-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Co-authored-by: Kameň <167246105+StoneyFox29@users.noreply.github.com>
This commit is contained in:
co-authored by
CRUNCH
Kameň
parent
218bc83cfa
commit
71a31c147c
@@ -335,14 +335,18 @@
|
||||
|
||||
// Medical Gripper
|
||||
// For medical borgs, for doing medical stuff!
|
||||
// Not giving this anything to hold yet, but stuff may be added in the future. Organs/implants are currently viewed as too strong to hold.
|
||||
/obj/item/gripper/medical
|
||||
name = "medical gripper"
|
||||
desc = "A grasping tool for cyborgs. This one is covered with hygenic medical-grade silicone rubber. \
|
||||
Use it to help patients up once surgery is complete, or to substitute for hands in surgical operations."
|
||||
can_help_up = TRUE
|
||||
// REMOVE actions_types from here if you add a can_hold list for this gripper!
|
||||
actions_types = list()
|
||||
can_hold = list(
|
||||
/obj/item/reagent_containers/glass/beaker,
|
||||
/obj/item/reagent_containers/glass/bottle,
|
||||
/obj/item/reagent_containers/applicator,
|
||||
/obj/item/reagent_containers/patch,
|
||||
/obj/item/reagent_containers/pill
|
||||
)
|
||||
|
||||
/obj/item/gripper/medical/Initialize(mapload)
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user