From 217fc7240f07a6e6d4ed8127071366857391e22f Mon Sep 17 00:00:00 2001 From: Eneocho <67024428+Eneocho@users.noreply.github.com> Date: Wed, 19 Feb 2025 10:58:00 -0300 Subject: [PATCH] Proposal for crisisbot buff. (#37419) * crisisbot tweak * crisisbot upgrade --------- Co-authored-by: west3436 <66280799+west3436@users.noreply.github.com> --- .../objects/items/robot/robot_items/robot_hypospray.dm | 6 +++--- code/modules/mob/living/silicon/robot/robot_modules.dm | 10 +++++++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/robot/robot_items/robot_hypospray.dm b/code/game/objects/items/robot/robot_items/robot_hypospray.dm index ee2b11df80d..c4e2dd11b3f 100644 --- a/code/game/objects/items/robot/robot_items/robot_hypospray.dm +++ b/code/game/objects/items/robot/robot_items/robot_hypospray.dm @@ -134,8 +134,8 @@ /obj/item/weapon/reagent_containers/borghypo/crisis name = "crisis hypospray" - desc = "A syndicate-exclusive emergency hypospray filled with potent stimulants and painkillers." + desc = "A syndicate-exclusive emergency hypospray filled with potent stimulants, medicines, painkillers and sedatives." icon_state = "borghypo_s" - reagent_ids = list(TRICORDRAZINE, INAPROVALINE, COCAINE, OXYCODONE, TRAMADOL) - volume = 10 + reagent_ids = list(DOCTORSDELIGHT, DEXALINP, METHAMPHETAMINE, OXYCODONE, CREATINE, CHLORALHYDRATE) + volume = 30 amount_per_transfer_from_this = 10 diff --git a/code/modules/mob/living/silicon/robot/robot_modules.dm b/code/modules/mob/living/silicon/robot/robot_modules.dm index 5883db4e63e..88e646b3b08 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules.dm @@ -560,6 +560,10 @@ sprites = list( "Droid" = "droid-crisis" ) + respawnables = list( + /obj/item/stack/medical/splint + ) + respawnables_max_amount = MEDICAL_MAX_KIT /obj/item/weapon/robot_module/syndicate/crisis/New() ..() @@ -575,11 +579,15 @@ modules += new /obj/item/device/reagent_scanner/adv(src) modules += new /obj/item/weapon/reagent_containers/borghypo/crisis(src) modules += new /obj/item/weapon/reagent_containers/borghypo/biofoam(src) + modules += new /obj/item/weapon/reagent_containers/spray/lube(src) modules += new /obj/item/weapon/revivalprod(src) modules += new /obj/item/weapon/switchtool/surgery/maxed(src) modules += new /obj/item/robot_rack/bed/syndie(src) modules += new /obj/item/weapon/cookiesynth/lollipop(src) - + var/obj/item/stack/medical/splint/K = new /obj/item/stack/medical/splint(src) + K.max_amount = MEDICAL_MAX_KIT + K.amount = MEDICAL_MAX_KIT + modules += K sensor_augs = list("Thermal", "Medical", "Disable") fix_modules()