taisei/src/stages/stage5.h
2018-01-04 19:14:31 +02:00

35 lines
903 B
C

/*
* This software is licensed under the terms of the MIT-License
* See COPYING for further information.
* ---
* Copyright (c) 2011-2018, Lukas Weber <laochailan@web.de>.
* Copyright (c) 2012-2018, Andrei Alexeyev <akari@alienslab.net>.
*/
#pragma once
#include "taisei.h"
#include "stage.h"
extern struct stage5_spells_s {
// this struct must contain only fields of type AttackInfo
// order of fields affects the visual spellstage number, but not its real internal ID
struct {
AttackInfo atmospheric_discharge;
AttackInfo artificial_lightning;
AttackInfo induction_field;
AttackInfo inductive_resonance;
AttackInfo natural_cathode;
} boss;
struct {
AttackInfo overload;
} extra;
// required for iteration
AttackInfo null;
} stage5_spells;
extern StageProcs stage5_procs;
extern StageProcs stage5_spell_procs;