From 681ad6ca4a13619ecdb33b3fab5e8054993a1462 Mon Sep 17 00:00:00 2001 From: 1080pCat <96908085+1080pCat@users.noreply.github.com> Date: Thu, 29 Aug 2024 09:59:05 +1000 Subject: [PATCH] You can no longer get abductor rnd level 3+ from 1 (#26598) --- code/game/gamemodes/miniantags/abduction/abduction_gear.dm | 4 ++-- code/game/objects/items/robot/robot_upgrades.dm | 2 +- code/modules/surgery/organs/augments_arms.dm | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm index 2d13e0c5c49..9bee0cf6cf0 100644 --- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm +++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm @@ -779,7 +779,7 @@ Congratulations! You are now trained for invasive xenobiology research!"} icon = 'icons/obj/abductor.dmi' icon_state = "mop_abductor" mopcap = 100 - origin_tech = "materials=3;engineering=3;abductor=3" + origin_tech = "materials=3;engineering=3;abductor=2" refill_rate = 50 refill_reagent = "water" mopspeed = 10 @@ -795,7 +795,7 @@ Congratulations! You are now trained for invasive xenobiology research!"} desc = "It's important to keep all the mysterious lights on a UFO functional when flying over backwater country." icon = 'icons/obj/abductor.dmi' icon_state = "lightreplacer_abductor" - origin_tech = "magnets=3;engineering=4;abductor=3" + origin_tech = "magnets=3;engineering=4;abductor=2" max_uses = 40 uses = 20 diff --git a/code/game/objects/items/robot/robot_upgrades.dm b/code/game/objects/items/robot/robot_upgrades.dm index 59a94e277d5..777564380bf 100644 --- a/code/game/objects/items/robot/robot_upgrades.dm +++ b/code/game/objects/items/robot/robot_upgrades.dm @@ -491,7 +491,7 @@ name = "janitorial cyborg abductor upgrade" desc = "An experimental upgrade that replaces a janitorial cyborg's tools with the abductor versions." icon_state = "abductor_mod" - origin_tech = "biotech=6;materials=6;abductor=3" + origin_tech = "biotech=6;materials=6;abductor=2" require_module = TRUE module_type = /obj/item/robot_module/janitor items_to_replace = list( diff --git a/code/modules/surgery/organs/augments_arms.dm b/code/modules/surgery/organs/augments_arms.dm index 17f9341bcde..1edd427daad 100644 --- a/code/modules/surgery/organs/augments_arms.dm +++ b/code/modules/surgery/organs/augments_arms.dm @@ -253,7 +253,7 @@ /obj/item/organ/internal/cyberimp/arm/janitorial_abductor name = "alien janitorial toolset implant" desc = "A set of alien janitorial tools, designed to be installed on subject's arm." - origin_tech = "materials=5;engineering=5;biotech=5;powerstorage=4;abductor=3" + origin_tech = "materials=5;engineering=5;biotech=5;powerstorage=4;abductor=2" contents = newlist(/obj/item/mop/advanced/abductor, /obj/item/soap/syndie/abductor, /obj/item/lightreplacer/bluespace/abductor, /obj/item/holosign_creator/janitor, /obj/item/melee/flyswatter/abductor, /obj/item/reagent_containers/spray/cleaner/safety/abductor) action_icon = list(/datum/action/item_action/organ_action/toggle = 'icons/obj/abductor.dmi') action_icon_state = list(/datum/action/item_action/organ_action/toggle = "janibelt_abductor")