diff --git a/code/defines/obj/hydro.dm b/code/defines/obj/hydro.dm index 0ca30a391ec5..e970874c5e47 100644 --- a/code/defines/obj/hydro.dm +++ b/code/defines/obj/hydro.dm @@ -207,6 +207,24 @@ plant_type = 0 growthstages = 1 +/obj/item/seeds/cucumberseed + name = "pack of cucumber seeds" + cases = list("семена огурцов", "семян огурцов", "семенам огурцов", "семена огурцов", "семенами огурцов", "семенах огурцов") + desc = "Эти семена вырастают в огурцы." + icon_state = "seed-cucumber" + hydroponictray_icon_path = 'icons/obj/hydroponics/growing_vegetables.dmi' + species = "cucumber" + plantname = "Cucumbers" + product_type = /obj/item/weapon/reagent_containers/food/snacks/grown/cucumber + lifespan = 30 + endurance = 20 + maturation = 3 + production = 4 + yield = 4 + potency = 4 + plant_type = 0 + growthstages = 4 + /obj/item/seeds/tobacco_space name = "pack of space tobacco seeds" desc = "These seeds grow into space tobacco plants." diff --git a/code/game/machinery/vending/hydroponics.dm b/code/game/machinery/vending/hydroponics.dm index 4fe0b221cb70..aa23094bd6a4 100644 --- a/code/game/machinery/vending/hydroponics.dm +++ b/code/game/machinery/vending/hydroponics.dm @@ -40,6 +40,7 @@ /obj/item/seeds/bananaseed = 3, /obj/item/seeds/berryseed = 3, /obj/item/seeds/cabbageseed = 3, + /obj/item/seeds/cucumberseed = 3, /obj/item/seeds/carrotseed = 3, /obj/item/seeds/cherryseed = 3, /obj/item/seeds/chantermycelium = 3, diff --git a/code/modules/cargo/exports/grown.dm b/code/modules/cargo/exports/grown.dm index 88042a0caa5e..8d58bf2215ff 100644 --- a/code/modules/cargo/exports/grown.dm +++ b/code/modules/cargo/exports/grown.dm @@ -70,6 +70,11 @@ use it if low potency results garbage from harvested crop cost = 15 export_types = list(/obj/item/seeds/bananaseed) +/datum/export/seed/cucumber + unit_name = "pack of cucumber seeds" + cost = 15 + export_types = list(/obj/item/seeds/cucumberseed) + /datum/export/seed/rice unit_name = "pack of rice seeds" cost = 15 diff --git a/code/modules/reagents/reagent_containers/food/snacks/grown.dm b/code/modules/reagents/reagent_containers/food/snacks/grown.dm index e86172483e03..5697bb0d258c 100644 --- a/code/modules/reagents/reagent_containers/food/snacks/grown.dm +++ b/code/modules/reagents/reagent_containers/food/snacks/grown.dm @@ -218,6 +218,21 @@ reagents.add_reagent("nutriment", 1+round((potency / 10), 1)) bitesize = reagents.total_volume +/obj/item/weapon/reagent_containers/food/snacks/grown/cucumber + seed_type = /obj/item/seeds/cucumberseed + name = "cucumber" + cases = list("огурец", "огурца", "огурцу", "огурец", "огурцом", "огурце") + desc = "Выглядит как слащавый огурчик." + icon_state = "cucumber" + item_state_world = "cucumber_world" + potency = 15 + filling_color = "#598157" + +/obj/item/weapon/reagent_containers/food/snacks/grown/cucumber/atom_init() + . = ..() + reagents.add_reagent("ethylredoxrazine", 1+round((potency / 10), 1)) + bitesize = reagents.total_volume + /obj/item/weapon/reagent_containers/food/snacks/grown/berries seed_type = /obj/item/seeds/berryseed name = "bunch of berries" diff --git a/icons/obj/hydroponics/growing_vegetables.dmi b/icons/obj/hydroponics/growing_vegetables.dmi index d6b19ad8ad0b..f24a130a1d17 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 58e3ac8704f7..e15d01ae1cb7 100644 Binary files a/icons/obj/hydroponics/harvest.dmi and b/icons/obj/hydroponics/harvest.dmi differ diff --git a/icons/obj/hydroponics/hydroponics.dmi b/icons/obj/hydroponics/hydroponics.dmi index 4ac874a56328..afb61ad292e9 100644 Binary files a/icons/obj/hydroponics/hydroponics.dmi and b/icons/obj/hydroponics/hydroponics.dmi differ diff --git a/icons/obj/hydroponics/seeds.dmi b/icons/obj/hydroponics/seeds.dmi index d4343782efaf..ae6df10cddfd 100644 Binary files a/icons/obj/hydroponics/seeds.dmi and b/icons/obj/hydroponics/seeds.dmi differ