122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
leaf = {
color = lib.color(.6, .8, .8);
drop = simpleDrop(2, 'starlit_eco:moondrop_petal');
};
berries = {
desc = "The fruits of the moondrop are not very nutritious, but their peculiar sweet-sour flavor profile makes them one of Farthest Shadow's great delicacies";
color = lib.color(1,0,.4);
nourish = 10;
hydrate = 0.05;
taste = 1 * 60;
mass = 1;
};
decoration = {
place_on = 'starlit:greengraze';
fill_ratio = 0.03;
biomes = {'starlit:steppe', 'starlit:forest'};
y_min = 10;
y_max = 100;
|
|
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
leaf = {
color = lib.color(.6, .8, .8);
drop = simpleDrop(2, 'starlit_eco:moondrop_petal');
};
berries = {
desc = "The fruits of the moondrop are not very nutritious, but their peculiar sweet-sour flavor profile makes them one of Farthest Shadow's great delicacies";
color = lib.color(1,0,.4);
mass = 1;
impact = starlit.type.impact {
nutrition = 10;
hydration = 0.05;
taste = 1*60;
};
};
decoration = {
place_on = 'starlit:greengraze';
fill_ratio = 0.03;
biomes = {'starlit:steppe', 'starlit:forest'};
y_min = 10;
y_max = 100;
|