diff --git a/code/modules/hydroponics/_hydro_setup.dm b/code/modules/hydroponics/_hydro_setup.dm index 3b1ad91664..7761b746e7 100644 --- a/code/modules/hydroponics/_hydro_setup.dm +++ b/code/modules/hydroponics/_hydro_setup.dm @@ -105,10 +105,6 @@ GLOBAL_LIST_INIT(plant_item_products, list( /obj/item/spacecash/c10 = 1 )) -GLOBAL_LIST_INIT(forbidden_plant_growth_sprites, list( - "gnomes" - )) +GLOBAL_LIST_INIT(forbidden_plant_growth_sprites, list()) -GLOBAL_LIST_INIT(forbidden_plant_product_sprites, list( - "gnomes" - )) +GLOBAL_LIST_INIT(forbidden_plant_product_sprites, list()) diff --git a/code/modules/hydroponics/seed.dm b/code/modules/hydroponics/seed.dm index 397644366e..3015e0602a 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -457,7 +457,6 @@ var/list/banned_chems = list( "adminordrazine", - "magicdust", "nutriment" ) diff --git a/code/modules/hydroponics/seed_packets.dm b/code/modules/hydroponics/seed_packets.dm index da61b54d4d..ad3ebd7cca 100644 --- a/code/modules/hydroponics/seed_packets.dm +++ b/code/modules/hydroponics/seed_packets.dm @@ -337,9 +337,6 @@ GLOBAL_LIST_BOILERPLATE(all_seed_packs, /obj/item/seeds) /obj/item/seeds/rose/blood seed_type = "bloodrose" -/obj/item/seeds/gnomes - seed_type = "gnomes" - /obj/item/seeds/sifbulb seed_type = "sifbulb" diff --git a/code/modules/hydroponics/seedtypes/gnomes.dm b/code/modules/hydroponics/seedtypes/gnomes.dm deleted file mode 100644 index 2ee0901926..0000000000 --- a/code/modules/hydroponics/seedtypes/gnomes.dm +++ /dev/null @@ -1,25 +0,0 @@ -// Gnomes -/datum/seed/gnomes - name = "gnomes" - seed_name = "gnomes" - display_name = "gnomes" - force_layer = 3 - chems = list("magicdust" = list(5,20)) - -/datum/seed/gnomes/New() - ..() - set_trait(TRAIT_HARVEST_REPEAT,1) - set_trait(TRAIT_PLANT_ICON,"gnomes") - set_trait(TRAIT_PRODUCT_ICON,"gnomes") - set_trait(TRAIT_PRODUCT_COLOUR,"") - set_trait(TRAIT_FLESH_COLOUR,"") - set_trait(TRAIT_PLANT_COLOUR,"") - set_trait(TRAIT_BIOLUM_COLOUR,"#fff200") - set_trait(TRAIT_MATURATION,8) - set_trait(TRAIT_PRODUCTION,6) - set_trait(TRAIT_BIOLUM,1) - set_trait(TRAIT_YIELD,2) - set_trait(TRAIT_SPREAD,1) - set_trait(TRAIT_POTENCY,10) - set_trait(TRAIT_REQUIRES_NUTRIENTS,0) - set_trait(TRAIT_REQUIRES_WATER,0) diff --git a/code/modules/reagents/reagents/food_drinks.dm b/code/modules/reagents/reagents/food_drinks.dm index 90e0c8aa9c..6c7dbe71c5 100644 --- a/code/modules/reagents/reagents/food_drinks.dm +++ b/code/modules/reagents/reagents/food_drinks.dm @@ -4430,16 +4430,6 @@ if(dose * strength >= strength * 2.5) // Slurring takes longer. Again, intentional. M.slurring = max(M.slurring, 30) -/datum/reagent/nutriment/magicdust - name = "Magic Dust" - id = "magicdust" - description = "A dust harvested from gnomes, aptly named by pre-industrial civilizations." - taste_description = "something tingly" - taste_mult = 2 - reagent_state = LIQUID - nutriment_factor = 40 //very filling - color = "#d169b2" - /datum/reagent/drink/soda/kompot name = "Kompot" id = "kompot" diff --git a/polaris.dme b/polaris.dme index 5b098bede7..b6c988fa7d 100644 --- a/polaris.dme +++ b/polaris.dme @@ -2014,7 +2014,6 @@ #include "code\modules\hydroponics\seedtypes\eki.dm" #include "code\modules\hydroponics\seedtypes\flowers.dm" #include "code\modules\hydroponics\seedtypes\gelthi.dm" -#include "code\modules\hydroponics\seedtypes\gnomes.dm" #include "code\modules\hydroponics\seedtypes\grapes.dm" #include "code\modules\hydroponics\seedtypes\grass.dm" #include "code\modules\hydroponics\seedtypes\guali.dm"