You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
517 B
14 lines
517 B
with (wall)
|
|
instance_destroy()
|
|
PlaySoundMono(sndIceShatter)
|
|
repeat (8)
|
|
{
|
|
instance_create((x + random_range(-16, 16)), (y + 8), oIceShard)
|
|
instance_create((x + random_range(-16, 16)), (y + 16), oIceShard)
|
|
instance_create((x + random_range(-16, 16)), (y + 24), oIceShard)
|
|
instance_create((x + random_range(-16, 16)), (y + 32), oIceShard)
|
|
instance_create((x + random_range(-16, 16)), (y + 40), oIceShard)
|
|
instance_create((x + random_range(-16, 16)), (y + 48), oIceShard)
|
|
}
|
|
instance_destroy()
|