Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_enemy_timer_attacks_rorrim_solo

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

function scr_enemy_timer_attacks_rorrim_solo() //gml_Script_scr_enemy_timer_attacks_rorrim_solo { var enemy_attack = global.enemy_attack if (instance_exists(obj_dialogue_box_battle_transformation_any) && enemy_attack == "Rorrim Mirror" && obj_heart_battle_fighting_parent.moveable == true) { script_execute(gml_Script_scr_enemy_attack_rorrim_mirror) if (global.attack_counter >= 0) { global.attack_counter -= 1 if (global.attack_counter < 0) global.attack_counter = global.attack_counter_max } } else if (instance_exists(obj_dialogue_box_battle_transformation_any) && enemy_attack == "Rorrim Sparkle" && obj_heart_battle_fighting_parent.moveable == true) { script_execute(gml_Script_scr_enemy_attack_rorrim_sparkle) if (global.attack_counter >= 0) { global.attack_counter -= 1 if (global.attack_counter < 0) global.attack_counter = global.attack_counter_max } } }
() //gml_Script_scr_enemy_timer_attacks_rorrim_solo
2
{
3
    var enemy_attack = global.enemy_attack
4
    if (instance_exists(obj_dialogue_box_battle_transformation_any) && enemy_attack == "Rorrim Mirror" && obj_heart_battle_fighting_parent.moveable == true)
5
    {
6
        script_execute(gml_Script_scr_enemy_attack_rorrim_mirror)
7
        if (global.attack_counter >= 0)
8
        {
9
            global.attack_counter -= 1
10
            if (global.attack_counter < 0)
11
                global.attack_counter = global.attack_counter_max
12
        }
13
    }
14
    else if (instance_exists(obj_dialogue_box_battle_transformation_any) && enemy_attack == "Rorrim Sparkle" && obj_heart_battle_fighting_parent.moveable == true)
15
    {
16
        script_execute(gml_Script_scr_enemy_attack_rorrim_sparkle)
17
        if (global.attack_counter >= 0)
18
        {
19
            global.attack_counter -= 1
20
            if (global.attack_counter < 0)
21
                global.attack_counter = global.attack_counter_max
22
        }
23
    }
24
}