diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 21726acb0fd..67b455c53a0 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -977,3 +977,21 @@ reagents.add_reagent("nutriment", 1+round((potency / 20), 1)) reagents.add_reagent("singulo", 1+round((potency / 5), 1)) bitesize = 1+round(reagents.total_volume / 2, 1) + +/obj/item/weapon/reagent_containers/food/snacks/grown/gatfruit + seed = "/obj/item/seeds/gatfruit" + name = "gatfruit" + desc = "It smells like burning." + icon_state = "gatfruit" + potency = 60 + origin_tech = "combat=3" + trash = /obj/item/weapon/gun/projectile/revolver + New() + ..() + spawn(5) //So potency can be set in the proc that creates these crops + reagents.add_reagent("sulfur", 1+round((potency / 10), 1)) + reagents.add_reagent("carbon", 1+round((potency / 10), 1)) + reagents.add_reagent("nitrogen", 1+round((potency / 15), 1)) + reagents.add_reagent("potassium", 1+round((potency / 20), 1)) + bitesize = 1+round(reagents.total_volume / 2, 1) + diff --git a/code/modules/hydroponics/seeds.dm b/code/modules/hydroponics/seeds.dm index 4360c5f2a1e..4bd87828b18 100644 --- a/code/modules/hydroponics/seeds.dm +++ b/code/modules/hydroponics/seeds.dm @@ -1050,3 +1050,19 @@ potency = 20 plant_type = 0 growthstages = 6 + +/obj/item/seeds/gatfruit + name = "pack of gatfruit seeds" + desc = "These seeds grow into .357 revolvers." + icon_state = "seed-gatfruit" + species = "gatfruit" + plantname = "gatfruit" + product = /obj/item/weapon/reagent_containers/food/snacks/grown/gatfruit + lifespan = 20 + endurance = 20 + maturation = 40 + production = 10 + yield = 2 + potency = 60 + plant_type = 0 + growthstages = 2 \ No newline at end of file diff --git a/icons/obj/harvest.dmi b/icons/obj/harvest.dmi index 8a1a1a4fea8..a2743f61c00 100644 Binary files a/icons/obj/harvest.dmi and b/icons/obj/harvest.dmi differ diff --git a/icons/obj/hydroponics.dmi b/icons/obj/hydroponics.dmi index f6765b5aa65..5c4bf266cf3 100644 Binary files a/icons/obj/hydroponics.dmi and b/icons/obj/hydroponics.dmi differ diff --git a/icons/obj/seeds.dmi b/icons/obj/seeds.dmi index cd02f476fe4..94dc2fc5567 100644 Binary files a/icons/obj/seeds.dmi and b/icons/obj/seeds.dmi differ