summaryrefslogtreecommitdiff
path: root/src/monster_power.hpp
blob: 92a2aded9fc6c0a9507c4f4e672b63223b5b4d58 (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 */
};