From f24e6abb34f2137381f37468f38f6396d8143381 Mon Sep 17 00:00:00 2001 From: Chemlight Date: Thu, 24 Sep 2020 05:41:02 -0700 Subject: [PATCH 1/4] 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 )) From 2c4b0b130ff0e854fa645072cd5edfeef1d0e739 Mon Sep 17 00:00:00 2001 From: Chemlight Date: Thu, 24 Sep 2020 09:44:48 -0700 Subject: [PATCH 2/4] Seeds to Xenoarch More funny seeds found in fossils. --- code/modules/research/xenoarch/artifact.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/research/xenoarch/artifact.dm b/code/modules/research/xenoarch/artifact.dm index 46abf8ec..24a6c11b 100644 --- a/code/modules/research/xenoarch/artifact.dm +++ b/code/modules/research/xenoarch/artifact.dm @@ -86,6 +86,8 @@ /obj/item/seeds/vaporsac, /obj/item/seeds/watermelon/milk, /obj/item/seeds/chili/pink, + /obj/item/seeds/cherry/bomb, + /obj/item/seeds/gatfruit, /obj/item/seeds/random )) From e13cb1e65f99e148e99a9cc1000b6192dc21e290 Mon Sep 17 00:00:00 2001 From: Chemlight Date: Thu, 24 Sep 2020 09:49:23 -0700 Subject: [PATCH 3/4] Consume Kudzu Additionally threw in Kudzu at the last minute. --- code/modules/research/xenoarch/artifact.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/research/xenoarch/artifact.dm b/code/modules/research/xenoarch/artifact.dm index 24a6c11b..70f0e6ae 100644 --- a/code/modules/research/xenoarch/artifact.dm +++ b/code/modules/research/xenoarch/artifact.dm @@ -88,6 +88,7 @@ /obj/item/seeds/chili/pink, /obj/item/seeds/cherry/bomb, /obj/item/seeds/gatfruit, + /obj/item/seeds/kudzu, /obj/item/seeds/random )) From 4d1f86a78e118457505971f1c9446f7da36c35c4 Mon Sep 17 00:00:00 2001 From: Chemlight Date: Thu, 24 Sep 2020 10:58:02 -0700 Subject: [PATCH 4/4] WITH THE LEMON finally throw combustible into xeno arch, giving a decent amount on the table, --- code/modules/hydroponics/grown/citrus.dm | 1 - code/modules/research/xenoarch/artifact.dm | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/grown/citrus.dm b/code/modules/hydroponics/grown/citrus.dm index 5209c090..49cd2798 100644 --- a/code/modules/hydroponics/grown/citrus.dm +++ b/code/modules/hydroponics/grown/citrus.dm @@ -112,7 +112,6 @@ icon_grow = "lime-grow" icon_dead = "lime-dead" genes = list(/datum/plant_gene/trait/repeated_harvest) - mutatelist = list(/obj/item/seeds/firelemon) reagents_add = list("vitamin" = 0.04, "nutriment" = 0.05) /obj/item/reagent_containers/food/snacks/grown/citrus/lemon diff --git a/code/modules/research/xenoarch/artifact.dm b/code/modules/research/xenoarch/artifact.dm index 70f0e6ae..0ec2d64c 100644 --- a/code/modules/research/xenoarch/artifact.dm +++ b/code/modules/research/xenoarch/artifact.dm @@ -89,6 +89,7 @@ /obj/item/seeds/cherry/bomb, /obj/item/seeds/gatfruit, /obj/item/seeds/kudzu, + /obj/item/seeds/firelemon, /obj/item/seeds/random ))