diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index 662793a8..409ba76d 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -1582,6 +1582,22 @@ taste_description = "rainbows" var/no_mob_color = FALSE +/datum/reagent/consumable/laughter/laughtervirusfood + name = "anomolous virus food" + color = "#ffa6ff" //rgb: 255,166,255 + taste_description = "a bad idea" + +/datum/reagent/consumable/virus_food/advvirusfood + name = "highly unstable virus food" + color = "#ffffff" //rgb: 255,255,255 ITS PURE WHITE CMON + taste_description = "an EXTREMELY bad idea" + +/datum/reagent/consumable/virus_food/viralbase + name = "Experimental viral base" + description = "Recently discovered by Nanotrasen's top scientists after years of research, this substance can be used as the base for extremely rare and extremely dangerous viruses once exposed to uranium." + color = "#fff0da" + taste_description = "tears of scientists" + /datum/reagent/colorful_reagent/on_mob_life(mob/living/carbon/M) if(!no_mob_color) M.add_atom_colour(pick(random_color_list), WASHABLE_COLOUR_PRIORITY) @@ -2174,4 +2190,4 @@ if(prob(20)) to_chat(M, "[pick("Headpats feel nice.", "The feeling of a hairball...", "Backrubs would be nice.", "Whats behind those doors?")]") M.adjustArousalLoss(2) - ..() \ No newline at end of file + ..()