diff --git a/code/game/objects/items/weapons/surgery_tools.dm b/code/game/objects/items/weapons/surgery_tools.dm index 7af5304887b..4bd89f7d43b 100644 --- a/code/game/objects/items/weapons/surgery_tools.dm +++ b/code/game/objects/items/weapons/surgery_tools.dm @@ -620,6 +620,35 @@ LOOK FOR SURGERY.DM*/ return */ +/* + * Researchable Scalpels + */ +/obj/item/weapon/scalpel/laser1 + name = "laser scalpel" + desc = "A scalpel augmented with a directed laser, for more precise cutting without blood entering the field. This one looks basic and could be improved." + icon_state = "scalpel_laser1_on" + damtype = "fire" + +/obj/item/weapon/scalpel/laser2 + name = "laser scalpel" + desc = "A scalpel augmented with a directed laser, for more precise cutting without blood entering the field. This one looks somewhat advanced." + icon_state = "scalpel_laser2_on" + damtype = "fire" + force = 12.0 + +/obj/item/weapon/scalpel/laser3 + name = "laser scalpel" + desc = "A scalpel augmented with a directed laser, for more precise cutting without blood entering the field. This one looks to be the pinnacle of precision energy cutlery!" + icon_state = "scalpel_laser3_on" + damtype = "fire" + force = 15.0 + +/obj/item/weapon/scalpel/manager + name = "incision management system" + desc = "A true extension of the surgeon's body, this marvel instantly and completely prepares an incision allowing for the immediate commencement of therapeutic steps." + icon_state = "scalpel_manager_on" + force = 7.5 + /* * Circular Saw */ @@ -819,4 +848,4 @@ LOOK FOR SURGERY.DM*/ throw_speed = 3 throw_range = 5 w_class = 2.0 - attack_verb = list("attacked", "hit", "bludgeoned") \ No newline at end of file + attack_verb = list("attacked", "hit", "bludgeoned") diff --git a/icons/obj/surgery.dmi b/icons/obj/surgery.dmi index c39b4a6214e..a5c7e0c7cdd 100644 Binary files a/icons/obj/surgery.dmi and b/icons/obj/surgery.dmi differ