Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_battle_core_directory_flavor_text_enemy_2_action_3

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

function scr_battle_core_directory_flavor_text_enemy_2_action_3() { var action_3_selected_count_2 = global.action_3_selected_count_2; var battle_enemy_name = global.battle_enemy_name; var game_mode = global.game_mode; if (game_mode == "customs") { } else if (game_mode == "yellow") { if (battle_enemy_name == "know cone insomnitot duo") message[0] = "* Insomnitot struggles to# maintain consciousness."; } }
()
2
{
3
    var action_3_selected_count_2 = global.action_3_selected_count_2;
4
    var battle_enemy_name = global.battle_enemy_name;
5
    var game_mode = global.game_mode;
6
    if (game_mode == "customs")
7
    {
8
    }
9
    else if (game_mode == "yellow")
10
    {
11
        if (battle_enemy_name == "know cone insomnitot duo")
12
            message[0] = "* Insomnitot struggles to#  maintain consciousness.";
13
    }
14
}