Dakkamor_Ironspirit.pl - Quest File
xxxxxxxxxx
1
# Cleric Abysmal Sea armor
2
# Created by Gonner
3
# items: 68222, 54114, 68220, 54112, 68223, 54115, 68225, 54117, 68226, 54118, 68224, 54116, 68221, 54113
4
5
sub EVENT_SAY {
6
if ($text=~/hail/i) {
7
quest::say("Hail there! Welcome aboard! There is never enough time to care for all the ill in such a place. You wouldn't happen to be a [cleric] as well would you?");
8
}
9
if ($text=~/cleric/i) {
10
quest::say("Mayhaps we can help each other out. You keep going about being a good helpful cleric, so I have fewer sick folk to tend to, and I will help you out in the equipment department. If you are in need of new equipment such as [helm], [legplates], [chestplate], [bracer], [vambraces], [gloves], or pair of [boots] let me know.");
11
}
12
if ($text=~/bracer/i) {
13
quest::say("A bracer is rather simple to reshape. If you speak to Nalasrine about her findings, she may be able to help you infuse some Muramite metal to strengthen it. One sheet of infused Muramite metal along with a Muramite Bracer Armor should be sufficient for me to rework it for you.");
14
}
15
if ($text=~/helm/i) {
16
quest::say("I can craft a Muramite helm into something suitable for you. Nalasrine has managed to form a powerful compound that reinforces some native materials. Bring me a Muramite Helm Armor piece and some Muramite metal that has been infused with Nalarsine's mixture.");
17
}
18
if ($text=~/gloves/i) {
19
quest::say("In order for me to craft you some gloves, you need to find some more Muramite metal. I am sure Nalasrine can assist you with infusing the metal, which needs to be done before you bring it back to me. Bring me an infused Muramite metal sheet, and a Muramite Glove Armor.");
20
}
21
if ($text=~/legplates/i) {
22
quest::say("Reshaping a pair of Muramite legplates into a pair that would serve you well should be easy. Bring back a pair of Muramite Greaves and two sheets of Muramite metal. Give only the greaves to me for shaping, once I am done with that you will need to take the metal and greaves to a forge. Don't forget to infuse the metal with the mixture from Nalasrine before you take it to the forge.");
23
}
24
if ($text=~/chestplate/i) {
25
quest::say("Ahh, a chestplate. Who doesn't want a new chestplate? Bring back Muramite Chest Armor. Give that to me and I can make some rough adjustments for you. In order for it to suit you properly however, you will also need two sheets of infused Muramite metal and a forge. Make sure to speak to Nalasrine about infusing the metal.");
26
}
27
if ($text=~/boots/i) {
28
quest::say("Bring me back a sheet of infused Muramite metal along with a Muramite Boot Armor and I believe I can rework them into something quite fine for you. If you need help in the infusing process, just talk to Nalasrine.");
29
}
30
if ($text=~/vambraces/i) {
31
quest::say("Vambraces? Hmm, find some Muramite metal and some Muramite Sleeve Armor. Once you have these things talk to Nalasrine about infusing the metal. When it is strong I should be able to craft you some nice vambraces.");
32
}
33
}
34
35
sub EVENT_ITEM {
36
if ($class eq "Cleric") {
37
if (plugin::check_handin(\%itemcount, 68222 => 1)) { # Bracer
38
quest::summonitem(54114); # reworked Bracer
39
}
40
elsif (plugin::check_handin(\%itemcount, 68220 => 1)) { # cap
41
quest::summonitem(54112); # reworked cap
42
}
43
elsif (plugin::check_handin(\%itemcount, 68223 => 1)) { # Gloves
44
quest::summonitem(54115); # reworked gloves
45
}
46
elsif (plugin::check_handin(\%itemcount, 68225 => 1)) { # leggings
47
quest::summonitem(54117); # reworked leggings
48
}
49
elsif (plugin::check_handin(\%itemcount, 68226 => 1)) { # tunic
50
quest::summonitem(54118); # reworked tunic
51
}
52
elsif (plugin::check_handin(\%itemcount, 68224 => 1)) { # Sandals
53
quest::summonitem(54116); # reworked sandals
54
}
55
elsif (plugin::check_handin(\%itemcount, 68221 => 1)) { # vambraces
56
quest::summonitem(54113); # reworked vambraces
57
}
58
}
59
plugin::return_items(\%itemcount);
60
}
61
#END of FILE zone:abysmal ID:279017 -- Dakkamor_Ironspirit.pl
Quest Source: 28 May 2022