-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathcannibalism.js
91 lines (90 loc) · 1.8 KB
/
cannibalism.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
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
addIngredient("human",{
type:"meat",
color:"#b81d32",
keywords:"flesh",
});
addIngredient("fetus",{
color:"#fa8989",
type:"meat",
shape:"embryo",
keywords:"human,embryo,baby",
});
addIngredient("hand",{
color:"#ffaf87",
type:"meat",
shape:"four_splay",
keywords:"human",
});
addIngredient("blood",{
color:"#fd0000",
type:"liquid",
adj:"bloody",
keywords:"human,heart",
reactions: {
bacteria: {set1:"infected_blood"},
infected_blood: {set1:"infected_blood"},
poison: {set1:"infected_blood"},
}
});
addIngredient("infected_blood",{
color:"d40047",
type:"liquid",
adj:"infected",
keywords:"human,infection,bacteria",
});
addIngredient("heart",{
type:"meat",
color:"e30242",
shape:"heart",
adj:"lovely",
keywords:"human,organ",
});
addIngredient("intenstines",{
type:"meat",
color:"bf2654",
shape:"noodles",
keywords:"human,organ",
});
addIngredient("brain",{
type:"meat",
color:"f23d67",
shape:"brain",
adj:"intelligent",
keywords:"human,organ",
});
addIngredient("stomach",{
type:"meat",
color:"ff87cb",
shape:"bean_l",
keywords:"human,organ",
});
addIngredient("liver",{
type:"meat",
color:"6b1c1c",
shape:"bean_l",
keywords:"human,organ",
});
addIngredient("kidney",{
type:"meat",
color:"7d1111",
shape:"bean",
keywords:"human,organ",
});
addIngredient("ear",{
type:"meat",
color:"ffaf87",
shape:"ear",
keywords:"human,organ",
});
addIngredient("eye",{
type:"meat",
color:"ffadad",
shape:"ball_strung",
keywords:"human,organ",
});
addRecipe("fetus+poison","abortion");
addRecipe("fetus+knife","abortion");
addRecipe("broth+brain","brain_stew");
addRecipe("alcohol+liver","hepatitis");
addRecipe("beer+liver","hepatitis");
addRecipe("hand+hand","high_five!");