-
-
Notifications
You must be signed in to change notification settings - Fork 444
/
Copy pathrecipes_sandwich.dm
71 lines (62 loc) · 2.34 KB
/
recipes_sandwich.dm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// see code/datums/recipe.dm
// see code/module/crafting/table.dm
////////////////////////////////////////////////SANDWICHES////////////////////////////////////////////////
/datum/crafting_recipe/food/grilledcheesesandwich
name = "Cheese Sandwich"
reqs = list(
/obj/item/reagent_containers/food/snacks/breadslice/plain = 2,
/obj/item/reagent_containers/food/snacks/cheesewedge = 2
)
result = /obj/item/reagent_containers/food/snacks/grilledcheese
category = CAT_SANDWICH
/datum/crafting_recipe/food/slimesandwich
name = "Jelly Sandwich"
reqs = list(
/datum/reagent/toxin/slimejelly = 5,
/obj/item/reagent_containers/food/snacks/breadslice/plain = 2
)
result = /obj/item/reagent_containers/food/snacks/jellysandwich/slime
category = CAT_SANDWICH
/datum/crafting_recipe/food/cherrysandwich
name = "Jelly Sandwich"
reqs = list(
/datum/reagent/consumable/cherryjelly = 5,
/obj/item/reagent_containers/food/snacks/breadslice/plain = 2
)
result = /obj/item/reagent_containers/food/snacks/jellysandwich/cherry
category = CAT_SANDWICH
/datum/crafting_recipe/food/notasandwich
name = "Not a Sandwich"
reqs = list(
/obj/item/reagent_containers/food/snacks/breadslice/plain = 2,
/obj/item/clothing/mask/fakemoustache = 1
)
result = /obj/item/reagent_containers/food/snacks/notasandwich
category = CAT_SANDWICH
/datum/crafting_recipe/food/pbb_sandwich
name = "Peanut Butter and Banana Sandwich"
reqs = list(
/obj/item/reagent_containers/food/snacks/breadslice/plain = 2,
/datum/reagent/consumable/peanut_butter = 5,
/obj/item/reagent_containers/food/snacks/grown/banana = 1
)
result = /obj/item/reagent_containers/food/snacks/pbb_sandwich
category = CAT_SANDWICH
/datum/crafting_recipe/food/pbj_sandwich
name = "Peanut Butter and Jelly Sandwich"
reqs = list(
/obj/item/reagent_containers/food/snacks/breadslice/plain = 2,
/datum/reagent/consumable/peanut_butter = 5,
/datum/reagent/consumable/cherryjelly = 5
)
result = /obj/item/reagent_containers/food/snacks/pbj_sandwich
category = CAT_SANDWICH
/datum/crafting_recipe/food/sandwich
name = "Sandwich"
reqs = list(
/obj/item/reagent_containers/food/snacks/breadslice/plain = 2,
/obj/item/reagent_containers/food/snacks/meat/steak = 1,
/obj/item/reagent_containers/food/snacks/cheesewedge = 1
)
result = /obj/item/reagent_containers/food/snacks/sandwich
category = CAT_SANDWICH