Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_enemy_timer_attacks_frostermit_solo

(view raw script w/o annotations or w/e)
1
function scr_enemy_timer_attacks_frostermit_solo
scr_enemy_timer_attacks_frostermit_solo

function scr_enemy_timer_attacks_frostermit_solo() { var enemy_attack = global.enemy_attack; if (instance_exists(obj_dialogue_box_battle_transformation_any) && obj_heart_battle_fighting_parent.moveable == true) { if (enemy_attack == "Frostermit Snowflakes") { script_execute(scr_enemy_attack_frostermit_snowflakes); if (global.attack_counter >= 0) { global.attack_counter -= 1; if (global.attack_counter < 0) global.attack_counter = global.attack_counter_max; } } else if (enemy_attack == "Frostermit Ice Cubes") { script_execute(scr_enemy_attack_frostermit_ice_cubes); if (global.attack_counter >= 0) { global.attack_counter -= 1; if (global.attack_counter < 0) global.attack_counter = global.attack_counter_max; } } else if (enemy_attack == "Frostermit Pinchers") { script_execute(scr_enemy_attack_frostermit_pinchers); if (global.attack_counter >= 0) { global.attack_counter -= 1; if (global.attack_counter < 0) global.attack_counter = global.attack_counter_max; } } } }
()
2
{
3
    var enemy_attack = global.enemy_attack;
4
    if (instance_exists(obj_dialogue_box_battle_transformation_any) && obj_heart_battle_fighting_parent.moveable == true)
5
    {
6
        if (enemy_attack == "Frostermit Snowflakes")
7
        {
8
            script_execute(scr_enemy_attack_frostermit_snowflakes);
9
            if (global.attack_counter >= 0)
10
            {
11
                global.attack_counter -= 1;
12
                if (global.attack_counter < 0)
13
                    global.attack_counter = global.attack_counter_max;
14
            }
15
        }
16
        else if (enemy_attack == "Frostermit Ice Cubes")
17
        {
18
            script_execute(scr_enemy_attack_frostermit_ice_cubes);
19
            if (global.attack_counter >= 0)
20
            {
21
                global.attack_counter -= 1;
22
                if (global.attack_counter < 0)
23
                    global.attack_counter = global.attack_counter_max;
24
            }
25
        }
26
        else if (enemy_attack == "Frostermit Pinchers")
27
        {
28
            script_execute(scr_enemy_attack_frostermit_pinchers);
29
            if (global.attack_counter >= 0)
30
            {
31
                global.attack_counter -= 1;
32
                if (global.attack_counter < 0)
33
                    global.attack_counter = global.attack_counter_max;
34
            }
35
        }
36
    }
37
}