taisei/src/stages/stage1.h

46 lines
961 B
C
Raw Normal View History

/*
* This software is licensed under the terms of the MIT-License
* See COPYING for further information.
* ---
2018-01-04 18:14:31 +01:00
* Copyright (c) 2011-2018, Lukas Weber <laochailan@web.de>.
* Copyright (c) 2012-2018, Andrei Alexeyev <akari@alienslab.net>.
*/
2017-09-27 14:14:53 +02:00
#pragma once
#include "taisei.h"
2017-02-26 13:17:48 +01:00
#include "stage.h"
#if defined(DEBUG) && !defined(SPELL_BENCHMARK)
#define SPELL_BENCHMARK
#endif
extern struct stage1_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 perfect_freeze;
} mid;
struct {
AttackInfo crystal_rain;
AttackInfo snow_halation;
AttackInfo icicle_fall;
} boss;
struct {
AttackInfo crystal_blizzard;
} extra;
// required for iteration
AttackInfo null;
} stage1_spells;
2017-02-26 13:17:48 +01:00
extern StageProcs stage1_procs;
extern StageProcs stage1_spell_procs;
#ifdef SPELL_BENCHMARK
AttackInfo stage1_spell_benchmark;
#endif