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

#include "h-basic.h"

/**
 * Runecrafter prefered spells
 */
struct rune_spell
{
	char name[30] { '\0' };             /* name */

	s16b type = 0;                      /* Type of the spell(GF) */
	s16b rune2 = 0;                     /* Modifiers */
	s16b mana = 0;                      /* Mana involved */
};