1 |
function scr_enemy_timer_attacks_know_cone_soloscr_enemy_timer_attacks_know_cone_solofunction scr_enemy_timer_attacks_know_cone_solo() //gml_Script_scr_enemy_timer_attacks_know_cone_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 == "Know Cone Blueberries")
{
script_execute(gml_Script_scr_enemy_attack_know_cone_blueberries)
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 == "Know Cone Oranges")
{
script_execute(gml_Script_scr_enemy_attack_know_cone_oranges)
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 == "Know Cone Cherries" && (!instance_exists(obj_battle_enemy_attack_know_cone_cherry)))
script_execute(gml_Script_scr_enemy_attack_know_cone_cherries)
else if (enemy_attack == "Know Cone Fig" && (!instance_exists(obj_battle_enemy_attack_know_cone_fig)))
script_execute(gml_Script_scr_enemy_attack_know_cone_fig)
}
} () //gml_Script_scr_enemy_timer_attacks_know_cone_solo |
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 == "Know Cone Blueberries") |
7 |
{ |
8 |
script_execute(gml_Script_scr_enemy_attack_know_cone_blueberries) |
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 == "Know Cone Oranges") |
17 |
{ |
18 |
script_execute(gml_Script_scr_enemy_attack_know_cone_oranges) |
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 == "Know Cone Cherries" && (!instance_exists(obj_battle_enemy_attack_know_cone_cherry))) |
27 |
script_execute(gml_Script_scr_enemy_attack_know_cone_cherries) |
28 |
else if (enemy_attack == "Know Cone Fig" && (!instance_exists(obj_battle_enemy_attack_know_cone_fig))) |
29 |
script_execute(gml_Script_scr_enemy_attack_know_cone_fig) |
30 |
} |
31 |
} |