Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_battle_core_directory_flavor_text_enemy_1_action_3

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

function scr_battle_core_directory_flavor_text_enemy_1_action_3() { var battle_enemy_name = global.battle_enemy_name; var game_mode = global.game_mode; if (game_mode == "customs") { if (battle_enemy_name == "craniex") message[0] = "* Craniex seems to be getting# tired of your jokes."; } else if (game_mode == "yellow") { if (battle_enemy_name == "insomnitot solo") message[0] = "* Insomnitot struggles to# maintain consciousness."; else if (battle_enemy_name == "insomnitot duo") message[0] = "* Insomnitot struggles to# maintain consciousness."; else if (battle_enemy_name == "bowll solo") message[0] = "* Bowll is beginning to put the# pieces together."; } }
()
2
{
3
    var battle_enemy_name = global.battle_enemy_name;
4
    var game_mode = global.game_mode;
5
    if (game_mode == "customs")
6
    {
7
        if (battle_enemy_name == "craniex")
8
            message[0] = "* Craniex seems to be getting#  tired of your jokes.";
9
    }
10
    else if (game_mode == "yellow")
11
    {
12
        if (battle_enemy_name == "insomnitot solo")
13
            message[0] = "* Insomnitot struggles to#  maintain consciousness.";
14
        else if (battle_enemy_name == "insomnitot duo")
15
            message[0] = "* Insomnitot struggles to#  maintain consciousness.";
16
        else if (battle_enemy_name == "bowll solo")
17
            message[0] = "* Bowll is beginning to put the#  pieces together.";
18
    }
19
}