mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-18 18:44:48 +01:00
Plant-B-Gone now affects Diona nymphs. Dionas now heal toxin/fire damage.
This commit is contained in:
@@ -914,10 +914,12 @@ var/global/list/brutefireloss_overlays = list("1" = image("icon" = 'icons/mob/sc
|
||||
traumatic_shock -= light_amount
|
||||
|
||||
if(species.flags & IS_PLANT)
|
||||
if(nutrition > 500)
|
||||
nutrition = 500
|
||||
if(light_amount >= 5) //if there's enough light, heal
|
||||
adjustBruteLoss(-(light_amount))
|
||||
if(nutrition > 450)
|
||||
nutrition = 450
|
||||
if(light_amount >= 3) //if there's enough light, heal
|
||||
adjustBruteLoss(-(light_amount/2))
|
||||
adjustFireLoss(-(light_amount/2))
|
||||
adjustToxLoss(-(light_amount))
|
||||
adjustOxyLoss(-(light_amount))
|
||||
//TODO: heal wounds, heal broken limbs.
|
||||
|
||||
|
||||
@@ -1435,6 +1435,13 @@ datum
|
||||
H.adjustToxLoss(50)
|
||||
..()
|
||||
return
|
||||
if(ismonkey(M))
|
||||
var/mob/living/carbon/monkey/MO = M
|
||||
if(MO.dna)
|
||||
if(MO.dna.mutantrace == "plant") //plantmen monkeys (diona) take EVEN MORE damage
|
||||
MO.adjustToxLoss(100)
|
||||
..()
|
||||
return
|
||||
|
||||
plasma
|
||||
name = "Plasma"
|
||||
|
||||
Reference in New Issue
Block a user