Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_attack_ceroba_bell_ring_white_Step_0

(view raw script w/o annotations or w/e)
1
if live_call()
2
    return global.live_result;
3
if (attack_delay > 0)
4
{
5
    attack_delay--
6
    return;
7
}
8
image_scale_inc += 0.01
9
image_xscale += image_scale_inc
10
image_yscale += image_scale_inc
11
attack_delay = 0
12
if (image_xscale > 15)
13
{
14
    if (image_alpha > 0)
15
        image_alpha -= 0.15
16
    else
17
        instance_destroy()
18
}