summaryrefslogtreecommitdiff
path: root/src/monster_power.hpp
blob: 393fec1a478c67a91c727dd2e228c6b0d9e9d3f4 (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.hpp"

/**
 * 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 */
};