Skip to content

Commit

Permalink
Ух бля
Browse files Browse the repository at this point in the history
  • Loading branch information
AyIong committed Sep 18, 2023
1 parent d1181f1 commit ea54705
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion modular_ss220/food/code/food.dm
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,7 @@
trash = /obj/item/trash/pan
filling_color = "#f85210"
list_reagents = list("nutriment" = 4, "protein" = 2, "plantmatter" = 4, "thermite" = 2)
tastes = list("ух бля" = 4, "ёбаный ад" = 2, "мясо" = 2)
tastes = list("перец" = 4, "чеснок" = 2, "томат" = 2)
bitesize = 5

/datum/recipe/oven/fathersoup
Expand All @@ -994,6 +994,14 @@
/obj/item/reagent_containers/food/snacks/grown/tomato)
result = /obj/item/reagent_containers/food/snacks/fathersoup

/obj/item/reagent_containers/food/snacks/fathersoup/On_Consume(mob/M, mob/user)
. = ..()
user.visible_message("<span class='notice'>У [M] на лбу аж пот выступает от [src].</span>")
if(prob(33))
var/soup_talk = "Ух бля..."
M.say(soup_talk)
return ..()

/obj/item/trash/pan
name = "дырявая сковорода"
icon = 'modular_ss220/food/icons/food.dmi'
Expand Down

0 comments on commit ea54705

Please sign in to comment.