[MIRROR] Adds catburgers, egg with sausage, and sausage bread. [MDB IGNORE] (#8683)

* Adds catburgers, egg with sausage, and sausage bread. (#61894)

expansion: Added 3 new foods: Catburgers, Egg with sausage, and Sausage bread.

* Adds catburgers, egg with sausage, and sausage bread.

Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com>
This commit is contained in:
SkyratBot
2021-10-08 07:35:24 -04:00
committed by GitHub
co-authored by John Willard
parent 01d7f92277
commit 86bafa62a2
9 changed files with 67 additions and 1 deletions
+19
View File
@@ -92,6 +92,25 @@
foodtypes = GRAIN | MEAT
food_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/consumable/nutriment/protein = 2.4)
/obj/item/food/bread/sausage
name = "sausagebread loaf"
desc = "Dont think too much about it."
icon_state = "sausagebread"
foodtypes = GRAIN | MEAT
food_reagents = list(/datum/reagent/consumable/nutriment = 20, /datum/reagent/consumable/nutriment/vitamin = 10, /datum/reagent/consumable/nutriment/protein = 12)
tastes = list("bread" = 10, "meat" = 10)
/obj/item/food/bread/sausage/MakeProcessable()
AddElement(/datum/element/processable, TOOL_KNIFE, /obj/item/food/breadslice/sausage, 5, 30)
/obj/item/food/breadslice/sausage
name = "sausagebread slice"
desc = "A slice of delicious sausagebread."
icon_state = "sausagebreadslice"
foodtypes = GRAIN | MEAT
food_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/consumable/nutriment/protein = 2.4)
tastes = list("bread" = 10, "meat" = 10)
/obj/item/food/bread/xenomeat
name = "xenomeatbread loaf"
desc = "The culinary base of every self-respecting eloquen/tg/entleman. Extra Heretical."
+8
View File
@@ -343,6 +343,14 @@
foodtypes = GRAIN | TOXIC
venue_value = FOOD_PRICE_CHEAP
/obj/item/food/burger/catburger
name = "catburger"
desc = "Finally those cats and catpeople are worth something!"
icon_state = "catburger"
food_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/consumable/nutriment/protein = 3, /datum/reagent/consumable/nutriment/vitamin = 2)
tastes = list("bun" = 4, "meat" = 2, "cat" = 2)
foodtypes = GRAIN | MEAT | GROSS
/obj/item/food/burger/crab
name = "crab burger"
desc = "A delicious patty of the crabby kind, slapped in between a bun."
+9
View File
@@ -126,6 +126,15 @@
ant_attracting = FALSE
decomp_type = /obj/item/food/boiledegg/rotten
/obj/item/food/eggsausage
name = "egg with sausage"
desc = "A good egg with a side of sausages."
icon_state = "eggsausage"
food_reagents = list(/datum/reagent/consumable/nutriment/protein = 8, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/consumable/nutriment = 4)
foodtypes = MEAT | FRIED | BREAKFAST
tastes = list("egg" = 4, "meat" = 4)
venue_value = FOOD_PRICE_NORMAL
/obj/item/food/boiledegg/rotten
food_reagents = list(/datum/reagent/consumable/eggrot = 10)
tastes = list("rotten egg" = 1)