Added missing Underground town NPC dialogs.

This commit is contained in:
MobiusDev
2016-07-27 11:39:20 +00:00
parent 6da87b6aa4
commit c7135e356c
34 changed files with 2217 additions and 3 deletions

View File

@@ -2,6 +2,7 @@
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs> <npcs>
<npc>30081</npc> <!-- Helvetia --> <npc>30081</npc> <!-- Helvetia -->
<npc>34190</npc> <!-- Attitude -->
</npcs> </npcs>
<item id="1835" /> <!-- Soulshot (No-grade) --> <item id="1835" /> <!-- Soulshot (No-grade) -->
<item id="2509" /> <!-- Spiritshot (No-grade) --> <item id="2509" /> <!-- Spiritshot (No-grade) -->

View File

@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>34190</npc> <!-- Attitude -->
</npcs>
<item id="4445" /> <!-- STR Dye (STR + 1 CON - 3) -->
<item id="4446" /> <!-- STR Dye (STR + 1 DEX - 3) -->
<item id="4447" /> <!-- CON Dye (Con + 1 Str - 3) -->
<item id="4448" /> <!-- CON Dye (Con + 1 DEX - 3) -->
<item id="4449" /> <!-- DEX Dye (Dex + 1 Str - 3) -->
<item id="4450" /> <!-- DEX Dye (Dex + 1 CON - 3) -->
<item id="4451" /> <!-- INT Dye (Int + 1 Men - 3) -->
<item id="4452" /> <!-- INT Dye (Int + 1 Wit - 3) -->
<item id="4453" /> <!-- MEN Dye (Men + 1 Int - 3) -->
<item id="4454" /> <!-- MEN Dye (Men + 1 Wit - 3) -->
<item id="4455" /> <!-- WIT Dye (Wit + 1 Int - 3) -->
<item id="4456" /> <!-- WIT Dye (Wit + 1 Men - 3) -->
<item id="4457" /> <!-- STR Dye (STR + 1 CON - 2) -->
<item id="4458" /> <!-- STR Dye (STR + 1 DEX - 2) -->
<item id="4459" /> <!-- CON Dye (Con + 1 Str - 2) -->
<item id="4460" /> <!-- CON Dye (Con + 1 DEX - 2) -->
<item id="4461" /> <!-- DEX Dye (Dex + 1 Str - 2) -->
<item id="4462" /> <!-- DEX Dye (Dex + 1 CON - 2) -->
<item id="4463" /> <!-- INT Dye (Int + 1 Men - 2) -->
<item id="4464" /> <!-- INT Dye (Int + 1 Wit - 2) -->
<item id="4465" /> <!-- MEN Dye (Men + 1 Int - 2) -->
<item id="4466" /> <!-- MEN Dye (Men + 1 Wit - 2) -->
<item id="4467" /> <!-- WIT Dye (Wit + 1 Int - 2) -->
<item id="4468" /> <!-- WIT Dye (Wit + 1 Men - 2) -->
<item id="4481" /> <!-- Greater STR Dye (STR + 1 CON - 3) -->
<item id="4482" /> <!-- Greater STR Dye (STR + 1 DEX - 3) -->
<item id="4483" /> <!-- Greater CON Dye(Con + 1 Str - 3) -->
<item id="4484" /> <!-- Greater CON Dye(Con + 1 DEX - 3) -->
<item id="4485" /> <!-- Greater DEX Dye (Dex + 1 Str - 3) -->
<item id="4486" /> <!-- Greater DEX Dye (Dex + 1 CON - 3) -->
<item id="4487" /> <!-- Greater INT Dye (Int + 1 Men - 3) -->
<item id="4488" /> <!-- Greater INT Dye (Int + 1 Wit - 3) -->
<item id="4489" /> <!-- Greater MEN Dye (Men + 1 Int - 3) -->
<item id="4490" /> <!-- Greater MEN Dye (Men + 1 Wit - 3) -->
<item id="4491" /> <!-- Greater WIT Dye (Wit + 1 Int - 3) -->
<item id="4492" /> <!-- Greater WIT Dye (Wit + 1 Men - 3) -->
</list>

View File

@@ -0,0 +1,10 @@
<html><body>Auction House Manager Mistress:<br>
Welcome, adventurer.<br1>
Are you familiar with our services?<br>
We are sales intermediaries. We enable you to view and purchase goods from all over the continent at rock bottom prices!<br1>
And, if you have items you want to sell, we can handle those transactions for you.<br>
Leave the worry and the paperwork to us! All you need to is pay us a small transaction fee, and we'll take care of the rest.<br1>
<font color="LEVEL">When an item sells, we'll transfer the proceeds to you, minus a slight transaction fee, of course.</font><br>
What do you think? You interested?<br>
<button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_show_commission">"I want to use the Auction House."</button>
</body></html>

View File

@@ -0,0 +1,9 @@
<html><body>Blacksmith Bartman:<br>
Do you wish to seal armor or remove its seal? I can undertake both tasks in the blink of an eye.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_exc_multisell 1002">Remove seals from B-grade gloves or boots</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_exc_multisell 1003">Put seals back on B-grade gloves and boots</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_exc_multisell 311262506">Remove seals from A-grade armor</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_exc_multisell 311262507">Remove seals from A-grade accessories</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_exc_multisell 311262508">Put seals back on A-grade armor</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Chat 0">Back</Button>
</body></html>

View File

@@ -0,0 +1,9 @@
<html><body>Blacksmith Bartman:<br>
The Black Anvil guild has always produced fine craftsmen. I, of course, am one of them. I will augment your item with great care.<br>
Did you hear that <font color="LEVEL">Life Stones can no longer be found</font>? The good thing is that a more powerful stone has been found. It's called the <font color="LEVEL">Spirit Stone</font>.<br>
If you have some <font color="LEVEL">Life Stones</font> left, you can still <font color="LEVEL">augment items</font>. I can also exchange those Life Stones for <font color="LEVEL">Spirit Stones</font>.<br>
<Button ALIGN="LEFT" ICON="NORMAL" action="bypass -h npc_%objectId%_Link common/augmentation_01.htm">"I want to augment an item."</Button>
<Button ALIGN="LEFT" ICON="NORMAL" action="bypass -h npc_%objectId%_Link common/augmentation_02.htm">"I want to remove an augmentation."</Button>
<Button ALIGN="LEFT" ICON="NORMAL" action="bypass -h npc_%objectId%_Link common/smelting_trade001.htm">"I want to exchange Life Stones."</Button>
<Button ALIGN="LEFT" ICON="RETURN" action="bypass -h npc_%objectId%_Chat 0">Back</Button>
</body></html>

View File

@@ -0,0 +1,13 @@
<html><body>Blacksmith Bartman:<br>
Hello, there I'm Bartman.<br>
I've lived secluded from the world, and when I heard about Underground Gainak, I decided to come live here. I'll do my best!<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Link common/crafting_03.htm">"Show me the R-grade set options."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Link common/duals_01.htm">"I want to craft a dual weapon."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Link common/weapon_sa_01.htm">"I want to bestow a Soul Crystal effect on a weapon."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Link common/crafting_01.htm">" I want to craft an item."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Chat 4">"I want to seal armor and accessories."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Link cursed_to_unidentified.htm">"I want to change a Bound Item to an Unidentified Item."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Chat 5">"I want to augment an item."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_TerritoryStatus">"Can you tell me about the local lord and tax rate."</Button>
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
</body></html>

View File

@@ -0,0 +1,3 @@
<html><body>Grocer Attitude:<br>
My goodness. I can't believe people like you still walk the streets. What, do the guards of Underground just spend our taxes and sleep or what? I tell you, it's a disgrace.
</body></html>

View File

@@ -0,0 +1,7 @@
<html><body>Grocer Attitude:<br>
Welcome! Our shop carries a wide range of inexpensive but high-quality items. Come in, come in! Take some time and have a look around. If you need anything, just give me a shout.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Buy 3008100">"I need to exchange some consumables and minerals."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Buy 3008102">"I want to trade some dye."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_TerritoryStatus">"Can you tell me about the local lord and tax rate?"</Button>
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
</body></html>

View File

@@ -0,0 +1,7 @@
<html><body>Warehouse Keeper Fouette:<br>
<center>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_DepositP">Deposit an item. (Private Warehouse)</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_WithdrawP">Withdraw an item. (Private Warehouse)</Button><br>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h npc_%objectId%_Chat 0">Return</Button>
</center>
</body></html>

View File

@@ -0,0 +1,7 @@
<html><body>Warehouse Keeper Fouette:<br>
<center>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_DepositC" msg="1039">Deposit an item. (Clan Warehouse)</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_WithdrawC">Withdraw an item. (Clan Warehouse)</Button><br>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h npc_%objectId%_Chat 0">Return</Button>
</center>
</body></html>

View File

@@ -0,0 +1,11 @@
<html><body>Warehouse Keeper Fouette:<br>
Nice to meet you. I was worried when they told me to come here, underground, but it's very pleasant.<br>
It's not very known, but I'm sure it will become popular amongst travelers soon. Hahaha.<br>
If you're not busy, you should stop by the tavern. Tell Settlen that I sent you there!<br>
<center>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Chat 1">Private Warehouse</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Chat 2">Clan Warehouse</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_Link common/g_cube_warehouse001.htm"><font color="LEVEL">Wondrous Cubic</font></Button>
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
</center>
</body></html>

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) --> <npc>33998</npc> <!-- Momet (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<!-- Sealed Zubei's Gauntlets --> <!-- Sealed Zubei's Gauntlets -->

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) --> <npc>33998</npc> <!-- Momet (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<!-- Zubei's Gauntlets - Heavy Armor --> <!-- Zubei's Gauntlets - Heavy Armor -->

View File

@@ -12,6 +12,7 @@
<npc>30317</npc> <!-- Kluto --> <npc>30317</npc> <!-- Kluto -->
<npc>31960</npc> <!-- Buryun --> <npc>31960</npc> <!-- Buryun -->
<npc>30898</npc> <!-- Morning --> <npc>30898</npc> <!-- Morning -->
<npc>34208</npc> <!-- Bartman -->
</npcs> </npcs>
<item> <item>
<ingredient id="8723" count="107"/> <!-- Life Stone - Lv. 46 --> <ingredient id="8723" count="107"/> <!-- Life Stone - Lv. 46 -->

View File

@@ -12,6 +12,7 @@
<npc>30317</npc> <!-- Kluto --> <npc>30317</npc> <!-- Kluto -->
<npc>31960</npc> <!-- Buryun --> <npc>31960</npc> <!-- Buryun -->
<npc>30898</npc> <!-- Morning --> <npc>30898</npc> <!-- Morning -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="8733" count="27"/> <!-- Mid-grade Life Stone - Lv. 46 --> <ingredient id="8733" count="27"/> <!-- Mid-grade Life Stone - Lv. 46 -->

View File

@@ -12,6 +12,7 @@
<npc>30317</npc> <!-- Kluto --> <npc>30317</npc> <!-- Kluto -->
<npc>31960</npc> <!-- Buryun --> <npc>31960</npc> <!-- Buryun -->
<npc>30898</npc> <!-- Morning --> <npc>30898</npc> <!-- Morning -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="8743" count="6"/> <!-- High-grade Life Stone - Lv. 46 --> <ingredient id="8743" count="6"/> <!-- High-grade Life Stone - Lv. 46 -->

View File

@@ -12,6 +12,7 @@
<npc>30317</npc> <!-- Kluto --> <npc>30317</npc> <!-- Kluto -->
<npc>31960</npc> <!-- Buryun --> <npc>31960</npc> <!-- Buryun -->
<npc>30898</npc> <!-- Morning --> <npc>30898</npc> <!-- Morning -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="8753" count="2"/> <!-- Top-grade Life Stone - Lv. 46 --> <ingredient id="8753" count="2"/> <!-- Top-grade Life Stone - Lv. 46 -->

View File

@@ -12,6 +12,7 @@
<npc>30317</npc> <!-- Kluto --> <npc>30317</npc> <!-- Kluto -->
<npc>31960</npc> <!-- Buryun --> <npc>31960</npc> <!-- Buryun -->
<npc>30898</npc> <!-- Morning --> <npc>30898</npc> <!-- Morning -->
<npc>34208</npc> <!-- Bartman -->
</npcs> </npcs>
<item> <item>
<ingredient id="12754" count="108"/> <!-- Life Stone: Accessory - Lv. 46 --> <ingredient id="12754" count="108"/> <!-- Life Stone: Accessory - Lv. 46 -->

View File

@@ -12,6 +12,7 @@
<npc>30317</npc> <!-- Kluto --> <npc>30317</npc> <!-- Kluto -->
<npc>31960</npc> <!-- Buryun --> <npc>31960</npc> <!-- Buryun -->
<npc>30898</npc> <!-- Morning --> <npc>30898</npc> <!-- Morning -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="33819" count="2"/> <!-- Life Stone: Hair Accessory --> <ingredient id="33819" count="2"/> <!-- Life Stone: Hair Accessory -->

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) --> <npc>33998</npc> <!-- Momet (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="46565" count="1"/> <!-- Soul Crystal Coupon - Stage 1 --> <ingredient id="46565" count="1"/> <!-- Soul Crystal Coupon - Stage 1 -->

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,164 @@
<?xml version="1.0" encoding="UTF-8"?>
<list maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>30298</npc> <!-- Pinter (Blacksmith) -->
<npc>30300</npc> <!-- Pushkin (Blacksmith) -->
<npc>30317</npc> <!-- Kluto (Blacksmith) -->
<npc>30458</npc> <!-- Poitan (Blacksmith) -->
<npc>30471</npc> <!-- Rupio (Blacksmith) -->
<npc>30678</npc> <!-- Helton (Blacksmith) -->
<npc>30688</npc> <!-- Duning (Blacksmith) -->
<npc>30846</npc> <!-- Wilbert (Blacksmith) -->
<npc>30898</npc> <!-- Morning (Blacksmith) -->
<npc>31271</npc> <!-- Hilda (Blacksmith) -->
<npc>31316</npc> <!-- Vincenz (Blacksmith) -->
<npc>31583</npc> <!-- Feynn (Blacksmith) -->
<npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) -->
</npcs>
<item>
<!-- Sealed Phoenix Necklace -->
<ingredient count="1" id="6323" />
<!-- Adena -->
<ingredient count="855525" id="57" />
<!-- Phoenix Necklace -->
<production count="1" id="933" />
</item>
<item>
<!-- Sealed Phoenix Earring -->
<ingredient count="1" id="6324" />
<!-- Adena -->
<ingredient count="641644" id="57" />
<!-- Phoenix Earring -->
<production count="1" id="871" />
</item>
<item>
<!-- Sealed Phoenix Ring -->
<ingredient count="1" id="6325" />
<!-- Adena -->
<ingredient count="427763" id="57" />
<!-- Phoenix Ring -->
<production count="1" id="902" />
</item>
<item>
<!-- Sealed Majestic Necklace -->
<ingredient count="1" id="6326" />
<!-- Adena -->
<ingredient count="853669" id="57" />
<!-- Majestic Necklace -->
<production count="1" id="924" />
</item>
<item>
<!-- Sealed Majestic Earring -->
<ingredient count="1" id="6327" />
<!-- Adena -->
<ingredient count="640251" id="57" />
<!-- Majestic Earring -->
<production count="1" id="862" />
</item>
<item>
<!-- Sealed Majestic Ring -->
<ingredient count="1" id="6328" />
<!-- Adena -->
<ingredient count="426834" id="57" />
<!-- Majestic Ring -->
<production count="1" id="893" />
</item>
<item>
<!-- Sealed Phoenix Necklace -->
<ingredient count="1" id="11581" />
<!-- Adena -->
<ingredient count="855525" id="57" />
<!-- Phoenix Necklace -->
<production count="1" id="11584" />
</item>
<item>
<!-- Sealed Phoenix Earring -->
<ingredient count="1" id="11583" />
<!-- Adena -->
<ingredient count="641644" id="57" />
<!-- Phoenix Earring -->
<production count="1" id="11586" />
</item>
<item>
<!-- Sealed Phoenix Ring -->
<ingredient count="1" id="11582" />
<!-- Adena -->
<ingredient count="427763" id="57" />
<!-- Phoenix Ring -->
<production count="1" id="11585" />
</item>
<item>
<!-- Sealed Majestic Necklace -->
<ingredient count="1" id="11590" />
<!-- Adena -->
<ingredient count="853669" id="57" />
<!-- Majestic Necklace -->
<production count="1" id="11587" />
</item>
<item>
<!-- Sealed Majestic Earring -->
<ingredient count="1" id="11592" />
<!-- Adena -->
<ingredient count="640251" id="57" />
<!-- Majestic Earring -->
<production count="1" id="11589" />
</item>
<item>
<!-- Sealed Majestic Ring -->
<ingredient count="1" id="11591" />
<!-- Adena -->
<ingredient count="426834" id="57" />
<!-- Majestic Ring -->
<production count="1" id="11588" />
</item>
<item>
<!-- Common Item - Sealed Phoenix Necklace -->
<ingredient count="1" id="12344" />
<!-- Adena -->
<ingredient count="855525" id="57" />
<!-- Common Item - Phoenix Necklace -->
<production count="1" id="12347" />
</item>
<item>
<!-- Common Item - Sealed Phoenix Earring -->
<ingredient count="1" id="12345" />
<!-- Adena -->
<ingredient count="641644" id="57" />
<!-- Common Item - Phoenix Earring -->
<production count="1" id="12349" />
</item>
<item>
<!-- Common Item - Sealed Phoenix Ring -->
<ingredient count="1" id="12346" />
<!-- Adena -->
<ingredient count="427763" id="57" />
<!-- Common Item - Phoenix Ring -->
<production count="1" id="12348" />
</item>
<item>
<!-- Common Item - Sealed Majestic Necklace -->
<ingredient count="1" id="12350" />
<!-- Adena -->
<ingredient count="853669" id="57" />
<!-- Common Item - Majestic Necklace -->
<production count="1" id="12353" />
</item>
<item>
<!-- Common Item - Sealed Majestic Earring -->
<ingredient count="1" id="12352" />
<!-- Adena -->
<ingredient count="640251" id="57" />
<!-- Common Item - Majestic Earring -->
<production count="1" id="12355" />
</item>
<item>
<!-- Common Item - Sealed Majestic Ring -->
<ingredient count="1" id="12351" />
<!-- Adena -->
<ingredient count="426834" id="57" />
<!-- Common Item - Majestic Ring -->
<production count="1" id="12354" />
</item>
</list>

View File

@@ -0,0 +1,668 @@
<?xml version="1.0" encoding="UTF-8"?>
<list maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>30298</npc> <!-- Pinter (Blacksmith) -->
<npc>30300</npc> <!-- Pushkin (Blacksmith) -->
<npc>30317</npc> <!-- Kluto (Blacksmith) -->
<npc>30458</npc> <!-- Poitan (Blacksmith) -->
<npc>30471</npc> <!-- Rupio (Blacksmith) -->
<npc>30678</npc> <!-- Helton (Blacksmith) -->
<npc>30688</npc> <!-- Duning (Blacksmith) -->
<npc>30846</npc> <!-- Wilbert (Blacksmith) -->
<npc>30898</npc> <!-- Morning (Blacksmith) -->
<npc>31271</npc> <!-- Hilda (Blacksmith) -->
<npc>31316</npc> <!-- Vincenz (Blacksmith) -->
<npc>31583</npc> <!-- Feynn (Blacksmith) -->
<npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) -->
</npcs>
<item>
<!-- Dark Crystal Gloves - Heavy Armor -->
<ingredient count="1" id="5765" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Gloves -->
<production count="1" id="5290" />
</item>
<item>
<!-- Dark Crystal Gloves - Light Armor -->
<ingredient count="1" id="5766" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Gloves -->
<production count="1" id="5290" />
</item>
<item>
<!-- Dark Crystal Gloves - Robe -->
<ingredient count="1" id="5767" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Gloves -->
<production count="1" id="5290" />
</item>
<item>
<!-- Tallum Gloves - Heavy Armor -->
<ingredient count="1" id="5768" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Gloves -->
<production count="1" id="5295" />
</item>
<item>
<!-- Tallum Gloves - Light Armor -->
<ingredient count="1" id="5769" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Gloves -->
<production count="1" id="5295" />
</item>
<item>
<!-- Tallum Gloves - Robe -->
<ingredient count="1" id="5770" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Gloves -->
<production count="1" id="5295" />
</item>
<item>
<!-- Gauntlets of Nightmare - Heavy Armor -->
<ingredient count="1" id="5771" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Gauntlets of Nightmare -->
<production count="1" id="5313" />
</item>
<item>
<!-- Gauntlets of Nightmare - Light Armor -->
<ingredient count="1" id="5772" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Gauntlets of Nightmare -->
<production count="1" id="5313" />
</item>
<item>
<!-- Gauntlets of Nightmare - Robe -->
<ingredient count="1" id="5773" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Gauntlets of Nightmare -->
<production count="1" id="5313" />
</item>
<item>
<!-- Majestic Gauntlets - Heavy Armor -->
<ingredient count="1" id="5774" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Gauntlets -->
<production count="1" id="5318" />
</item>
<item>
<!-- Majestic Gauntlets - Light Armor -->
<ingredient count="1" id="5775" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Gauntlets -->
<production count="1" id="5318" />
</item>
<item>
<!-- Majestic Gauntlets - Robe -->
<ingredient count="1" id="5776" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Gauntlets -->
<production count="1" id="5318" />
</item>
<item>
<!-- Dark Crystal Boots - Heavy Armor -->
<ingredient count="1" id="5777" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Boots -->
<production count="1" id="5291" />
</item>
<item>
<!-- Dark Crystal Boots - Light Armor -->
<ingredient count="1" id="5778" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Boots -->
<production count="1" id="5291" />
</item>
<item>
<!-- Dark Crystal Boots - Robe -->
<ingredient count="1" id="5779" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Boots -->
<production count="1" id="5291" />
</item>
<item>
<!-- Tallum Boots - Heavy Armor -->
<ingredient count="1" id="5780" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Boots -->
<production count="1" id="5296" />
</item>
<item>
<!-- Tallum Boots - Light Armor -->
<ingredient count="1" id="5781" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Boots -->
<production count="1" id="5296" />
</item>
<item>
<!-- Tallum Boots - Robe -->
<ingredient count="1" id="5782" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Boots -->
<production count="1" id="5296" />
</item>
<item>
<!-- Boots of Nightmare - Heavy Armor -->
<ingredient count="1" id="5783" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Boots of Nightmare -->
<production count="1" id="5314" />
</item>
<item>
<!-- Boots of Nightmare - Light Armor -->
<ingredient count="1" id="5784" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Boots of Nightmare -->
<production count="1" id="5314" />
</item>
<item>
<!-- Boots of Nightmare - Robe -->
<ingredient count="1" id="5785" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Boots of Nightmare -->
<production count="1" id="5314" />
</item>
<item>
<!-- Majestic Boots - Heavy Armor -->
<ingredient count="1" id="5786" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Boots -->
<production count="1" id="5319" />
</item>
<item>
<!-- Majestic Boots - Light Armor -->
<ingredient count="1" id="5787" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Boots -->
<production count="1" id="5319" />
</item>
<item>
<!-- Majestic Boots - Robe -->
<ingredient count="1" id="5788" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Boots -->
<production count="1" id="5319" />
</item>
<item>
<!-- Dark Crystal Gloves - Heavy Armor -->
<ingredient count="1" id="11408" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Gloves -->
<production count="1" id="11421" />
</item>
<item>
<!-- Dark Crystal Gloves - Light Armor Use -->
<ingredient count="1" id="11409" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Gloves -->
<production count="1" id="11421" />
</item>
<item>
<!-- Dark Crystal Gloves - Robe -->
<ingredient count="1" id="11410" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Gloves -->
<production count="1" id="11421" />
</item>
<item>
<!-- Tallum Gloves - Heavy Armor -->
<ingredient count="1" id="11437" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Gloves -->
<production count="1" id="11429" />
</item>
<item>
<!-- Tallum Gloves - Light Armor Use -->
<ingredient count="1" id="11438" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Gloves -->
<production count="1" id="11429" />
</item>
<item>
<!-- Tallum Gloves - Robe -->
<ingredient count="1" id="11439" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Gloves -->
<production count="1" id="11429" />
</item>
<item>
<!-- Gauntlet of Nightmare - Heavy Armor -->
<ingredient count="1" id="11472" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Gauntlet of Nightmare -->
<production count="1" id="11465" />
</item>
<item>
<!-- Gauntlet of Nightmare - Light Armor Use -->
<ingredient count="1" id="11473" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Gauntlet of Nightmare -->
<production count="1" id="11465" />
</item>
<item>
<!-- Gauntlet of Nightmare - Robe -->
<ingredient count="1" id="11474" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Gauntlet of Nightmare -->
<production count="1" id="11465" />
</item>
<item>
<!-- Majestic Gauntlet - Heavy Armor -->
<ingredient count="1" id="11448" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Gauntlet -->
<production count="1" id="11458" />
</item>
<item>
<!-- Majestic Gauntlet - Light Armor Use -->
<ingredient count="1" id="11449" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Gauntlet -->
<production count="1" id="11458" />
</item>
<item>
<!-- Majestic Gauntlet - Robe -->
<ingredient count="1" id="11450" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Gauntlet -->
<production count="1" id="11458" />
</item>
<item>
<!-- Dark Crystal Boots - Heavy Armor -->
<ingredient count="1" id="11413" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Boots -->
<production count="1" id="11424" />
</item>
<item>
<!-- Dark Crystal Boots - Light Armor Use -->
<ingredient count="1" id="11414" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Boots -->
<production count="1" id="11424" />
</item>
<item>
<!-- Dark Crystal Boots - Robe -->
<ingredient count="1" id="11415" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Dark Crystal Boots -->
<production count="1" id="11424" />
</item>
<item>
<!-- Tallum Boots - Heavy Armor -->
<ingredient count="1" id="11441" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Boots -->
<production count="1" id="11431" />
</item>
<item>
<!-- Tallum Boots - Light Armor Use -->
<ingredient count="1" id="11442" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Boots -->
<production count="1" id="11431" />
</item>
<item>
<!-- Tallum Boots - Robe -->
<ingredient count="1" id="11443" />
<!-- Adena -->
<ingredient count="4350" id="57" />
<!-- Sealed Tallum Boots -->
<production count="1" id="11431" />
</item>
<item>
<!-- Boots of Nightmare - Heavy Armor -->
<ingredient count="1" id="11477" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Boots of Nightmare -->
<production count="1" id="11468" />
</item>
<item>
<!-- Boots of Nightmare - Light Armor Use -->
<ingredient count="1" id="11478" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Boots of Nightmare -->
<production count="1" id="11468" />
</item>
<item>
<!-- Boots of Nightmare - Robe -->
<ingredient count="1" id="11479" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Boots of Nightmare -->
<production count="1" id="11468" />
</item>
<item>
<!-- Majestic Boots - Heavy Armor -->
<ingredient count="1" id="11453" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Boots -->
<production count="1" id="11461" />
</item>
<item>
<!-- Majestic Boots - Light Armor Use -->
<ingredient count="1" id="11454" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Boots -->
<production count="1" id="11461" />
</item>
<item>
<!-- Majestic Boots - Robe -->
<ingredient count="1" id="11455" />
<!-- Adena -->
<ingredient count="6600" id="57" />
<!-- Sealed Majestic Boots -->
<production count="1" id="11461" />
</item>
<item>
<!-- Common Item - Dark Crystal Gloves - Heavy Armor -->
<ingredient count="1" id="12207" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Dark Crystal Gloves -->
<production count="1" id="12221" />
</item>
<item>
<!-- Common Item - Dark Crystal Gloves - Tans Armor Use -->
<ingredient count="1" id="12208" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Dark Crystal Gloves -->
<production count="1" id="12221" />
</item>
<item>
<!-- Common Item - Dark Crystal Gloves - Robe -->
<ingredient count="1" id="12209" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Dark Crystal Gloves -->
<production count="1" id="12221" />
</item>
<item>
<!-- Common Item - Tallum Gloves - Heavy Armor -->
<ingredient count="1" id="12236" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Tallum Gloves -->
<production count="1" id="12229" />
</item>
<item>
<!-- Common Item - Tallum Gloves - Tans Armor Use -->
<ingredient count="1" id="12237" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Tallum Gloves -->
<production count="1" id="12229" />
</item>
<item>
<!-- Common Item - Tallum Gloves - Robe -->
<ingredient count="1" id="12238" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Tallum Gloves -->
<production count="1" id="12229" />
</item>
<item>
<!-- Common Item - Gauntlet of Nightmare - Heavy Armor -->
<ingredient count="1" id="12271" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Gauntlet of Nightmare -->
<production count="1" id="12264" />
</item>
<item>
<!-- Common Item - Gauntlet of Nightmare - Tans Armor Use -->
<ingredient count="1" id="12272" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Gauntlet of Nightmare -->
<production count="1" id="12264" />
</item>
<item>
<!-- Common Item - Gauntlet of Nightmare - Robe -->
<ingredient count="1" id="12273" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Gauntlet of Nightmare -->
<production count="1" id="12264" />
</item>
<item>
<!-- Common Item - Majestic Gauntlet - Heavy Armor -->
<ingredient count="1" id="12247" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Majestic Gauntlet -->
<production count="1" id="12257" />
</item>
<item>
<!-- Common Item - Majestic Gauntlet - Tans Armor Use -->
<ingredient count="1" id="12248" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Majestic Gauntlet -->
<production count="1" id="12257" />
</item>
<item>
<!-- Common Item - Majestic Gauntlet - Robe -->
<ingredient count="1" id="12249" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Majestic Gauntlet -->
<production count="1" id="12257" />
</item>
<item>
<!-- Common Item - Dark Crystal Boots - Heavy Armor -->
<ingredient count="1" id="12212" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Dark Crystal Boots -->
<production count="1" id="12224" />
</item>
<item>
<!-- Common Item - Dark Crystal Boots - Tans Armor Use -->
<ingredient count="1" id="12213" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Dark Crystal Boots -->
<production count="1" id="12224" />
</item>
<item>
<!-- Common Item - Dark Crystal Boots - Robe -->
<ingredient count="1" id="12214" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Dark Crystal Boots -->
<production count="1" id="12224" />
</item>
<item>
<!-- Common Item - Tallum Boots - Heavy Armor -->
<ingredient count="1" id="12240" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Tallum Boots -->
<production count="1" id="12231" />
</item>
<item>
<!-- Common Item - Tallum Boots - Tans Armor Use -->
<ingredient count="1" id="12241" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Tallum Boots -->
<production count="1" id="12231" />
</item>
<item>
<!-- Common Item - Tallum Boots - Robe -->
<ingredient count="1" id="12242" />
<!-- Adena -->
<ingredient count="218" id="57" />
<!-- Common Item - Sealed Tallum Boots -->
<production count="1" id="12231" />
</item>
<item>
<!-- Common Item - Boots of Nightmare - Heavy Armor -->
<ingredient count="1" id="12276" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Boots of Nightmare -->
<production count="1" id="12267" />
</item>
<item>
<!-- Common Item - Boots of Nightmare - Tans Armor Use -->
<ingredient count="1" id="12277" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Boots of Nightmare -->
<production count="1" id="12267" />
</item>
<item>
<!-- Common Item - Boots of Nightmare - Robe -->
<ingredient count="1" id="12278" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Boots of Nightmare -->
<production count="1" id="12267" />
</item>
<item>
<!-- Common Item - Majestic Boots - Heavy Armor -->
<ingredient count="1" id="12252" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Majestic Boots -->
<production count="1" id="12260" />
</item>
<item>
<!-- Common Item - Majestic Boots - Tans Armor Use -->
<ingredient count="1" id="12253" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Majestic Boots -->
<production count="1" id="12260" />
</item>
<item>
<!-- Common Item - Majestic Boots - Robe -->
<ingredient count="1" id="12254" />
<!-- Adena -->
<ingredient count="330" id="57" />
<!-- Common Item - Sealed Majestic Boots -->
<production count="1" id="12260" />
</item>
<item>
<!-- Dark Crystal Helmet - Heavy Armor -->
<ingredient count="1" id="11417" />
<!-- Sealed Dark Crystal Helmet - Heavy Armor -->
<production count="1" id="11426" />
</item>
<item>
<!-- Dark Crystal Helmet - Light Armor Use -->
<ingredient count="1" id="12986" />
<!-- Sealed Dark Crystal Helmet - Light Armor Use -->
<production count="1" id="12994" />
</item>
<item>
<!-- Dark Crystal Helmet - Robe -->
<ingredient count="1" id="12987" />
<!-- Sealed Dark Crystal Helmet - Robe -->
<production count="1" id="12995" />
</item>
<item>
<!-- Tallum Helmet - Heavy Armor -->
<ingredient count="1" id="11446" />
<!-- Sealed Tallum Helmet - Heavy Armor -->
<production count="1" id="11434" />
</item>
<item>
<!-- Tallum Helmet - Light Armor Use -->
<ingredient count="1" id="12988" />
<!-- Sealed Tallum Helmet - Light Armor Use -->
<production count="1" id="12996" />
</item>
<item>
<!-- Tallum Helmet - Robe -->
<ingredient count="1" id="12989" />
<!-- Sealed Tallum Helmet - Robe -->
<production count="1" id="12997" />
</item>
<item>
<!-- Majestic Circlet - Heavy Armor -->
<ingredient count="1" id="11456" />
<!-- Sealed Majestic Circlet - Heavy Armor -->
<production count="1" id="11462" />
</item>
<item>
<!-- Majestic Circlet - Light Armor Use -->
<ingredient count="1" id="12990" />
<!-- Sealed Majestic Circlet - Light Armor Use -->
<production count="1" id="12998" />
</item>
<item>
<!-- Majestic Circlet - Robe -->
<ingredient count="1" id="12991" />
<!-- Sealed Majestic Circlet - Robe -->
<production count="1" id="12999" />
</item>
<item>
<!-- Helm of Nightmare - Heavy Armor -->
<ingredient count="1" id="11481" />
<!-- Sealed Helm of Nightmare - Heavy Armor -->
<production count="1" id="11470" />
</item>
<item>
<!-- Helm of Nightmare - Light Armor Use -->
<ingredient count="1" id="12992" />
<!-- Sealed Helm of Nightmare - Light Armor Use -->
<production count="1" id="13000" />
</item>
<item>
<!-- Helm of Nightmare - Robe -->
<ingredient count="1" id="12993" />
<!-- Sealed Helm of Nightmare - Robe -->
<production count="1" id="13001" />
</item>
</list>

View File

@@ -17,6 +17,7 @@
<npc>31990</npc> <!-- Siger --> <npc>31990</npc> <!-- Siger -->
<npc>33998</npc> <!-- Momet --> <npc>33998</npc> <!-- Momet -->
<npc>30283</npc> <!-- Altran --> <npc>30283</npc> <!-- Altran -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="17306" count="1" /> <!-- Immortal Gaiters - Heavy Armor --> <ingredient id="17306" count="1" /> <!-- Immortal Gaiters - Heavy Armor -->

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun --> <npc>31960</npc> <!-- Buryun -->
<npc>31990</npc> <!-- Siger --> <npc>31990</npc> <!-- Siger -->
<npc>33998</npc> <!-- Momet --> <npc>33998</npc> <!-- Momet -->
<npc>34208</npc> <!-- Bartman -->
</npcs> </npcs>
<item> <item>
<ingredient id="33969" count="1" /> <!-- Immortal Gaiters - Defense Type / Heavy (Event) --> <ingredient id="33969" count="1" /> <!-- Immortal Gaiters - Defense Type / Heavy (Event) -->

View File

@@ -14,6 +14,7 @@
<npc>31583</npc> <!-- Feynn (Blacksmith) --> <npc>31583</npc> <!-- Feynn (Blacksmith) -->
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="30434" count="1" /> <!-- Bound Boots of Strength --> <ingredient id="30434" count="1" /> <!-- Bound Boots of Strength -->

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) --> <npc>33998</npc> <!-- Momet (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="30446" count="1" /> <!-- Bound Homunkulus' Sword - Acumen --> <ingredient id="30446" count="1" /> <!-- Bound Homunkulus' Sword - Acumen -->

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) --> <npc>33998</npc> <!-- Momet (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="30437" count="1" /> <!-- Bound Black Ore Ring --> <ingredient id="30437" count="1" /> <!-- Bound Black Ore Ring -->

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) --> <npc>33998</npc> <!-- Momet (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="30495" count="1" /> <!-- Bound Halberd - Haste --> <ingredient id="30495" count="1" /> <!-- Bound Halberd - Haste -->

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) --> <npc>33998</npc> <!-- Momet (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="30489" count="1" /> <!-- Bound Heaven's Divider - Focus --> <ingredient id="30489" count="1" /> <!-- Bound Heaven's Divider - Focus -->

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) --> <npc>33998</npc> <!-- Momet (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="17831" count="1" /> <!-- Bound Requiem Shaper --> <ingredient id="17831" count="1" /> <!-- Bound Requiem Shaper -->

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) --> <npc>33998</npc> <!-- Momet (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="17899" count="1" /> <!-- Bound Specter Shaper --> <ingredient id="17899" count="1" /> <!-- Bound Specter Shaper -->

View File

@@ -16,6 +16,7 @@
<npc>31960</npc> <!-- Buryun (Blacksmith) --> <npc>31960</npc> <!-- Buryun (Blacksmith) -->
<npc>31990</npc> <!-- Siger (Blacksmith) --> <npc>31990</npc> <!-- Siger (Blacksmith) -->
<npc>33998</npc> <!-- Momet (Blacksmith) --> <npc>33998</npc> <!-- Momet (Blacksmith) -->
<npc>34208</npc> <!-- Bartman (Blacksmith) -->
</npcs> </npcs>
<item> <item>
<ingredient id="17933" count="1" /> <!-- Bound Amaranthine Shaper --> <ingredient id="17933" count="1" /> <!-- Bound Amaranthine Shaper -->

View File

@@ -1717,7 +1717,7 @@
<height normal="23.0" /> <height normal="23.0" />
</collision> </collision>
</npc> </npc>
<npc id="34189" level="85" type="L2Npc" name="Mistress" title="Auction House Manager"> <npc id="34189" level="85" type="CommissionManager" name="Mistress" title="Auction House Manager">
<!-- AUTO GENERATED NPC TODO: FIX IT --> <!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race> <race>HUMAN</race>
<sex>FEMALE</sex> <sex>FEMALE</sex>
@@ -1737,7 +1737,7 @@
<height normal="22.5" /> <height normal="22.5" />
</collision> </collision>
</npc> </npc>
<npc id="34190" level="85" type="L2Npc" name="Attitude" title="Grocer"> <npc id="34190" level="85" type="L2Merchant" name="Attitude" title="Grocer">
<!-- AUTO GENERATED NPC TODO: FIX IT --> <!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race> <race>HUMAN</race>
<sex>FEMALE</sex> <sex>FEMALE</sex>
@@ -1777,7 +1777,7 @@
<height normal="17.5" /> <height normal="17.5" />
</collision> </collision>
</npc> </npc>
<npc id="34192" level="85" type="L2Npc" name="Fouette" title="Warehouse Keeper"> <npc id="34192" level="85" type="L2Warehouse" name="Fouette" title="Warehouse Keeper">
<!-- AUTO GENERATED NPC TODO: FIX IT --> <!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race> <race>HUMAN</race>
<sex>FEMALE</sex> <sex>FEMALE</sex>