1 |
timer++; |
2 |
if (timer > 0 && timer < 8) |
3 |
{ |
4 |
d = instance_create(x, y, obj_rouxls_power_up_orb); |
5 |
d.direction = irandom(360); |
6 |
d.lifetime = 12; |
7 |
d.depth = depth + 1; |
8 |
d.image_blend = image_blend; |
9 |
} |
10 |
if (timer > 0 && timer < 14) |
11 |
{ |
12 |
image_xscale += 0.025; |
13 |
image_yscale += 0.025; |
14 |
} |
15 |
if (timer == 14) |
16 |
{ |
17 |
snd_play(snd_wallclaw); |
18 |
laser = instance_create(x, y, obj_queen_laser); |
19 |
laser.image_angle = image_angle; |
20 |
laser.direction = image_angle; |
21 |
laser.image_yscale = 1; |
22 |
instance_destroy(); |
23 |
} |