summaryrefslogtreecommitdiff
path: root/lib/mods/theme/scpt/s_aule.lua
blob: 75a121b11fbd33038ccb1bced6567c24813d9d55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
-- Spells for Aule school

BOOK_AULE = 63 
 
AULE_FIREBRAND = add_spell 
{ 
	["name"] =	"Firebrand", 
	["school"] =	{SCHOOL_AULE}, 
	["level"] =	1, 
	["mana"] =	10, 
	["mana_max"] =	100, 
	["fail"] =	20, 
	["piety"] =	TRUE, 
	["stat"] =	A_WIS, 
	["random"] =	SKILL_SPIRITUALITY, 
	["spell"] =	function() return aule_firebrand_spell() end,
	["info"] =	function() return aule_firebrand_info() end,
	["desc"] =	{ 
		"Imbues your melee weapon with fire to deal more damage", 
		"At level 15 it spreads over a 1 radius zone around your target", 
		"At level 30 it deals holy fire damage" 
	} 
} 
 
AULE_ENCHANT_WEAPON = add_spell 
{
	["name"] =	"Enchant Weapon",
	["school"] =	{SCHOOL_AULE},
	["level"] =	10,
	["mana"] =	100, 
	["mana_max"] =	200, 
	["fail"] =	20, 
	["piety"] =	TRUE, 
	["stat"] =	A_WIS, 
	["random"] =	SKILL_SPIRITUALITY, 
	["spell"] =	function() return aule_enchant_weapon_spell() end,
	["info"] =	function() return aule_enchant_weapon_info() end,
	["desc"] =	{
		"Tries to enchant a weapon to-hit", 
		"At level 5 it also enchants to-dam", 
		"At level 45 it enhances the special powers of magical weapons", 
		"The might of the enchantment increases with the level" 
	} 
} 
 
AULE_ENCHANT_ARMOUR = add_spell { 
	["name"] =	"Enchant Armour", 
	["school"] =	{SCHOOL_AULE}, 
	["level"] =	15, 
	["mana"] =	100, 
	["mana_max"] =	200, 
	["fail"] =	20, 
	["piety"] =	TRUE, 
	["stat"] =	A_WIS, 
	["random"] =	SKILL_SPIRITUALITY, 
	["spell"] =	function() return aule_enchant_armour_spell() end,
	["info"] =	function() return aule_enchant_armour_info() end,
	["desc"] =	{
		"Tries to enchant a piece of armour", 
		"At level 20 it also enchants to-hit and to-dam", 
		"At level 40 it enhances the special powers of magical armour", 
		"The might of the enchantment increases with the level" 
	} 
} 
 
AULE_CHILD = add_spell
{ 
	["name"] =	"Child of Aule", 
	["school"] =	{SCHOOL_AULE}, 
	["level"] =	20, 
	["mana"] =	200, 
	["mana_max"] =	500, 
	["fail"] =	40, 
	["piety"] =	TRUE, 
	["stat"] =	A_WIS, 
	["random"] =	SKILL_SPIRITUALITY, 
	["spell"] =	function() return aule_child_spell() end,
	["info"] =	function() return aule_child_info() end,
	["desc"] =	{ 
		"Summons a levelled Dwarven warrior to help you battle the forces", 
		"of Morgoth" 
	} 
}