Fixes the Basic Sandwich (#84552)

## About The Pull Request
Fixes the basic sandwich recipe from having the incorrect ingredients
and incorrect food types. Now its consistent with its description, taste
and ingredients.

## Why It's Good For The Game
Makes things consistent, gives a vegetable recipe the vegetable
ingredient, and meat and dairy ingredients the meat and dairy tags.

Fixes downstream: https://github.com/NovaSector/NovaSector/issues/1318

## Changelog
🆑
fix: Fixed the basic Sandwich recipe and tags, now it matches the
description and original intent.
/🆑
This commit is contained in:
OrbisAnima
2024-07-02 19:24:19 +02:00
committed by GitHub
parent 26cbbf77d2
commit cdc7bb6b82
2 changed files with 2 additions and 1 deletions
@@ -9,7 +9,7 @@
/datum/reagent/consumable/nutriment/vitamin = 1,
)
tastes = list("meat" = 2, "cheese" = 1, "bread" = 2, "lettuce" = 1)
foodtypes = GRAIN | VEGETABLES
foodtypes = GRAIN | VEGETABLES | DAIRY | MEAT
food_flags = FOOD_FINGER_FOOD
w_class = WEIGHT_CLASS_SMALL
crafting_complexity = FOOD_COMPLEXITY_3
@@ -10,6 +10,7 @@
name = "Sandwich"
reqs = list(
/obj/item/food/breadslice/plain = 2,
/obj/item/food/grown/cabbage = 1,
/obj/item/food/meat/steak = 1,
/obj/item/food/cheese/wedge = 1
)