This commit is contained in:
Fox-McCloud
2017-04-06 06:37:18 -04:00
parent a8ac39860b
commit ec223e040e
2 changed files with 7 additions and 6 deletions
@@ -266,11 +266,11 @@
1.Acquire fresh specimen.<br>
2.Put the specimen on operating table.<br>
3.Apply scalpel to the chest, preparing for experimental dissection.<br>
4.Apply scalpel to specimen torso.<br>
4.Apply scalpel to specimen's torso.<br>
5.Clamp bleeders on specimen's torso with a hemostat.<br>
6.Retract skin of specimen's torso with a retractor.<br>
7.Saw through the specimen's torso with a saw.<br>
8.Apply recator again to specimen's torso.<br>
8.Apply retractor again to specimen's torso.<br>
9.Search through the specimen's torso with your hands to remove any superfluous organs.<br>
10.Insert replacement gland (Retrieve one from gland storage).<br>
11.Cauterize the patient's torso with a cautery.<br>
@@ -7,19 +7,20 @@
origin_tech = "materials=2;biotech=7;magnets=4;bluespace=4;abductor=5"
var/obj/machinery/abductor/pad/home
var/cooldown = 30
var/total_cooldown = 30
/obj/item/weapon/implant/abductor/activate()
if(cooldown == initial(cooldown))
if(cooldown == total_cooldown)
home.Retrieve(imp_in,1)
cooldown = 0
processing_objects.Add(src)
else
to_chat(imp_in, "<span class='warning'>You must wait [30 - cooldown] seconds to use [src] again!</span>")
to_chat(imp_in, "<span class='warning'>You must wait [(30 - cooldown)*2] seconds to use [src] again!</span>")
/obj/item/weapon/implant/abductor/process()
if(cooldown < initial(cooldown))
if(cooldown < total_cooldown)
cooldown++
if(cooldown == initial(cooldown))
if(cooldown == total_cooldown)
processing_objects.Remove(src)
/obj/item/weapon/implant/abductor/implant(mob/source, mob/user)