120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
x = range(-0.6, 0.6);
z = range(-0.6, 0.6);
y = range(-0.6, 0.6);
};
acceleration = {
x = 0; y = range(0,1); z = 0;
};
texture = 'sorcery_sparkle.png' ..
'^[transform' .. (math.random(8) - 1) ..
'^[multiply:' .. color:brighten(1.7):hex();
glow = 14;
}
end
for i=0,48 do
minetest.add_particle{
pos = {
x = altar.x + range(-0.3,0.3);
|
|
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
x = range(-0.6, 0.6);
z = range(-0.6, 0.6);
y = range(-0.6, 0.6);
};
acceleration = {
x = 0; y = range(0,1); z = 0;
};
texture = sorcery.lib.image('sorcery_sparkle.png'):
transform(math.random(8) - 1):
multiply(color:brighten(1.7)):
render();
glow = 14;
}
end
for i=0,48 do
minetest.add_particle{
pos = {
x = altar.x + range(-0.3,0.3);
|