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.
AM2Rogue/Export_Code/gml_Object_oSkorpLure_Step_...

30 lines
603 B

if (sprite_index == skorp_get_lure(sSkorpLure) || sprite_index == skorp_get_lure(sSkorpLureUp))
{
image_speed = 0.15
if (irandom(35) == 0 && cooldown <= 0)
{
glowing = 40
cooldown = 80
}
}
if (cooldown > 0)
cooldown--
if (glowing > 0)
glowing--
if (state == 100)
{
switch floor(image_angle)
{
case 270:
case 90:
sprite_index = skorp_get_lure(sSkorpLureUpV)
break
default:
sprite_index = skorp_get_lure(sSkorpLureV)
break
}
if (visible == false)
instance_destroy()
}