Added missing multisell part for previous commit.

This commit is contained in:
MobiusDev
2017-11-20 23:38:51 +00:00
parent 5d75ddc762
commit 6ccc5c8938
190 changed files with 5560 additions and 1530 deletions

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31126</npc> <!-- Blacksmith of Mammon --> <npc>31126</npc> <!-- Blacksmith of Mammon -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>33493</npc> <!-- Raminya - Mysterious Dye Merchant --> <npc>33493</npc> <!-- Raminya - Mysterious Dye Merchant -->
<npc>33494</npc> <!-- Ephesona - Mysterious Dye Merchant --> <npc>33494</npc> <!-- Ephesona - Mysterious Dye Merchant -->

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31126</npc> <!-- Blacksmith of Mammon --> <npc>31126</npc> <!-- Blacksmith of Mammon -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>33715</npc> <!-- Seed Talisman Manager --> <npc>33715</npc> <!-- Seed Talisman Manager -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31126</npc> <!-- Blacksmith of Mammon --> <npc>31126</npc> <!-- Blacksmith of Mammon -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>33936</npc> <!-- Pelu --> <npc>33936</npc> <!-- Pelu -->
</npcs> </npcs>

View File

@@ -30,14 +30,14 @@
<xs:attribute name="id" type="xs:integer" use="required" /> <xs:attribute name="id" type="xs:integer" use="required" />
<xs:attribute name="enchantmentLevel" type="xs:integer" /> <xs:attribute name="enchantmentLevel" type="xs:integer" />
<xs:attribute name="count" type="xs:positiveInteger" use="required" /> <xs:attribute name="count" type="xs:positiveInteger" use="required" />
<xs:attribute name="chance" type="xs:integer" use="optional" /> <xs:attribute name="chance" type="xs:double" use="optional" />
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
</xs:sequence> </xs:sequence>
<xs:attribute name="isNewMultisell" type="xs:boolean" use="optional" /> <xs:attribute name="isChanceMultisell" type="xs:boolean" use="optional" />
<xs:attribute name="applyTaxes" type="xs:boolean" /> <xs:attribute name="applyTaxes" type="xs:boolean" />
<xs:attribute name="maintainEnchantment" type="xs:boolean" /> <xs:attribute name="maintainEnchantment" type="xs:boolean" />
<xs:attribute name="useRate" type="xs:token" /> <xs:attribute name="useRate" type="xs:token" />

View File

@@ -96,7 +96,7 @@ public final class MultisellData implements IGameXmlReader
if ("list".equalsIgnoreCase(n.getNodeName())) if ("list".equalsIgnoreCase(n.getNodeName()))
{ {
list.setApplyTaxes(parseBoolean(n.getAttributes(), "applyTaxes", false)); list.setApplyTaxes(parseBoolean(n.getAttributes(), "applyTaxes", false));
list.setNewMultisell(parseBoolean(n.getAttributes(), "isNewMultisell", false)); list.setIsChanceMultisell(parseBoolean(n.getAttributes(), "isChanceMultisell", false));
list.setMaintainEnchantment(parseBoolean(n.getAttributes(), "maintainEnchantment", false)); list.setMaintainEnchantment(parseBoolean(n.getAttributes(), "maintainEnchantment", false));
att = n.getAttributes().getNamedItem("useRate"); att = n.getAttributes().getNamedItem("useRate");

View File

@@ -35,14 +35,14 @@ public class Ingredient
private boolean _maintainIngredient; private boolean _maintainIngredient;
private L2Item _template = null; private L2Item _template = null;
private ItemInfo _itemInfo = null; private ItemInfo _itemInfo = null;
private final int _chance; private final double _chance;
public Ingredient(StatsSet set) public Ingredient(StatsSet set)
{ {
this(set.getInt("id"), set.getLong("count"), set.getInt("enchantmentLevel", 0), set.getInt("chance", 0), set.getBoolean("isTaxIngredient", false), set.getBoolean("maintainIngredient", false)); this(set.getInt("id"), set.getLong("count"), set.getInt("enchantmentLevel", 0), set.getDouble("chance", 0), set.getBoolean("isTaxIngredient", false), set.getBoolean("maintainIngredient", false));
} }
public Ingredient(int itemId, long itemCount, int enchantmentLevel, int chance, boolean isTaxIngredient, boolean maintainIngredient) public Ingredient(int itemId, long itemCount, int enchantmentLevel, double chance, boolean isTaxIngredient, boolean maintainIngredient)
{ {
_itemId = itemId; _itemId = itemId;
_itemCount = itemCount; _itemCount = itemCount;
@@ -109,7 +109,7 @@ public class Ingredient
return _itemCount; return _itemCount;
} }
public int getChance() public double getChance()
{ {
return _chance; return _chance;
} }

View File

@@ -27,7 +27,7 @@ import java.util.Set;
public class ListContainer public class ListContainer
{ {
private final int _listId; private final int _listId;
private boolean _isNewMultisell; private boolean _isChanceMultisell;
private boolean _applyTaxes = false; private boolean _applyTaxes = false;
private boolean _maintainEnchantment = false; private boolean _maintainEnchantment = false;
private double _useRate = 1.0; private double _useRate = 1.0;
@@ -43,7 +43,7 @@ public class ListContainer
public ListContainer(ListContainer container) public ListContainer(ListContainer container)
{ {
_listId = container.getListId(); _listId = container.getListId();
_isNewMultisell = container.isNewMultisell(); _isChanceMultisell = container.isChanceMultisell();
_maintainEnchantment = container.getMaintainEnchantment(); _maintainEnchantment = container.getMaintainEnchantment();
} }
@@ -57,14 +57,14 @@ public class ListContainer
return _listId; return _listId;
} }
public boolean isNewMultisell() public boolean isChanceMultisell()
{ {
return _isNewMultisell; return _isChanceMultisell;
} }
public void setNewMultisell(boolean val) public void setIsChanceMultisell(boolean val)
{ {
_isNewMultisell = val; _isChanceMultisell = val;
} }
public final void setApplyTaxes(boolean applyTaxes) public final void setApplyTaxes(boolean applyTaxes)

View File

@@ -368,7 +368,7 @@ public class MultiSellChoose implements IClientIncomingPacket
// Generate the appropriate items // Generate the appropriate items
for (Ingredient e : entry.getProducts()) for (Ingredient e : entry.getProducts())
{ {
if (list.isNewMultisell()) if (list.isChanceMultisell())
{ {
// Skip first entry. // Skip first entry.
if (e.getChance() < 1) if (e.getChance() < 1)

View File

@@ -59,7 +59,7 @@ public final class MultiSellList implements IClientOutgoingPacket
packet.writeD(_finished ? 0x01 : 0x00); // finished packet.writeD(_finished ? 0x01 : 0x00); // finished
packet.writeD(PAGE_SIZE); // size of pages packet.writeD(PAGE_SIZE); // size of pages
packet.writeD(_size); // list length packet.writeD(_size); // list length
packet.writeC(_list.isNewMultisell() ? 0x01 : 0x00); // new multisell window packet.writeC(_list.isChanceMultisell() ? 0x01 : 0x00); // new multisell window
Entry ent; Entry ent;
while (_size-- > 0) while (_size-- > 0)
@@ -100,7 +100,7 @@ public final class MultiSellList implements IClientOutgoingPacket
{ {
final ItemInfo item = ing.getItemInfo(); final ItemInfo item = ing.getItemInfo();
packet.writeH(item.getEnchantLevel()); // enchant level packet.writeH(item.getEnchantLevel()); // enchant level
packet.writeD(_list.isNewMultisell() ? ing.getChance() : item.getAugmentId()); // augment id packet.writeD((int) (_list.isChanceMultisell() ? ing.getChance() : item.getAugmentId())); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeD(0x00); // time ? packet.writeD(0x00); // time ?
packet.writeH(item.getElementId()); // attack element packet.writeH(item.getElementId()); // attack element
@@ -115,7 +115,7 @@ public final class MultiSellList implements IClientOutgoingPacket
else else
{ {
packet.writeH(ing.getEnchantLevel()); // enchant level packet.writeH(ing.getEnchantLevel()); // enchant level
packet.writeD(ing.getChance()); // augment id packet.writeD((int) ing.getChance()); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeD(0x00); // time ? packet.writeD(0x00); // time ?
packet.writeH(0x00); // attack element packet.writeH(0x00); // attack element
@@ -138,7 +138,7 @@ public final class MultiSellList implements IClientOutgoingPacket
{ {
final ItemInfo item = ing.getItemInfo(); final ItemInfo item = ing.getItemInfo();
packet.writeH(item.getEnchantLevel()); // enchant level packet.writeH(item.getEnchantLevel()); // enchant level
packet.writeD(_list.isNewMultisell() ? ing.getChance() : item.getAugmentId()); // augment id packet.writeD((int) (_list.isChanceMultisell() ? ing.getChance() : item.getAugmentId())); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeH(item.getElementId()); // attack element packet.writeH(item.getElementId()); // attack element
packet.writeH(item.getElementPower()); // element power packet.writeH(item.getElementPower()); // element power
@@ -151,7 +151,7 @@ public final class MultiSellList implements IClientOutgoingPacket
else else
{ {
packet.writeH(ing.getEnchantLevel()); // enchant level packet.writeH(ing.getEnchantLevel()); // enchant level
packet.writeD(ing.getChance()); // augment id packet.writeD((int) ing.getChance()); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeH(0x00); // attack element packet.writeH(0x00); // attack element
packet.writeH(0x00); // element power packet.writeH(0x00); // element power

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31126</npc> <!-- Blacksmith of Mammon --> <npc>31126</npc> <!-- Blacksmith of Mammon -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>33493</npc> <!-- Raminya - Mysterious Dye Merchant --> <npc>33493</npc> <!-- Raminya - Mysterious Dye Merchant -->
<npc>33494</npc> <!-- Ephesona - Mysterious Dye Merchant --> <npc>33494</npc> <!-- Ephesona - Mysterious Dye Merchant -->

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31126</npc> <!-- Blacksmith of Mammon --> <npc>31126</npc> <!-- Blacksmith of Mammon -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>33715</npc> <!-- Seed Talisman Manager --> <npc>33715</npc> <!-- Seed Talisman Manager -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31126</npc> <!-- Blacksmith of Mammon --> <npc>31126</npc> <!-- Blacksmith of Mammon -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>33936</npc> <!-- Pelu --> <npc>33936</npc> <!-- Pelu -->
</npcs> </npcs>

View File

@@ -30,14 +30,14 @@
<xs:attribute name="id" type="xs:integer" use="required" /> <xs:attribute name="id" type="xs:integer" use="required" />
<xs:attribute name="enchantmentLevel" type="xs:integer" /> <xs:attribute name="enchantmentLevel" type="xs:integer" />
<xs:attribute name="count" type="xs:positiveInteger" use="required" /> <xs:attribute name="count" type="xs:positiveInteger" use="required" />
<xs:attribute name="chance" type="xs:integer" use="optional" /> <xs:attribute name="chance" type="xs:double" use="optional" />
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
</xs:sequence> </xs:sequence>
<xs:attribute name="isNewMultisell" type="xs:boolean" use="optional" /> <xs:attribute name="isChanceMultisell" type="xs:boolean" use="optional" />
<xs:attribute name="applyTaxes" type="xs:boolean" /> <xs:attribute name="applyTaxes" type="xs:boolean" />
<xs:attribute name="maintainEnchantment" type="xs:boolean" /> <xs:attribute name="maintainEnchantment" type="xs:boolean" />
<xs:attribute name="useRate" type="xs:token" /> <xs:attribute name="useRate" type="xs:token" />

View File

@@ -96,7 +96,7 @@ public final class MultisellData implements IGameXmlReader
if ("list".equalsIgnoreCase(n.getNodeName())) if ("list".equalsIgnoreCase(n.getNodeName()))
{ {
list.setApplyTaxes(parseBoolean(n.getAttributes(), "applyTaxes", false)); list.setApplyTaxes(parseBoolean(n.getAttributes(), "applyTaxes", false));
list.setNewMultisell(parseBoolean(n.getAttributes(), "isNewMultisell", false)); list.setIsChanceMultisell(parseBoolean(n.getAttributes(), "isChanceMultisell", false));
list.setMaintainEnchantment(parseBoolean(n.getAttributes(), "maintainEnchantment", false)); list.setMaintainEnchantment(parseBoolean(n.getAttributes(), "maintainEnchantment", false));
att = n.getAttributes().getNamedItem("useRate"); att = n.getAttributes().getNamedItem("useRate");

View File

@@ -35,14 +35,14 @@ public class Ingredient
private boolean _maintainIngredient; private boolean _maintainIngredient;
private L2Item _template = null; private L2Item _template = null;
private ItemInfo _itemInfo = null; private ItemInfo _itemInfo = null;
private final int _chance; private final double _chance;
public Ingredient(StatsSet set) public Ingredient(StatsSet set)
{ {
this(set.getInt("id"), set.getLong("count"), set.getInt("enchantmentLevel", 0), set.getInt("chance", 0), set.getBoolean("isTaxIngredient", false), set.getBoolean("maintainIngredient", false)); this(set.getInt("id"), set.getLong("count"), set.getInt("enchantmentLevel", 0), set.getDouble("chance", 0), set.getBoolean("isTaxIngredient", false), set.getBoolean("maintainIngredient", false));
} }
public Ingredient(int itemId, long itemCount, int enchantmentLevel, int chance, boolean isTaxIngredient, boolean maintainIngredient) public Ingredient(int itemId, long itemCount, int enchantmentLevel, double chance, boolean isTaxIngredient, boolean maintainIngredient)
{ {
_itemId = itemId; _itemId = itemId;
_itemCount = itemCount; _itemCount = itemCount;
@@ -109,7 +109,7 @@ public class Ingredient
return _itemCount; return _itemCount;
} }
public int getChance() public double getChance()
{ {
return _chance; return _chance;
} }

View File

@@ -27,7 +27,7 @@ import java.util.Set;
public class ListContainer public class ListContainer
{ {
private final int _listId; private final int _listId;
private boolean _isNewMultisell; private boolean _isChanceMultisell;
private boolean _applyTaxes = false; private boolean _applyTaxes = false;
private boolean _maintainEnchantment = false; private boolean _maintainEnchantment = false;
private double _useRate = 1.0; private double _useRate = 1.0;
@@ -43,7 +43,7 @@ public class ListContainer
public ListContainer(ListContainer container) public ListContainer(ListContainer container)
{ {
_listId = container.getListId(); _listId = container.getListId();
_isNewMultisell = container.isNewMultisell(); _isChanceMultisell = container.isChanceMultisell();
_maintainEnchantment = container.getMaintainEnchantment(); _maintainEnchantment = container.getMaintainEnchantment();
} }
@@ -57,14 +57,14 @@ public class ListContainer
return _listId; return _listId;
} }
public boolean isNewMultisell() public boolean isChanceMultisell()
{ {
return _isNewMultisell; return _isChanceMultisell;
} }
public void setNewMultisell(boolean val) public void setIsChanceMultisell(boolean val)
{ {
_isNewMultisell = val; _isChanceMultisell = val;
} }
public final void setApplyTaxes(boolean applyTaxes) public final void setApplyTaxes(boolean applyTaxes)

View File

@@ -369,7 +369,7 @@ public class MultiSellChoose implements IClientIncomingPacket
// Generate the appropriate items // Generate the appropriate items
for (Ingredient e : entry.getProducts()) for (Ingredient e : entry.getProducts())
{ {
if (list.isNewMultisell()) if (list.isChanceMultisell())
{ {
// Skip first entry. // Skip first entry.
if (e.getChance() < 1) if (e.getChance() < 1)

View File

@@ -60,7 +60,7 @@ public final class MultiSellList implements IClientOutgoingPacket
packet.writeD(_finished ? 0x01 : 0x00); // finished packet.writeD(_finished ? 0x01 : 0x00); // finished
packet.writeD(PAGE_SIZE); // size of pages packet.writeD(PAGE_SIZE); // size of pages
packet.writeD(_size); // list length packet.writeD(_size); // list length
packet.writeC(_list.isNewMultisell() ? 0x01 : 0x00); // new multisell window packet.writeC(_list.isChanceMultisell() ? 0x01 : 0x00); // new multisell window
Entry ent; Entry ent;
while (_size-- > 0) while (_size-- > 0)
@@ -112,7 +112,7 @@ public final class MultiSellList implements IClientOutgoingPacket
{ {
final ItemInfo item = ing.getItemInfo(); final ItemInfo item = ing.getItemInfo();
packet.writeH(item.getEnchantLevel()); // enchant level packet.writeH(item.getEnchantLevel()); // enchant level
packet.writeD(_list.isNewMultisell() ? ing.getChance() : item.getAugmentId()); // augment id packet.writeD((int) (_list.isChanceMultisell() ? ing.getChance() : item.getAugmentId())); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeD(0x00); // time ? packet.writeD(0x00); // time ?
packet.writeH(item.getElementId()); // attack element packet.writeH(item.getElementId()); // attack element
@@ -139,7 +139,7 @@ public final class MultiSellList implements IClientOutgoingPacket
else else
{ {
packet.writeH(ing.getEnchantLevel()); // enchant level packet.writeH(ing.getEnchantLevel()); // enchant level
packet.writeD(ing.getChance()); // augment id packet.writeD((int) ing.getChance()); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeD(0x00); // time ? packet.writeD(0x00); // time ?
packet.writeH(0x00); // attack element packet.writeH(0x00); // attack element
@@ -173,7 +173,7 @@ public final class MultiSellList implements IClientOutgoingPacket
{ {
final ItemInfo item = ing.getItemInfo(); final ItemInfo item = ing.getItemInfo();
packet.writeH(item.getEnchantLevel()); // enchant level packet.writeH(item.getEnchantLevel()); // enchant level
packet.writeD(_list.isNewMultisell() ? ing.getChance() : item.getAugmentId()); // augment id packet.writeD((int) (_list.isChanceMultisell() ? ing.getChance() : item.getAugmentId())); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeH(item.getElementId()); // attack element packet.writeH(item.getElementId()); // attack element
packet.writeH(item.getElementPower()); // element power packet.writeH(item.getElementPower()); // element power
@@ -197,7 +197,7 @@ public final class MultiSellList implements IClientOutgoingPacket
else else
{ {
packet.writeH(ing.getEnchantLevel()); // enchant level packet.writeH(ing.getEnchantLevel()); // enchant level
packet.writeD(ing.getChance()); // augment id packet.writeD((int) ing.getChance()); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeH(0x00); // attack element packet.writeH(0x00); // attack element
packet.writeH(0x00); // element power packet.writeH(0x00); // element power

View File

@@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="-100" count="30"/> <!-- Pc Cafe Points -->
<production id="6406" count="1"/> <!-- Firecracker - None -->
</item>
<item>
<ingredient id="-100" count="100"/> <!-- Pc Cafe Points -->
<production id="34602" count="1"/> <!-- Player Commendation - Quick Healing Potion - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="60"/> <!-- Pc Cafe Points -->
<production id="6407" count="1"/> <!-- Large Firecracker - None -->
</item>
<item>
<ingredient id="-100" count="240"/> <!-- Pc Cafe Points -->
<production id="34618" count="1"/> <!-- Player Commendation - Enhanced Cocktail - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="360"/> <!-- Pc Cafe Points -->
<production id="37928" count="1"/> <!-- Player Commendation - Art of Seduction - None -->
</item>
<item>
<ingredient id="-100" count="6"/> <!-- Pc Cafe Points -->
<production id="47549" count="1"/> <!-- PC Cafe Bait - None -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46039" count="1"/> <!-- Player Commendation Talisman - STR - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46040" count="1"/> <!-- Player Commendation Talisman - INT - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46041" count="1"/> <!-- Player Commendation Talisman - DEX - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46042" count="1"/> <!-- Player Commendation Talisman - WIT - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46043" count="1"/> <!-- Player Commendation Talisman - CON - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46044" count="1"/> <!-- Player Commendation Talisman - MEN - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46045" count="1"/> <!-- Player Commendation Talisman - Atk. Attribute Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46046" count="1"/> <!-- Player Commendation Talisman - Fire Resistance Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46047" count="1"/> <!-- Player Commendation Talisman - Water Resistance Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46048" count="1"/> <!-- Player Commendation Talisman - Wind Resistance Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46049" count="1"/> <!-- Player Commendation Talisman - Earth Resistance Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46050" count="1"/> <!-- Player Commendation Talisman - Holy Resistance Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46051" count="1"/> <!-- Player Commendation Talisman - Dark Resistance Boost - PC-exclusive -->
</item>
</list>

View File

@@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9184" count="1"/> <!-- Shadow Item: Teddy Bear Hat - Escape -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9185" count="1"/> <!-- Shadow Item: Piggy Hat - Escape -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9187" count="1"/> <!-- Shadow Item: Wizard Hat - Escape -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9188" count="1"/> <!-- Shadow Item: Dapper Cap - Escape -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9190" count="1"/> <!-- Shadow Item: Iron Circlet - Escape -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9191" count="1"/> <!-- Shadow Item: Teddy Bear Hat - Big Head -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9192" count="1"/> <!-- Shadow Item: Piggy Hat - Big Head -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9194" count="1"/> <!-- Shadow Item: Wizard Hat - Big Head -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9195" count="1"/> <!-- Shadow Item: Dapper Cap - Big Head -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9197" count="1"/> <!-- Shadow Item: Iron Circlet - Big Head -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9198" count="1"/> <!-- Shadow Item: Teddy Bear Hat - Firework -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9199" count="1"/> <!-- Shadow Item: Piggy Hat - Firework -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9201" count="1"/> <!-- Shadow Item: Wizard Hat - Firework -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9202" count="1"/> <!-- Shadow Item: Dapper Cap - Firework -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9204" count="1"/> <!-- Shadow Item: Iron Circlet - Firework -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37919" count="1"/> <!-- Pig Lollipop Appearance Stone: One-handed Sword - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37920" count="1"/> <!-- Chrono Cithara Appearance Stone: One-handed Sword - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37921" count="1"/> <!-- Chrono Unitus Appearance Stone: Fist Weapon - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37922" count="1"/> <!-- Chrono Campana Appearance Stone: Spear - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37923" count="1"/> <!-- Chrono Darbuka Appearance Stone: Two-handed Blunt Weapon - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37924" count="1"/> <!-- Chrono Maracas Appearance Stone: Dualsword - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37925" count="1"/> <!-- Pumpkin Dagger Appearance Stone: Dagger - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37926" count="1"/> <!-- Pumpkin Dual Dagger Appearance Stone: Dual Dagger - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37927" count="1"/> <!-- Scarecrow Sword Appearance Stone: One-handed Magic Sword - 15-day -->
</item>
</list>

View File

@@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46886" count="1"/> <!-- PC Cafe - Paulina's Specter Dualsword - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46887" count="1"/> <!-- PC Cafe - Paulina's Specter Cutter - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46888" count="1"/> <!-- PC Cafe - Paulina's Specter Slasher - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46889" count="1"/> <!-- PC Cafe - Paulina's Specter Avenger - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46890" count="1"/> <!-- PC Cafe - Paulina's Specter Fighter - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46891" count="1"/> <!-- PC Cafe - Paulina's Specter Stormer - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46892" count="1"/> <!-- PC Cafe - Paulina's Specter Thrower - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46893" count="1"/> <!-- PC Cafe - Paulina's Specter Shooter - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46894" count="1"/> <!-- PC Cafe - Paulina's Specter Dual Dagger - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46895" count="1"/> <!-- PC Cafe - Paulina Specter Caster - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="46896" count="1"/> <!-- PC Cafe - Paulina's Specter Retributer - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="47068" count="1"/> <!-- PC Cafe - Paulina's Seraph Heavy Armor Box - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="47069" count="1"/> <!-- PC Cafe - Paulina's Seraph Light Armor Box - 4-hour -->
</item>
<item>
<ingredient id="-100" count="480"/> <!-- Pc Cafe Points -->
<production id="47070" count="1"/> <!-- PC Cafe - Paulina's Seraph Robe Box - 4-hour -->
</item>
<item>
<ingredient id="-100" count="360"/> <!-- Pc Cafe Points -->
<production id="47071" count="1"/> <!-- PC Cafe - Paulina's Seraph Accessory Pack - 4-hour -->
</item>
</list>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>34230</npc> <!-- Sporcha --> <npc>34230</npc> <!-- Sporcha -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31126</npc> <!-- Blacksmith of Mammon --> <npc>31126</npc> <!-- Blacksmith of Mammon -->
</npcs> </npcs>

View File

@@ -5,6 +5,12 @@
<npc>31820</npc> <!-- Adventure Guildsman --> <npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31821</npc> <!-- Adventure Guildsman --> <npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31822</npc> <!-- Adventure Guildsman --> <npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="204" /> <!-- Memento Mori --> <ingredient id="9814" count="204" /> <!-- Memento Mori -->

View File

@@ -1,11 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31792</npc> <!-- Adventure Guildsman --> <npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31793</npc> <!-- Adventure Guildsman --> <npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31794</npc> <!-- Adventure Guildsman --> <npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31795</npc> <!-- Adventure Guildsman --> <npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31796</npc> <!-- Adventure Guildsman --> <npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="204" /> <!-- Memento Mori --> <ingredient id="9814" count="204" /> <!-- Memento Mori -->

View File

@@ -1,11 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31837</npc> <!-- Adventure Guildsman --> <npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31838</npc> <!-- Adventure Guildsman --> <npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31839</npc> <!-- Adventure Guildsman --> <npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31840</npc> <!-- Adventure Guildsman --> <npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31841</npc> <!-- Adventure Guildsman --> <npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="204" /> <!-- Memento Mori --> <ingredient id="9814" count="204" /> <!-- Memento Mori -->

View File

@@ -1,7 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>34187</npc> <!-- Adventure Guildsman --> <npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="204" /> <!-- Memento Mori --> <ingredient id="9814" count="204" /> <!-- Memento Mori -->

View File

@@ -1,11 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31804</npc> <!-- Adventure Guildsman --> <npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31805</npc> <!-- Adventure Guildsman --> <npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31806</npc> <!-- Adventure Guildsman --> <npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31807</npc> <!-- Adventure Guildsman --> <npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31808</npc> <!-- Adventure Guildsman --> <npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="204" /> <!-- Memento Mori --> <ingredient id="9814" count="204" /> <!-- Memento Mori -->

View File

@@ -1,10 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31823</npc> <!-- Adventure Guildsman --> <npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31824</npc> <!-- Adventure Guildsman --> <npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31825</npc> <!-- Adventure Guildsman --> <npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31826</npc> <!-- Adventure Guildsman --> <npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="204" /> <!-- Memento Mori --> <ingredient id="9814" count="204" /> <!-- Memento Mori -->

View File

@@ -1,11 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31827</npc> <!-- Adventure Guildsman --> <npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31828</npc> <!-- Adventure Guildsman --> <npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31829</npc> <!-- Adventure Guildsman --> <npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31830</npc> <!-- Adventure Guildsman --> <npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31831</npc> <!-- Adventure Guildsman --> <npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="204" /> <!-- Memento Mori --> <ingredient id="9814" count="204" /> <!-- Memento Mori -->

View File

@@ -1,10 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31991</npc> <!-- Adventure Guildsman --> <npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31992</npc> <!-- Adventure Guildsman --> <npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31993</npc> <!-- Adventure Guildsman --> <npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31995</npc> <!-- Adventure Guildsman --> <npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="54" /> <!-- Memento Mori --> <ingredient id="9814" count="54" /> <!-- Memento Mori -->

View File

@@ -1,11 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31832</npc> <!-- Adventure Guildsman --> <npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman --> <npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman --> <npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman --> <npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman --> <npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="40" /> <!-- Memento Mori --> <ingredient id="9814" count="40" /> <!-- Memento Mori -->

View File

@@ -1,11 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31814</npc> <!-- Adventure Guildsman --> <npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31815</npc> <!-- Adventure Guildsman --> <npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31816</npc> <!-- Adventure Guildsman --> <npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31817</npc> <!-- Adventure Guildsman --> <npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31818</npc> <!-- Adventure Guildsman --> <npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="26" /> <!-- Memento Mori --> <ingredient id="9814" count="26" /> <!-- Memento Mori -->

View File

@@ -1,10 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31797</npc> <!-- Adventure Guildsman --> <npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31798</npc> <!-- Adventure Guildsman --> <npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31799</npc> <!-- Adventure Guildsman --> <npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31800</npc> <!-- Adventure Guildsman --> <npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>
<ingredient id="9814" count="20" /> <!-- Memento Mori --> <ingredient id="9814" count="20" /> <!-- Memento Mori -->

View File

@@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="9814" count="3660" /> <!-- Memento Mori -->
<ingredient id="9815" count="920" /> <!-- Dragon Heart -->
<ingredient id="9816" count="2440" /> <!-- Earth Egg -->
<ingredient id="9817" count="1530" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="610" /> <!-- Angelic Essence -->
<ingredient id="8175" count="92" /> <!-- Cradle of Creation -->
<production id="80" count="1" /> <!-- Tallum Blade -->
</item>
<item>
<ingredient id="9814" count="3660" /> <!-- Memento Mori -->
<ingredient id="9815" count="920" /> <!-- Dragon Heart -->
<ingredient id="9816" count="2440" /> <!-- Earth Egg -->
<ingredient id="9817" count="1530" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="610" /> <!-- Angelic Essence -->
<ingredient id="8175" count="92" /> <!-- Cradle of Creation -->
<production id="7884" count="1" /> <!-- Infernal Master -->
</item>
<item>
<ingredient id="9814" count="3660" /> <!-- Memento Mori -->
<ingredient id="9815" count="920" /> <!-- Dragon Heart -->
<ingredient id="9816" count="2440" /> <!-- Earth Egg -->
<ingredient id="9817" count="1530" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="610" /> <!-- Angelic Essence -->
<ingredient id="8175" count="92" /> <!-- Cradle of Creation -->
<production id="7899" count="1" /> <!-- Destroyer Hammer -->
</item>
<item>
<ingredient id="9814" count="3660" /> <!-- Memento Mori -->
<ingredient id="9815" count="920" /> <!-- Dragon Heart -->
<ingredient id="9816" count="2440" /> <!-- Earth Egg -->
<ingredient id="9817" count="1530" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="610" /> <!-- Angelic Essence -->
<ingredient id="8175" count="92" /> <!-- Cradle of Creation -->
<production id="2504" count="1" /> <!-- Meteor Shower -->
</item>
<item>
<ingredient id="9814" count="3660" /> <!-- Memento Mori -->
<ingredient id="9815" count="920" /> <!-- Dragon Heart -->
<ingredient id="9816" count="2440" /> <!-- Earth Egg -->
<ingredient id="9817" count="1530" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="610" /> <!-- Angelic Essence -->
<ingredient id="8175" count="92" /> <!-- Cradle of Creation -->
<production id="288" count="1" /> <!-- Carnage Bow -->
</item>
<item>
<ingredient id="9814" count="3660" /> <!-- Memento Mori -->
<ingredient id="9815" count="920" /> <!-- Dragon Heart -->
<ingredient id="9816" count="2440" /> <!-- Earth Egg -->
<ingredient id="9817" count="1530" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="610" /> <!-- Angelic Essence -->
<ingredient id="8175" count="92" /> <!-- Cradle of Creation -->
<production id="235" count="1" /> <!-- Bloody Orchid -->
</item>
<item>
<ingredient id="9814" count="3660" /> <!-- Memento Mori -->
<ingredient id="9815" count="920" /> <!-- Dragon Heart -->
<ingredient id="9816" count="2440" /> <!-- Earth Egg -->
<ingredient id="9817" count="1530" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="610" /> <!-- Angelic Essence -->
<ingredient id="8175" count="92" /> <!-- Cradle of Creation -->
<production id="98" count="1" /> <!-- Halberd -->
</item>
<item>
<ingredient id="9814" count="3660" /> <!-- Memento Mori -->
<ingredient id="9815" count="920" /> <!-- Dragon Heart -->
<ingredient id="9816" count="2440" /> <!-- Earth Egg -->
<ingredient id="9817" count="1530" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="610" /> <!-- Angelic Essence -->
<ingredient id="8175" count="92" /> <!-- Cradle of Creation -->
<production id="269" count="1" /> <!-- Blood Tornado -->
</item>
<item>
<ingredient id="9814" count="3660" /> <!-- Memento Mori -->
<ingredient id="9815" count="920" /> <!-- Dragon Heart -->
<ingredient id="9816" count="2440" /> <!-- Earth Egg -->
<ingredient id="9817" count="1530" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="610" /> <!-- Angelic Essence -->
<ingredient id="8175" count="92" /> <!-- Cradle of Creation -->
<production id="212" count="1" /> <!-- Dasparion's Staff -->
</item>
<item>
<ingredient id="9814" count="3660" /> <!-- Memento Mori -->
<ingredient id="9815" count="920" /> <!-- Dragon Heart -->
<ingredient id="9816" count="2440" /> <!-- Earth Egg -->
<ingredient id="9817" count="1530" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="610" /> <!-- Angelic Essence -->
<ingredient id="8175" count="92" /> <!-- Cradle of Creation -->
<production id="7894" count="1" /> <!-- Spiritual Eye -->
</item>
</list>

View File

@@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="9814" count="740" /> <!-- Memento Mori -->
<ingredient id="9815" count="190" /> <!-- Dragon Heart -->
<ingredient id="9816" count="490" /> <!-- Earth Egg -->
<ingredient id="9817" count="310" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="120" /> <!-- Angelic Essence -->
<ingredient id="8175" count="19" /> <!-- Cradle of Creation -->
<production id="5287" count="1" /> <!-- Sealed Dark Crystal breastplate -->
</item>
<item>
<ingredient id="9814" count="460" /> <!-- Memento Mori -->
<ingredient id="9815" count="120" /> <!-- Dragon Heart -->
<ingredient id="9816" count="310" /> <!-- Earth Egg -->
<ingredient id="9817" count="190" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="80" /> <!-- Angelic Essence -->
<ingredient id="8175" count="12" /> <!-- Cradle of Creation -->
<production id="5288" count="1" /> <!-- Sealed Dark Crystal Gaiters -->
</item>
<item>
<ingredient id="9814" count="1080" /> <!-- Memento Mori -->
<ingredient id="9815" count="270" /> <!-- Dragon Heart -->
<ingredient id="9816" count="720" /> <!-- Earth Egg -->
<ingredient id="9817" count="450" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="180" /> <!-- Angelic Essence -->
<ingredient id="8175" count="27" /> <!-- Cradle of Creation -->
<production id="5293" count="1" /> <!-- Sealed Tallum Plate Armor -->
</item>
<item>
<ingredient id="9814" count="810" /> <!-- Memento Mori -->
<ingredient id="9815" count="200" /> <!-- Dragon Heart -->
<ingredient id="9816" count="540" /> <!-- Earth Egg -->
<ingredient id="9817" count="340" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="140" /> <!-- Angelic Essence -->
<ingredient id="8175" count="20" /> <!-- Cradle of Creation -->
<production id="5301" count="1" /> <!-- Sealed Tallum Leather Armor -->
</item>
<item>
<ingredient id="9814" count="560" /> <!-- Memento Mori -->
<ingredient id="9815" count="140" /> <!-- Dragon Heart -->
<ingredient id="9816" count="370" /> <!-- Earth Egg -->
<ingredient id="9817" count="230" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="90" /> <!-- Angelic Essence -->
<ingredient id="8175" count="14" /> <!-- Cradle of Creation -->
<production id="5304" count="1" /> <!-- Sealed Tallum Tunic -->
</item>
<item>
<ingredient id="9814" count="350" /> <!-- Memento Mori -->
<ingredient id="9815" count="90" /> <!-- Dragon Heart -->
<ingredient id="9816" count="230" /> <!-- Earth Egg -->
<ingredient id="9817" count="140" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="60" /> <!-- Angelic Essence -->
<ingredient id="8175" count="9" /> <!-- Cradle of Creation -->
<production id="5305" count="1" /> <!-- Sealed Tallum Stockings -->
</item>
<item>
<ingredient id="9814" count="560" /> <!-- Memento Mori -->
<ingredient id="9815" count="140" /> <!-- Dragon Heart -->
<ingredient id="9816" count="370" /> <!-- Earth Egg -->
<ingredient id="9817" count="230" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="90" /> <!-- Angelic Essence -->
<ingredient id="8175" count="14" /> <!-- Cradle of Creation -->
<production id="5297" count="1" /> <!-- Sealed Dark Crystal Leather Armor -->
</item>
<item>
<ingredient id="9814" count="350" /> <!-- Memento Mori -->
<ingredient id="9815" count="90" /> <!-- Dragon Heart -->
<ingredient id="9816" count="230" /> <!-- Earth Egg -->
<ingredient id="9817" count="140" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="60" /> <!-- Angelic Essence -->
<ingredient id="8175" count="9" /> <!-- Cradle of Creation -->
<production id="5298" count="1" /> <!-- Sealed Dark Crystal Leggings -->
</item>
<item>
<ingredient id="9814" count="810" /> <!-- Memento Mori -->
<ingredient id="9815" count="200" /> <!-- Dragon Heart -->
<ingredient id="9816" count="540" /> <!-- Earth Egg -->
<ingredient id="9817" count="340" /> <!-- Nonliving Nucleus -->
<ingredient id="9818" count="140" /> <!-- Angelic Essence -->
<ingredient id="8175" count="20" /> <!-- Cradle of Creation -->
<production id="5308" count="1" /> <!-- Sealed Dark Crystal Robe -->
</item>
</list>

View File

@@ -5,6 +5,58 @@
<npc>31733</npc> <!-- Adventure Guildsman --> <npc>31733</npc> <!-- Adventure Guildsman -->
<npc>31734</npc> <!-- Adventure Guildsman --> <npc>31734</npc> <!-- Adventure Guildsman -->
<npc>31738</npc> <!-- Adventure Guildsman --> <npc>31738</npc> <!-- Adventure Guildsman -->
<npc>31787</npc> <!-- Adventure Guildsman -->
<npc>31788</npc> <!-- Adventure Guildsman -->
<npc>31789</npc> <!-- Adventure Guildsman -->
<npc>31790</npc> <!-- Adventure Guildsman -->
<npc>31791</npc> <!-- Adventure Guildsman -->
<npc>31792</npc> <!-- Adventure Guildsman -->
<npc>31793</npc> <!-- Adventure Guildsman -->
<npc>31794</npc> <!-- Adventure Guildsman -->
<npc>31795</npc> <!-- Adventure Guildsman -->
<npc>31796</npc> <!-- Adventure Guildsman -->
<npc>31797</npc> <!-- Adventure Guildsman -->
<npc>31798</npc> <!-- Adventure Guildsman -->
<npc>31799</npc> <!-- Adventure Guildsman -->
<npc>31800</npc> <!-- Adventure Guildsman -->
<npc>31805</npc> <!-- Adventure Guildsman -->
<npc>31806</npc> <!-- Adventure Guildsman -->
<npc>31807</npc> <!-- Adventure Guildsman -->
<npc>31808</npc> <!-- Adventure Guildsman -->
<npc>31814</npc> <!-- Adventure Guildsman -->
<npc>31815</npc> <!-- Adventure Guildsman -->
<npc>31816</npc> <!-- Adventure Guildsman -->
<npc>31817</npc> <!-- Adventure Guildsman -->
<npc>31819</npc> <!-- Adventure Guildsman -->
<npc>31820</npc> <!-- Adventure Guildsman -->
<npc>31821</npc> <!-- Adventure Guildsman -->
<npc>31822</npc> <!-- Adventure Guildsman -->
<npc>31823</npc> <!-- Adventure Guildsman -->
<npc>31824</npc> <!-- Adventure Guildsman -->
<npc>31825</npc> <!-- Adventure Guildsman -->
<npc>31826</npc> <!-- Adventure Guildsman -->
<npc>31827</npc> <!-- Adventure Guildsman -->
<npc>31828</npc> <!-- Adventure Guildsman -->
<npc>31829</npc> <!-- Adventure Guildsman -->
<npc>31830</npc> <!-- Adventure Guildsman -->
<npc>31831</npc> <!-- Adventure Guildsman -->
<npc>31832</npc> <!-- Adventure Guildsman -->
<npc>31833</npc> <!-- Adventure Guildsman -->
<npc>31834</npc> <!-- Adventure Guildsman -->
<npc>31835</npc> <!-- Adventure Guildsman -->
<npc>31836</npc> <!-- Adventure Guildsman -->
<npc>31837</npc> <!-- Adventure Guildsman -->
<npc>31838</npc> <!-- Adventure Guildsman -->
<npc>31839</npc> <!-- Adventure Guildsman -->
<npc>31840</npc> <!-- Adventure Guildsman -->
<npc>31841</npc> <!-- Adventure Guildsman -->
<npc>31804</npc> <!-- Adventure Guildsman -->
<npc>31818</npc> <!-- Adventure Guildsman -->
<npc>31991</npc> <!-- Adventure Guildsman -->
<npc>31992</npc> <!-- Adventure Guildsman -->
<npc>31993</npc> <!-- Adventure Guildsman -->
<npc>31995</npc> <!-- Adventure Guildsman -->
<npc>33946</npc> <!-- Adventure Guildsman -->
<npc>34187</npc> <!-- Adventure Guildsman --> <npc>34187</npc> <!-- Adventure Guildsman -->
</npcs> </npcs>
<item> <item>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>33493</npc> <!-- Raminya - Mysterious Dye Merchant --> <npc>33493</npc> <!-- Raminya - Mysterious Dye Merchant -->
<npc>33494</npc> <!-- Ephesona - Mysterious Dye Merchant --> <npc>33494</npc> <!-- Ephesona - Mysterious Dye Merchant -->

View File

@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="12" /> <!-- Seal of Loyalty -->
<production id="32292" count="1" /> <!-- Recipe: Immortal Belt (60%) -->
<production id="32292" count="1" /> <!-- Recipe: Immortal Belt (60%) -->
</item>
<item>
<ingredient id="17743" count="12" /> <!-- Seal of Loyalty -->
<production id="32293" count="1" /> <!-- Recipe: Immortal Bracelet (60%) -->
<production id="32293" count="1" /> <!-- Recipe: Immortal Bracelet (60%) -->
</item>
<item>
<ingredient id="17743" count="12" /> <!-- Seal of Loyalty -->
<production id="32294" count="1" /> <!-- Recipe: Immortal Shirt (60%) -->
<production id="32294" count="1" /> <!-- Recipe: Immortal Shirt (60%) -->
</item>
<item>
<ingredient id="17743" count="28" /> <!-- Seal of Loyalty -->
<production id="32304" count="1" /> <!-- Immortal Belt Fragment -->
<production id="32304" count="1" /> <!-- Immortal Belt Fragment -->
</item>
<item>
<ingredient id="17743" count="28" /> <!-- Seal of Loyalty -->
<production id="32305" count="1" /> <!-- Immortal Bracelet Fragment -->
<production id="32305" count="1" /> <!-- Immortal Bracelet Fragment -->
</item>
<item>
<ingredient id="17743" count="28" /> <!-- Seal of Loyalty -->
<production id="32306" count="1" /> <!-- Immortal Shirt Lining -->
<production id="32306" count="1" /> <!-- Immortal Shirt Lining -->
</item>
<item>
<ingredient id="17743" count="8" /> <!-- Seal of Loyalty -->
<production id="30423" count="1" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="30423" count="1" chance="3" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="30424" count="1" chance="3" /> <!-- Recipe: Spiritshot (R-grade) -->
<production id="30425" count="1" chance="3" /> <!-- Recipe: Blessed Spiritshot (R-grade) -->
<production id="30426" count="1" chance="27" /> <!-- Recipe: Elixir of Life (R-grade) -->
<production id="30427" count="1" chance="27" /> <!-- Recipe: Elixir of Mind (R-grade) -->
<production id="30428" count="1" chance="27" /> <!-- Recipe: Elixir of CP (R-grade) -->
<production id="32317" count="1" chance="10" /> <!-- Recipe: Elixir of Blessing -->
</item>
<item>
<ingredient id="17743" count="8" /> <!-- Seal of Loyalty -->
<production id="32814" count="1" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="32814" count="1" chance="1" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="32815" count="1" chance="1" /> <!-- Recipe: Spiritshot (R-grade) -->
<production id="32816" count="1" chance="1" /> <!-- Recipe: Blessed Spiritshot R -->
<production id="30426" count="1" chance="29" /> <!-- Recipe: Elixir of Life (R-grade) -->
<production id="30427" count="1" chance="29" /> <!-- Recipe: Elixir of Mind (R-grade) -->
<production id="30428" count="1" chance="29" /> <!-- Recipe: Elixir of CP (R-grade) -->
<production id="32317" count="1" chance="10" /> <!-- Recipe: Elixir of Blessing -->
</item>
</list>

View File

@@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8"?>
<list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="30" /> <!-- Seal of Pledge -->
<production id="32295" count="1" /> <!-- Recipe: Twilight Belt (60%) -->
<production id="32295" count="1" /> <!-- Recipe: Twilight Belt (60%) -->
</item>
<item>
<ingredient id="17744" count="30" /> <!-- Seal of Pledge -->
<production id="32296" count="1" /> <!-- Recipe: Twilight Bracelet (60%) -->
<production id="32296" count="1" /> <!-- Recipe: Twilight Bracelet (60%) -->
</item>
<item>
<ingredient id="17744" count="30" /> <!-- Seal of Pledge -->
<production id="32297" count="1" /> <!-- Recipe: Twilight Shirt (60%) -->
<production id="32297" count="1" /> <!-- Recipe: Twilight Shirt (60%) -->
</item>
<item>
<ingredient id="17744" count="70" /> <!-- Seal of Pledge -->
<production id="32307" count="1" /> <!-- Twilight Belt Fragment -->
<production id="32307" count="1" /> <!-- Twilight Belt Fragment -->
</item>
<item>
<ingredient id="17744" count="70" /> <!-- Seal of Pledge -->
<production id="32308" count="1" /> <!-- Twilight Bracelet Fragment -->
<production id="32308" count="1" /> <!-- Twilight Bracelet Fragment -->
</item>
<item>
<ingredient id="17744" count="70" /> <!-- Seal of Pledge -->
<production id="32309" count="1" /> <!-- Twilight Shirt Lining -->
<production id="32309" count="1" /> <!-- Twilight Shirt Lining -->
</item>
<item>
<ingredient id="17744" count="8" /> <!-- Seal of Pledge -->
<production id="30423" count="1" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="30423" count="1" chance="3" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="30424" count="1" chance="3" /> <!-- Recipe: Spiritshot (R-grade) -->
<production id="30425" count="1" chance="3" /> <!-- Recipe: Blessed Spiritshot (R-grade) -->
<production id="30426" count="1" chance="27" /> <!-- Recipe: Elixir of Life (R-grade) -->
<production id="30427" count="1" chance="27" /> <!-- Recipe: Elixir of Mind (R-grade) -->
<production id="30428" count="1" chance="27" /> <!-- Recipe: Elixir of CP (R-grade) -->
<production id="32317" count="1" chance="10" /> <!-- Recipe: Elixir of Blessing -->
</item>
<item>
<ingredient id="17744" count="8" /> <!-- Seal of Pledge -->
<production id="32814" count="1" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="32814" count="1" chance="1" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="32815" count="1" chance="1" /> <!-- Recipe: Spiritshot (R-grade) -->
<production id="32816" count="1" chance="1" /> <!-- Recipe: Blessed Spiritshot R -->
<production id="30426" count="1" chance="29" /> <!-- Recipe: Elixir of Life (R-grade) -->
<production id="30427" count="1" chance="29" /> <!-- Recipe: Elixir of Mind (R-grade) -->
<production id="30428" count="1" chance="29" /> <!-- Recipe: Elixir of CP (R-grade) -->
<production id="32317" count="1" chance="10" /> <!-- Recipe: Elixir of Blessing -->
</item>
<item>
<ingredient id="17744" count="130" /> <!-- Seal of Pledge -->
<production id="37042" count="1" /> <!-- Recipe: Divine Protection Elixir -->
<production id="37042" count="1" chance="99" /> <!-- Recipe: Divine Protection Elixir -->
<production id="37043" count="1" chance="1" /> <!-- Recipe: Divine Protection Elixir -->
</item>
</list>

View File

@@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8"?>
<list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="44" /> <!-- Seal of Sincerity -->
<production id="32298" count="1" /> <!-- Recipe: Seraph Belt (60%) -->
<production id="32298" count="1" /> <!-- Recipe: Seraph Belt (60%) -->
</item>
<item>
<ingredient id="17745" count="44" /> <!-- Seal of Sincerity -->
<production id="32299" count="1" /> <!-- Recipe: Seraph Bracelet (60%) -->
<production id="32299" count="1" /> <!-- Recipe: Seraph Bracelet (60%) -->
</item>
<item>
<ingredient id="17745" count="44" /> <!-- Seal of Sincerity -->
<production id="32300" count="1" /> <!-- Recipe: Seraph Shirt (60%) -->
<production id="32300" count="1" /> <!-- Recipe: Seraph Shirt (60%) -->
</item>
<item>
<ingredient id="17745" count="116" /> <!-- Seal of Sincerity -->
<production id="32310" count="1" /> <!-- Seraph Belt Fragment -->
<production id="32310" count="1" /> <!-- Seraph Belt Fragment -->
</item>
<item>
<ingredient id="17745" count="116" /> <!-- Seal of Sincerity -->
<production id="32311" count="1" /> <!-- Seraph Bracelet Fragment -->
<production id="32311" count="1" /> <!-- Seraph Bracelet Fragment -->
</item>
<item>
<ingredient id="17745" count="116" /> <!-- Seal of Sincerity -->
<production id="32312" count="1" /> <!-- Seraph Shirt Lining -->
<production id="32312" count="1" /> <!-- Seraph Shirt Lining -->
</item>
<item>
<ingredient id="17745" count="8" /> <!-- Seal of Sincerity -->
<production id="30423" count="1" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="30423" count="1" chance="3" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="30424" count="1" chance="3" /> <!-- Recipe: Spiritshot (R-grade) -->
<production id="30425" count="1" chance="3" /> <!-- Recipe: Blessed Spiritshot (R-grade) -->
<production id="30426" count="1" chance="27" /> <!-- Recipe: Elixir of Life (R-grade) -->
<production id="30427" count="1" chance="27" /> <!-- Recipe: Elixir of Mind (R-grade) -->
<production id="30428" count="1" chance="27" /> <!-- Recipe: Elixir of CP (R-grade) -->
<production id="32317" count="1" chance="10" /> <!-- Recipe: Elixir of Blessing -->
</item>
<item>
<ingredient id="17745" count="8" /> <!-- Seal of Sincerity -->
<production id="32814" count="1" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="32814" count="1" chance="1" /> <!-- Recipe: Soulshot (R-grade) -->
<production id="32815" count="1" chance="1" /> <!-- Recipe: Spiritshot (R-grade) -->
<production id="32816" count="1" chance="1" /> <!-- Recipe: Blessed Spiritshot R -->
<production id="30426" count="1" chance="29" /> <!-- Recipe: Elixir of Life (R-grade) -->
<production id="30427" count="1" chance="29" /> <!-- Recipe: Elixir of Mind (R-grade) -->
<production id="30428" count="1" chance="29" /> <!-- Recipe: Elixir of CP (R-grade) -->
<production id="32317" count="1" chance="10" /> <!-- Recipe: Elixir of Blessing -->
</item>
<item>
<ingredient id="17745" count="130" /> <!-- Seal of Sincerity -->
<production id="37042" count="1" /> <!-- Recipe: Divine Protection Elixir -->
<production id="37042" count="1" chance="99" /> <!-- Recipe: Divine Protection Elixir -->
<production id="37043" count="1" chance="1" /> <!-- Recipe: Divine Protection Elixir -->
</item>
</list>

View File

@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="70"/> <!-- Seal of Spirit -->
<production id="32301" count="1"/> <!-- Recipe: Eternal Belt (60%) -->
<production id="32301" count="1"/> <!-- Recipe: Eternal Belt (60%) -->
</item>
<item>
<ingredient id="17746" count="70"/> <!-- Seal of Spirit -->
<production id="32302" count="1"/> <!-- Recipe: Eternal Bracelet (60%) -->
<production id="32302" count="1"/> <!-- Recipe: Eternal Bracelet (60%) -->
</item>
<item>
<ingredient id="17746" count="70"/> <!-- Seal of Spirit -->
<production id="32303" count="1"/> <!-- Recipe: Eternal Shirt (60%) -->
<production id="32303" count="1"/> <!-- Recipe: Eternal Shirt (60%) -->
</item>
<item>
<ingredient id="17746" count="170"/> <!-- Seal of Spirit -->
<production id="32313" count="1"/> <!-- Eternal Belt Fragment -->
<production id="32313" count="1"/> <!-- Eternal Belt Fragment -->
</item>
<item>
<ingredient id="17746" count="170"/> <!-- Seal of Spirit -->
<production id="32314" count="1"/> <!-- Eternal Bracelet Fragment -->
<production id="32314" count="1"/> <!-- Eternal Bracelet Fragment -->
</item>
<item>
<ingredient id="17746" count="170"/> <!-- Seal of Spirit -->
<production id="32315" count="1"/> <!-- Eternal Shirt Lining -->
<production id="32315" count="1"/> <!-- Eternal Shirt Lining -->
</item>
<item>
<ingredient id="17746" count="4"/> <!-- Seal of Spirit -->
<production id="30423" count="1"/> <!-- Recipe: Soulshot (R-grade) -->
<production id="30423" count="1" chance="3"/> <!-- Recipe: Soulshot (R-grade) -->
<production id="30424" count="1" chance="3"/> <!-- Recipe: Spiritshot (R-grade) -->
<production id="30425" count="1" chance="3"/> <!-- Recipe: Blessed Spiritshot (R-grade) -->
<production id="30426" count="1" chance="27"/> <!-- Recipe: Elixir of Life (R-grade) -->
<production id="30427" count="1" chance="27"/> <!-- Recipe: Elixir of Mind (R-grade) -->
<production id="30428" count="1" chance="27"/> <!-- Recipe: Elixir of CP (R-grade) -->
<production id="32317" count="1" chance="10"/> <!-- Recipe: Elixir of Blessing -->
</item>
<item>
<ingredient id="17746" count="5"/> <!-- Seal of Spirit -->
<production id="32814" count="1"/> <!-- Recipe: Soulshot (R-grade) -->
<production id="37103" count="1" chance="0.3"/> <!-- Recipe: High-grade Elixir of Life (R-grade) -->
<production id="37104" count="1" chance="0.3"/> <!-- Recipe: High-grade Elixir of Mind (R-grade) -->
<production id="37105" count="1" chance="0.3"/> <!-- Recipe: High-grade Elixir of CP (R-grade) -->
<production id="37106" count="1" chance="0.3"/> <!-- Recipe: High-grade Elixir of Life (R-grade) -->
<production id="37107" count="1" chance="0.3"/> <!-- Recipe: High-grade Elixir of Mind (R-grade) -->
<production id="37108" count="1" chance="0.3"/> <!-- Recipe: High-grade Elixir of CP (R-grade) -->
<production id="37109" count="1" chance="0.3"/> <!-- Recipe: Elixir of Protection -->
<production id="37110" count="1" chance="0.3"/> <!-- Recipe: Elixir of Magic -->
<production id="37111" count="1" chance="0.3"/> <!-- Recipe: Elixir of Aggression -->
<production id="32814" count="1" chance="0.3"/> <!-- Recipe: Soulshot (R-grade) -->
<production id="32815" count="1" chance="0.3"/> <!-- Recipe: Spiritshot (R-grade) -->
<production id="32816" count="1" chance="0.3"/> <!-- Recipe: Blessed Spiritshot R -->
<production id="30426" count="1" chance="28.8"/> <!-- Recipe: Elixir of Life (R-grade) -->
<production id="30427" count="1" chance="28.8"/> <!-- Recipe: Elixir of Mind (R-grade) -->
<production id="30428" count="1" chance="28.8"/> <!-- Recipe: Elixir of CP (R-grade) -->
<production id="32317" count="1" chance="10"/> <!-- Recipe: Elixir of Blessing -->
</item>
<item>
<ingredient id="17746" count="64"/> <!-- Seal of Spirit -->
<production id="37042" count="1"/> <!-- Recipe: Divine Protection Elixir -->
<production id="37042" count="1" chance="99"/> <!-- Recipe: Divine Protection Elixir -->
<production id="37043" count="1" chance="1"/> <!-- Recipe: Divine Protection Elixir -->
</item>
<item>
<ingredient id="17746" count="200"/> <!-- Seal of Spirit -->
<production id="40062" count="1"/> <!-- Recipe: Pendant (100%) -->
<production id="40062" count="1" chance="1"/> <!-- Recipe: Pendant (100%) -->
<production id="36559" count="1" chance="99"/> <!-- Accessory Gem (High-grade) -->
</item>
</list>

View File

@@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18273" count="1" /> <!-- Talisman (R85-grade) - P. Atk. (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18277" count="1" /> <!-- Talisman (R85-grade) - P. Def. (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18281" count="1" /> <!-- Talisman (R85-grade) - M. Atk. (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18285" count="1" /> <!-- Talisman (R85-grade) - M. Def. (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18289" count="1" /> <!-- Talisman (R85-grade) - HP (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18293" count="1" /> <!-- Talisman (R85-grade) - MP (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18297" count="1" /> <!-- Talisman (R85-grade) - CP (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18301" count="1" /> <!-- Talisman (R85-grade) - Critical Damage (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18305" count="1" /> <!-- Talisman (R85-grade) - Decrease Critical (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18309" count="1" /> <!-- Talisman (R-grade) - M. Critical (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18310" count="1" /> <!-- Talisman (R-grade) - P. Accuracy (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18311" count="1" /> <!-- Talisman (R-grade) - M. Accuracy (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18312" count="1" /> <!-- Talisman (R-grade) - Evasion (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18313" count="1" /> <!-- Talisman (R-grade) - M. Evasion (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18314" count="1" /> <!-- Talisman (R-grade) - P. Critical Rate (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18315" count="1" /> <!-- Talisman (R-grade) - Critical Evasion (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="30411" count="1" /> <!-- Talisman (R-grade) - Knock Back Resistance (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="30412" count="1" /> <!-- Talisman (R-grade) - Knock Down Resistance (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="30413" count="1" /> <!-- Talisman (R-grade) - Binding Resistance (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="30414" count="1" /> <!-- Talisman (R-grade) - Pulling Resistance (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="30415" count="1" /> <!-- Talisman (R-grade) - Banishment Resistance (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="30416" count="1" /> <!-- Talisman (R-grade) - Mutation Resistance (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="34621" count="1" /> <!-- Talisman (R-grade) - Half-kill/Lethal Strike Resistance (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18302" count="1" /> <!-- Talisman (R90-grade) - Critical Damage (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18306" count="1" /> <!-- Talisman (R90-grade) - Decrease Critical (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18274" count="1" /> <!-- Talisman (R90-grade) - P. Atk. (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18278" count="1" /> <!-- Talisman (R90-grade) - P. Def. (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18282" count="1" /> <!-- Talisman (R90-grade) - M. Atk. (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18286" count="1" /> <!-- Talisman (R90-grade) - M. Def. (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18290" count="1" /> <!-- Talisman (R90-grade) - HP (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18294" count="1" /> <!-- Talisman (R90-grade) - MP (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18298" count="1" /> <!-- Talisman (R90-grade) - CP (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18309" count="1" /> <!-- Talisman (R-grade) - M. Critical (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18310" count="1" /> <!-- Talisman (R-grade) - P. Accuracy (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18311" count="1" /> <!-- Talisman (R-grade) - M. Accuracy (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18312" count="1" /> <!-- Talisman (R-grade) - Evasion (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18313" count="1" /> <!-- Talisman (R-grade) - M. Evasion (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18314" count="1" /> <!-- Talisman (R-grade) - P. Critical Rate (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18315" count="1" /> <!-- Talisman (R-grade) - Critical Evasion (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="30411" count="1" /> <!-- Talisman (R-grade) - Knock Back Resistance (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="30412" count="1" /> <!-- Talisman (R-grade) - Knock Down Resistance (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="30413" count="1" /> <!-- Talisman (R-grade) - Binding Resistance (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="30414" count="1" /> <!-- Talisman (R-grade) - Pulling Resistance (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="30415" count="1" /> <!-- Talisman (R-grade) - Banishment Resistance (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="30416" count="1" /> <!-- Talisman (R-grade) - Mutation Resistance (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="34621" count="1" /> <!-- Talisman (R-grade) - Half-kill/Lethal Strike Resistance (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18303" count="1" /> <!-- Talisman (R95-grade) - Critical Damage (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18307" count="1" /> <!-- Talisman (R95-grade) - Decrease Critical (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18275" count="1" /> <!-- Talisman (R95-grade) - P. Atk. (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18279" count="1" /> <!-- Talisman (R95-grade) - P. Def. (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18283" count="1" /> <!-- Talisman (R95-grade) - M. Atk. (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18287" count="1" /> <!-- Talisman (R95-grade) - M. Def. (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18291" count="1" /> <!-- Talisman (R95-grade) - HP (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18295" count="1" /> <!-- Talisman (R95-grade) - MP (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18299" count="1" /> <!-- Talisman (R95-grade) - CP (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18309" count="1" /> <!-- Talisman (R-grade) - M. Critical (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18310" count="1" /> <!-- Talisman (R-grade) - P. Accuracy (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18311" count="1" /> <!-- Talisman (R-grade) - M. Accuracy (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18312" count="1" /> <!-- Talisman (R-grade) - Evasion (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18313" count="1" /> <!-- Talisman (R-grade) - M. Evasion (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18314" count="1" /> <!-- Talisman (R-grade) - P. Critical Rate (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18315" count="1" /> <!-- Talisman (R-grade) - Critical Evasion (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="30411" count="1" /> <!-- Talisman (R-grade) - Knock Back Resistance (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="30412" count="1" /> <!-- Talisman (R-grade) - Knock Down Resistance (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="30413" count="1" /> <!-- Talisman (R-grade) - Binding Resistance (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="30414" count="1" /> <!-- Talisman (R-grade) - Pulling Resistance (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="30415" count="1" /> <!-- Talisman (R-grade) - Banishment Resistance (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="30416" count="1" /> <!-- Talisman (R-grade) - Mutation Resistance (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="34621" count="1" /> <!-- Talisman (R-grade) - Half-kill/Lethal Strike Resistance (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18304" count="1" /> <!-- Talisman (R99-grade) - Critical Damage (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18308" count="1" /> <!-- Talisman (R99-grade) - Decrease Critical (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18276" count="1" /> <!-- Talisman (R99-grade) - P. Atk. (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18280" count="1" /> <!-- Talisman (R99-grade) - P. Def. (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18284" count="1" /> <!-- Talisman (R99-grade) - M. Atk. (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18288" count="1" /> <!-- Talisman (R99-grade) - M. Def. (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18292" count="1" /> <!-- Talisman (R99-grade) - HP (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18296" count="1" /> <!-- Talisman (R99-grade) - MP (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18300" count="1" /> <!-- Talisman (R99-grade) - CP (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18309" count="1" /> <!-- Talisman (R-grade) - M. Critical (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18310" count="1" /> <!-- Talisman (R-grade) - P. Accuracy (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18311" count="1" /> <!-- Talisman (R-grade) - M. Accuracy (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18312" count="1" /> <!-- Talisman (R-grade) - Evasion (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18313" count="1" /> <!-- Talisman (R-grade) - M. Evasion (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18314" count="1" /> <!-- Talisman (R-grade) - P. Critical Rate (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18315" count="1" /> <!-- Talisman (R-grade) - Critical Evasion (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="30411" count="1" /> <!-- Talisman (R-grade) - Knock Back Resistance (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="30412" count="1" /> <!-- Talisman (R-grade) - Knock Down Resistance (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="30413" count="1" /> <!-- Talisman (R-grade) - Binding Resistance (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="30414" count="1" /> <!-- Talisman (R-grade) - Pulling Resistance (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="30415" count="1" /> <!-- Talisman (R-grade) - Banishment Resistance (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="30416" count="1" /> <!-- Talisman (R-grade) - Mutation Resistance (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="34621" count="1" /> <!-- Talisman (R-grade) - Half-kill/Lethal Strike Resistance (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18316" count="1" /> <!-- Talisman (R85-grade) - P. Atk. (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18320" count="1" /> <!-- Talisman (R85-grade) - P. Def. (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18324" count="1" /> <!-- Talisman (R85-grade) - M. Atk. (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18328" count="1" /> <!-- Talisman (R85-grade) - M. Def. (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18332" count="1" /> <!-- Talisman (R85-grade) - HP (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18336" count="1" /> <!-- Talisman (R85-grade) - MP (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18340" count="1" /> <!-- Talisman (R85-grade) - CP (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18344" count="1" /> <!-- Talisman (R85-grade) - Critical Damage (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18348" count="1" /> <!-- Talisman (R85-grade) - Critical P. Def. (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18352" count="1" /> <!-- Talisman (R-grade) - M. Critical (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18353" count="1" /> <!-- Talisman (R-grade) - P. Accuracy (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18354" count="1" /> <!-- Talisman (R-grade) - M. Accuracy (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18355" count="1" /> <!-- Talisman (R-grade) - Evasion (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18356" count="1" /> <!-- Talisman (R-grade) - M. Evasion (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18357" count="1" /> <!-- Talisman (R-grade) - P. Critical Rate (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18358" count="1" /> <!-- Talisman (R-grade) - Critical Evasion (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="33768" count="1" /> <!-- Talisman (R-grade) - Damage Reflect Resistance (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="33470" count="1" /> <!-- Special Talisman - M. Def. (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="33471" count="1" /> <!-- Special Talisman - Ranged Attack Resistance (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="32247" count="1" /> <!-- Talisman (R-grade) - Remove Debuff (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="34622" count="1" /> <!-- Talisman (R-grade) - Half-kill/Lethal Strike Resistance (Active) -->
</item>
</list>

View File

@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18345" count="1" /> <!-- Talisman (R90-grade) - Critical Damage (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18349" count="1" /> <!-- Talisman (R90-grade) - Critical P. Def. (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18317" count="1" /> <!-- Talisman (R90-grade) - P. Atk. (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18321" count="1" /> <!-- Talisman (R90-grade) - P. Def. (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18325" count="1" /> <!-- Talisman (R90-grade) - M. Atk. (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18329" count="1" /> <!-- Talisman (R90-grade) - M. Def. (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18333" count="1" /> <!-- Talisman (R90-grade) - HP (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18337" count="1" /> <!-- Talisman (R90-grade) - MP (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18341" count="1" /> <!-- Talisman (R90-grade) - CP (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18352" count="1" /> <!-- Talisman (R-grade) - M. Critical (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18353" count="1" /> <!-- Talisman (R-grade) - P. Accuracy (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18354" count="1" /> <!-- Talisman (R-grade) - M. Accuracy (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18355" count="1" /> <!-- Talisman (R-grade) - Evasion (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18356" count="1" /> <!-- Talisman (R-grade) - M. Evasion (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18357" count="1" /> <!-- Talisman (R-grade) - P. Critical Rate (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18358" count="1" /> <!-- Talisman (R-grade) - Critical Evasion (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="33768" count="1" /> <!-- Talisman (R-grade) - Damage Reflect Resistance (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="33470" count="1" /> <!-- Special Talisman - M. Def. (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="33471" count="1" /> <!-- Special Talisman - Ranged Attack Resistance (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="32247" count="1" /> <!-- Talisman (R-grade) - Remove Debuff (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="34622" count="1" /> <!-- Talisman (R-grade) - Half-kill/Lethal Strike Resistance (Active) -->
</item>
</list>

View File

@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18346" count="1" /> <!-- Talisman (R95-grade) - Critical Damage (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18350" count="1" /> <!-- Talisman (R95-grade) - Critical P. Def. (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18318" count="1" /> <!-- Talisman (R95-grade) - P. Atk. (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18322" count="1" /> <!-- Talisman (R95-grade) - P. Def. (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18326" count="1" /> <!-- Talisman (R95-grade) - M. Atk. (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18330" count="1" /> <!-- Talisman (R95-grade) - M. Def. (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18334" count="1" /> <!-- Talisman (R95-grade) - HP (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18338" count="1" /> <!-- Talisman (R95-grade) - MP (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18342" count="1" /> <!-- Talisman (R95-grade) - CP (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18352" count="1" /> <!-- Talisman (R-grade) - M. Critical (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18353" count="1" /> <!-- Talisman (R-grade) - P. Accuracy (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18354" count="1" /> <!-- Talisman (R-grade) - M. Accuracy (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18355" count="1" /> <!-- Talisman (R-grade) - Evasion (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18356" count="1" /> <!-- Talisman (R-grade) - M. Evasion (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18357" count="1" /> <!-- Talisman (R-grade) - P. Critical Rate (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18358" count="1" /> <!-- Talisman (R-grade) - Critical Evasion (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="33768" count="1" /> <!-- Talisman (R-grade) - Damage Reflect Resistance (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="33470" count="1" /> <!-- Special Talisman - M. Def. (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="33471" count="1" /> <!-- Special Talisman - Ranged Attack Resistance (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="32247" count="1" /> <!-- Talisman (R-grade) - Remove Debuff (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="34622" count="1" /> <!-- Talisman (R-grade) - Half-kill/Lethal Strike Resistance (Active) -->
</item>
</list>

View File

@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18347" count="1" /> <!-- Talisman (R99-grade) - Critical Damage (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18351" count="1" /> <!-- Talisman (R99-grade) - Critical P. Def. (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18319" count="1" /> <!-- Talisman (R99-grade) - P. Atk. (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18323" count="1" /> <!-- Talisman (R99-grade) - P. Def. (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18327" count="1" /> <!-- Talisman (R99-grade) - M. Atk. (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18331" count="1" /> <!-- Talisman (R99-grade) - M. Def. (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18335" count="1" /> <!-- Talisman (R99-grade) - HP (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18339" count="1" /> <!-- Talisman (R99-grade) - MP (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18343" count="1" /> <!-- Talisman (R99-grade) - CP (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18352" count="1" /> <!-- Talisman (R-grade) - M. Critical (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18353" count="1" /> <!-- Talisman (R-grade) - P. Accuracy (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18354" count="1" /> <!-- Talisman (R-grade) - M. Accuracy (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18355" count="1" /> <!-- Talisman (R-grade) - Evasion (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18356" count="1" /> <!-- Talisman (R-grade) - M. Evasion (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18357" count="1" /> <!-- Talisman (R-grade) - P. Critical Rate (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18358" count="1" /> <!-- Talisman (R-grade) - Critical Evasion (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="33768" count="1" /> <!-- Talisman (R-grade) - Damage Reflect Resistance (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="33470" count="1" /> <!-- Special Talisman - M. Def. (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="33471" count="1" /> <!-- Special Talisman - Ranged Attack Resistance (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="32247" count="1" /> <!-- Talisman (R-grade) - Remove Debuff (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="34622" count="1" /> <!-- Talisman (R-grade) - Half-kill/Lethal Strike Resistance (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18359" count="1" /> <!-- Special Talisman (R85-grade) - Shield Defense (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18363" count="1" /> <!-- Special Talisman (R85-grade) - Shield Defense (Active) -->
</item>
</list>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18371" count="1" /> <!-- Special Talisman (R85-grade) - Momentum (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18375" count="1" /> <!-- Special Talisman (R85-grade) - Mana Drain (Active) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18379" count="1" /> <!-- Special Talisman (R85-grade) - Blood Siphon (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18383" count="1" /> <!-- Special Talisman (R85-grade) - Increase Range(Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18387" count="1" /> <!-- Special Talisman (R85-grade) - Increase Range (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18396" count="1" /> <!-- Special Talisman (R-grade) - Magic Cancel (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18397" count="1" /> <!-- Special Talisman (R-grade) - Magic Cancel (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18398" count="1" /> <!-- Special Talisman (R85-grade) - MP Recovery (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18402" count="1" /> <!-- Special Talisman (R-grade) - Decrease MP Consumption (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18398" count="1" /> <!-- Special Talisman (R85-grade) - MP Recovery (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18402" count="1" /> <!-- Special Talisman (R-grade) - Decrease MP Consumption (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18403" count="1" /> <!-- Special Talisman (R85-grade) - Enhance Heal (Passive) -->
</item>
<item>
<ingredient id="17743" count="20" /> <!-- Seal of Loyalty -->
<production id="18407" count="1" /> <!-- Special Talisman (R85-grade) - Enhance Heal (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18360" count="1" /> <!-- Special Talisman (R90-grade) - Shield Defense (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18364" count="1" /> <!-- Special Talisman (R90-grade) - Shield Defense (Active) -->
</item>
</list>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18372" count="1" /> <!-- Special Talisman (R90-grade) - Momentum (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18376" count="1" /> <!-- Special Talisman (R90-grade) - Mana Drain (Active) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18380" count="1" /> <!-- Special Talisman (R90-grade) - Blood Siphon (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18384" count="1" /> <!-- Special Talisman (R90-grade) - Increase Range(Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18388" count="1" /> <!-- Special Talisman (R90-grade) - Increase Range (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18396" count="1" /> <!-- Special Talisman (R-grade) - Magic Cancel (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18397" count="1" /> <!-- Special Talisman (R-grade) - Magic Cancel (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18399" count="1" /> <!-- Special Talisman (R90-grade) - MP Recovery (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18402" count="1" /> <!-- Special Talisman (R-grade) - Decrease MP Consumption (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18399" count="1" /> <!-- Special Talisman (R90-grade) - MP Recovery (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18402" count="1" /> <!-- Special Talisman (R-grade) - Decrease MP Consumption (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18404" count="1" /> <!-- Special Talisman (R90-grade) - Enhance Heal (Passive) -->
</item>
<item>
<ingredient id="17744" count="20" /> <!-- Seal of Pledge -->
<production id="18408" count="1" /> <!-- Special Talisman (R90-grade) - Enhance Heal (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18361" count="1" /> <!-- Special Talisman (R95-grade) - Shield Defense (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18365" count="1" /> <!-- Special Talisman (R95-grade) - Shield Defense (Active) -->
</item>
</list>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18373" count="1" /> <!-- Special Talisman (R95-grade) - Momentum (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18377" count="1" /> <!-- Special Talisman (R95-grade) - Mana Drain (Active) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18381" count="1" /> <!-- Special Talisman (R95-grade) - Blood Siphon (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18385" count="1" /> <!-- Special Talisman (R95-grade) - Increase Range(Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18389" count="1" /> <!-- Special Talisman (R95-grade) - Increase Range (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18396" count="1" /> <!-- Special Talisman (R-grade) - Magic Cancel (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18397" count="1" /> <!-- Special Talisman (R-grade) - Magic Cancel (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18400" count="1" /> <!-- Special Talisman (R95-grade) - MP Recovery (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18402" count="1" /> <!-- Special Talisman (R-grade) - Decrease MP Consumption (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18400" count="1" /> <!-- Special Talisman (R95-grade) - MP Recovery (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18402" count="1" /> <!-- Special Talisman (R-grade) - Decrease MP Consumption (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18405" count="1" /> <!-- Special Talisman (R95-grade) - Enhance Heal (Passive) -->
</item>
<item>
<ingredient id="17745" count="20" /> <!-- Seal of Sincerity -->
<production id="18409" count="1" /> <!-- Special Talisman (R95-grade) - Enhance Heal (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18362" count="1" /> <!-- Special Talisman (R99-grade) - Shield Defense (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18366" count="1" /> <!-- Special Talisman (R99-grade) - Shield Defense (Active) -->
</item>
</list>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18374" count="1" /> <!-- Special Talisman (R99-grade) - Momentum (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18378" count="1" /> <!-- Special Talisman (R99-grade) - Mana Drain (Active) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18382" count="1" /> <!-- Special Talisman (R99-grade) - Blood Siphon (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18386" count="1" /> <!-- Special Talisman (R99-grade) - Increase Range(Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18390" count="1" /> <!-- Special Talisman (R99-grade) - Increase Range (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18396" count="1" /> <!-- Special Talisman (R-grade) - Magic Cancel (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18397" count="1" /> <!-- Special Talisman (R-grade) - Magic Cancel (Active) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18401" count="1" /> <!-- Special Talisman (R99-grade) - MP Recovery (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18402" count="1" /> <!-- Special Talisman (R-grade) - Decrease MP Consumption (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18401" count="1" /> <!-- Special Talisman (R99-grade) - MP Recovery (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18402" count="1" /> <!-- Special Talisman (R-grade) - Decrease MP Consumption (Passive) -->
</item>
</list>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18406" count="1" /> <!-- Special Talisman (R99-grade) - Enhance Heal (Passive) -->
</item>
<item>
<ingredient id="17746" count="20" /> <!-- Seal of Spirit -->
<production id="18410" count="1" /> <!-- Special Talisman (R99-grade) - Enhance Heal (Active) -->
</item>
</list>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31126</npc> <!-- Blacksmith of Mammon --> <npc>31126</npc> <!-- Blacksmith of Mammon -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>33715</npc> <!-- Seed Talisman Manager --> <npc>33715</npc> <!-- Seed Talisman Manager -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" maintainEnchantment="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>31126</npc> <!-- Blacksmith of Mammon --> <npc>31126</npc> <!-- Blacksmith of Mammon -->
</npcs> </npcs>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<list isNewMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd"> <list isChanceMultisell="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs> <npcs>
<npc>33936</npc> <!-- Pelu --> <npc>33936</npc> <!-- Pelu -->
</npcs> </npcs>

View File

@@ -30,14 +30,14 @@
<xs:attribute name="id" type="xs:integer" use="required" /> <xs:attribute name="id" type="xs:integer" use="required" />
<xs:attribute name="enchantmentLevel" type="xs:integer" /> <xs:attribute name="enchantmentLevel" type="xs:integer" />
<xs:attribute name="count" type="xs:positiveInteger" use="required" /> <xs:attribute name="count" type="xs:positiveInteger" use="required" />
<xs:attribute name="chance" type="xs:integer" use="optional" /> <xs:attribute name="chance" type="xs:double" use="optional" />
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
</xs:sequence> </xs:sequence>
<xs:attribute name="isNewMultisell" type="xs:boolean" use="optional" /> <xs:attribute name="isChanceMultisell" type="xs:boolean" use="optional" />
<xs:attribute name="applyTaxes" type="xs:boolean" /> <xs:attribute name="applyTaxes" type="xs:boolean" />
<xs:attribute name="maintainEnchantment" type="xs:boolean" /> <xs:attribute name="maintainEnchantment" type="xs:boolean" />
<xs:attribute name="useRate" type="xs:token" /> <xs:attribute name="useRate" type="xs:token" />

View File

@@ -96,7 +96,7 @@ public final class MultisellData implements IGameXmlReader
if ("list".equalsIgnoreCase(n.getNodeName())) if ("list".equalsIgnoreCase(n.getNodeName()))
{ {
list.setApplyTaxes(parseBoolean(n.getAttributes(), "applyTaxes", false)); list.setApplyTaxes(parseBoolean(n.getAttributes(), "applyTaxes", false));
list.setNewMultisell(parseBoolean(n.getAttributes(), "isNewMultisell", false)); list.setIsChanceMultisell(parseBoolean(n.getAttributes(), "isChanceMultisell", false));
list.setMaintainEnchantment(parseBoolean(n.getAttributes(), "maintainEnchantment", false)); list.setMaintainEnchantment(parseBoolean(n.getAttributes(), "maintainEnchantment", false));
att = n.getAttributes().getNamedItem("useRate"); att = n.getAttributes().getNamedItem("useRate");

View File

@@ -35,14 +35,14 @@ public class Ingredient
private boolean _maintainIngredient; private boolean _maintainIngredient;
private L2Item _template = null; private L2Item _template = null;
private ItemInfo _itemInfo = null; private ItemInfo _itemInfo = null;
private final int _chance; private final double _chance;
public Ingredient(StatsSet set) public Ingredient(StatsSet set)
{ {
this(set.getInt("id"), set.getLong("count"), set.getInt("enchantmentLevel", 0), set.getInt("chance", 0), set.getBoolean("isTaxIngredient", false), set.getBoolean("maintainIngredient", false)); this(set.getInt("id"), set.getLong("count"), set.getInt("enchantmentLevel", 0), set.getDouble("chance", 0), set.getBoolean("isTaxIngredient", false), set.getBoolean("maintainIngredient", false));
} }
public Ingredient(int itemId, long itemCount, int enchantmentLevel, int chance, boolean isTaxIngredient, boolean maintainIngredient) public Ingredient(int itemId, long itemCount, int enchantmentLevel, double chance, boolean isTaxIngredient, boolean maintainIngredient)
{ {
_itemId = itemId; _itemId = itemId;
_itemCount = itemCount; _itemCount = itemCount;
@@ -109,7 +109,7 @@ public class Ingredient
return _itemCount; return _itemCount;
} }
public int getChance() public double getChance()
{ {
return _chance; return _chance;
} }

View File

@@ -27,7 +27,7 @@ import java.util.Set;
public class ListContainer public class ListContainer
{ {
private final int _listId; private final int _listId;
private boolean _isNewMultisell; private boolean _isChanceMultisell;
private boolean _applyTaxes = false; private boolean _applyTaxes = false;
private boolean _maintainEnchantment = false; private boolean _maintainEnchantment = false;
private double _useRate = 1.0; private double _useRate = 1.0;
@@ -43,7 +43,7 @@ public class ListContainer
public ListContainer(ListContainer container) public ListContainer(ListContainer container)
{ {
_listId = container.getListId(); _listId = container.getListId();
_isNewMultisell = container.isNewMultisell(); _isChanceMultisell = container.isChanceMultisell();
_maintainEnchantment = container.getMaintainEnchantment(); _maintainEnchantment = container.getMaintainEnchantment();
} }
@@ -57,14 +57,14 @@ public class ListContainer
return _listId; return _listId;
} }
public boolean isNewMultisell() public boolean isChanceMultisell()
{ {
return _isNewMultisell; return _isChanceMultisell;
} }
public void setNewMultisell(boolean val) public void setIsChanceMultisell(boolean val)
{ {
_isNewMultisell = val; _isChanceMultisell = val;
} }
public final void setApplyTaxes(boolean applyTaxes) public final void setApplyTaxes(boolean applyTaxes)

View File

@@ -369,7 +369,7 @@ public class MultiSellChoose implements IClientIncomingPacket
// Generate the appropriate items // Generate the appropriate items
for (Ingredient e : entry.getProducts()) for (Ingredient e : entry.getProducts())
{ {
if (list.isNewMultisell()) if (list.isChanceMultisell())
{ {
// Skip first entry. // Skip first entry.
if (e.getChance() < 1) if (e.getChance() < 1)

View File

@@ -61,7 +61,7 @@ public final class MultiSellList implements IClientOutgoingPacket
packet.writeD(_finished ? 0x01 : 0x00); // finished packet.writeD(_finished ? 0x01 : 0x00); // finished
packet.writeD(PAGE_SIZE); // size of pages packet.writeD(PAGE_SIZE); // size of pages
packet.writeD(_size); // list length packet.writeD(_size); // list length
packet.writeC(_list.isNewMultisell() ? 0x01 : 0x00); // new multisell window packet.writeC(_list.isChanceMultisell() ? 0x01 : 0x00); // new multisell window
packet.writeD(0x20); // Always 32 oO packet.writeD(0x20); // Always 32 oO
Entry ent; Entry ent;
@@ -114,7 +114,7 @@ public final class MultiSellList implements IClientOutgoingPacket
{ {
final ItemInfo item = ing.getItemInfo(); final ItemInfo item = ing.getItemInfo();
packet.writeH(item.getEnchantLevel()); // enchant level packet.writeH(item.getEnchantLevel()); // enchant level
packet.writeD(_list.isNewMultisell() ? ing.getChance() : item.getAugmentId()); // augment id packet.writeD((int) (_list.isChanceMultisell() ? ing.getChance() : item.getAugmentId())); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeD(0x00); // time ? packet.writeD(0x00); // time ?
packet.writeH(item.getElementId()); // attack element packet.writeH(item.getElementId()); // attack element
@@ -141,7 +141,7 @@ public final class MultiSellList implements IClientOutgoingPacket
else else
{ {
packet.writeH(ing.getEnchantLevel()); // enchant level packet.writeH(ing.getEnchantLevel()); // enchant level
packet.writeD(ing.getChance()); // augment id packet.writeD((int) ing.getChance()); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeD(0x00); // time ? packet.writeD(0x00); // time ?
packet.writeH(0x00); // attack element packet.writeH(0x00); // attack element
@@ -175,7 +175,7 @@ public final class MultiSellList implements IClientOutgoingPacket
{ {
final ItemInfo item = ing.getItemInfo(); final ItemInfo item = ing.getItemInfo();
packet.writeH(item.getEnchantLevel()); // enchant level packet.writeH(item.getEnchantLevel()); // enchant level
packet.writeD(_list.isNewMultisell() ? ing.getChance() : item.getAugmentId()); // augment id packet.writeD((int) (_list.isChanceMultisell() ? ing.getChance() : item.getAugmentId())); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeH(item.getElementId()); // attack element packet.writeH(item.getElementId()); // attack element
packet.writeH(item.getElementPower()); // element power packet.writeH(item.getElementPower()); // element power
@@ -199,7 +199,7 @@ public final class MultiSellList implements IClientOutgoingPacket
else else
{ {
packet.writeH(ing.getEnchantLevel()); // enchant level packet.writeH(ing.getEnchantLevel()); // enchant level
packet.writeD(ing.getChance()); // augment id packet.writeD((int) ing.getChance()); // augment id
packet.writeD(0x00); // mana packet.writeD(0x00); // mana
packet.writeH(0x00); // attack element packet.writeH(0x00); // attack element
packet.writeH(0x00); // element power packet.writeH(0x00); // element power

View File

@@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="-100" count="30"/> <!-- Pc Cafe Points -->
<production id="6406" count="1"/> <!-- Firecracker - None -->
</item>
<item>
<ingredient id="-100" count="100"/> <!-- Pc Cafe Points -->
<production id="34602" count="1"/> <!-- Player Commendation - Quick Healing Potion - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="60"/> <!-- Pc Cafe Points -->
<production id="6407" count="1"/> <!-- Large Firecracker - None -->
</item>
<item>
<ingredient id="-100" count="240"/> <!-- Pc Cafe Points -->
<production id="34618" count="1"/> <!-- Player Commendation - Enhanced Cocktail - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="360"/> <!-- Pc Cafe Points -->
<production id="37928" count="1"/> <!-- Player Commendation - Art of Seduction - None -->
</item>
<item>
<ingredient id="-100" count="6"/> <!-- Pc Cafe Points -->
<production id="47549" count="1"/> <!-- PC Cafe Bait - None -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46039" count="1"/> <!-- Player Commendation Talisman - STR - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46040" count="1"/> <!-- Player Commendation Talisman - INT - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46041" count="1"/> <!-- Player Commendation Talisman - DEX - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46042" count="1"/> <!-- Player Commendation Talisman - WIT - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46043" count="1"/> <!-- Player Commendation Talisman - CON - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46044" count="1"/> <!-- Player Commendation Talisman - MEN - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="180"/> <!-- Pc Cafe Points -->
<production id="46045" count="1"/> <!-- Player Commendation Talisman - Atk. Attribute Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46046" count="1"/> <!-- Player Commendation Talisman - Fire Resistance Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46047" count="1"/> <!-- Player Commendation Talisman - Water Resistance Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46048" count="1"/> <!-- Player Commendation Talisman - Wind Resistance Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46049" count="1"/> <!-- Player Commendation Talisman - Earth Resistance Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46050" count="1"/> <!-- Player Commendation Talisman - Holy Resistance Boost - PC-exclusive -->
</item>
<item>
<ingredient id="-100" count="120"/> <!-- Pc Cafe Points -->
<production id="46051" count="1"/> <!-- Player Commendation Talisman - Dark Resistance Boost - PC-exclusive -->
</item>
</list>

View File

@@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/multisell.xsd">
<npcs>
<npc>33946</npc> <!-- Adventure Guildsman -->
</npcs>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9184" count="1"/> <!-- Shadow Item: Teddy Bear Hat - Escape -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9185" count="1"/> <!-- Shadow Item: Piggy Hat - Escape -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9187" count="1"/> <!-- Shadow Item: Wizard Hat - Escape -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9188" count="1"/> <!-- Shadow Item: Dapper Cap - Escape -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9190" count="1"/> <!-- Shadow Item: Iron Circlet - Escape -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9191" count="1"/> <!-- Shadow Item: Teddy Bear Hat - Big Head -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9192" count="1"/> <!-- Shadow Item: Piggy Hat - Big Head -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9194" count="1"/> <!-- Shadow Item: Wizard Hat - Big Head -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9195" count="1"/> <!-- Shadow Item: Dapper Cap - Big Head -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9197" count="1"/> <!-- Shadow Item: Iron Circlet - Big Head -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9198" count="1"/> <!-- Shadow Item: Teddy Bear Hat - Firework -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9199" count="1"/> <!-- Shadow Item: Piggy Hat - Firework -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9201" count="1"/> <!-- Shadow Item: Wizard Hat - Firework -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9202" count="1"/> <!-- Shadow Item: Dapper Cap - Firework -->
</item>
<item>
<ingredient id="-100" count="1200"/> <!-- Pc Cafe Points -->
<production id="9204" count="1"/> <!-- Shadow Item: Iron Circlet - Firework -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37919" count="1"/> <!-- Pig Lollipop Appearance Stone: One-handed Sword - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37920" count="1"/> <!-- Chrono Cithara Appearance Stone: One-handed Sword - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37921" count="1"/> <!-- Chrono Unitus Appearance Stone: Fist Weapon - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37922" count="1"/> <!-- Chrono Campana Appearance Stone: Spear - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37923" count="1"/> <!-- Chrono Darbuka Appearance Stone: Two-handed Blunt Weapon - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37924" count="1"/> <!-- Chrono Maracas Appearance Stone: Dualsword - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37925" count="1"/> <!-- Pumpkin Dagger Appearance Stone: Dagger - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37926" count="1"/> <!-- Pumpkin Dual Dagger Appearance Stone: Dual Dagger - 15-day -->
</item>
<item>
<ingredient id="-100" count="8400"/> <!-- Pc Cafe Points -->
<production id="37927" count="1"/> <!-- Scarecrow Sword Appearance Stone: One-handed Magic Sword - 15-day -->
</item>
</list>

Some files were not shown because too many files have changed in this diff Show More