forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add kvas and related dishes (#36)
- Добавляет квас как реагент. (Пиво 1 часть. Сахар 2 части. Энзим 5 юнитов, как катализатор). Квас повышает настроение и медленно выводит токсины. - Добавляет бочку кваса на 1000 юнитов, в карго, в раздел канистр.  - Добавляет окрошку в категорию супов, как овощное и мясное блюдо. (20 юнитов кваса. 1 огурец. 1 сырая котлета).  - Добавляет мемную пластиковую бутылку с квасом, для щитспавнов.  Co-authored-by: Bizzonium <[email protected]> Co-authored-by: BeebBeebBoob <[email protected]> Co-authored-by: Vallat <[email protected]> Co-authored-by: Magic101lvl <[email protected]> Co-authored-by: VastKilleroOm <[email protected]> Co-authored-by: Krashly <[email protected]> Co-authored-by: Holoo <[email protected]>
- Loading branch information
1 parent
b86fb0f
commit 2766694
Showing
11 changed files
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/datum/supply_pack/materials/kvastank | ||
name = "Kvass Barrel Crate" | ||
desc = "Contains a classic kvass barrel" | ||
cost = CARGO_CRATE_VALUE * 1.6 | ||
contains = list(/obj/structure/reagent_dispensers/kvastank) | ||
crate_name = "kvass barrel crate" | ||
crate_type = /obj/structure/closet/crate/large |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/datum/chemical_reaction/drink/kvas | ||
results = list(/datum/reagent/consumable/kvas = 3) | ||
required_reagents = list(/datum/reagent/consumable/ethanol/beer = 2, /datum/reagent/consumable/sugar = 1) | ||
required_catalysts = list(/datum/reagent/consumable/enzyme = 5) |
10 changes: 10 additions & 0 deletions
10
code/modules/food_and_drinks/recipes/tablecraft/recipe_okroshka.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/datum/crafting_recipe/food/oksroshka | ||
name = "Okroshka" | ||
reqs = list( | ||
/datum/reagent/consumable/kvas = 20, | ||
/obj/item/reagent_containers/cup/bowl = 1, | ||
/obj/item/food/grown/cucumber = 1, | ||
/obj/item/food/meat/rawcutlet = 1, | ||
) | ||
result = /obj/item/food/soup/okroshka | ||
subcategory = CAT_SOUP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/datum/reagent/consumable/kvas | ||
name = "Kvass" | ||
description = "Ancient slavic drink" | ||
nutriment_factor = 0 | ||
quality = DRINK_GOOD | ||
taste_description = "sweet" | ||
glass_icon_state = "fernetpuro" | ||
glass_name = "stakan of kvass" | ||
glass_desc = "Very vkusno." | ||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||
|
||
/datum/reagent/consumable/kvas/on_mob_life(mob/living/carbon/M, delta_time, times_fired) | ||
if(M.getToxLoss() && DT_PROB(10, delta_time)) | ||
M.adjustToxLoss(-1, 0) | ||
..() | ||
. = TRUE | ||
|
||
/obj/item/food/soup/okroshka | ||
name = "okroshka" | ||
desc = "Kvas is good. Kvas soup is even better." | ||
icon = 'icons/obj/food/okroshka.dmi' | ||
icon_state = "okroshka" | ||
food_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/protein = 8, /datum/reagent/consumable/kvas = 5, /datum/reagent/consumable/nutriment/vitamin = 4) | ||
tastes = list("okroshka" = 1) | ||
foodtypes = VEGETABLES | MEAT | ||
venue_value = FOOD_PRICE_NORMAL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/obj/item/food/soup/okroshka | ||
name = "okroshka" | ||
desc = "Kvas is good. Kvas soup is even better." | ||
icon = 'icons/obj/food/okroshka.dmi' | ||
icon_state = "okroshka" | ||
food_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/protein = 8, /datum/reagent/consumable/kvas = 5, /datum/reagent/consumable/nutriment/vitamin = 4) | ||
tastes = list("okroshka" = 1) | ||
foodtypes = VEGETABLES | MEAT | ||
venue_value = FOOD_PRICE_NORMAL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/obj/structure/reagent_dispensers/kvastank | ||
name = "barrel of kvass" | ||
desc = "A yellow barrel full of kvass. No there is no worms inside." | ||
icon = 'icons/obj/medical/kvas_tank.dmi' | ||
icon_state = "kvas_tank" | ||
reagent_id = /datum/reagent/consumable/kvas | ||
tank_volume = 1000 | ||
openable = TRUE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/obj/item/reagent_containers/cup/kvas | ||
name = "kvass bottle" | ||
desc = "A bottled cheap kvas." | ||
volume = 50 | ||
icon = 'icons/obj/kvas_bottle.dmi' | ||
icon_state = "kvas_bottle" | ||
list_reagents = list(/datum/reagent/consumable/kvas = 50) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters