Skip to content

Commit 97d1d1f

Browse files
committed
Переработка
- Каротин теперь является алкогольным напитком без эффектов. - Морковный сок добавлен в раздатчик соды. - Фикс картонки морковного сока
1 parent 8b978d7 commit 97d1d1f

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed

modular_ss220/food_and_drinks/code/drinks.dm

+18-15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Добавляем морковный сок в раздатчик содовых
2+
/obj/machinery/chem_dispenser/soda/Initialize(mapload)
3+
dispensable_reagents += list("carrotjuice")
4+
return ..()
5+
16
/obj/item/reagent_containers/drinks/drinkingglass
27
name = "drinking glass"
38

@@ -922,26 +927,23 @@
922927
mix_message = "Красный свет из сосуда заполняет всё вокруг."
923928
mix_sound = 'sound/goonstation/misc/drinkfizz.ogg'
924929

925-
/datum/reagent/consumable/drink/carotene
930+
/datum/reagent/consumable/ethanol/carotene
926931
name = "Carotene"
927932
id = "carotene"
928-
description = "Оздоровительный микс из моркови, томата и цитрусовых."
933+
description = "Коктейль из моркови, вина и винограда."
929934
color = "#ffcb3b"
935+
alcohol_perc = 0.4
930936
drinking_glass_icon = 'modular_ss220/food_and_drinks/icons/drinks.dmi'
931937
drink_icon = "carotene"
932-
drink_name = "Glass of Carotene"
933-
drink_desc = "Как Окулин, но цветастее и вкуснее!"
934-
taste_description = "прилив витамина A"
935-
936-
/datum/reagent/consumable/drink/carotene/on_mob_life(mob/living/M)
937-
var/update_flags = STATUS_UPDATE_NONE
938-
M.AdjustEyeBlurry(-3 SECONDS)
938+
drink_name = "Carotene"
939+
drink_desc = "Несмотря на название, таким коктейлем намного более вероятно убить печень, чем вылечить плохое зрение."
940+
taste_description = "виноград, морковь и небольшую кислинку"
939941

940942
/datum/chemical_reaction/carotene
941943
name = "Carotene"
942944
id = "carotene"
943945
result = "carotene"
944-
required_reagents = list("doctorsdelight" = 1, "carrotjuice" = 3, "lemonade" = 1)
946+
required_reagents = list("grapejuice" = 1, "carrotjuice" = 1, "sugar" = 1, "lemonjuice" = 1, "wine" = 1)
945947
result_amount = 5
946948
mix_sound = 'sound/goonstation/misc/drinkfizz.ogg'
947949

@@ -952,7 +954,7 @@
952954
color = "#ffa600"
953955
drinking_glass_icon = 'modular_ss220/food_and_drinks/icons/drinks.dmi'
954956
drink_icon = "orangade"
955-
drink_name = "Glass of Orangade"
957+
drink_name = "Orangade"
956958
drink_desc = "Шипучая оранжевая радость, что заставляет улыбаться лишь при взгляде на неё!"
957959
taste_description = "апельсин с привкусом моркови"
958960

@@ -987,20 +989,20 @@
987989
/datum/reagent/consumable/ethanol/pineapple_carrot_shrub
988990
name = "Pineapple Carrot Shrub"
989991
id = "pineapple_carrot_shrub"
990-
description = "Пузырящийся коктейль из джина, ананаса и моркови."
992+
description = "Коктейль из джина, ананаса и моркови."
991993
color = "#e67e42"
992994
alcohol_perc = 0.4
993995
drinking_glass_icon = 'modular_ss220/food_and_drinks/icons/drinks.dmi'
994996
drink_icon = "pineapple_carrot_shrub"
995997
drink_name = "Pineapple Carrot Shrub"
996-
drink_desc = "Коктейль, сочетающий в себе вкусы тропиков и средиземья. Выглядит сладко и освежающе."
998+
drink_desc = "Коктейль, сочетающий в себе вкусы разных климатов. Выглядит сладко и освежающе."
997999
taste_description = "джин со сладостью моркови и ананаса"
9981000

9991001
/datum/chemical_reaction/pineapple_carrot_shrub
10001002
name = "Pineapple Carrot Shrub"
10011003
id = "pineapple_carrot_shrub"
10021004
result = "pineapple_carrot_shrub"
1003-
required_reagents = list("gin" = 2, "carrotjuice" = 1, "pineapplejuice" = 1, "ice" = 1)
1005+
required_reagents = list("gin" = 2, "carrotjuice" = 1, "pineapplejuice" = 1, "sugar" = 1)
10041006
result_amount = 5
10051007
mix_sound = 'sound/goonstation/misc/drinkfizz.ogg'
10061008

@@ -1027,9 +1029,10 @@
10271029
/obj/item/reagent_containers/drinks/bottle/carrotjuice_carton
10281030
name = "carrot juice"
10291031
desc = "Упаковка морковного сока. Полезен для зрения и, если верить некоторым слухам, для роста."
1030-
icon = 'modular_ss220/food_and_drinks/icons/drinks.dmi'
10311032
icon_state = "carrotjuice_carton"
10321033
item_state = "carton"
1034+
is_glass = FALSE
1035+
gender = PLURAL
10331036
list_reagents = list("carrotjuice" = 50)
10341037

10351038
/obj/machinery/economy/vending/boozeomat/Initialize(mapload)

0 commit comments

Comments
 (0)