stage3: enable all wriggle attacks

This commit is contained in:
Andrei Alexeyev 2021-02-23 02:28:13 +02:00
parent 03e1dd8078
commit ba174893a0
No known key found for this signature in database
GPG key ID: 72D26128040B9690

View file

@ -588,6 +588,12 @@ TASK(spawn_boss, NO_ARGS) {
WAIT_EVENT(&global.dialog->events.fadeout_began);
boss_add_attack_task(boss, AT_Normal, "", 11, 35000, TASK_INDIRECT(BossAttack, stage3_boss_nonspell_1), NULL);
boss_add_attack_from_info(boss, &stage3_spells.boss.moonlight_rocket, false);
boss_add_attack_task(boss, AT_Normal, "", 40, 35000, TASK_INDIRECT(BossAttack, stage3_boss_nonspell_2), NULL);
boss_add_attack_from_info(boss, &stage3_spells.boss.wriggle_night_ignite, false);
boss_add_attack_task(boss, AT_Normal, "", 40, 35000, TASK_INDIRECT(BossAttack, stage3_boss_nonspell_3), NULL);
boss_add_attack_from_info(boss, &stage3_spells.boss.firefly_storm, false);
boss_add_attack_from_info(boss, &stage3_spells.extra.light_singularity, false);
boss_engage(boss);
}