diff --git a/code/modules/hydroponics/grown/mushrooms.dm b/code/modules/hydroponics/grown/mushrooms.dm index e6d2484632..c001d6cb3b 100644 --- a/code/modules/hydroponics/grown/mushrooms.dm +++ b/code/modules/hydroponics/grown/mushrooms.dm @@ -149,6 +149,7 @@ endurance = 30 maturation = 5 yield = 1 + genes = list(/datum/plant_gene/trait/plant_type/fungal_metabolism, /datum/plant_gene/trait/eyes) growing_icon = 'icons/obj/hydroponics/growing_mushrooms.dmi' mutatelist = list() reagents_add = list(/datum/reagent/consumable/nutriment/vitamin = 0.05, /datum/reagent/consumable/nutriment = 0.15) diff --git a/code/modules/hydroponics/plant_genes.dm b/code/modules/hydroponics/plant_genes.dm index da19fa11f8..8485e20f61 100644 --- a/code/modules/hydroponics/plant_genes.dm +++ b/code/modules/hydroponics/plant_genes.dm @@ -419,6 +419,15 @@ else to_chat(user, "You need five lengths of cable to make a [G] battery!") +/datum/plant_gene/trait/eyes + name = "Oculary Mimicry" + /// Our googly eyes appearance. + var/mutable_appearance/googly + +/datum/plant_gene/trait/eyes/on_new(obj/item/reagent_containers/food/snacks/grown/G, newloc) + googly = mutable_appearance('icons/obj/hydroponics/harvest.dmi', "eyes") + googly.appearance_flags = RESET_COLOR + G.add_overlay(googly) /datum/plant_gene/trait/stinging name = "Hypodermic Prickles" diff --git a/icons/obj/hydroponics/harvest.dmi b/icons/obj/hydroponics/harvest.dmi index 7474bb87ab..08d8cf8fa1 100644 Binary files a/icons/obj/hydroponics/harvest.dmi and b/icons/obj/hydroponics/harvest.dmi differ