From f24e6abb34f2137381f37468f38f6396d8143381 Mon Sep 17 00:00:00 2001 From: Chemlight Date: Thu, 24 Sep 2020 05:41:02 -0700 Subject: [PATCH] Pink and Milk Seeds to Xenoarch This little change is simply removing Pink peppers and Milk Melons away from the unstable mutagen list and instead putting it on the xenoarch artifact being a possible item to discover, compared to drowning a watermelon or pepper in chemicals. --- code/modules/hydroponics/grown/chili.dm | 2 +- code/modules/hydroponics/grown/melon.dm | 2 +- code/modules/research/xenoarch/artifact.dm | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/grown/chili.dm b/code/modules/hydroponics/grown/chili.dm index d39577b4..16675292 100644 --- a/code/modules/hydroponics/grown/chili.dm +++ b/code/modules/hydroponics/grown/chili.dm @@ -15,7 +15,7 @@ icon_grow = "chili-grow" // Uses one growth icons set for all the subtypes icon_dead = "chili-dead" // Same for the dead icon genes = list(/datum/plant_gene/trait/repeated_harvest) - mutatelist = list(/obj/item/seeds/chili/ice, /obj/item/seeds/chili/ghost, /obj/item/seeds/chili/pink) + mutatelist = list(/obj/item/seeds/chili/ice, /obj/item/seeds/chili/ghost) reagents_add = list("capsaicin" = 0.25, "vitamin" = 0.04, "nutriment" = 0.04) /obj/item/reagent_containers/food/snacks/grown/chili diff --git a/code/modules/hydroponics/grown/melon.dm b/code/modules/hydroponics/grown/melon.dm index 51de4f30..cfd56d02 100644 --- a/code/modules/hydroponics/grown/melon.dm +++ b/code/modules/hydroponics/grown/melon.dm @@ -11,7 +11,7 @@ growing_icon = 'icons/obj/hydroponics/growing_fruits.dmi' icon_dead = "watermelon-dead" genes = list(/datum/plant_gene/trait/repeated_harvest) - mutatelist = list(/obj/item/seeds/watermelon/holy, /obj/item/seeds/watermelon/milk) + mutatelist = list(/obj/item/seeds/watermelon/holy) reagents_add = list("water" = 0.2, "vitamin" = 0.04, "nutriment" = 0.2) /obj/item/seeds/watermelon/suicide_act(mob/user) diff --git a/code/modules/research/xenoarch/artifact.dm b/code/modules/research/xenoarch/artifact.dm index d087ca28..46abf8ec 100644 --- a/code/modules/research/xenoarch/artifact.dm +++ b/code/modules/research/xenoarch/artifact.dm @@ -84,6 +84,8 @@ /obj/item/seeds/thaadra, /obj/item/seeds/vale, /obj/item/seeds/vaporsac, + /obj/item/seeds/watermelon/milk, + /obj/item/seeds/chili/pink, /obj/item/seeds/random ))