2012-01-06 21:52:55 +01:00
|
|
|
/*
|
2019-08-03 19:43:48 +02:00
|
|
|
* This software is licensed under the terms of the MIT License.
|
2017-02-11 04:52:08 +01:00
|
|
|
* See COPYING for further information.
|
2012-01-06 21:52:55 +01:00
|
|
|
* ---
|
2024-05-16 23:30:41 +02:00
|
|
|
* Copyright (c) 2011-2024, Lukas Weber <laochailan@web.de>.
|
|
|
|
* Copyright (c) 2012-2024, Andrei Alexeyev <akari@taisei-project.org>.
|
2012-01-06 21:52:55 +01:00
|
|
|
*/
|
|
|
|
|
2021-08-12 23:09:01 +02:00
|
|
|
#pragma once
|
2017-11-25 20:45:11 +01:00
|
|
|
#include "taisei.h"
|
2012-01-06 21:52:55 +01:00
|
|
|
|
2020-05-16 22:41:54 +02:00
|
|
|
#include "stageinfo.h"
|
2017-02-10 11:39:42 +01:00
|
|
|
|
2017-11-10 21:49:16 +01:00
|
|
|
#if defined(DEBUG) && !defined(SPELL_BENCHMARK)
|
2020-05-18 21:44:11 +02:00
|
|
|
#define SPELL_BENCHMARK
|
2017-11-10 21:49:16 +01:00
|
|
|
#endif
|
|
|
|
|
2017-09-13 07:24:29 +02:00
|
|
|
extern struct stage1_spells_s {
|
2018-01-12 19:26:07 +01:00
|
|
|
// this struct must contain only fields of type AttackInfo
|
|
|
|
// order of fields affects the visual spellstage number, but not its real internal ID
|
2017-09-13 07:24:29 +02:00
|
|
|
|
2018-01-12 19:26:07 +01:00
|
|
|
struct {
|
|
|
|
AttackInfo perfect_freeze;
|
|
|
|
} mid;
|
2017-09-13 07:24:29 +02:00
|
|
|
|
2018-01-12 19:26:07 +01:00
|
|
|
struct {
|
|
|
|
AttackInfo crystal_rain;
|
|
|
|
AttackInfo snow_halation;
|
2020-02-27 15:03:31 +01:00
|
|
|
AttackInfo icicle_cascade;
|
2018-01-12 19:26:07 +01:00
|
|
|
} boss;
|
2017-09-13 07:24:29 +02:00
|
|
|
|
2018-01-12 19:26:07 +01:00
|
|
|
struct {
|
|
|
|
AttackInfo crystal_blizzard;
|
|
|
|
} extra;
|
2017-09-13 07:24:29 +02:00
|
|
|
|
2018-01-12 19:26:07 +01:00
|
|
|
// required for iteration
|
|
|
|
AttackInfo null;
|
2017-09-13 07:24:29 +02:00
|
|
|
} stage1_spells;
|
|
|
|
|
2017-02-26 13:17:48 +01:00
|
|
|
extern StageProcs stage1_procs;
|
2018-01-21 11:35:48 +01:00
|
|
|
|
|
|
|
#ifdef SPELL_BENCHMARK
|
2018-01-21 19:30:12 +01:00
|
|
|
extern AttackInfo stage1_spell_benchmark;
|
2018-01-21 11:35:48 +01:00
|
|
|
#endif
|