with fixes and new gauze

This commit is contained in:
TrilbySpaceClone
2020-04-19 15:29:48 -04:00
parent 344c8b1334
commit 37a0fb558c
2 changed files with 19 additions and 0 deletions
+11
View File
@@ -92,6 +92,7 @@
icon_state = "gauze"
var/stop_bleeding = 1800
var/heal_brute = 5
var/heal_tox = FALSE
self_delay = 10
/obj/item/stack/medical/gauze/heal(mob/living/M, mob/user)
@@ -100,6 +101,9 @@
if(!H.bleedsuppress && H.bleed_rate) //so you can't stack bleed suppression
H.suppress_bloodloss(stop_bleeding)
to_chat(user, "<span class='notice'>You stop the bleeding of [M]!</span>")
H.adjustBruteLoss(-(heal_brute))
if(heal_tox)
H.adjustToxLoss(-5) //Heals 5 damage but is not safe for slimes...
return TRUE
to_chat(user, "<span class='notice'>You can not use \the [src] on [M]!</span>")
@@ -127,6 +131,13 @@
stop_bleeding = 900
heal_brute = 0
/obj/item/stack/medical/gauze/adv
name = "sterilized medical gauze"
desc = "A roll of elastic sterilized cloth that is extremely effective at stopping bleeding, heals minor wounds and cleans them."
singular_name = "sterilized medical gauze"
heal_tox = TRUE
self_delay = 5
/obj/item/stack/medical/gauze/cyborg
custom_materials = null
is_cyborg = 1