Grafadreka bites become infected very easily.

This commit is contained in:
MistakeNot4892
2023-02-04 07:19:58 +11:00
parent e00b208c90
commit 5f01047239
@@ -365,6 +365,11 @@ You can eat glowing tree fruit to fuel your <b>ranged spitting attack</b> and <b
if (. && tox_damage && spend_sap(5))
var/mob/living/M = A
M.adjustToxLoss(tox_damage)
// It would be nice if we could keep track of the wound we just dealt, and give
// infections directly, but alas simplemob attack code is not great for that.
if(iscarbon(M))
var/mob/living/carbon/C = M
C.germ_level = max(C.germ_level, INFECTION_LEVEL_TWO)
/mob/living/simple_mob/animal/sif/grafadreka/rejuvenate()