mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-25 01:31:58 +00:00
More information messages with burn wounds (#22176)
* more messages for burn wounds * Update code/game/objects/items/stacks/medical_packs.dm Co-authored-by: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> * Update code/modules/mob/living/carbon/human/human_examine.dm Co-authored-by: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> * Update code/game/objects/items/stacks/medical_packs.dm Co-authored-by: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> * Update code/modules/mob/living/carbon/carbon.dm Co-authored-by: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> * Update code/game/objects/items/stacks/medical_packs.dm Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> --------- Co-authored-by: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
This commit is contained in:
@@ -231,6 +231,7 @@
|
||||
/obj/item/stack/medical/ointment/heal(mob/living/M, mob/user)
|
||||
var/obj/item/organ/external/affecting = ..()
|
||||
if((affecting.status & ORGAN_BURNT) && !(affecting.status & ORGAN_SALVED))
|
||||
to_chat(affecting.owner, "<span class='notice'>As [src] is applied to your burn wound, you feel a soothing cold and relax.</span>")
|
||||
affecting.status |= ORGAN_SALVED
|
||||
addtimer(CALLBACK(affecting, TYPE_PROC_REF(/obj/item/organ/external, remove_ointment), heal_burn), 3 MINUTES)
|
||||
|
||||
@@ -241,6 +242,9 @@
|
||||
owner.updatehealth("permanent injury removal")
|
||||
if(!perma_injury)
|
||||
fix_burn_wound(update_health = FALSE)
|
||||
to_chat(owner, "<span class='notice'>You feel your [src.name]'s burn wound has fully healed, and the rest of the salve absorbs into it.</span>")
|
||||
else
|
||||
to_chat(owner, "<span class='notice'>You feel your [src.name]'s burn wound has healed a little, but the applied salve has already vanished.</span>")
|
||||
|
||||
/obj/item/stack/medical/ointment/advanced
|
||||
name = "advanced burn kit"
|
||||
|
||||
Reference in New Issue
Block a user