From 7587c7e846afb9edbf0420b8f333fccfb948ca0d Mon Sep 17 00:00:00 2001 From: Repede Date: Sun, 25 Mar 2018 13:04:54 -0400 Subject: [PATCH] With suggestion from Aronai, just removes ventcrawl ability. --- .../species/station/protean_vr/protean_blob.dm | 14 +++++++------- vorestation.dme | 3 +++ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm index 438a805b9c..ebd68dfd78 100644 --- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm +++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm @@ -45,7 +45,7 @@ var/obj/item/organ/internal/nano/refactory/refactory var/datum/modifier/healing - player_msg = "In this form, you can move a little faster, your health will regenerate as long as you have metal in you, and you can ventcrawl!" + player_msg = "In this form, you can move a little faster, your health will regenerate as long as you have metal in you!" //Constructor allows passing the human to sync damages /mob/living/simple_animal/protean_blob/New(var/newloc, var/mob/living/carbon/human/H) @@ -55,7 +55,7 @@ updatehealth() refactory = locate() in humanform.internal_organs verbs |= /mob/living/simple_animal/protean_blob/proc/revert_form - verbs |= /mob/living/proc/ventcrawl + //verbs |= /mob/living/proc/ventcrawl YAWN Edit: Too OP verbs |= /mob/living/proc/hide else update_icon() @@ -91,7 +91,7 @@ if(health < maxHealth*0.5) to_chat(src,"You're too injured for that! Regenerate using steel first.") return - + if(humanform) humanform.nano_outofblob(src) else @@ -252,7 +252,7 @@ //Message blob.visible_message("[src.name] collapses into a gooey blob!") - + //Duration of the to_puddle iconstate that the blob starts with sleep(13) blob.update_icon() //Will remove the collapse anim @@ -276,7 +276,7 @@ if(pulledby) pulledby.stop_pulling() stop_pulling() - + //Stop healing if we are if(blob.healing) blob.healing.expire() @@ -286,7 +286,7 @@ //Message blob.visible_message("[src.name] reshapes into a humanoid appearance!") - + //Duration of above animation sleep(8) @@ -307,7 +307,7 @@ var/obj/belly/B = belly B.forceMove(src) B.owner = src - + //Get rid of friend blob qdel(blob) diff --git a/vorestation.dme b/vorestation.dme index 052aa4e8cc..1cdf8a2bfa 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -2043,6 +2043,9 @@ #include "code\modules\mob\living\carbon\human\species\station\station_special_abilities_vr.dm" #include "code\modules\mob\living\carbon\human\species\station\station_special_vr.dm" #include "code\modules\mob\living\carbon\human\species\station\station_vr.dm" +#include "code\modules\mob\living\carbon\human\species\station\protean_vr\protean_blob.dm" +#include "code\modules\mob\living\carbon\human\species\station\protean_vr\protean_powers.dm" +#include "code\modules\mob\living\carbon\human\species\station\protean_vr\protean_species.dm" #include "code\modules\mob\living\carbon\human\species\station\traits_vr\negative.dm" #include "code\modules\mob\living\carbon\human\species\station\traits_vr\neutral.dm" #include "code\modules\mob\living\carbon\human\species\station\traits_vr\positive.dm"