-
-
Notifications
You must be signed in to change notification settings - Fork 444
/
Copy pathrecipes_drink.dm
118 lines (106 loc) · 3.56 KB
/
recipes_drink.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// This is the home of drink related tablecrafting recipes, I have opted to only let players bottle fancy boozes to reduce the number of entries.
///////////////// Booze & Bottles ///////////////////
/datum/crafting_recipe/kong
name = "Kong"
result = /obj/item/reagent_containers/food/drinks/bottle/kong
time = 3 SECONDS
reqs = list(
/datum/reagent/consumable/ethanol/whiskey = 100,
/obj/item/reagent_containers/food/snacks/monkeycube = 1,
/obj/item/reagent_containers/food/drinks/bottle = 1
)
category = CAT_DRINK
/datum/crafting_recipe/candycornliquor
name = "Candy Corn Liquor"
result = /obj/item/reagent_containers/food/drinks/bottle/candycornliquor
time = 3 SECONDS
reqs = list(
/datum/reagent/consumable/ethanol/whiskey = 100,
/obj/item/reagent_containers/food/snacks/candy_corn = 1,
/obj/item/reagent_containers/food/drinks/bottle = 1
)
category = CAT_DRINK
/datum/crafting_recipe/lizardwine
name = "Lizard Wine"
time = 4 SECONDS
reqs = list(
/obj/item/organ/tail/lizard = 1,
/datum/reagent/consumable/ethanol = 100,
/obj/item/reagent_containers/food/drinks/bottle = 1
)
blacklist = list(/obj/item/organ/tail/lizard/fake)
result = /obj/item/reagent_containers/food/drinks/bottle/lizardwine
category = CAT_DRINK
/datum/crafting_recipe/moonshinejug
name = "Moonshine Jug"
time = 3 SECONDS
reqs = list(
/obj/item/reagent_containers/food/drinks/bottle = 1,
/datum/reagent/consumable/ethanol/moonshine = 100
)
result = /obj/item/reagent_containers/food/drinks/bottle/moonshine
category = CAT_DRINK
/datum/crafting_recipe/hoochbottle
name = "Hooch Bottle"
time = 3 SECONDS
reqs = list(
/obj/item/reagent_containers/food/drinks/bottle = 1,
/obj/item/storage/box/papersack = 1,
/datum/reagent/consumable/ethanol/hooch = 100
)
result = /obj/item/reagent_containers/food/drinks/bottle/hooch
category = CAT_DRINK
/datum/crafting_recipe/blazaambottle
name = "Blazaam Bottle"
time = 20
reqs = list(
/obj/item/reagent_containers/food/drinks/bottle = 1,
/datum/reagent/consumable/ethanol/blazaam = 100
)
result = /obj/item/reagent_containers/food/drinks/bottle/blazaam
category = CAT_DRINK
/datum/crafting_recipe/champagnebottle
name = "Champagne Bottle"
time = 3 SECONDS
reqs = list(
/obj/item/reagent_containers/food/drinks/bottle = 1,
/datum/reagent/consumable/ethanol/champagne = 100
)
result = /obj/item/reagent_containers/food/drinks/bottle/champagne
category = CAT_DRINK
/datum/crafting_recipe/trappistbottle
name = "Trappist Bottle"
time = 1.5 SECONDS
reqs = list(
/obj/item/reagent_containers/food/drinks/bottle/small = 1,
/datum/reagent/consumable/ethanol/trappist = 50
)
result = /obj/item/reagent_containers/food/drinks/bottle/trappist
category = CAT_DRINK
/datum/crafting_recipe/goldschlagerbottle
name = "Goldschlager Bottle"
time = 3 SECONDS
reqs = list(
/obj/item/reagent_containers/food/drinks/bottle = 1,
/datum/reagent/consumable/ethanol/goldschlager = 100
)
result = /obj/item/reagent_containers/food/drinks/bottle/goldschlager
category = CAT_DRINK
/datum/crafting_recipe/patronbottle
name = "Patron Bottle"
time = 3 SECONDS
reqs = list(
/obj/item/reagent_containers/food/drinks/bottle = 1,
/datum/reagent/consumable/ethanol/patron = 100
)
result = /obj/item/reagent_containers/food/drinks/bottle/patron
category = CAT_DRINK
/datum/crafting_recipe/nothingbottle
name = "Nothing Bottle"
time = 3 SECONDS
reqs = list(
/obj/item/reagent_containers/food/drinks/bottle = 1,
/datum/reagent/consumable/nothing = 100
)
result = /obj/item/reagent_containers/food/drinks/bottle/bottleofnothing
category = CAT_DRINK