Skip to content

Commit

Permalink
Add: Shavel and Shavel Soup (ss220-space#3886)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReloadKey authored and SuhEugene committed Nov 24, 2023
1 parent bd72033 commit 854c654
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/game/machinery/vending.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,8 @@
/obj/item/seeds/watermelon = 3,
/obj/item/seeds/wheat = 3,
/obj/item/seeds/soya/olive = 3,
/obj/item/seeds/whitebeet = 3)
/obj/item/seeds/whitebeet = 3,
/obj/item/seeds/shavel = 3)
contraband = list(/obj/item/seeds/cannabis = 3,
/obj/item/seeds/amanita = 2,
/obj/item/seeds/fungus = 3,
Expand Down
7 changes: 7 additions & 0 deletions code/modules/food_and_drinks/food/foods/soups.dm
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,13 @@
tastes = list("potato" = 1, "pickles" = 1, "rice" = 1, "Russia" = 1)
foodtype = VEGETABLES

/obj/item/reagent_containers/food/snacks/soup/shavelsoup
name = "shavel soup"
desc = "Light soup with fresh shavel and vegetables."
icon_state = "shavelsoup"
filling_color = "#135f13"
list_reagents = list("nutriment" = 4, "water" = 5, "vitamin" = 5)
tastes = list("sour weed" = 1, "potato" = 1)
//////////////////////
// Stews //
//////////////////////
Expand Down
6 changes: 6 additions & 0 deletions code/modules/food_and_drinks/recipes/recipes_microwave.dm
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,12 @@
items = list(/obj/item/reagent_containers/food/snacks/meat, /obj/item/reagent_containers/food/snacks/grown/icepepper, /obj/item/reagent_containers/food/snacks/grown/tomato)
result = /obj/item/reagent_containers/food/snacks/soup/coldchili

/datum/recipe/microwave/shavelsoup
reagents = list("water" = 10)
items = list(/obj/item/reagent_containers/food/snacks/cutlet, /obj/item/reagent_containers/food/snacks/grown/potato, /obj/item/reagent_containers/food/snacks/egg,
/obj/item/reagent_containers/food/snacks/grown/shavel)
result = /obj/item/reagent_containers/food/snacks/soup/shavelsoup

//Burger
/datum/recipe/microwave/spellburger
items = list(
Expand Down
29 changes: 29 additions & 0 deletions code/modules/hydroponics/grown/flowers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -240,3 +240,32 @@
if(!user.gloves)
to_chat(user, "<span class='danger'>The [name] burns your bare hand!</span>")
user.adjustFireLoss(rand(1, 5))
//Shavel
/obj/item/seeds/shavel
name = "pack of shavel seeds"
desc = "These seeds grow into shavel."
icon_state = "seed-shavel"
species = "shavel"
plantname = "Shavel Plants"
product = /obj/item/reagent_containers/food/snacks/grown/shavel
lifespan = 60
endurance = 65
potency = 15
maturation = 6
production = 2
yield = 7
growthstages = 3
genes = list(/datum/plant_gene/trait/repeated_harvest)
growing_icon = 'icons/obj/hydroponics/growing.dmi'
icon_grow = "shavel-grow"
icon_dead = "shavel-dead"
icon_harvest = "shavel-harvest"
reagents_add = list("plantmatter" = 0.04, "vitamin" = 0.15)
/obj/item/reagent_containers/food/snacks/grown/shavel
seed = /obj/item/seeds/shavel
name = "shavel"
desc = "A shavel leaf."
origin_tech = "biotech=2"
icon_state = "shavel"
tastes = list("sour weed" = 1)
filling_color = "#177025"
Binary file modified icons/obj/food/food.dmi
Binary file not shown.
Binary file modified icons/obj/hydroponics/growing.dmi
Binary file not shown.
Binary file modified icons/obj/hydroponics/harvest.dmi
Binary file not shown.
Binary file modified icons/obj/hydroponics/seeds.dmi
Binary file not shown.

0 comments on commit 854c654

Please sign in to comment.