-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
exotic_stuff.js
88 lines (77 loc) · 1.56 KB
/
exotic_stuff.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
//exotic stuff mod upd 1
addIngredient("mangosteen",{
color:["#854752","#e96668"],
type:"fruit",
shape:"fruit_bi",
innerColor:"#dfdade"
});
addIngredient("pink_lemonade",{
color:"#f4918b",
type:"lemonade",
hidden:"true"
});
addIngredient("jackfruit",{
color:"#e2ee27",
type:"fruit",
shape:"circle_thorny",
innerColor:"#eebd4f",
scale:1.2
});
addIngredient("longan",{
color:"#dfa776",
type:"fruit",
shape:"circle_rough",
scale:0.5,
innerColor:"#dfdade"
});
editIngredient("lemonade",{
type:"lemon_juice",
color:"#fffa8b",
parts:["lemon"],
reactions: {
raspberry: { set1:"pink_lemonade" , set2:null },
},
});
addIngredient("rasp_berry",{
color:"#E30B5D",
type:"berry",
shape:"bunch",
scale:0.75,
hidden:true
});
editIngredient("blue_raspberry",{
color:"#0b19e3",
type:"rasp_berry"
//reminder to make edited raspberry compatible w other mods
});
addIngredient("black_gojiberry",{
color:"#1a1a1a",
type:"berry",
shape:"fruit_nub_thick",
scale:0.5,
reactions: {
water: { set1:"tea" , set2:null },
},
});
addIngredient("sapote",{
color:"#9f6e3d",
type:"fruit",
shape:"fruit_extrude",
innerColor:"#f88431",
scale:1.2
});
addIngredient("canistel",{
color:"#fbb70e",
shape:"lens_vertical",
type:"fruit"
});
addIngredient("edameme",{
color:"#a0ce5e",
shape:"curve_thick",
broken:"edameme_beans"
});
addIngredient("edameme_beans",{
type:"bean",
color:"#a0ce5e",
hidden:true
});