9 lines
363 B
Plaintext
9 lines
363 B
Plaintext
|
image_xscale = face_dir;
|
||
|
draw_self();
|
||
|
|
||
|
draw_set_font(fn_GUI);
|
||
|
draw_text(1000, 70, "boss mode: " + string(phase_mode) );
|
||
|
draw_text(1000, 90, "boss invuln: " + string(invuln) );
|
||
|
draw_text(1000, 110, "boss HP: " + string(hp) + " / " + string(phase_hp[current_phase]) );
|
||
|
draw_text(1000, 130, "boss phase: " + string(current_phase) + " / " + string(phases) );
|