-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
questionable_ingredients.js
65 lines (65 loc) · 1.56 KB
/
questionable_ingredients.js
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
addIngredient("totally_not_cocaine",{
type:"spice",
color:"#DDDDDD",
keywords:"cocaine,drug,powder,sugar,illegal",
});
addIngredient("totally_not_weed",{
type:"wheat",
color:"#44CC00",
keywords:"weed,drug,grass,illegal",
});
addIngredient("totally_not_fentanyl",{
type:"candy",
color:"#5599CC",
keywords:"fentanyl,drug,pill,sugar,illegal",
});
addIngredient("totally_not_meth",{
type:"cress",
color:"#4488FF",
keywords:"meth,drug,crystal,illegal",
});
addIngredient("gunpowder_:3",{
type:"spice",
color:"#676666",
keywords:"gunpowder,bomb,explosive,illegal",
});
addIngredient("uhm..._milk",{
type:"oil",
color:"#EEEEEE",
keywords:"cum,milk,illegal,ejaculate,liquid",
});
addIngredient("tooth",{
type:"mutton",
color:"#EFEFEE",
keywords:"tooth,illegal",
});
addIngredient("poison",{
type:"oil",
color:"#33CC11",
keywords:"poison,illegal,liquid",
});
addIngredient("blood",{
type:"oil",
color:"#990000",
keywords:"blood,illegal,liquid",
});
addIngredient("infant",{
type:"r74n",
color:"#FFD5C4",
keywords:"child,illegal,doll,human",
});
addIngredient("criminal",{
type:"r74n",
color:"#FF6A00",
keywords:"child,illegal,doll,human",
});
addIngredient("medicine",{
type:"candy",
color:"#CC0000",
keywords:"drug,illegal,substance",
});
addIngredient("tennis_ball_(definitely_not_loaded_up_with_gunpowder)_",{
type:"cheeseball",
color:"#44FF44",
keywords:"illegal,ball,tennis,bomb",
});