diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index 6c1fd9d261e..0d2ed5e5d63 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -232,6 +232,7 @@ var/global/list/contamination_flavors = list( "Dirty" = contamination_flavors_dirty, "Musky" = contamination_flavors_musky, "Smelly" = contamination_flavors_smelly, + "Slimy" = contamination_flavors_slimy, "Wet" = contamination_flavors_wet) var/global/list/contamination_flavors_generic = list("acrid", @@ -435,6 +436,21 @@ var/global/list/contamination_flavors_musky = list("drenched", "sticky", "tainted") +var/global/list/contamination_flavors_slimy = list("slimy", + "sloppy", + "drippy", + "glistening", + "dripping", + "gunky", + "slimed", + "mucky", + "viscous", + "dank", + "glutinous", + "syrupy", + "slippery", + "gelatinous") + var/global/list/contamination_colors = list("green", "white", "black", @@ -522,4 +538,4 @@ var/global/list/remainless_species = list(SPECIES_PROMETHEAN, return 1 // Hooks must return 1 var/global/list/weavable_structures = list() -var/global/list/weavable_items = list() \ No newline at end of file +var/global/list/weavable_items = list()