From 1718d3bcf7569fae39aa57317945a3f2c5fb270a Mon Sep 17 00:00:00 2001 From: Alphas00 <154434082+Alphas00@users.noreply.github.com> Date: Sun, 8 Dec 2024 21:58:39 +0100 Subject: [PATCH] GS13 plant mutations fix Re-introduced munchies weed and blueberries and potential mutations for cannabis and berries respectively --- GainStation13/code/modules/hydroponics/grown/berries.dm | 3 +++ GainStation13/code/modules/hydroponics/munchies_weed.dm | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/GainStation13/code/modules/hydroponics/grown/berries.dm b/GainStation13/code/modules/hydroponics/grown/berries.dm index 32f3e7dbca..f9d5ea4179 100644 --- a/GainStation13/code/modules/hydroponics/grown/berries.dm +++ b/GainStation13/code/modules/hydroponics/grown/berries.dm @@ -1,3 +1,6 @@ +/obj/item/seeds/berry + mutatelist = list(/obj/item/seeds/berry/glow, /obj/item/seeds/berry/poison, /obj/item/seeds/berry/blueberry) + /obj/item/seeds/berry/blueberry name = "pack of blueberry seeds" desc = "These seeds grow into blueberry bushes." diff --git a/GainStation13/code/modules/hydroponics/munchies_weed.dm b/GainStation13/code/modules/hydroponics/munchies_weed.dm index 28043f6f3d..8dd2156da1 100644 --- a/GainStation13/code/modules/hydroponics/munchies_weed.dm +++ b/GainStation13/code/modules/hydroponics/munchies_weed.dm @@ -1,6 +1,11 @@ /mob/living/carbon var/nutri_mult = 1 +/obj/item/seeds/cannabis + mutatelist = list(/obj/item/seeds/cannabis/rainbow, + /obj/item/seeds/cannabis/death, + /obj/item/seeds/cannabis/munchies) + /datum/plant_gene/trait/glow/orange name = "Orange Bioluminescence" glow_color = "#ff9166"