summaryrefslogtreecommitdiff
path: root/src/monster_power.hpp
blob: 3ff2d0b0bc9991122148e3cb33c2aab1c9cedaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "monster_power_fwd.hpp"

#include "h-basic.h"

/**
 * Monster powers that players can use via e.g. Symbiosis.
 */
struct monster_power
{
	u32b monster_spell_index;
	const char *name;           /* Name of it */
	int mana;           /* Mana needed */
	bool_ great;          /* Need the use of great spells */
};