Skip to content

Commit

Permalink
TGS Test Merge (#7901)
Browse files Browse the repository at this point in the history
  • Loading branch information
cm13-github committed Dec 27, 2024
2 parents 3c4ed7b + 3c7eab0 commit e3699ce
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/modules/surgery/mcomp_tendwounds.dm
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@

/datum/surgery_step/mstabilize_wounds/success(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery)
target.heal_overall_damage(40,40)
target.Slow(300)
target.Superslow(150)

if(isspeciesyautja(target))
target.emote("click2")
Expand Down Expand Up @@ -115,6 +117,8 @@

/datum/surgery_step/mtend_wounds/success(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery)
target.heal_overall_damage(65,65)
target.Slow(300)
target.Superslow(150)

for(var/datum/internal_organ/organ in target.internal_organs) //Fixes all organs
organ.rejuvenate()
Expand Down Expand Up @@ -167,6 +171,8 @@

/datum/surgery_step/cauterize/mclamp_wound/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery)
target.heal_overall_damage(125,125) //makes sure that all damage is healed
target.SetSlow(0 SECONDS)
target.SetSuperslow(0 SECONDS)

if(user == target)
user.visible_message(SPAN_NOTICE("[user] finshes closing the treated wounds on their body with [tool]."),
Expand Down

0 comments on commit e3699ce

Please sign in to comment.