diff --git a/code/_globalvars/lists/maintenance_loot.dm b/code/_globalvars/lists/maintenance_loot.dm index d47bc5d9739..45eaef7479d 100644 --- a/code/_globalvars/lists/maintenance_loot.dm +++ b/code/_globalvars/lists/maintenance_loot.dm @@ -200,6 +200,7 @@ GLOBAL_LIST_INIT(uncommon_loot, list(//uncommon: useful items /obj/item/plaque = 1, /obj/item/storage/box/clown = 1, /obj/item/seeds/kronkus = 1, + /obj/item/seeds/odious_puffball = 1, ) = 8, list(//medical and chemicals diff --git a/code/modules/hydroponics/grown/mushrooms.dm b/code/modules/hydroponics/grown/mushrooms.dm index 3763e0cdf67..8e3b59ee1f0 100644 --- a/code/modules/hydroponics/grown/mushrooms.dm +++ b/code/modules/hydroponics/grown/mushrooms.dm @@ -328,3 +328,32 @@ . = ..() if(.) investigate_log("was planted by [key_name(user)] at [AREACOORD(user)]", INVESTIGATE_BOTANY) + +/obj/item/seeds/odious_puffball + name = "pack of odious pullball spores" + desc = "These spores reek! Disgusting." + icon_state = "seed-odiouspuffball" + species = "odiouspuffball" + growing_icon = 'icons/obj/hydroponics/growing_mushrooms.dmi' + icon_grow = "odiouspuffball-grow" + icon_dead = "odiouspuffball-dead" + icon_harvest = "odiouspuffball-harvest" + plantname = "Odious Puffballs" + maturation = 3 + production = 8 + potency = 30 + instability = 65 + growthstages = 3 + product = /obj/item/food/grown/mushroom/odious_puffball + genes = list(/datum/plant_gene/trait/smoke, /datum/plant_gene/trait/plant_type/fungal_metabolism, /datum/plant_gene/trait/squash) + reagents_add = list(/datum/reagent/toxin/spore = 0.2, /datum/reagent/consumable/nutriment = 0.04) + rarity = 35 + graft_gene = /datum/plant_gene/trait/smoke + +/obj/item/food/grown/mushroom/odious_puffball + seed = /obj/item/seeds/odious_puffball + name = "odious puffball" + desc = "Lycoperdon Faetidus: This puffball is considered a great nuisance not only because of the highly irritating nature of its spores, but also because of its considerable size and unsightly appearance." + icon_state = "odious_puffball" + tastes = list("rotten garlic" = 2, "mushroom" = 1, "spores" = 1) + wine_power = 50 diff --git a/icons/obj/hydroponics/growing_mushrooms.dmi b/icons/obj/hydroponics/growing_mushrooms.dmi index 6dcbc9fa958..1e1b243ca03 100644 Binary files a/icons/obj/hydroponics/growing_mushrooms.dmi and b/icons/obj/hydroponics/growing_mushrooms.dmi differ diff --git a/icons/obj/hydroponics/harvest.dmi b/icons/obj/hydroponics/harvest.dmi index 43a03f96068..af98f41751f 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 602b10c90fa..616978c6dcb 100644 Binary files a/icons/obj/hydroponics/seeds.dmi and b/icons/obj/hydroponics/seeds.dmi differ