mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 12:35:33 +01:00
fried chicken
This commit is contained in:
@@ -933,3 +933,17 @@
|
||||
/obj/item/food/meat/cutlet/chicken
|
||||
name = "chicken cutlet"
|
||||
tastes = list("chicken" = 1)
|
||||
|
||||
/obj/item/food/fried_chicken
|
||||
name = "fried chicken"
|
||||
desc = "A juicy hunk of chicken meat, fried to perfection."
|
||||
icon_state = "fried_chicken1"
|
||||
food_reagents = list(/datum/reagent/consumable/nutriment/protein = 6, /datum/reagent/consumable/nutriment/vitamin = 2)
|
||||
tastes = list("chicken" = 3, "fried batter" = 1)
|
||||
foodtypes = MEAT | FRIED
|
||||
junkiness = 25
|
||||
|
||||
/obj/item/food/fried_chicken/Initialize()
|
||||
. = ..()
|
||||
if(prob(50))
|
||||
icon_state = "fried_chicken2"
|
||||
|
||||
@@ -259,3 +259,14 @@
|
||||
)
|
||||
result = /obj/item/food/salad/gumbo
|
||||
subcategory = CAT_MEAT
|
||||
|
||||
|
||||
/datum/crafting_recipe/food/fried_chicken
|
||||
name = "Fried Chicken"
|
||||
reqs = list(
|
||||
/obj/item/food/meat/slab/chicken = 1,
|
||||
/datum/reagent/consumable/flour = 5,
|
||||
/datum/reagent/consumable/corn_starch = 5,
|
||||
)
|
||||
result = /obj/item/food/fried_chicken
|
||||
subcategory = CAT_MEAT
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
Reference in New Issue
Block a user