Organ rewrite mapclean attempt.

This commit is contained in:
Zuhayr
2014-09-29 06:18:58 +09:30
parent 97801b4617
commit 9fcde12b4f
61 changed files with 1611 additions and 1035 deletions
+2 -1
View File
@@ -19,7 +19,8 @@
if(istype(affected_mob,/mob/living/carbon/human))
var/mob/living/carbon/human/H = affected_mob
if(H.species.name == "Diona" || H.species.name == "Machine" || H.species.name == "Vox") src.cure()
if(!H.internal_organs_by_name["appendix"])
src.cure()
if(stage == 1)
if(affected_mob.op_stage.appendix == 2.0)
+2 -2
View File
@@ -26,8 +26,8 @@
if("gib_brain")
if(ishuman(target) || ismonkey(target))
var/mob/living/carbon/C = target
if(C.brain_op_stage != 4) // Their brain is already taken out
var/obj/item/brain/B = new(C.loc)
if(!C.has_brain()) // Their brain is already taken out
var/obj/item/organ/brain/B = new(C.loc)
B.transfer_identity(C)
target.gib()
if("disintegrate")