finished fatchem immunity trait + lipo vent clog event (WIP)

- Lipoifier immunity is now mostly tested. It significantly lowers the value of Lipolifier and Corn Oil, making the victim almost completely resistant against its effect
- Fiddled a lil more with vent clog events (lipoifier variant). WARNING: this does not work in the current state!
This commit is contained in:
Sonoida
2022-11-09 22:43:24 +01:00
parent 2928d45a88
commit 7b3d9f9813
3 changed files with 20 additions and 26 deletions
@@ -452,11 +452,11 @@
color = "#302000" // rgb: 48, 32, 0
taste_description = "slime"
/datum/reagent/consumable/sprinkles/on_mob_life(mob/living/carbon/M)
/datum/reagent/consumable/cornoil/on_mob_life(mob/living/carbon/M)
if(M && !HAS_TRAIT(M, TRAIT_LIPOIFIER_IMMUNE))
target.nutrition += 20 * REAGENTS_METABOLISM
else:
target.nutrition += 1
M.nutrition += 20 * REAGENTS_METABOLISM
else
M.nutrition += 1
..()
/datum/reagent/consumable/cornoil/reaction_turf(turf/open/T, reac_volume)