diff --git a/code/modules/hydroponics/grown/chili.dm b/code/modules/hydroponics/grown/chili.dm index 6325daac..a4ea70ca 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) + mutatelist = list(/obj/item/seeds/chili/ice, /obj/item/seeds/chili/ghost, /obj/item/seeds/chili/pink) reagents_add = list("capsaicin" = 0.25, "vitamin" = 0.04, "nutriment" = 0.04) /obj/item/reagent_containers/food/snacks/grown/chili @@ -80,6 +80,31 @@ foodtype = FRUIT wine_power = 50 +//Pink-peppers +/obj/item/seeds/chili/pink + name = "pack of pink pepper seeds" + desc = "These seeds grow into pink pepper plants." + icon_state = "seed-chilipink" + species = "chilipink" + plantname = "Pink Pepper Plants" + product = /obj/item/reagent_containers/food/snacks/grown/pink_chili + maturation = 6 + production = 4 + yield = 3 + rarity = 20 + mutatelist = list() + reagents_add = list("aphro" = 0.2, "penis_enlarger" = 0.1, "vitamin" = 0.04, "nutriment" = 0.04) + +/obj/item/reagent_containers/food/snacks/grown/pink_chili + seed = /obj/item/seeds/chili/pink + name = "pink pepper" + desc = "It looks almost like a knotted phallus. Is it... throbbing?" + icon_state = "pinkchilipepper" + filling_color = "#FF1458" + bitesize_mod = 3 + foodtype = FRUIT + wine_power = 40 + /obj/item/reagent_containers/food/snacks/grown/ghost_chili/attack_hand(mob/user) . = ..() if(.) diff --git a/icons/obj/hydroponics/growing_vegetables.dmi b/icons/obj/hydroponics/growing_vegetables.dmi index 74fdf121..01ffbb06 100644 Binary files a/icons/obj/hydroponics/growing_vegetables.dmi and b/icons/obj/hydroponics/growing_vegetables.dmi differ diff --git a/icons/obj/hydroponics/harvest.dmi b/icons/obj/hydroponics/harvest.dmi index 7ba91fe5..2b1586b6 100644 Binary files a/icons/obj/hydroponics/harvest.dmi and b/icons/obj/hydroponics/harvest.dmi differ diff --git a/icons/obj/hydroponics/seeds.dmi b/icons/obj/hydroponics/seeds.dmi index c653f54b..6a152a1c 100644 Binary files a/icons/obj/hydroponics/seeds.dmi and b/icons/obj/hydroponics/seeds.dmi differ