Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_generate_battle_ceroba_genocide

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

function scr_generate_battle_ceroba_genocide() //gml_Script_scr_generate_battle_ceroba_genocide { global.battle_enemy_name_1 = "ceroba" global.battle_menu_number = 1 global.speed_self = 4 global.invulnerability_self = global.player_invulnerability global.attacking_damage_cap = -1 global.hit_self = false global.hurt_self = false global.current_hp_enemy = 1000 global.max_hp_enemy = 1000 global.last_hp_enemy = global.current_hp_enemy global.current_hp_enemy_draw = global.current_hp_enemy global.enemy_low_hp = false global.enemy_hit = false global.enemy_hurt = false global.enemy_attack_stat = 13 global.enemy_defense_stat = 21 global.enemy_vulnerable = true global.enemy_attacking = true global.enemy_sparing = false global.enemy_dead = false global.enemy_spared = false global.enemy_betrayed = false global.enemy_fleeable = false global.enemy_special_text = 0 global.enemy_exp = 1500 global.enemy_gold = 50 global.enemy_count = 1 global.turns_passed = 0 global.last_action_selected = "Nothing" global.action_1_important = false global.action_2_important = false global.action_3_important = false global.action_1_color = 16777215 global.action_2_color = 16777215 global.action_3_color = 16777215 global.action_amount = 3 global.item_use = "Nothing" global.item_used = "Nothing" global.item_gift = "Nothing" global.item_gifted = "Nothing" global.image_alpha_enemy_attacking = 1 global.important_cutscene = false global.can_attack = true global.action_1_selected_count = 0 global.action_2_selected_count = 0 global.spare_selected_count = 0 global.hit_count = 0 global.miss_count = 0 global.no_hit_count = 0 global.hurt_self_count = 0 global.hurt_self_turn_count = 0 global.item_use_count = 0 global.item_gift_count = 0 global.attack_cycle = 0 global.attack_cycle_max = 7 global.enemy_mode = 0 global.enemy_mode_previous = 0 if (global.sound_carry_overworld == false) scr_audio_stop_sound(0) audio_extend = false global.sound_carry_battle = false global.mettaton_voice_count = 1 var spawn_x = 318 var spawn_y = 230 instance_create((spawn_x - 14), (spawn_y - 99), obj_ceroba_staff) instance_create((spawn_x + 5), (spawn_y - 177), obj_ceroba_ponytail) instance_create((spawn_x - 18), (spawn_y - 116), obj_ceroba_hand_left) instance_create((spawn_x + 28), (spawn_y - 123), obj_ceroba_hand_right) instance_create((spawn_x + 3), (spawn_y - 122), obj_ceroba_head) instance_create(spawn_x, spawn_y, obj_ceroba_body) obj_ceroba_staff.image_alpha = 0 obj_ceroba_ponytail.image_alpha = 0 obj_ceroba_hand_left.image_alpha = 0 obj_ceroba_hand_right.image_alpha = 0 obj_ceroba_head.image_alpha = 0 global.enemy_target_x = obj_ceroba_body.x global.enemy_target_y = obj_ceroba_body.y - 100 global.last_text_move_select = -1 instance_create(0, 0, obj_battle_fade_in_screen) instance_create(275, 400, obj_battle_hp_current_self) instance_create(275, 400, obj_battle_hp_max_self) instance_create(275, 400, obj_battle_hp_cover_self) instance_create(0, 0, obj_text_battle_stat_name) instance_create(0, 0, obj_text_battle_stat_lv) instance_create(244, 405, obj_text_hp) instance_create(0, 0, obj_text_hp_stat) instance_create(0, 0, obj_background_ceroba_battle_geno_yellow) instance_create(319, 320, obj_dialogue_box_battle) instance_create(31, 431, obj_fight) instance_create(184, 431, obj_act) instance_create(344, 431, obj_item) instance_create(499, 431, obj_mercy) instance_create(0, 0, obj_battle_enemy_attack_ceroba_red_hp_numbers) global.soul_mode = "Red" instance_create((obj_fight.x + 17), (obj_fight.y + 23), obj_heart_battle_menu) with (obj_heart_battle_menu) image_alpha = 0 global.boss_mini = false global.enemy_attack = "Ceroba Opener" ...
() //gml_Script_scr_generate_battle_ceroba_genocide
2
{
3
    global.battle_enemy_name_1 = "ceroba"
4
    global.battle_menu_number = 1
5
    global.speed_self = 4
6
    global.invulnerability_self = global.player_invulnerability
7
    global.attacking_damage_cap = -1
8
    global.hit_self = false
9
    global.hurt_self = false
10
    global.current_hp_enemy = 1000
11
    global.max_hp_enemy = 1000
12
    global.last_hp_enemy = global.current_hp_enemy
13
    global.current_hp_enemy_draw = global.current_hp_enemy
14
    global.enemy_low_hp = false
15
    global.enemy_hit = false
16
    global.enemy_hurt = false
17
    global.enemy_attack_stat = 13
18
    global.enemy_defense_stat = 21
19
    global.enemy_vulnerable = true
20
    global.enemy_attacking = true
21
    global.enemy_sparing = false
22
    global.enemy_dead = false
23
    global.enemy_spared = false
24
    global.enemy_betrayed = false
25
    global.enemy_fleeable = false
26
    global.enemy_special_text = 0
27
    global.enemy_exp = 1500
28
    global.enemy_gold = 50
29
    global.enemy_count = 1
30
    global.turns_passed = 0
31
    global.last_action_selected = "Nothing"
32
    global.action_1_important = false
33
    global.action_2_important = false
34
    global.action_3_important = false
35
    global.action_1_color = 16777215
36
    global.action_2_color = 16777215
37
    global.action_3_color = 16777215
38
    global.action_amount = 3
39
    global.item_use = "Nothing"
40
    global.item_used = "Nothing"
41
    global.item_gift = "Nothing"
42
    global.item_gifted = "Nothing"
43
    global.image_alpha_enemy_attacking = 1
44
    global.important_cutscene = false
45
    global.can_attack = true
46
    global.action_1_selected_count = 0
47
    global.action_2_selected_count = 0
48
    global.spare_selected_count = 0
49
    global.hit_count = 0
50
    global.miss_count = 0
51
    global.no_hit_count = 0
52
    global.hurt_self_count = 0
53
    global.hurt_self_turn_count = 0
54
    global.item_use_count = 0
55
    global.item_gift_count = 0
56
    global.attack_cycle = 0
57
    global.attack_cycle_max = 7
58
    global.enemy_mode = 0
59
    global.enemy_mode_previous = 0
60
    if (global.sound_carry_overworld == false)
61
        scr_audio_stop_sound
scr_audio_stop_sound

function scr_audio_stop_sound(argument0) //gml_Script_scr_audio_stop_sound { audio_array_val = 0 sound_y[audio_array_val] = mus_apprehension_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_dalvbattle_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_dalvopening_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_dalvbattle_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_decibat_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_dalvopening_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_01_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_02_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_03_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_04_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_05_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_06_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_07_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_08_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_09_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_10_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_attack_finale_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_danza_battle_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_floweynew_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_funsized_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_genobattle_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_mart_geno_wind_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_martletbattle_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_nobodycame_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_occupied_turf_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_prebattle1_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_prebattle2_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_battle_snowdin audio_array_val += 1 sound_y[audio_array_val] = mus_trial_by_fury audio_array_val += 1 sound_y[audio_array_val] = mus_prebattle3_yellow audio_array_val += 1 sound_y[audio_array_val] = mus_heatwave_approaching for (i = 0; i < array_length_1d(sound_y); i += 1) { var audio_gain = audio_sound_get_gain(sound_y[i]) if (audio_gain <= argument0) audio_stop_sound(sound_y[i]) } }
(0)
62
    audio_extend = false
63
    global.sound_carry_battle = false
64
    global.mettaton_voice_count = 1
65
    var spawn_x = 318
66
    var spawn_y = 230
67
    instance_create((spawn_x - 14), (spawn_y - 99), obj_ceroba_staff)
68
    instance_create((spawn_x + 5), (spawn_y - 177), obj_ceroba_ponytail)
69
    instance_create((spawn_x - 18), (spawn_y - 116), obj_ceroba_hand_left)
70
    instance_create((spawn_x + 28), (spawn_y - 123), obj_ceroba_hand_right)
71
    instance_create((spawn_x + 3), (spawn_y - 122), obj_ceroba_head)
72
    instance_create(spawn_x, spawn_y, obj_ceroba_body)
73
    obj_ceroba_staff.image_alpha = 0
74
    obj_ceroba_ponytail.image_alpha = 0
75
    obj_ceroba_hand_left.image_alpha = 0
76
    obj_ceroba_hand_right.image_alpha = 0
77
    obj_ceroba_head.image_alpha = 0
78
    global.enemy_target_x = obj_ceroba_body.x
79
    global.enemy_target_y = obj_ceroba_body.y - 100
80
    global.last_text_move_select = -1
81
    instance_create(0, 0, obj_battle_fade_in_screen)
82
    instance_create(275, 400, obj_battle_hp_current_self)
83
    instance_create(275, 400, obj_battle_hp_max_self)
84
    instance_create(275, 400, obj_battle_hp_cover_self)
85
    instance_create(0, 0, obj_text_battle_stat_name)
86
    instance_create(0, 0, obj_text_battle_stat_lv)
87
    instance_create(244, 405, obj_text_hp)
88
    instance_create(0, 0, obj_text_hp_stat)
89
    instance_create(0, 0, obj_background_ceroba_battle_geno_yellow)
90
    instance_create(319, 320, obj_dialogue_box_battle)
91
    instance_create(31, 431, obj_fight)
92
    instance_create(184, 431, obj_act)
93
    instance_create(344, 431, obj_item)
94
    instance_create(499, 431, obj_mercy)
95
    instance_create(0, 0, obj_battle_enemy_attack_ceroba_red_hp_numbers)
96
    global.soul_mode = "Red"
97
    instance_create((obj_fight.x + 17), (obj_fight.y + 23), obj_heart_battle_menu)
98
    with (obj_heart_battle_menu)
99
        image_alpha = 0
100
    global.boss_mini = false
101
    global.enemy_attack = "Ceroba Opener"
102
    global.image_alpha_enemy_attacking_immunity = true
103
    global.battle_phase = 1
104
    audio_sound_gain(mus_trial_by_fury, 1, 0)
105
    audio_sound_pitch(mus_trial_by_fury, 1)
106
    audio_play_sound(mus_trial_by_fury, 20, true)
107
}