sQueenChargeParticle
0
-1
10
0
<undefined>
<undefined>
1
603
7
0
0
-1
2
self
0
0
1
image_alpha = 0;
startx = x;
starty = y;
x += 64 + random(16);
y += random_range(-28, 58);
direction = point_direction(x, y, startx, starty);
speed = 2;
fadeout = 0;
fadein = 1;
1
603
7
0
0
-1
2
self
0
0
1
if (fadein) {
if (image_alpha < 0.6) {
image_alpha += 0.05;
} else fadein = 0;
}
if (point_distance(x, y, startx, starty) < 20) fadeout = 1;
if (fadeout) {
if (image_alpha > 0) {
image_alpha -= 0.2;
} else instance_destroy();
}
1
603
7
0
0
-1
2
self
0
0
1
draw_set_blend_mode(bm_add);
draw_self();
draw_set_blend_mode(bm_normal);
0
0
0
0.5
0.100000001490116
0
0.100000001490116
0.100000001490116
0.200000002980232
-1
0