Drops rework.

This commit is contained in:
MobiusDev
2017-10-06 00:53:49 +00:00
parent 2c61857b12
commit fc94704b2d
408 changed files with 741952 additions and 835872 deletions
@@ -265,7 +265,7 @@ public class AdminAdmin implements IAdminCommandHandler
}
case "RateDropSpoil":
{
Config.RATE_CORPSE_DROP_CHANCE_MULTIPLIER = Float.valueOf(pValue);
Config.RATE_SPOIL_DROP_CHANCE_MULTIPLIER = Float.valueOf(pValue);
break;
}
case "EnchantChanceElementStone":
@@ -462,7 +462,7 @@ public class AdminAdmin implements IAdminCommandHandler
replyMSG.append("<tr><td><font color=\"00AA00\">Drop:</font></td><td></td><td></td></tr>");
replyMSG.append("<tr><td><font color=\"LEVEL\">Rate EXP</font> = " + Config.RATE_XP + "</td><td><edit var=\"param1\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig RateXp $param1\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
replyMSG.append("<tr><td><font color=\"LEVEL\">Rate SP</font> = " + Config.RATE_SP + "</td><td><edit var=\"param2\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig RateSp $param2\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
replyMSG.append("<tr><td><font color=\"LEVEL\">Rate Drop Spoil</font> = " + Config.RATE_CORPSE_DROP_CHANCE_MULTIPLIER + "</td><td><edit var=\"param4\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig RateDropSpoil $param4\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
replyMSG.append("<tr><td><font color=\"LEVEL\">Rate Drop Spoil</font> = " + Config.RATE_SPOIL_DROP_CHANCE_MULTIPLIER + "</td><td><edit var=\"param4\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig RateDropSpoil $param4\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
replyMSG.append("<tr><td width=140></td><td width=40></td><td width=40></td></tr>");
replyMSG.append("<tr><td><font color=\"00AA00\">Enchant:</font></td><td></td><td></td></tr>");
replyMSG.append("<tr><td><font color=\"LEVEL\">Enchant Element Stone</font> = " + Config.ENCHANT_CHANCE_ELEMENT_STONE + "</td><td><edit var=\"param8\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig EnchantChanceElementStone $param8\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
@@ -18,14 +18,15 @@ package handlers.bypasshandlers;
import java.text.DecimalFormat;
import java.util.List;
import java.util.Map;
import java.util.StringTokenizer;
import java.util.concurrent.TimeUnit;
import com.l2jmobius.Config;
import com.l2jmobius.commons.util.CommonUtil;
import com.l2jmobius.gameserver.cache.HtmCache;
import com.l2jmobius.gameserver.datatables.ItemTable;
import com.l2jmobius.gameserver.enums.AttributeType;
import com.l2jmobius.gameserver.enums.DropType;
import com.l2jmobius.gameserver.handler.IBypassHandler;
import com.l2jmobius.gameserver.model.L2Object;
import com.l2jmobius.gameserver.model.L2Spawn;
@@ -34,10 +35,7 @@ import com.l2jmobius.gameserver.model.actor.L2Attackable;
import com.l2jmobius.gameserver.model.actor.L2Character;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import com.l2jmobius.gameserver.model.drops.DropListScope;
import com.l2jmobius.gameserver.model.drops.GeneralDropItem;
import com.l2jmobius.gameserver.model.drops.GroupedGeneralDropItem;
import com.l2jmobius.gameserver.model.drops.IDropItem;
import com.l2jmobius.gameserver.model.holders.DropHolder;
import com.l2jmobius.gameserver.model.items.L2Item;
import com.l2jmobius.gameserver.network.serverpackets.NpcHtmlMessage;
import com.l2jmobius.gameserver.util.HtmlUtil;
@@ -106,10 +104,10 @@ public class NpcViewMod implements IBypassHandler
return false;
}
final String dropListScopeString = st.nextToken();
final String dropListTypeString = st.nextToken();
try
{
final DropListScope dropListScope = Enum.valueOf(DropListScope.class, dropListScopeString);
final DropType dropListType = Enum.valueOf(DropType.class, dropListTypeString);
final L2Object target = L2World.getInstance().findObject(Integer.parseInt(st.nextToken()));
final L2Npc npc = target instanceof L2Npc ? (L2Npc) target : null;
if (npc == null)
@@ -117,7 +115,7 @@ public class NpcViewMod implements IBypassHandler
return false;
}
final int page = st.hasMoreElements() ? Integer.parseInt(st.nextToken()) : 0;
sendNpcDropList(activeChar, npc, dropListScope, page);
sendNpcDropList(activeChar, npc, dropListType, page);
}
catch (NumberFormatException e)
{
@@ -125,7 +123,7 @@ public class NpcViewMod implements IBypassHandler
}
catch (IllegalArgumentException e)
{
_log.warning("Bypass[NpcViewMod] unknown drop list scope: " + dropListScopeString);
_log.warning("Bypass[NpcViewMod] unknown drop list scope: " + dropListTypeString);
return false;
}
break;
@@ -336,21 +334,22 @@ public class NpcViewMod implements IBypassHandler
activeChar.sendPacket(html);
}
public static String getDropListButtons(L2Npc npc)
private static String getDropListButtons(L2Npc npc)
{
final StringBuilder sb = new StringBuilder();
final Map<DropListScope, List<IDropItem>> dropLists = npc.getTemplate().getDropLists();
if ((dropLists != null) && !dropLists.isEmpty() && (dropLists.containsKey(DropListScope.DEATH) || dropLists.containsKey(DropListScope.CORPSE)))
final List<DropHolder> dropListDeath = npc.getTemplate().getDropList(DropType.DROP);
final List<DropHolder> dropListSpoil = npc.getTemplate().getDropList(DropType.SPOIL);
if ((dropListDeath != null) || (dropListSpoil != null))
{
sb.append("<table width=275 cellpadding=0 cellspacing=0><tr>");
if (dropLists.containsKey(DropListScope.DEATH))
if (dropListDeath != null)
{
sb.append("<td align=center><button value=\"Show Drop\" width=100 height=25 action=\"bypass NpcViewMod dropList DEATH " + npc.getObjectId() + "\" back=\"L2UI_CT1.Button_DF_Calculator_Down\" fore=\"L2UI_CT1.Button_DF_Calculator\"></td>");
sb.append("<td align=center><button value=\"Show Drop\" width=100 height=25 action=\"bypass NpcViewMod dropList DROP " + npc.getObjectId() + "\" back=\"L2UI_CT1.Button_DF_Calculator_Down\" fore=\"L2UI_CT1.Button_DF_Calculator\"></td>");
}
if (dropLists.containsKey(DropListScope.CORPSE))
if (dropListSpoil != null)
{
sb.append("<td align=center><button value=\"Show Spoil\" width=100 height=25 action=\"bypass NpcViewMod dropList CORPSE " + npc.getObjectId() + "\" back=\"L2UI_CT1.Button_DF_Calculator_Down\" fore=\"L2UI_CT1.Button_DF_Calculator\"></td>");
sb.append("<td align=center><button value=\"Show Spoil\" width=100 height=25 action=\"bypass NpcViewMod dropList SPOIL " + npc.getObjectId() + "\" back=\"L2UI_CT1.Button_DF_Calculator_Down\" fore=\"L2UI_CT1.Button_DF_Calculator\"></td>");
}
sb.append("</tr></table>");
@@ -358,10 +357,10 @@ public class NpcViewMod implements IBypassHandler
return sb.toString();
}
public static void sendNpcDropList(L2PcInstance activeChar, L2Npc npc, DropListScope dropListScope, int page)
private static void sendNpcDropList(L2PcInstance activeChar, L2Npc npc, DropType dropType, int page)
{
final List<IDropItem> dropList = npc.getTemplate().getDropList(dropListScope);
if ((dropList == null) || dropList.isEmpty())
final List<DropHolder> dropList = npc.getTemplate().getDropList(dropType);
if (dropList == null)
{
return;
}
@@ -378,7 +377,7 @@ public class NpcViewMod implements IBypassHandler
pagesSb.append("<table><tr>");
for (int i = 0; i < pages; i++)
{
pagesSb.append("<td align=center><button value=\"" + (i + 1) + "\" width=20 height=20 action=\"bypass NpcViewMod dropList " + dropListScope + " " + npc.getObjectId() + " " + i + "\" back=\"L2UI_CT1.Button_DF_Calculator_Down\" fore=\"L2UI_CT1.Button_DF_Calculator\"></td>");
pagesSb.append("<td align=center><button value=\"" + (i + 1) + "\" width=20 height=20 action=\"bypass NpcViewMod dropList " + dropType + " " + npc.getObjectId() + " " + i + "\" back=\"L2UI_CT1.Button_DF_Calculator_Down\" fore=\"L2UI_CT1.Button_DF_Calculator\"></td>");
}
pagesSb.append("</tr></table>");
}
@@ -409,124 +408,126 @@ public class NpcViewMod implements IBypassHandler
final StringBuilder sb = new StringBuilder();
int height = 64;
final IDropItem dropItem = dropList.get(i);
if (dropItem instanceof GeneralDropItem)
final DropHolder dropItem = dropList.get(i);
final L2Item item = ItemTable.getInstance().getTemplate(dropItem.getItemId());
// real time server rate calculations
double rateChance = 1;
double rateAmount = 1;
if (dropType == DropType.SPOIL)
{
final GeneralDropItem generalDropItem = (GeneralDropItem) dropItem;
final L2Item item = ItemTable.getInstance().getTemplate(generalDropItem.getItemId());
sb.append("<table width=332 cellpadding=2 cellspacing=0 background=\"L2UI_CT1.Windows.Windows_DF_TooltipBG\">");
sb.append("<tr><td width=32 valign=top>");
sb.append("<img src=\"" + item.getIcon() + "\" width=32 height=32>");
sb.append("</td><td fixwidth=300 align=center><font name=\"hs9\" color=\"CD9000\">");
sb.append(item.getName());
sb.append("</font></td></tr><tr><td width=32></td><td width=300><table width=295 cellpadding=0 cellspacing=0>");
sb.append("<tr><td width=48 align=right valign=top><font color=\"LEVEL\">Amount:</font></td>");
sb.append("<td width=247 align=center>");
rateChance = Config.RATE_SPOIL_DROP_CHANCE_MULTIPLIER;
rateAmount = Config.RATE_SPOIL_DROP_AMOUNT_MULTIPLIER;
final long min = generalDropItem.getMin(npc, activeChar);
final long max = generalDropItem.getMax(npc, activeChar);
if (min == max)
// also check premium rates if available
if (Config.PREMIUM_SYSTEM_ENABLED && activeChar.hasPremiumStatus())
{
sb.append(amountFormat.format(min));
rateChance *= Config.PREMIUM_RATE_SPOIL_CHANCE;
rateAmount *= Config.PREMIUM_RATE_SPOIL_AMOUNT;
}
}
else
{
if (Config.RATE_DROP_CHANCE_BY_ID.get(dropItem.getItemId()) != null)
{
rateChance *= Config.RATE_DROP_CHANCE_BY_ID.get(dropItem.getItemId());
}
else if (item.hasExImmediateEffect())
{
rateChance *= Config.RATE_HERB_DROP_CHANCE_MULTIPLIER;
}
else if (npc.isRaid())
{
rateChance *= Config.RATE_RAID_DROP_CHANCE_MULTIPLIER;
}
else
{
sb.append(amountFormat.format(min));
sb.append(" - ");
sb.append(amountFormat.format(max));
rateChance *= Config.RATE_DEATH_DROP_CHANCE_MULTIPLIER;
}
sb.append("</td></tr><tr><td width=48 align=right valign=top><font color=\"LEVEL\">Chance:</font></td>");
sb.append("<td width=247 align=center>");
sb.append(chanceFormat.format(Math.min(generalDropItem.getChance(npc, activeChar), 100)));
sb.append("%</td></tr></table></td></tr><tr><td width=32></td><td width=300>&nbsp;</td></tr></table>");
}
else if (dropItem instanceof GroupedGeneralDropItem)
{
final GroupedGeneralDropItem generalGroupedDropItem = (GroupedGeneralDropItem) dropItem;
if (generalGroupedDropItem.getItems().size() == 1)
if (Config.RATE_DROP_AMOUNT_BY_ID.get(dropItem.getItemId()) != null)
{
final GeneralDropItem generalDropItem = generalGroupedDropItem.getItems().get(0);
final L2Item item = ItemTable.getInstance().getTemplate(generalDropItem.getItemId());
sb.append("<table width=332 cellpadding=2 cellspacing=0 background=\"L2UI_CT1.Windows.Windows_DF_TooltipBG\">");
sb.append("<tr><td width=32 valign=top>");
sb.append("<img src=\"" + item.getIcon() + "\" width=32 height=32>");
sb.append("</td><td fixwidth=300 align=center><font name=\"hs9\" color=\"CD9000\">");
sb.append(item.getName());
sb.append("</font></td></tr><tr><td width=32></td><td width=300><table width=295 cellpadding=0 cellspacing=0>");
sb.append("<tr><td width=48 align=right valign=top><font color=\"LEVEL\">Amount:</font></td>");
sb.append("<td width=247 align=center>");
final long min = generalDropItem.getMin(npc, activeChar);
final long max = generalDropItem.getMax(npc, activeChar);
if (min == max)
rateAmount *= Config.RATE_DROP_AMOUNT_BY_ID.get(dropItem.getItemId());
}
else if (item.hasExImmediateEffect())
{
rateAmount *= Config.RATE_HERB_DROP_AMOUNT_MULTIPLIER;
}
else if (npc.isRaid())
{
rateAmount *= Config.RATE_RAID_DROP_AMOUNT_MULTIPLIER;
}
else
{
rateAmount *= Config.RATE_DEATH_DROP_AMOUNT_MULTIPLIER;
}
// also check premium rates if available
if (Config.PREMIUM_SYSTEM_ENABLED && activeChar.hasPremiumStatus())
{
if (Config.PREMIUM_RATE_DROP_CHANCE_BY_ID.get(dropItem.getItemId()) != null)
{
sb.append(amountFormat.format(min));
rateChance *= Config.PREMIUM_RATE_DROP_CHANCE_BY_ID.get(dropItem.getItemId());
}
else if (item.hasExImmediateEffect())
{
// TODO: Premium herb chance? :)
}
else if (npc.isRaid())
{
// TODO: Premium raid chance? :)
}
else
{
sb.append(amountFormat.format(min));
sb.append(" - ");
sb.append(amountFormat.format(max));
rateChance *= Config.PREMIUM_RATE_DROP_CHANCE;
}
sb.append("</td></tr><tr><td width=48 align=right valign=top><font color=\"LEVEL\">Chance:</font></td>");
sb.append("<td width=247 align=center>");
sb.append(chanceFormat.format(Math.min(generalGroupedDropItem.getChance(npc, activeChar), 100)));
sb.append("%</td></tr></table></td></tr><tr><td width=32></td><td width=300>&nbsp;</td></tr></table>");
}
else
{
sb.append("<table width=332 cellpadding=2 cellspacing=0 background=\"L2UI_CT1.Windows.Windows_DF_TooltipBG\">");
sb.append("<tr><td width=32 valign=top><img src=\"L2UI_CT1.ICON_DF_premiumItem\" width=32 height=32></td>");
sb.append("<td fixwidth=300 align=center><font name=\"ScreenMessageSmall\" color=\"CD9000\">One from group</font>");
sb.append("</td></tr><tr><td width=32></td><td width=300><table width=295 cellpadding=0 cellspacing=0><tr>");
sb.append("<td width=48 align=right valign=top><font color=\"LEVEL\">Chance:</font></td>");
sb.append("<td width=247 align=center>");
sb.append(chanceFormat.format(Math.min(generalGroupedDropItem.getChance(npc, activeChar), 100)));
sb.append("%</td></tr></table><br>");
for (GeneralDropItem generalDropItem : generalGroupedDropItem.getItems())
if (Config.PREMIUM_RATE_DROP_AMOUNT_BY_ID.get(dropItem.getItemId()) != null)
{
final L2Item item = ItemTable.getInstance().getTemplate(generalDropItem.getItemId());
sb.append("<table width=291 cellpadding=2 cellspacing=0 background=\"L2UI_CT1.Windows.Windows_DF_TooltipBG\">");
sb.append("<tr><td width=32 valign=top>");
String icon = item.getIcon();
if (icon == null)
{
icon = "icon.etc_question_mark_i00";
}
sb.append("<img src=\"" + icon + "\" width=32 height=32>");
sb.append("</td><td fixwidth=259 align=center><font name=\"hs9\" color=\"CD9000\">");
sb.append(item.getName());
sb.append("</font></td></tr><tr><td width=32></td><td width=259><table width=253 cellpadding=0 cellspacing=0>");
sb.append("<tr><td width=48 align=right valign=top><font color=\"LEVEL\">Amount:</font></td><td width=205 align=center>");
final long min = generalDropItem.getMin(npc, activeChar);
final long max = generalDropItem.getMax(npc, activeChar);
if (min == max)
{
sb.append(amountFormat.format(min));
}
else
{
sb.append(amountFormat.format(min));
sb.append(" - ");
sb.append(amountFormat.format(max));
}
sb.append("</td></tr><tr><td width=48 align=right valign=top><font color=\"LEVEL\">Chance:</font></td>");
sb.append("<td width=205 align=center>");
sb.append(chanceFormat.format(Math.min(generalDropItem.getChance(npc, activeChar), 100)));
sb.append("%</td></tr></table></td></tr><tr><td width=32></td><td width=259>&nbsp;</td></tr></table>");
height += 64;
rateAmount *= Config.PREMIUM_RATE_DROP_AMOUNT_BY_ID.get(dropItem.getItemId());
}
else if (item.hasExImmediateEffect())
{
// TODO: Premium herb amount? :)
}
else if (npc.isRaid())
{
// TODO: Premium raid amount? :)
}
else
{
rateAmount *= Config.PREMIUM_RATE_DROP_AMOUNT;
}
sb.append("</td></tr><tr><td width=32></td><td width=300>&nbsp;</td></tr></table>");
}
}
sb.append("<table width=332 cellpadding=2 cellspacing=0 background=\"L2UI_CT1.Windows.Windows_DF_TooltipBG\">");
sb.append("<tr><td width=32 valign=top>");
sb.append("<img src=\"" + (item.getIcon() == null ? "icon.etc_question_mark_i00" : item.getIcon()) + "\" width=32 height=32>");
sb.append("</td><td fixwidth=300 align=center><font name=\"hs9\" color=\"CD9000\">");
sb.append(item.getName());
sb.append("</font></td></tr><tr><td width=32></td><td width=300><table width=295 cellpadding=0 cellspacing=0>");
sb.append("<tr><td width=48 align=right valign=top><font color=\"LEVEL\">Amount:</font></td>");
sb.append("<td width=247 align=center>");
final long min = (long) (dropItem.getMin() * rateAmount);
final long max = (long) (dropItem.getMax() * rateAmount);
if (min == max)
{
sb.append(amountFormat.format(min));
}
else
{
sb.append(amountFormat.format(min));
sb.append(" - ");
sb.append(amountFormat.format(max));
}
sb.append("</td></tr><tr><td width=48 align=right valign=top><font color=\"LEVEL\">Chance:</font></td>");
sb.append("<td width=247 align=center>");
sb.append(chanceFormat.format(Math.min((long) dropItem.getChance() * rateChance, 100)));
sb.append("%</td></tr></table></td></tr><tr><td width=32></td><td width=300>&nbsp;</td></tr></table>");
if ((sb.length() + rightSb.length() + leftSb.length()) < 16000) // limit of 32766?
{
if (leftHeight >= (rightHeight + height))
@@ -22,23 +22,21 @@ import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.StringJoiner;
import com.l2jmobius.Config;
import com.l2jmobius.commons.util.Rnd;
import com.l2jmobius.gameserver.cache.HtmCache;
import com.l2jmobius.gameserver.data.xml.impl.NpcData;
import com.l2jmobius.gameserver.data.xml.impl.SpawnsData;
import com.l2jmobius.gameserver.datatables.ItemTable;
import com.l2jmobius.gameserver.enums.DropType;
import com.l2jmobius.gameserver.handler.CommunityBoardHandler;
import com.l2jmobius.gameserver.handler.IParseBoardHandler;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import com.l2jmobius.gameserver.model.actor.templates.L2NpcTemplate;
import com.l2jmobius.gameserver.model.drops.DropListScope;
import com.l2jmobius.gameserver.model.drops.GeneralDropItem;
import com.l2jmobius.gameserver.model.drops.GroupedGeneralDropItem;
import com.l2jmobius.gameserver.model.drops.IDropItem;
import com.l2jmobius.gameserver.model.holders.DropHolder;
import com.l2jmobius.gameserver.model.itemcontainer.Inventory;
import com.l2jmobius.gameserver.model.items.L2Item;
import com.l2jmobius.gameserver.model.spawns.NpcSpawnTemplate;
@@ -56,40 +54,40 @@ public class DropSearchBoard implements IParseBoardHandler
"_bbs_npc_trace"
};
class DropHolder
class CBDropHolder
{
int itemId;
int npcId;
byte npcLevel;
long basemin;
long basemax;
double baseGroupChance;
double basechance;
boolean isSweep;
long min;
long max;
double chance;
boolean isSpoil;
boolean isRaid;
public DropHolder(L2NpcTemplate npc, GeneralDropItem item, double groupChance, boolean isSweep)
public CBDropHolder(L2NpcTemplate npcTemplate, DropHolder dropHolder)
{
itemId = item.getItemId();
npcId = npc.getId();
npcLevel = npc.getLevel();
basemin = item.getMin();
basemax = item.getMax();
baseGroupChance = groupChance;
basechance = item.getChance();
this.isSweep = isSweep;
isSpoil = dropHolder.getDropType() == DropType.SPOIL;
itemId = dropHolder.getItemId();
npcId = npcTemplate.getId();
npcLevel = npcTemplate.getLevel();
min = dropHolder.getMin();
max = dropHolder.getMax();
chance = dropHolder.getChance();
isRaid = npcTemplate.getType().equals("L2RaidBoss") || npcTemplate.getType().equals("L2GrandBoss");
}
/**
* only for debug'/;
* only for debug
*/
@Override
public String toString()
{
return "DropHolder [itemId=" + itemId + ", npcId=" + npcId + ", npcLevel=" + npcLevel + ", basemin=" + basemin + ", basemax=" + basemax + ", baseGroupChance=" + baseGroupChance + ", basechance=" + basechance + ", isSweep=" + isSweep + "]";
return "DropHolder [itemId=" + itemId + ", npcId=" + npcId + ", npcLevel=" + npcLevel + ", min=" + min + ", max=" + max + ", chance=" + chance + ", isSpoil=" + isSpoil + "]";
}
}
private final Map<Integer, List<DropHolder>> DROP_INDEX_CACHE = new HashMap<>();
private final Map<Integer, List<CBDropHolder>> DROP_INDEX_CACHE = new HashMap<>();
// nonsupport items
private final Set<Integer> BLOCK_ID = new HashSet<>();
@@ -104,44 +102,39 @@ public class DropSearchBoard implements IParseBoardHandler
private void buildDropIndex()
{
NpcData.getInstance().getTemplates(npc -> npc.getDropLists() != null).forEach(npcTemplate ->
NpcData.getInstance().getTemplates(npc -> npc.getDropList(DropType.DROP) != null).forEach(npcTemplate ->
{
for (Entry<DropListScope, List<IDropItem>> entry : npcTemplate.getDropLists().entrySet())
for (DropHolder dropHolder : npcTemplate.getDropList(DropType.DROP))
{
entry.getValue().forEach(idrop ->
{
if (idrop instanceof GroupedGeneralDropItem)
{
GroupedGeneralDropItem ggd = (GroupedGeneralDropItem) idrop;
ggd.getItems().stream().forEach(gd -> addToDropList(npcTemplate, gd, ggd.getChance(), entry.getKey() == DropListScope.CORPSE));
}
else
{
GeneralDropItem gd = (GeneralDropItem) idrop;
addToDropList(npcTemplate, gd, 100.0, entry.getKey() == DropListScope.CORPSE);
}
});
addToDropList(npcTemplate, dropHolder);
}
});
NpcData.getInstance().getTemplates(npc -> npc.getDropList(DropType.SPOIL) != null).forEach(npcTemplate ->
{
for (DropHolder dropHolder : npcTemplate.getDropList(DropType.SPOIL))
{
addToDropList(npcTemplate, dropHolder);
}
});
DROP_INDEX_CACHE.values().stream().forEach(l -> l.sort((d1, d2) -> Byte.valueOf(d1.npcLevel).compareTo(Byte.valueOf(d2.npcLevel))));
}
private void addToDropList(L2NpcTemplate npcTemplate, GeneralDropItem gd, double groupChance, boolean isSweep)
private void addToDropList(L2NpcTemplate npcTemplate, DropHolder dropHolder)
{
if (BLOCK_ID.contains(gd.getItemId()))
if (BLOCK_ID.contains(dropHolder.getItemId()))
{
return;
}
List<DropHolder> dropList = DROP_INDEX_CACHE.get(gd.getItemId());
List<CBDropHolder> dropList = DROP_INDEX_CACHE.get(dropHolder.getItemId());
if (dropList == null)
{
dropList = new ArrayList<>();
DROP_INDEX_CACHE.put(gd.getItemId(), dropList);
DROP_INDEX_CACHE.put(dropHolder.getItemId(), dropList);
}
dropList.add(new DropHolder(npcTemplate, gd, groupChance, isSweep));
dropList.add(new CBDropHolder(npcTemplate, dropHolder));
}
@Override
@@ -164,7 +157,7 @@ public class DropSearchBoard implements IParseBoardHandler
final DecimalFormat chanceFormat = new DecimalFormat("0.00##");
int itemId = Integer.parseInt(params[1]);
int page = Integer.parseInt(params[2]);
List<DropHolder> list = DROP_INDEX_CACHE.get(itemId);
List<CBDropHolder> list = DROP_INDEX_CACHE.get(itemId);
int pages = list.size() / 14;
if (pages == 0)
{
@@ -176,13 +169,106 @@ public class DropSearchBoard implements IParseBoardHandler
StringBuilder builder = new StringBuilder();
for (int index = start; index <= end; index++)
{
DropHolder dropHolder = list.get(index);
CBDropHolder cbDropHolder = list.get(index);
// real time server rate calculations
double rateChance = 1;
double rateAmount = 1;
if (cbDropHolder.isSpoil)
{
rateChance = Config.RATE_SPOIL_DROP_CHANCE_MULTIPLIER;
rateAmount = Config.RATE_SPOIL_DROP_AMOUNT_MULTIPLIER;
// also check premium rates if available
if (Config.PREMIUM_SYSTEM_ENABLED && player.hasPremiumStatus())
{
rateChance *= Config.PREMIUM_RATE_SPOIL_CHANCE;
rateAmount *= Config.PREMIUM_RATE_SPOIL_AMOUNT;
}
}
else
{
final L2Item item = ItemTable.getInstance().getTemplate(cbDropHolder.itemId);
if (Config.RATE_DROP_CHANCE_BY_ID.get(cbDropHolder.itemId) != null)
{
rateChance *= Config.RATE_DROP_CHANCE_BY_ID.get(cbDropHolder.itemId);
}
else if (item.hasExImmediateEffect())
{
rateChance *= Config.RATE_HERB_DROP_CHANCE_MULTIPLIER;
}
else if (cbDropHolder.isRaid)
{
rateAmount *= Config.RATE_RAID_DROP_CHANCE_MULTIPLIER;
}
else
{
rateChance *= Config.RATE_DEATH_DROP_CHANCE_MULTIPLIER;
}
if (Config.RATE_DROP_AMOUNT_BY_ID.get(cbDropHolder.itemId) != null)
{
rateAmount *= Config.RATE_DROP_AMOUNT_BY_ID.get(cbDropHolder.itemId);
}
else if (cbDropHolder.isRaid)
{
rateAmount *= Config.RATE_RAID_DROP_AMOUNT_MULTIPLIER;
}
else if (item.hasExImmediateEffect())
{
rateAmount *= Config.RATE_HERB_DROP_AMOUNT_MULTIPLIER;
}
else
{
rateAmount *= Config.RATE_DEATH_DROP_AMOUNT_MULTIPLIER;
}
// also check premium rates if available
if (Config.PREMIUM_SYSTEM_ENABLED && player.hasPremiumStatus())
{
if (Config.PREMIUM_RATE_DROP_CHANCE_BY_ID.get(cbDropHolder.itemId) != null)
{
rateChance *= Config.PREMIUM_RATE_DROP_CHANCE_BY_ID.get(cbDropHolder.itemId);
}
else if (item.hasExImmediateEffect())
{
// TODO: Premium herb chance? :)
}
else if (cbDropHolder.isRaid)
{
// TODO: Premium raid chance? :)
}
else
{
rateChance *= Config.PREMIUM_RATE_DROP_CHANCE;
}
if (Config.PREMIUM_RATE_DROP_AMOUNT_BY_ID.get(cbDropHolder.itemId) != null)
{
rateAmount *= Config.PREMIUM_RATE_DROP_AMOUNT_BY_ID.get(cbDropHolder.itemId);
}
else if (item.hasExImmediateEffect())
{
// TODO: Premium herb amount? :)
}
else if (cbDropHolder.isRaid)
{
// TODO: Premium raid amount? :)
}
else
{
rateAmount *= Config.PREMIUM_RATE_DROP_AMOUNT;
}
}
}
builder.append("<tr>");
builder.append("<td width=30>").append(dropHolder.npcLevel).append("</td>");
builder.append("<td width=170>").append("<a action=\"bypass _bbs_npc_trace " + dropHolder.npcId + "\">").append("&@").append(dropHolder.npcId).append(";").append("</a>").append("</td>");
builder.append("<td width=80 align=CENTER>").append(dropHolder.basemin).append("-").append(dropHolder.basemax).append("</td>");
builder.append("<td width=50 align=CENTER>").append(chanceFormat.format((dropHolder.basechance * dropHolder.baseGroupChance) / 100)).append("%").append("</td>");
builder.append("<td width=50 align=CENTER>").append(dropHolder.isSweep ? "Sweep" : "Drop").append("</td>");
builder.append("<td width=30>").append(cbDropHolder.npcLevel).append("</td>");
builder.append("<td width=170>").append("<a action=\"bypass _bbs_npc_trace " + cbDropHolder.npcId + "\">").append("&@").append(cbDropHolder.npcId).append(";").append("</a>").append("</td>");
builder.append("<td width=80 align=CENTER>").append(cbDropHolder.min * rateAmount).append("-").append(cbDropHolder.max * rateAmount).append("</td>");
builder.append("<td width=50 align=CENTER>").append(chanceFormat.format(cbDropHolder.chance * rateChance)).append("%").append("</td>");
builder.append("<td width=50 align=CENTER>").append(cbDropHolder.isSpoil ? "Spoil" : "Drop").append("</td>");
builder.append("</tr>");
}
@@ -204,7 +290,7 @@ public class DropSearchBoard implements IParseBoardHandler
List<NpcSpawnTemplate> spawnList = SpawnsData.getInstance().getNpcSpawns(npc -> npc.getId() == npcId);
if (spawnList.isEmpty())
{
player.sendMessage("cant find any spawn maybe boss or instance mob");
player.sendMessage("Cannot find any spawn. Maybe dropped by a boss or instance monster.");
}
else
{
@@ -49,15 +49,15 @@ public class Premium implements IVoicedCommandHandler
html.append("<tr><td>Rate SP: <font color=\"LEVEL\"> x" + Config.RATE_SP + "<br1></font></td></tr>");
html.append("<tr><td>Drop Chance: <font color=\"LEVEL\"> x" + Config.RATE_DEATH_DROP_CHANCE_MULTIPLIER + "<br1></font></td></tr><br>");
html.append("<tr><td>Drop Amount: <font color=\"LEVEL\"> x" + Config.RATE_DEATH_DROP_AMOUNT_MULTIPLIER + "<br1></font></td></tr><br>");
html.append("<tr><td>Spoil Chance: <font color=\"LEVEL\"> x" + Config.RATE_CORPSE_DROP_CHANCE_MULTIPLIER + "<br1></font></td></tr><br>");
html.append("<tr><td>Spoil Amount: <font color=\"LEVEL\"> x" + Config.RATE_CORPSE_DROP_AMOUNT_MULTIPLIER + "<br><br></font></td></tr><br>");
html.append("<tr><td>Spoil Chance: <font color=\"LEVEL\"> x" + Config.RATE_SPOIL_DROP_CHANCE_MULTIPLIER + "<br1></font></td></tr><br>");
html.append("<tr><td>Spoil Amount: <font color=\"LEVEL\"> x" + Config.RATE_SPOIL_DROP_AMOUNT_MULTIPLIER + "<br><br></font></td></tr><br>");
html.append("<tr><td><center>Premium Info & Rules<br></td></tr>");
html.append("<tr><td>Rate XP: <font color=\"LEVEL\"> x" + (Config.RATE_XP * Config.PREMIUM_RATE_XP) + "<br1></font></td></tr>");
html.append("<tr><td>Rate SP: <font color=\"LEVEL\"> x" + (Config.RATE_SP * Config.PREMIUM_RATE_SP) + "<br1></font></td></tr>");
html.append("<tr><td>Drop Chance: <font color=\"LEVEL\"> x" + (Config.RATE_DEATH_DROP_CHANCE_MULTIPLIER * Config.RATE_DEATH_DROP_CHANCE_MULTIPLIER * Config.PREMIUM_RATE_DROP_CHANCE) + "<br1></font></td></tr>");
html.append("<tr><td>Drop Amount: <font color=\"LEVEL\"> x" + (Config.RATE_DEATH_DROP_AMOUNT_MULTIPLIER * Config.PREMIUM_RATE_DROP_AMOUNT) + "<br1></font></td></tr>");
html.append("<tr><td>Spoil Chance: <font color=\"LEVEL\"> x" + (Config.RATE_CORPSE_DROP_CHANCE_MULTIPLIER * Config.PREMIUM_RATE_SPOIL_CHANCE) + "<br1></font></td></tr>");
html.append("<tr><td>Spoil Amount: <font color=\"LEVEL\"> x" + (Config.RATE_CORPSE_DROP_AMOUNT_MULTIPLIER * Config.PREMIUM_RATE_SPOIL_AMOUNT) + "<br1></font></td></tr>");
html.append("<tr><td>Spoil Chance: <font color=\"LEVEL\"> x" + (Config.RATE_SPOIL_DROP_CHANCE_MULTIPLIER * Config.PREMIUM_RATE_SPOIL_CHANCE) + "<br1></font></td></tr>");
html.append("<tr><td>Spoil Amount: <font color=\"LEVEL\"> x" + (Config.RATE_SPOIL_DROP_AMOUNT_MULTIPLIER * Config.PREMIUM_RATE_SPOIL_AMOUNT) + "<br1></font></td></tr>");
html.append("<tr><td> <font color=\"70FFCA\">1. Premium benefits CAN NOT BE TRANSFERED.<br1></font></td></tr>");
html.append("<tr><td> <font color=\"70FFCA\">2. Premium does not effect party members.<br1></font></td></tr>");
html.append("<tr><td> <font color=\"70FFCA\">3. Premium benefits effect ALL characters in same account.</font></td></tr>");
@@ -71,8 +71,8 @@ public class Premium implements IVoicedCommandHandler
html.append("<tr><td>Rate SP: <font color=\"LEVEL\">x" + (Config.RATE_SP * Config.PREMIUM_RATE_SP) + " <br1></font></td></tr>");
html.append("<tr><td>Drop Chance: <font color=\"LEVEL\">x" + (Config.RATE_DEATH_DROP_CHANCE_MULTIPLIER * Config.PREMIUM_RATE_DROP_CHANCE) + " <br1></font></td></tr>");
html.append("<tr><td>Drop Amount: <font color=\"LEVEL\">x" + (Config.RATE_DEATH_DROP_AMOUNT_MULTIPLIER * Config.PREMIUM_RATE_DROP_AMOUNT) + " <br1></font></td></tr>");
html.append("<tr><td>Spoil Chance: <font color=\"LEVEL\">x" + (Config.RATE_CORPSE_DROP_CHANCE_MULTIPLIER * Config.PREMIUM_RATE_SPOIL_CHANCE) + " <br1></font></td></tr>");
html.append("<tr><td>Spoil Amount: <font color=\"LEVEL\">x" + (Config.RATE_CORPSE_DROP_AMOUNT_MULTIPLIER * Config.PREMIUM_RATE_SPOIL_AMOUNT) + " <br1></font></td></tr>");
html.append("<tr><td>Spoil Chance: <font color=\"LEVEL\">x" + (Config.RATE_SPOIL_DROP_CHANCE_MULTIPLIER * Config.PREMIUM_RATE_SPOIL_CHANCE) + " <br1></font></td></tr>");
html.append("<tr><td>Spoil Amount: <font color=\"LEVEL\">x" + (Config.RATE_SPOIL_DROP_AMOUNT_MULTIPLIER * Config.PREMIUM_RATE_SPOIL_AMOUNT) + " <br1></font></td></tr>");
html.append("<tr><td>Expires: <font color=\"00A5FF\">" + format.format(endDate) + "</font></td></tr>");
html.append("<tr><td>Current Date: <font color=\"70FFCA\">" + format.format(System.currentTimeMillis()) + "<br><br></font></td></tr>");
html.append("<tr><td><center>Premium Info & Rules<br></center></td></tr>");
@@ -48,38 +48,26 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="42">
<item id="8600" min="1" max="1" chance="20" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="45" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="35" /> <!-- Superior Herb of Life -->
</group>
<group chance="11">
<item id="8603" min="1" max="1" chance="10" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="54" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="36" /> <!-- Superior Herb of Mana -->
</group>
<group chance="25">
<item id="8606" min="1" max="1" chance="20" /> <!-- Herb of Power -->
<item id="8608" min="1" max="1" chance="20" /> <!-- Haste Herb -->
<item id="8610" min="1" max="1" chance="20" /> <!-- Herb of Critical Attack - Probability -->
<item id="10655" min="1" max="1" chance="20" /> <!-- Herb of HP Drain -->
<item id="10656" min="1" max="1" chance="20" /> <!-- Herb of Critical Attack - Power -->
</group>
<group chance="10">
<item id="8607" min="1" max="1" chance="50" /> <!-- Herb of Magic -->
<item id="8609" min="1" max="1" chance="50" /> <!-- Herb of Casting Spd. -->
</group>
<group chance="1">
<item id="8612" min="1" max="1" chance="33" /> <!-- Herb of the Warrior -->
<item id="8613" min="1" max="1" chance="33" /> <!-- Wizard Herb -->
<item id="8614" min="1" max="1" chance="34" /> <!-- Herb of Recovery -->
</group>
<group chance="11">
<item id="8611" min="1" max="1" chance="94" /> <!-- Wind Walk Herb -->
<item id="10657" min="1" max="1" chance="6" /> <!-- Mysterious Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="8.4" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="18.9" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="14.7" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="1.1" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="5.94" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.96" /> <!-- Superior Herb of Mana -->
<item id="8606" min="1" max="1" chance="5" /> <!-- Herb of Power -->
<item id="8608" min="1" max="1" chance="5" /> <!-- Haste Herb -->
<item id="8610" min="1" max="1" chance="5" /> <!-- Herb of Critical Attack - Probability -->
<item id="10655" min="1" max="1" chance="5" /> <!-- Herb of HP Drain -->
<item id="10656" min="1" max="1" chance="5" /> <!-- Herb of Critical Attack - Power -->
<item id="8607" min="1" max="1" chance="5" /> <!-- Herb of Magic -->
<item id="8609" min="1" max="1" chance="5" /> <!-- Herb of Casting Spd. -->
<item id="8612" min="1" max="1" chance="0.33" /> <!-- Herb of the Warrior -->
<item id="8613" min="1" max="1" chance="0.33" /> <!-- Wizard Herb -->
<item id="8614" min="1" max="1" chance="0.34" /> <!-- Herb of Recovery -->
<item id="8611" min="1" max="1" chance="10.34" /> <!-- Wind Walk Herb -->
<item id="10657" min="1" max="1" chance="0.66" /> <!-- Mysterious Herb -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -138,38 +126,26 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="42">
<item id="8600" min="1" max="1" chance="20" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="45" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="35" /> <!-- Superior Herb of Life -->
</group>
<group chance="11">
<item id="8603" min="1" max="1" chance="10" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="54" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="36" /> <!-- Superior Herb of Mana -->
</group>
<group chance="25">
<item id="8606" min="1" max="1" chance="20" /> <!-- Herb of Power -->
<item id="8608" min="1" max="1" chance="20" /> <!-- Haste Herb -->
<item id="8610" min="1" max="1" chance="20" /> <!-- Herb of Critical Attack - Probability -->
<item id="10655" min="1" max="1" chance="20" /> <!-- Herb of HP Drain -->
<item id="10656" min="1" max="1" chance="20" /> <!-- Herb of Critical Attack - Power -->
</group>
<group chance="10">
<item id="8607" min="1" max="1" chance="50" /> <!-- Herb of Magic -->
<item id="8609" min="1" max="1" chance="50" /> <!-- Herb of Casting Spd. -->
</group>
<group chance="1">
<item id="8612" min="1" max="1" chance="33" /> <!-- Herb of the Warrior -->
<item id="8613" min="1" max="1" chance="33" /> <!-- Wizard Herb -->
<item id="8614" min="1" max="1" chance="34" /> <!-- Herb of Recovery -->
</group>
<group chance="11">
<item id="8611" min="1" max="1" chance="94" /> <!-- Wind Walk Herb -->
<item id="10657" min="1" max="1" chance="6" /> <!-- Mysterious Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="8.4" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="18.9" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="14.7" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="1.1" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="5.94" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.96" /> <!-- Superior Herb of Mana -->
<item id="8606" min="1" max="1" chance="5" /> <!-- Herb of Power -->
<item id="8608" min="1" max="1" chance="5" /> <!-- Haste Herb -->
<item id="8610" min="1" max="1" chance="5" /> <!-- Herb of Critical Attack - Probability -->
<item id="10655" min="1" max="1" chance="5" /> <!-- Herb of HP Drain -->
<item id="10656" min="1" max="1" chance="5" /> <!-- Herb of Critical Attack - Power -->
<item id="8607" min="1" max="1" chance="5" /> <!-- Herb of Magic -->
<item id="8609" min="1" max="1" chance="5" /> <!-- Herb of Casting Spd. -->
<item id="8612" min="1" max="1" chance="0.33" /> <!-- Herb of the Warrior -->
<item id="8613" min="1" max="1" chance="0.33" /> <!-- Wizard Herb -->
<item id="8614" min="1" max="1" chance="0.34" /> <!-- Herb of Recovery -->
<item id="8611" min="1" max="1" chance="10.34" /> <!-- Wind Walk Herb -->
<item id="10657" min="1" max="1" chance="0.66" /> <!-- Mysterious Herb -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -230,38 +206,26 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="42">
<item id="8600" min="1" max="1" chance="20" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="45" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="35" /> <!-- Superior Herb of Life -->
</group>
<group chance="11">
<item id="8603" min="1" max="1" chance="10" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="54" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="36" /> <!-- Superior Herb of Mana -->
</group>
<group chance="25">
<item id="8606" min="1" max="1" chance="20" /> <!-- Herb of Power -->
<item id="8608" min="1" max="1" chance="20" /> <!-- Haste Herb -->
<item id="8610" min="1" max="1" chance="20" /> <!-- Herb of Critical Attack - Probability -->
<item id="10655" min="1" max="1" chance="20" /> <!-- Herb of HP Drain -->
<item id="10656" min="1" max="1" chance="20" /> <!-- Herb of Critical Attack - Power -->
</group>
<group chance="10">
<item id="8607" min="1" max="1" chance="50" /> <!-- Herb of Magic -->
<item id="8609" min="1" max="1" chance="50" /> <!-- Herb of Casting Spd. -->
</group>
<group chance="1">
<item id="8612" min="1" max="1" chance="33" /> <!-- Herb of the Warrior -->
<item id="8613" min="1" max="1" chance="33" /> <!-- Wizard Herb -->
<item id="8614" min="1" max="1" chance="34" /> <!-- Herb of Recovery -->
</group>
<group chance="11">
<item id="8611" min="1" max="1" chance="94" /> <!-- Wind Walk Herb -->
<item id="10657" min="1" max="1" chance="6" /> <!-- Mysterious Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="8.4" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="18.9" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="14.7" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="1.1" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="5.94" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.96" /> <!-- Superior Herb of Mana -->
<item id="8606" min="1" max="1" chance="5" /> <!-- Herb of Power -->
<item id="8608" min="1" max="1" chance="5" /> <!-- Haste Herb -->
<item id="8610" min="1" max="1" chance="5" /> <!-- Herb of Critical Attack - Probability -->
<item id="10655" min="1" max="1" chance="5" /> <!-- Herb of HP Drain -->
<item id="10656" min="1" max="1" chance="5" /> <!-- Herb of Critical Attack - Power -->
<item id="8607" min="1" max="1" chance="5" /> <!-- Herb of Magic -->
<item id="8609" min="1" max="1" chance="5" /> <!-- Herb of Casting Spd. -->
<item id="8612" min="1" max="1" chance="0.33" /> <!-- Herb of the Warrior -->
<item id="8613" min="1" max="1" chance="0.33" /> <!-- Wizard Herb -->
<item id="8614" min="1" max="1" chance="0.34" /> <!-- Herb of Recovery -->
<item id="8611" min="1" max="1" chance="10.34" /> <!-- Wind Walk Herb -->
<item id="10657" min="1" max="1" chance="0.66" /> <!-- Mysterious Herb -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -2771,7 +2771,7 @@
<height normal="68" />
</collision>
<drop_lists>
<death>
<drop>
<item id="17404" min="1" max="1" chance="1.074" /> <!-- Seraph Leather Leggings -->
<item id="17398" min="1" max="1" chance="1.043" /> <!-- Seraph Gaiters -->
<item id="17409" min="1" max="1" chance="0.974" /> <!-- Seraph Stockings -->
@@ -2821,7 +2821,7 @@
<item id="35438" min="1" max="1" chance="0.3" /> <!-- Recipe: Seraph Leather Armor (60%) -->
<item id="35439" min="1" max="1" chance="0.3" /> <!-- Recipe: Seraph Leather Leggings (60%) -->
<item id="35430" min="1" max="1" chance="0.3" /> <!-- Recipe: Specter Retributer (60%) -->
</death>
</drop>
</drop_lists>
</npc>
<npc id="3474" level="95" type="L2Monster" name="Super Kat the Cat" title="">
@@ -3003,7 +3003,7 @@
<height normal="37.5" />
</collision>
<drop_lists>
<death>
<drop>
<item id="17308" min="1" max="1" chance="23.3" /> <!-- Immortal Boots -->
<item id="17318" min="1" max="1" chance="22.9" /> <!-- Immortal Gloves -->
<item id="17304" min="1" max="1" chance="16.58" /> <!-- Immortal Helmet -->
@@ -3016,7 +3016,7 @@
<item id="17291" min="1" max="1" chance="1.482" /> <!-- Requiem Cutter -->
<item id="17527" min="1" max="1" chance="46.38" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="17526" min="1" max="1" chance="3.604" /> <!-- Scroll: Enchant Weapon (R-grade) -->
</death>
</drop>
</drop_lists>
</npc>
<npc id="3478" level="87" type="L2Monster" name="Reinforced Kat the Cat" title="">
@@ -3112,7 +3112,7 @@
<height normal="37.5" />
</collision>
<drop_lists>
<death>
<drop>
<item id="17343" min="1" max="1" chance="66.6" /> <!-- Twilight Shield -->
<item id="17339" min="1" max="1" chance="17.44" /> <!-- Twilight Breastplate -->
<item id="17350" min="1" max="1" chance="16.67" /> <!-- Twilight Tunic -->
@@ -3120,7 +3120,7 @@
<item id="17330" min="1" max="1" chance="0.75" /> <!-- Apocalypse Thrower -->
<item id="17527" min="1" max="1" chance="46.65" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="17526" min="1" max="1" chance="3.631" /> <!-- Scroll: Enchant Weapon (R-grade) -->
</death>
</drop>
</drop_lists>
</npc>
<npc id="3480" level="91" type="L2Monster" name="Mind-controlling Feline Queen" title="">
@@ -3216,13 +3216,13 @@
<height normal="37.5" />
</collision>
<drop_lists>
<death>
<drop>
<item id="17352" min="1" max="1" chance="91.435" /> <!-- Twilight Gloves -->
<item id="17347" min="1" max="1" chance="19.86" /> <!-- Twilight Leather Gloves -->
<item id="17330" min="1" max="1" chance="7.489" /> <!-- Apocalypse Thrower -->
<item id="17334" min="1" max="1" chance="1.587" /> <!-- Apocalypse Retributer -->
<item id="17526" min="1" max="1" chance="35.82" /> <!-- Scroll: Enchant Weapon (R-grade) -->
</death>
</drop>
</drop_lists>
</npc>
<npc id="3482" level="93" type="L2Monster" name="Traitorous Mew the Cat" title="">
@@ -63,19 +63,17 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="8.082">
<item id="2397" min="1" max="1" chance="0.37119524870082" /> <!-- Tunic of Zubei -->
<item id="2402" min="1" max="1" chance="0.37119524870082" /> <!-- Stockings of Zubei -->
<item id="2406" min="1" max="1" chance="0.37119524870082" /> <!-- Avadon Robe -->
<item id="4070" min="1" max="1" chance="45.842613214551" /> <!-- Stockings of Zubei Fabric -->
<item id="4069" min="1" max="1" chance="30.623608017817" /> <!-- Tunic of Zubei Fabric -->
<item id="4071" min="1" max="1" chance="22.420193021529" /> <!-- Avadon Robe Fabric -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="2397" min="1" max="1" chance="0.0300000000000003" /> <!-- Tunic of Zubei -->
<item id="2402" min="1" max="1" chance="0.0300000000000003" /> <!-- Stockings of Zubei -->
<item id="2406" min="1" max="1" chance="0.0300000000000003" /> <!-- Avadon Robe -->
<item id="4070" min="1" max="1" chance="3.70500000000001" /> <!-- Stockings of Zubei Fabric -->
<item id="4069" min="1" max="1" chance="2.47499999999997" /> <!-- Tunic of Zubei Fabric -->
<item id="4071" min="1" max="1" chance="1.81199999999997" /> <!-- Avadon Robe Fabric -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="14" />
@@ -2175,20 +2175,16 @@
<s_npc_prop_hp_rate>0.25</s_npc_prop_hp_rate>
<ai type="BALANCED" aggroRange="300" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="70">
<item id="57" min="711" max="1659" chance="100" /> <!-- Adena -->
</group>
<group chance="17.71">
<item id="8787" min="1" max="1" chance="100" /> <!-- Sprigant's Fruit -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="711" max="1659" chance="70" /> <!-- Adena -->
<item id="8787" min="1" max="1" chance="17.71" /> <!-- Sprigant's Fruit -->
</drop>
<spoil>
<item id="36532" min="1" max="1" chance="0.75" /> <!-- Thin Braid -->
<item id="36533" min="1" max="1" chance="0.3" /> <!-- Synthetic Braid -->
<item id="36882" min="1" max="1" chance="0.03" /> <!-- Recipe: Thin Braid - Upgrade -->
<item id="36881" min="1" max="1" chance="0.003" /> <!-- Recipe: Thin Braid - Downgrade -->
</corpse>
</spoil>
</drop_lists>
<collision>
<radius normal="45" />
@@ -3077,27 +3077,17 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="20">
<item id="8600" min="1" max="1" chance="50" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="40" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="10" /> <!-- Superior Herb of Life -->
</group>
<group chance="33">
<item id="8603" min="1" max="1" chance="60" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="30" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="10" /> <!-- Superior Herb of Mana -->
</group>
<group chance="0.7">
<item id="34849" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Power -->
</group>
<group chance="0.7">
<item id="34850" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Magic -->
</group>
<group chance="0.1">
<item id="13028" min="1" max="1" chance="100" /> <!-- Vitality Replenishing Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="10" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="8" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="19.8" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="9.9" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.3" /> <!-- Superior Herb of Mana -->
<item id="34849" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Power -->
<item id="34850" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Magic -->
<item id="13028" min="1" max="1" chance="0.1" /> <!-- Vitality Replenishing Herb -->
</drop>
</drop_lists>
<collision>
<radius normal="8" />
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -271,27 +271,17 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="20">
<item id="8600" min="1" max="1" chance="50" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="40" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="10" /> <!-- Superior Herb of Life -->
</group>
<group chance="33">
<item id="8603" min="1" max="1" chance="60" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="30" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="10" /> <!-- Superior Herb of Mana -->
</group>
<group chance="0.7">
<item id="34849" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Power -->
</group>
<group chance="0.7">
<item id="34850" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Magic -->
</group>
<group chance="0.1">
<item id="13028" min="1" max="1" chance="100" /> <!-- Vitality Replenishing Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="10" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="8" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="19.8" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="9.9" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.3" /> <!-- Superior Herb of Mana -->
<item id="34849" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Power -->
<item id="34850" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Magic -->
<item id="13028" min="1" max="1" chance="0.1" /> <!-- Vitality Replenishing Herb -->
</drop>
</drop_lists>
<collision>
<radius normal="30.5" />
@@ -430,27 +420,17 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="20">
<item id="8600" min="1" max="1" chance="50" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="40" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="10" /> <!-- Superior Herb of Life -->
</group>
<group chance="33">
<item id="8603" min="1" max="1" chance="60" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="30" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="10" /> <!-- Superior Herb of Mana -->
</group>
<group chance="0.7">
<item id="34849" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Power -->
</group>
<group chance="0.7">
<item id="34850" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Magic -->
</group>
<group chance="0.1">
<item id="13028" min="1" max="1" chance="100" /> <!-- Vitality Replenishing Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="10" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="8" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="19.8" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="9.9" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.3" /> <!-- Superior Herb of Mana -->
<item id="34849" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Power -->
<item id="34850" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Magic -->
<item id="13028" min="1" max="1" chance="0.1" /> <!-- Vitality Replenishing Herb -->
</drop>
</drop_lists>
<collision>
<radius normal="25" />
@@ -502,27 +482,17 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="20">
<item id="8600" min="1" max="1" chance="50" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="40" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="10" /> <!-- Superior Herb of Life -->
</group>
<group chance="33">
<item id="8603" min="1" max="1" chance="60" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="30" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="10" /> <!-- Superior Herb of Mana -->
</group>
<group chance="0.7">
<item id="34849" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Power -->
</group>
<group chance="0.7">
<item id="34850" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Magic -->
</group>
<group chance="0.1">
<item id="13028" min="1" max="1" chance="100" /> <!-- Vitality Replenishing Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="10" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="8" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="19.8" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="9.9" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.3" /> <!-- Superior Herb of Mana -->
<item id="34849" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Power -->
<item id="34850" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Magic -->
<item id="13028" min="1" max="1" chance="0.1" /> <!-- Vitality Replenishing Herb -->
</drop>
</drop_lists>
<collision>
<radius normal="30.5" />
@@ -574,27 +544,17 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="20">
<item id="8600" min="1" max="1" chance="50" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="40" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="10" /> <!-- Superior Herb of Life -->
</group>
<group chance="33">
<item id="8603" min="1" max="1" chance="60" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="30" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="10" /> <!-- Superior Herb of Mana -->
</group>
<group chance="0.7">
<item id="34849" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Power -->
</group>
<group chance="0.7">
<item id="34850" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Magic -->
</group>
<group chance="0.1">
<item id="13028" min="1" max="1" chance="100" /> <!-- Vitality Replenishing Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="10" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="8" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="19.8" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="9.9" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.3" /> <!-- Superior Herb of Mana -->
<item id="34849" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Power -->
<item id="34850" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Magic -->
<item id="13028" min="1" max="1" chance="0.1" /> <!-- Vitality Replenishing Herb -->
</drop>
</drop_lists>
<collision>
<radius normal="36.5" />
@@ -4142,15 +4102,13 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="0.303">
<item id="6371" min="1" max="1" chance="0.99009900990099" /> <!-- Demon Splinter -->
<item id="6695" min="1" max="1" chance="99.009900990099" /> <!-- Demon Splinter Blade -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6371" min="1" max="1" chance="0.003" /> <!-- Demon Splinter -->
<item id="6695" min="1" max="1" chance="0.3" /> <!-- Demon Splinter Blade -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="12" />
File diff suppressed because it is too large Load Diff
+154 -242
View File
@@ -51,27 +51,17 @@
<s_npc_prop_hp_rate>3</s_npc_prop_hp_rate>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="20">
<item id="8600" min="1" max="1" chance="50" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="40" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="10" /> <!-- Superior Herb of Life -->
</group>
<group chance="33">
<item id="8603" min="1" max="1" chance="60" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="30" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="10" /> <!-- Superior Herb of Mana -->
</group>
<group chance="0.7">
<item id="34849" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Power -->
</group>
<group chance="0.7">
<item id="34850" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Magic -->
</group>
<group chance="0.1">
<item id="13028" min="1" max="1" chance="100" /> <!-- Vitality Replenishing Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="10" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="8" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="19.8" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="9.9" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.3" /> <!-- Superior Herb of Mana -->
<item id="34849" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Power -->
<item id="34850" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Magic -->
<item id="13028" min="1" max="1" chance="0.1" /> <!-- Vitality Replenishing Herb -->
</drop>
</drop_lists>
<collision>
<radius normal="34" />
@@ -358,44 +348,32 @@
<ex_crt_effect>false</ex_crt_effect>
<ai aggroRange="300" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="1.8054">
<item id="15703" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Moirai Gauntlets -->
<item id="15704" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Moirai Leather Gloves -->
<item id="15705" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Moirai Gloves -->
<item id="15706" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Moirai Boots -->
<item id="15707" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Moirai Leather Boots -->
<item id="15708" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Moirai Shoes -->
<item id="15654" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Moirai Gauntlets Piece -->
<item id="15655" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Moirai Leather Gloves Piece -->
<item id="15656" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Moirai Gloves Piece -->
<item id="15657" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Moirai Boots Piece -->
<item id="15658" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Moirai Leather Boots Piece -->
<item id="15659" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Moirai Shoes Piece -->
</group>
<group chance="20">
<item id="8600" min="1" max="1" chance="50" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="40" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="10" /> <!-- Superior Herb of Life -->
</group>
<group chance="33">
<item id="8603" min="1" max="1" chance="60" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="30" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="10" /> <!-- Superior Herb of Mana -->
</group>
<group chance="0.7">
<item id="34849" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Power -->
</group>
<group chance="0.7">
<item id="34850" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Magic -->
</group>
<group chance="0.1">
<item id="13028" min="1" max="1" chance="100" /> <!-- Vitality Replenishing Herb -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="15703" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Moirai Gauntlets -->
<item id="15704" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Moirai Leather Gloves -->
<item id="15705" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Moirai Gloves -->
<item id="15706" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Moirai Boots -->
<item id="15707" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Moirai Leather Boots -->
<item id="15708" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Moirai Shoes -->
<item id="15654" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Moirai Gauntlets Piece -->
<item id="15655" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Moirai Leather Gloves Piece -->
<item id="15656" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Moirai Gloves Piece -->
<item id="15657" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Moirai Boots Piece -->
<item id="15658" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Moirai Leather Boots Piece -->
<item id="15659" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Moirai Shoes Piece -->
<item id="8600" min="1" max="1" chance="10" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="8" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="19.8" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="9.9" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.3" /> <!-- Superior Herb of Mana -->
<item id="34849" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Power -->
<item id="34850" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Magic -->
<item id="13028" min="1" max="1" chance="0.1" /> <!-- Vitality Replenishing Herb -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="29" />
@@ -447,44 +425,30 @@
<ex_crt_effect>false</ex_crt_effect>
<ai aggroRange="300" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="0.003">
<item id="15710" min="1" max="1" chance="100" /> <!-- Sealed Moirai Shield -->
</group>
<group chance="1.5057">
<item id="15709" min="1" max="1" chance="0.19924287706714" /> <!-- Sealed Moirai Sigil -->
<item id="15694" min="1" max="1" chance="0.059772863120143" /> <!-- Sealed Moirai Helmet -->
<item id="15695" min="1" max="1" chance="0.059772863120143" /> <!-- Sealed Moirai Leather Helmet -->
<item id="15696" min="1" max="1" chance="0.059772863120143" /> <!-- Sealed Moirai Circlet -->
<item id="15645" min="1" max="1" chance="19.924287706714" /> <!-- Sealed Moirai Helmet Piece -->
<item id="15646" min="1" max="1" chance="19.924287706714" /> <!-- Sealed Moirai Leather Helmet Piece -->
<item id="15647" min="1" max="1" chance="19.924287706714" /> <!-- Sealed Moirai Circlet Piece -->
<item id="15692" min="1" max="1" chance="19.924287706714" /> <!-- Sealed Moirai Sigil Piece -->
<item id="15693" min="1" max="1" chance="19.924287706714" /> <!-- Sealed Moirai Shield Fragment -->
</group>
<group chance="20">
<item id="8600" min="1" max="1" chance="50" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="40" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="10" /> <!-- Superior Herb of Life -->
</group>
<group chance="33">
<item id="8603" min="1" max="1" chance="60" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="30" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="10" /> <!-- Superior Herb of Mana -->
</group>
<group chance="0.7">
<item id="34849" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Power -->
</group>
<group chance="0.7">
<item id="34850" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Magic -->
</group>
<group chance="0.1">
<item id="13028" min="1" max="1" chance="100" /> <!-- Vitality Replenishing Herb -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="15710" min="1" max="1" chance="0.003" /> <!-- Sealed Moirai Shield -->
<item id="15709" min="1" max="1" chance="0.00299999999999993" /> <!-- Sealed Moirai Sigil -->
<item id="15694" min="1" max="1" chance="0.000899999999999993" /> <!-- Sealed Moirai Helmet -->
<item id="15695" min="1" max="1" chance="0.000899999999999993" /> <!-- Sealed Moirai Leather Helmet -->
<item id="15696" min="1" max="1" chance="0.000899999999999993" /> <!-- Sealed Moirai Circlet -->
<item id="15645" min="1" max="1" chance="0.299999999999993" /> <!-- Sealed Moirai Helmet Piece -->
<item id="15646" min="1" max="1" chance="0.299999999999993" /> <!-- Sealed Moirai Leather Helmet Piece -->
<item id="15647" min="1" max="1" chance="0.299999999999993" /> <!-- Sealed Moirai Circlet Piece -->
<item id="15692" min="1" max="1" chance="0.299999999999993" /> <!-- Sealed Moirai Sigil Piece -->
<item id="15693" min="1" max="1" chance="0.299999999999993" /> <!-- Sealed Moirai Shield Fragment -->
<item id="8600" min="1" max="1" chance="10" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="8" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="19.8" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="9.9" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.3" /> <!-- Superior Herb of Mana -->
<item id="34849" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Power -->
<item id="34850" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Magic -->
<item id="13028" min="1" max="1" chance="0.1" /> <!-- Vitality Replenishing Herb -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="27" />
@@ -586,25 +550,23 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="1.8054">
<item id="14109" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Vesper Gauntlets -->
<item id="14110" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Vesper Boots -->
<item id="14113" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Vesper Leather Gloves -->
<item id="14114" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Vesper Leather Boots -->
<item id="14116" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Vesper Gloves -->
<item id="14117" min="1" max="1" chance="0.049850448654038" /> <!-- Sealed Vesper Shoes -->
<item id="15667" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Vesper Gauntlets Piece -->
<item id="15668" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Vesper Boots Piece -->
<item id="15671" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Vesper Leather Gloves Piece -->
<item id="15672" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Vesper Leather Boots Piece -->
<item id="15674" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Vesper Gloves Piece -->
<item id="15675" min="1" max="1" chance="16.616816218013" /> <!-- Sealed Vesper Shoes Piece -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="14109" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Vesper Gauntlets -->
<item id="14110" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Vesper Boots -->
<item id="14113" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Vesper Leather Gloves -->
<item id="14114" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Vesper Leather Boots -->
<item id="14116" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Vesper Gloves -->
<item id="14117" min="1" max="1" chance="0.000900000000000002" /> <!-- Sealed Vesper Shoes -->
<item id="15667" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Vesper Gauntlets Piece -->
<item id="15668" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Vesper Boots Piece -->
<item id="15671" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Vesper Leather Gloves Piece -->
<item id="15672" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Vesper Leather Boots Piece -->
<item id="15674" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Vesper Gloves Piece -->
<item id="15675" min="1" max="1" chance="0.300000000000007" /> <!-- Sealed Vesper Shoes Piece -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="12" />
@@ -658,25 +620,23 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="1.818">
<item id="14109" min="1" max="1" chance="0.16501650165017" /> <!-- Sealed Vesper Gauntlets -->
<item id="14110" min="1" max="1" chance="0.16501650165017" /> <!-- Sealed Vesper Boots -->
<item id="14113" min="1" max="1" chance="0.16501650165017" /> <!-- Sealed Vesper Leather Gloves -->
<item id="14114" min="1" max="1" chance="0.16501650165017" /> <!-- Sealed Vesper Leather Boots -->
<item id="14116" min="1" max="1" chance="0.16501650165017" /> <!-- Sealed Vesper Gloves -->
<item id="14117" min="1" max="1" chance="0.16501650165017" /> <!-- Sealed Vesper Shoes -->
<item id="15667" min="1" max="1" chance="16.501650165016" /> <!-- Sealed Vesper Gauntlets Piece -->
<item id="15668" min="1" max="1" chance="16.501650165016" /> <!-- Sealed Vesper Boots Piece -->
<item id="15671" min="1" max="1" chance="16.501650165016" /> <!-- Sealed Vesper Leather Gloves Piece -->
<item id="15672" min="1" max="1" chance="16.501650165016" /> <!-- Sealed Vesper Leather Boots Piece -->
<item id="15674" min="1" max="1" chance="16.501650165016" /> <!-- Sealed Vesper Gloves Piece -->
<item id="15675" min="1" max="1" chance="16.501650165016" /> <!-- Sealed Vesper Shoes Piece -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="14109" min="1" max="1" chance="0.00300000000000009" /> <!-- Sealed Vesper Gauntlets -->
<item id="14110" min="1" max="1" chance="0.00300000000000009" /> <!-- Sealed Vesper Boots -->
<item id="14113" min="1" max="1" chance="0.00300000000000009" /> <!-- Sealed Vesper Leather Gloves -->
<item id="14114" min="1" max="1" chance="0.00300000000000009" /> <!-- Sealed Vesper Leather Boots -->
<item id="14116" min="1" max="1" chance="0.00300000000000009" /> <!-- Sealed Vesper Gloves -->
<item id="14117" min="1" max="1" chance="0.00300000000000009" /> <!-- Sealed Vesper Shoes -->
<item id="15667" min="1" max="1" chance="0.299999999999991" /> <!-- Sealed Vesper Gauntlets Piece -->
<item id="15668" min="1" max="1" chance="0.299999999999991" /> <!-- Sealed Vesper Boots Piece -->
<item id="15671" min="1" max="1" chance="0.299999999999991" /> <!-- Sealed Vesper Leather Gloves Piece -->
<item id="15672" min="1" max="1" chance="0.299999999999991" /> <!-- Sealed Vesper Leather Boots Piece -->
<item id="15674" min="1" max="1" chance="0.299999999999991" /> <!-- Sealed Vesper Gloves Piece -->
<item id="15675" min="1" max="1" chance="0.299999999999991" /> <!-- Sealed Vesper Shoes Piece -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="14" />
@@ -2953,33 +2913,23 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="70">
<item id="57" min="4118" max="9597" chance="100" /> <!-- Adena -->
</group>
<group chance="0.003">
<item id="17401" min="1" max="1" chance="100" /> <!-- Seraph Shield -->
</group>
<group chance="0.006">
<item id="17402" min="1" max="1" chance="50" /> <!-- Seraph Leather Helmet -->
<item id="17412" min="1" max="1" chance="50" /> <!-- Seraph Sigil -->
</group>
<group chance="0.075">
<item id="35325" min="1" max="1" chance="100" /> <!-- Seraph Earring Gem -->
</group>
<group chance="0.0355">
<item id="17526" min="1" max="1" chance="84.507042253521" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="36942" min="1" max="1" chance="15.492957746479" /> <!-- Recipe: Synthetic Cokes - Upgrade -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="4118" max="9597" chance="70" /> <!-- Adena -->
<item id="17401" min="1" max="1" chance="0.003" /> <!-- Seraph Shield -->
<item id="17402" min="1" max="1" chance="0.003" /> <!-- Seraph Leather Helmet -->
<item id="17412" min="1" max="1" chance="0.003" /> <!-- Seraph Sigil -->
<item id="35325" min="1" max="1" chance="0.075" /> <!-- Seraph Earring Gem -->
<item id="17526" min="1" max="1" chance="0.03" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="36942" min="1" max="1" chance="0.00550000000000004" /> <!-- Recipe: Synthetic Cokes - Upgrade -->
</drop>
<spoil>
<item id="36533" min="1" max="1" chance="0.75" /> <!-- Synthetic Braid -->
<item id="36534" min="1" max="1" chance="0.3" /> <!-- Durable Braid -->
<item id="36884" min="1" max="1" chance="0.03" /> <!-- Recipe: Synthetic Braid - Upgrade -->
<item id="36883" min="1" max="1" chance="0.003" /> <!-- Recipe: Synthetic Braid - Downgrade -->
<item id="36886" min="1" max="1" chance="0.003" /> <!-- Recipe: Durable Braid - Upgrade -->
<item id="36885" min="1" max="1" chance="0.0009" /> <!-- Recipe: Durable Braid - Downgrade -->
</corpse>
</spoil>
</drop_lists>
<collision>
<radius normal="18" />
@@ -3036,30 +2986,24 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="70">
<item id="57" min="4118" max="9597" chance="100" /> <!-- Adena -->
</group>
<group chance="0.009">
<item id="17397" min="1" max="1" chance="33.333333333333" /> <!-- Seraph Breastplate -->
<item id="17404" min="1" max="1" chance="33.333333333333" /> <!-- Seraph Leather Leggings -->
<item id="17408" min="1" max="1" chance="33.333333333333" /> <!-- Seraph Tunic -->
</group>
<group chance="0.1089">
<item id="17527" min="1" max="1" chance="68.870523415978" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="9555" min="1" max="1" chance="27.548209366391" /> <!-- Wind Crystal -->
<item id="35427" min="1" max="1" chance="2.7548209366391" /> <!-- Recipe: Specter Shooter (60%) -->
<item id="36944" min="1" max="1" chance="0.82644628099174" /> <!-- Recipe: Greater Synthetic Cokes - Upgrade -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="4118" max="9597" chance="70" /> <!-- Adena -->
<item id="17397" min="1" max="1" chance="0.00299999999999997" /> <!-- Seraph Breastplate -->
<item id="17404" min="1" max="1" chance="0.00299999999999997" /> <!-- Seraph Leather Leggings -->
<item id="17408" min="1" max="1" chance="0.00299999999999997" /> <!-- Seraph Tunic -->
<item id="17527" min="1" max="1" chance="0.075" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="9555" min="1" max="1" chance="0.0299999999999998" /> <!-- Wind Crystal -->
<item id="35427" min="1" max="1" chance="0.00299999999999998" /> <!-- Recipe: Specter Shooter (60%) -->
<item id="36944" min="1" max="1" chance="0.000900000000000005" /> <!-- Recipe: Greater Synthetic Cokes - Upgrade -->
</drop>
<spoil>
<item id="36533" min="1" max="1" chance="0.75" /> <!-- Synthetic Braid -->
<item id="36534" min="1" max="1" chance="0.3" /> <!-- Durable Braid -->
<item id="36884" min="1" max="1" chance="0.03" /> <!-- Recipe: Synthetic Braid - Upgrade -->
<item id="36883" min="1" max="1" chance="0.003" /> <!-- Recipe: Synthetic Braid - Downgrade -->
<item id="36886" min="1" max="1" chance="0.003" /> <!-- Recipe: Durable Braid - Upgrade -->
<item id="36885" min="1" max="1" chance="0.0009" /> <!-- Recipe: Durable Braid - Downgrade -->
</corpse>
</spoil>
</drop_lists>
<collision>
<radius normal="18" />
@@ -3116,31 +3060,21 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="70">
<item id="57" min="4118" max="9597" chance="100" /> <!-- Adena -->
</group>
<group chance="0.0055">
<item id="17401" min="1" max="1" chance="100" /> <!-- Seraph Shield -->
</group>
<group chance="0.0055">
<item id="17412" min="1" max="1" chance="100" /> <!-- Seraph Sigil -->
</group>
<group chance="0.075">
<item id="35325" min="1" max="1" chance="100" /> <!-- Seraph Earring Gem -->
</group>
<group chance="0.03">
<item id="17526" min="1" max="1" chance="100" /> <!-- Scroll: Enchant Weapon (R-grade) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="4118" max="9597" chance="70" /> <!-- Adena -->
<item id="17401" min="1" max="1" chance="0.0055" /> <!-- Seraph Shield -->
<item id="17412" min="1" max="1" chance="0.0055" /> <!-- Seraph Sigil -->
<item id="35325" min="1" max="1" chance="0.075" /> <!-- Seraph Earring Gem -->
<item id="17526" min="1" max="1" chance="0.03" /> <!-- Scroll: Enchant Weapon (R-grade) -->
</drop>
<spoil>
<item id="36533" min="1" max="1" chance="0.75" /> <!-- Synthetic Braid -->
<item id="36534" min="1" max="1" chance="0.3" /> <!-- Durable Braid -->
<item id="36884" min="1" max="1" chance="0.03" /> <!-- Recipe: Synthetic Braid - Upgrade -->
<item id="36883" min="1" max="1" chance="0.003" /> <!-- Recipe: Synthetic Braid - Downgrade -->
<item id="36886" min="1" max="1" chance="0.003" /> <!-- Recipe: Durable Braid - Upgrade -->
<item id="36885" min="1" max="1" chance="0.0009" /> <!-- Recipe: Durable Braid - Downgrade -->
</corpse>
</spoil>
</drop_lists>
<collision>
<radius normal="18" />
@@ -3197,28 +3131,22 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="70">
<item id="57" min="4118" max="9597" chance="100" /> <!-- Adena -->
</group>
<group chance="0.009">
<item id="17397" min="1" max="1" chance="33.333333333333" /> <!-- Seraph Breastplate -->
<item id="17404" min="1" max="1" chance="33.333333333333" /> <!-- Seraph Leather Leggings -->
<item id="17408" min="1" max="1" chance="33.333333333333" /> <!-- Seraph Tunic -->
</group>
<group chance="0.033">
<item id="9555" min="1" max="1" chance="90.909090909091" /> <!-- Wind Crystal -->
<item id="35427" min="1" max="1" chance="9.0909090909091" /> <!-- Recipe: Specter Shooter (60%) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="4118" max="9597" chance="70" /> <!-- Adena -->
<item id="17397" min="1" max="1" chance="0.00299999999999997" /> <!-- Seraph Breastplate -->
<item id="17404" min="1" max="1" chance="0.00299999999999997" /> <!-- Seraph Leather Leggings -->
<item id="17408" min="1" max="1" chance="0.00299999999999997" /> <!-- Seraph Tunic -->
<item id="9555" min="1" max="1" chance="0.03" /> <!-- Wind Crystal -->
<item id="35427" min="1" max="1" chance="0.003" /> <!-- Recipe: Specter Shooter (60%) -->
</drop>
<spoil>
<item id="36533" min="1" max="1" chance="0.75" /> <!-- Synthetic Braid -->
<item id="36534" min="1" max="1" chance="0.3" /> <!-- Durable Braid -->
<item id="36884" min="1" max="1" chance="0.03" /> <!-- Recipe: Synthetic Braid - Upgrade -->
<item id="36883" min="1" max="1" chance="0.003" /> <!-- Recipe: Synthetic Braid - Downgrade -->
<item id="36886" min="1" max="1" chance="0.003" /> <!-- Recipe: Durable Braid - Upgrade -->
<item id="36885" min="1" max="1" chance="0.0009" /> <!-- Recipe: Durable Braid - Downgrade -->
</corpse>
</spoil>
</drop_lists>
<collision>
<radius normal="18" />
@@ -3275,26 +3203,18 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="70">
<item id="57" min="4109" max="9597" chance="100" /> <!-- Adena -->
</group>
<group chance="0.0027">
<item id="17398" min="1" max="1" chance="33.333333333333" /> <!-- Seraph Gaiters -->
<item id="17403" min="1" max="1" chance="33.333333333333" /> <!-- Seraph Leather Armor -->
<item id="17409" min="1" max="1" chance="33.333333333333" /> <!-- Seraph Stockings -->
</group>
<group chance="0.3">
<item id="35326" min="1" max="1" chance="100" /> <!-- Seraph Ring Gem -->
</group>
<group chance="0.033">
<item id="30424" min="1" max="1" chance="90.909090909091" /> <!-- Recipe: Spiritshot (R-grade) -->
<item id="17526" min="1" max="1" chance="9.0909090909091" /> <!-- Scroll: Enchant Weapon (R-grade) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="4109" max="9597" chance="70" /> <!-- Adena -->
<item id="17398" min="1" max="1" chance="0.000899999999999991" /> <!-- Seraph Gaiters -->
<item id="17403" min="1" max="1" chance="0.000899999999999991" /> <!-- Seraph Leather Armor -->
<item id="17409" min="1" max="1" chance="0.000899999999999991" /> <!-- Seraph Stockings -->
<item id="35326" min="1" max="1" chance="0.3" /> <!-- Seraph Ring Gem -->
<item id="30424" min="1" max="1" chance="0.03" /> <!-- Recipe: Spiritshot (R-grade) -->
<item id="17526" min="1" max="1" chance="0.003" /> <!-- Scroll: Enchant Weapon (R-grade) -->
</drop>
<spoil>
<item id="17412" min="1" max="1" chance="0.03" /> <!-- Seraph Sigil -->
</corpse>
</spoil>
</drop_lists>
<collision>
<radius normal="18" />
@@ -3351,25 +3271,17 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="70">
<item id="57" min="4109" max="9597" chance="100" /> <!-- Adena -->
</group>
<group chance="0.603">
<item id="17401" min="1" max="1" chance="0.49751243781095" /> <!-- Seraph Shield -->
<item id="35301" min="1" max="1" chance="49.751243781095" /> <!-- Specter Stormer Fragment -->
<item id="35304" min="1" max="1" chance="49.751243781095" /> <!-- Specter Buster Fragment -->
</group>
<group chance="0.003">
<item id="17412" min="1" max="1" chance="100" /> <!-- Seraph Sigil -->
</group>
<group chance="0.075">
<item id="9557" min="1" max="1" chance="100" /> <!-- Holy Crystal -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="4109" max="9597" chance="70" /> <!-- Adena -->
<item id="17401" min="1" max="1" chance="0.00300000000000003" /> <!-- Seraph Shield -->
<item id="35301" min="1" max="1" chance="0.300000000000003" /> <!-- Specter Stormer Fragment -->
<item id="35304" min="1" max="1" chance="0.300000000000003" /> <!-- Specter Buster Fragment -->
<item id="17412" min="1" max="1" chance="0.003" /> <!-- Seraph Sigil -->
<item id="9557" min="1" max="1" chance="0.075" /> <!-- Holy Crystal -->
</drop>
<spoil>
<item id="17403" min="1" max="1" chance="0.0055" /> <!-- Seraph Leather Armor -->
</corpse>
</spoil>
</drop_lists>
<collision>
<radius normal="18" />
@@ -1747,7 +1747,7 @@
</skill_list>
<ai aggroRange="300" isAggressive="true" clanHelpRange="300" />
<drop_lists>
<death>
<drop>
<item id="17623" min="1" max="1" chance="10.047" /> <!-- Earth Wyrm Heart Ring -->
<item id="17422" min="1" max="1" chance="9.133" /> <!-- Helios Thrower -->
<item id="17425" min="1" max="1" chance="9.106" /> <!-- Helios Caster -->
@@ -1831,11 +1831,11 @@
<item id="39483" min="1" max="1" chance="3.31" /> <!-- Alchemic Tome: Enchant Scroll -->
<item id="46449" min="1" max="1" chance="3.275" /> <!-- Kain's Soul Crystal - Stage 6 -->
<item id="39485" min="1" max="1" chance="3.266" /> <!-- Alchemic Tome: Dye -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
<item id="40198" min="1" max="1" chance="2.518" /> <!-- Disassembly Recipe Pouch: Armor -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="500" />
@@ -529,12 +529,10 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="4.675">
<item id="17527" min="1" max="1" chance="93.582887700535" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="17526" min="1" max="1" chance="6.4171122994652" /> <!-- Scroll: Enchant Weapon (R-grade) -->
</group>
</death>
<drop>
<item id="17527" min="1" max="1" chance="4.37500000000001" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="17526" min="1" max="1" chance="0.299999999999998" /> <!-- Scroll: Enchant Weapon (R-grade) -->
</drop>
</drop_lists>
<collision>
<radius normal="20" />
@@ -3440,11 +3438,9 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="4.961">
<item id="17376" min="1" max="1" chance="100" /> <!-- Trace of Kimerian's Cavern -->
</group>
</death>
<drop>
<item id="17376" min="1" max="1" chance="4.961" /> <!-- Trace of Kimerian's Cavern -->
</drop>
</drop_lists>
<collision>
<radius normal="15" />
@@ -302,27 +302,17 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="450" />
<drop_lists>
<death>
<group chance="20">
<item id="8600" min="1" max="1" chance="50" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="40" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="10" /> <!-- Superior Herb of Life -->
</group>
<group chance="33">
<item id="8603" min="1" max="1" chance="60" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="30" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="10" /> <!-- Superior Herb of Mana -->
</group>
<group chance="0.7">
<item id="34849" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Power -->
</group>
<group chance="0.7">
<item id="34850" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Magic -->
</group>
<group chance="0.1">
<item id="13028" min="1" max="1" chance="100" /> <!-- Vitality Replenishing Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="10" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="8" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="19.8" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="9.9" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.3" /> <!-- Superior Herb of Mana -->
<item id="34849" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Power -->
<item id="34850" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Magic -->
<item id="13028" min="1" max="1" chance="0.1" /> <!-- Vitality Replenishing Herb -->
</drop>
</drop_lists>
<collision>
<radius normal="12" />
@@ -365,27 +355,17 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="450" />
<drop_lists>
<death>
<group chance="20">
<item id="8600" min="1" max="1" chance="50" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="40" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="10" /> <!-- Superior Herb of Life -->
</group>
<group chance="33">
<item id="8603" min="1" max="1" chance="60" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="30" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="10" /> <!-- Superior Herb of Mana -->
</group>
<group chance="0.7">
<item id="34849" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Power -->
</group>
<group chance="0.7">
<item id="34850" min="1" max="1" chance="100" /> <!-- Mysterious Herb of Magic -->
</group>
<group chance="0.1">
<item id="13028" min="1" max="1" chance="100" /> <!-- Vitality Replenishing Herb -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="10" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="8" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="19.8" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="9.9" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="3.3" /> <!-- Superior Herb of Mana -->
<item id="34849" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Power -->
<item id="34850" min="1" max="1" chance="0.7" /> <!-- Mysterious Herb of Magic -->
<item id="13028" min="1" max="1" chance="0.1" /> <!-- Vitality Replenishing Herb -->
</drop>
</drop_lists>
<collision>
<radius normal="12" />
@@ -41,11 +41,9 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="4.939">
<item id="17375" min="1" max="1" chance="100" /> <!-- Kimerian's Trace -->
</group>
</death>
<drop>
<item id="17375" min="1" max="1" chance="4.939" /> <!-- Kimerian's Trace -->
</drop>
</drop_lists>
<collision>
<radius normal="15" />
@@ -1764,34 +1762,28 @@
</stats>
<status attackable="false" />
<drop_lists>
<death>
<group chance="70">
<item id="57" min="1262" max="2944" chance="100" /> <!-- Adena -->
</group>
<group chance="0.0165">
<item id="35337" min="1" max="1" chance="33.333333333333" /> <!-- Amaranthine Retributer Fragment -->
<item id="35336" min="1" max="1" chance="33.333333333333" /> <!-- Amaranthine Caster Fragment -->
<item id="35335" min="1" max="1" chance="33.333333333333" /> <!-- Amaranthine Buster Fragment -->
</group>
<group chance="0.0499">
<item id="36519" min="1" max="1" chance="60.120240480962" /> <!-- Quality Leather -->
<item id="9554" min="1" max="1" chance="6.0120240480962" /> <!-- Earth Crystal -->
<item id="9552" min="1" max="1" chance="6.0120240480962" /> <!-- Fire Crystal -->
<item id="17527" min="1" max="1" chance="11.022044088176" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="9556" min="1" max="1" chance="6.0120240480962" /> <!-- Dark Crystal -->
<item id="19447" min="1" max="1" chance="1.8036072144289" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="17526" min="1" max="1" chance="1.8036072144289" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="35459" min="1" max="1" chance="1.8036072144289" /> <!-- Recipe: Amaranthine Buster (60%) -->
<item id="35460" min="1" max="1" chance="1.8036072144289" /> <!-- Recipe: Amaranthine Caster (60%) -->
<item id="35461" min="1" max="1" chance="1.8036072144289" /> <!-- Recipe: Amaranthine Retributer (60%) -->
<item id="19448" min="1" max="1" chance="1.8036072144289" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="1262" max="2944" chance="70" /> <!-- Adena -->
<item id="35337" min="1" max="1" chance="0.00549999999999995" /> <!-- Amaranthine Retributer Fragment -->
<item id="35336" min="1" max="1" chance="0.00549999999999995" /> <!-- Amaranthine Caster Fragment -->
<item id="35335" min="1" max="1" chance="0.00549999999999995" /> <!-- Amaranthine Buster Fragment -->
<item id="36519" min="1" max="1" chance="0.03" /> <!-- Quality Leather -->
<item id="9554" min="1" max="1" chance="0.003" /> <!-- Earth Crystal -->
<item id="9552" min="1" max="1" chance="0.003" /> <!-- Fire Crystal -->
<item id="17527" min="1" max="1" chance="0.00549999999999982" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="9556" min="1" max="1" chance="0.003" /> <!-- Dark Crystal -->
<item id="19447" min="1" max="1" chance="0.000900000000000021" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="17526" min="1" max="1" chance="0.000900000000000021" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="35459" min="1" max="1" chance="0.000900000000000021" /> <!-- Recipe: Amaranthine Buster (60%) -->
<item id="35460" min="1" max="1" chance="0.000900000000000021" /> <!-- Recipe: Amaranthine Caster (60%) -->
<item id="35461" min="1" max="1" chance="0.000900000000000021" /> <!-- Recipe: Amaranthine Retributer (60%) -->
<item id="19448" min="1" max="1" chance="0.000900000000000021" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
</drop>
<spoil>
<item id="36534" min="1" max="1" chance="0.075" /> <!-- Durable Braid -->
<item id="36886" min="1" max="1" chance="0.003" /> <!-- Recipe: Durable Braid - Upgrade -->
<item id="36885" min="1" max="1" chance="0.0009" /> <!-- Recipe: Durable Braid - Downgrade -->
</corpse>
</spoil>
</drop_lists>
<collision>
<radius normal="14" />
@@ -1826,30 +1818,24 @@
<skill id="4416" level="8" /> <!-- Angels -->
</skill_list>
<drop_lists>
<death>
<group chance="70">
<item id="57" min="2737" max="6389" chance="100" /> <!-- Adena -->
</group>
<group chance="0.09">
<item id="35335" min="1" max="1" chance="33.333333333333" /> <!-- Amaranthine Buster Fragment -->
<item id="35336" min="1" max="1" chance="33.333333333333" /> <!-- Amaranthine Caster Fragment -->
<item id="35337" min="1" max="1" chance="33.333333333333" /> <!-- Amaranthine Retributer Fragment -->
</group>
<group chance="0.0357">
<item id="17527" min="1" max="1" chance="84.033613445378" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="17526" min="1" max="1" chance="8.4033613445378" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="35459" min="1" max="1" chance="2.5210084033613" /> <!-- Recipe: Amaranthine Buster (60%) -->
<item id="35460" min="1" max="1" chance="2.5210084033613" /> <!-- Recipe: Amaranthine Caster (60%) -->
<item id="35461" min="1" max="1" chance="2.5210084033613" /> <!-- Recipe: Amaranthine Retributer (60%) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="2737" max="6389" chance="70" /> <!-- Adena -->
<item id="35335" min="1" max="1" chance="0.0299999999999997" /> <!-- Amaranthine Buster Fragment -->
<item id="35336" min="1" max="1" chance="0.0299999999999997" /> <!-- Amaranthine Caster Fragment -->
<item id="35337" min="1" max="1" chance="0.0299999999999997" /> <!-- Amaranthine Retributer Fragment -->
<item id="17527" min="1" max="1" chance="0.0299999999999999" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="17526" min="1" max="1" chance="0.00299999999999999" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="35459" min="1" max="1" chance="0.000899999999999984" /> <!-- Recipe: Amaranthine Buster (60%) -->
<item id="35460" min="1" max="1" chance="0.000899999999999984" /> <!-- Recipe: Amaranthine Caster (60%) -->
<item id="35461" min="1" max="1" chance="0.000899999999999984" /> <!-- Recipe: Amaranthine Retributer (60%) -->
</drop>
<spoil>
<item id="36534" min="1" max="1" chance="0.075" /> <!-- Durable Braid -->
<item id="36535" min="1" max="1" chance="0.0055" /> <!-- Quality Braid -->
<item id="36886" min="1" max="1" chance="0.003" /> <!-- Recipe: Durable Braid - Upgrade -->
<item id="36885" min="1" max="1" chance="0.0009" /> <!-- Recipe: Durable Braid - Downgrade -->
<item id="36887" min="1" max="1" chance="0.0009" /> <!-- Recipe: Quality Braid - Upgrade -->
</corpse>
</spoil>
</drop_lists>
<collision>
<radius normal="20" />
@@ -1884,30 +1870,24 @@
<skill id="4416" level="8" /> <!-- Angels -->
</skill_list>
<drop_lists>
<death>
<group chance="70">
<item id="57" min="2737" max="6389" chance="100" /> <!-- Adena -->
</group>
<group chance="0.09">
<item id="35335" min="1" max="1" chance="33.333333333333" /> <!-- Amaranthine Buster Fragment -->
<item id="35336" min="1" max="1" chance="33.333333333333" /> <!-- Amaranthine Caster Fragment -->
<item id="35337" min="1" max="1" chance="33.333333333333" /> <!-- Amaranthine Retributer Fragment -->
</group>
<group chance="0.0357">
<item id="17527" min="1" max="1" chance="84.033613445378" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="17526" min="1" max="1" chance="8.4033613445378" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="35459" min="1" max="1" chance="2.5210084033613" /> <!-- Recipe: Amaranthine Buster (60%) -->
<item id="35460" min="1" max="1" chance="2.5210084033613" /> <!-- Recipe: Amaranthine Caster (60%) -->
<item id="35461" min="1" max="1" chance="2.5210084033613" /> <!-- Recipe: Amaranthine Retributer (60%) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="2737" max="6389" chance="70" /> <!-- Adena -->
<item id="35335" min="1" max="1" chance="0.0299999999999997" /> <!-- Amaranthine Buster Fragment -->
<item id="35336" min="1" max="1" chance="0.0299999999999997" /> <!-- Amaranthine Caster Fragment -->
<item id="35337" min="1" max="1" chance="0.0299999999999997" /> <!-- Amaranthine Retributer Fragment -->
<item id="17527" min="1" max="1" chance="0.0299999999999999" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="17526" min="1" max="1" chance="0.00299999999999999" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="35459" min="1" max="1" chance="0.000899999999999984" /> <!-- Recipe: Amaranthine Buster (60%) -->
<item id="35460" min="1" max="1" chance="0.000899999999999984" /> <!-- Recipe: Amaranthine Caster (60%) -->
<item id="35461" min="1" max="1" chance="0.000899999999999984" /> <!-- Recipe: Amaranthine Retributer (60%) -->
</drop>
<spoil>
<item id="36534" min="1" max="1" chance="0.075" /> <!-- Durable Braid -->
<item id="36535" min="1" max="1" chance="0.0055" /> <!-- Quality Braid -->
<item id="36886" min="1" max="1" chance="0.003" /> <!-- Recipe: Durable Braid - Upgrade -->
<item id="36885" min="1" max="1" chance="0.0009" /> <!-- Recipe: Durable Braid - Downgrade -->
<item id="36887" min="1" max="1" chance="0.0009" /> <!-- Recipe: Quality Braid - Upgrade -->
</corpse>
</spoil>
</drop_lists>
<collision>
<radius normal="25" />
+111 -157
View File
@@ -80,22 +80,18 @@
<skill id="4416" level="6" /> <!-- Humanoids -->
</skill_list>
<drop_lists>
<death>
<group chance="50">
<item id="57" min="1932" max="4501" chance="100" /> <!-- Adena -->
</group>
<group chance="0.075">
<item id="37791" min="1" max="1" chance="100" /> <!-- Sealed Demonic Tome -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="1932" max="4501" chance="50" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.075" /> <!-- Sealed Demonic Tome -->
</drop>
<spoil>
<item id="40049" min="1" max="1" chance="11.28" /> <!-- Scroll: 1,000 SP -->
<item id="40050" min="1" max="1" chance="1.092" /> <!-- Scroll: 10,000 SP -->
<item id="40051" min="1" max="1" chance="0.3" /> <!-- Scroll: 100,000 SP -->
</corpse>
<lucky_corpse>
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="35" />
@@ -126,23 +122,19 @@
<skill id="4416" level="9" /> <!-- Demons -->
</skill_list>
<drop_lists>
<death>
<group chance="50">
<item id="57" min="7209" max="16790" chance="100" /> <!-- Adena -->
</group>
<group chance="0.3055">
<item id="37791" min="1" max="1" chance="98.199672667758" /> <!-- Sealed Demonic Tome -->
<item id="36898" min="1" max="1" chance="1.8003273322422" /> <!-- Recipe: Quality Leather Braid - Combination -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="7209" max="16790" chance="50" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.300000000000001" /> <!-- Sealed Demonic Tome -->
<item id="36898" min="1" max="1" chance="0.00549999999999992" /> <!-- Recipe: Quality Leather Braid - Combination -->
</drop>
<spoil>
<item id="40049" min="1" max="1" chance="41.72" /> <!-- Scroll: 1,000 SP -->
<item id="40050" min="1" max="1" chance="4.181" /> <!-- Scroll: 10,000 SP -->
<item id="40051" min="1" max="1" chance="0.3" /> <!-- Scroll: 100,000 SP -->
</corpse>
<lucky_corpse>
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="16" />
@@ -173,23 +165,19 @@
<skill id="4416" level="9" /> <!-- Demons -->
</skill_list>
<drop_lists>
<death>
<group chance="50">
<item id="57" min="7209" max="16790" chance="100" /> <!-- Adena -->
</group>
<group chance="0.3055">
<item id="37791" min="1" max="1" chance="98.199672667758" /> <!-- Sealed Demonic Tome -->
<item id="36898" min="1" max="1" chance="1.8003273322422" /> <!-- Recipe: Quality Leather Braid - Combination -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="7209" max="16790" chance="50" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.300000000000001" /> <!-- Sealed Demonic Tome -->
<item id="36898" min="1" max="1" chance="0.00549999999999992" /> <!-- Recipe: Quality Leather Braid - Combination -->
</drop>
<spoil>
<item id="40049" min="1" max="1" chance="41.72" /> <!-- Scroll: 1,000 SP -->
<item id="40050" min="1" max="1" chance="4.181" /> <!-- Scroll: 10,000 SP -->
<item id="40051" min="1" max="1" chance="0.3" /> <!-- Scroll: 100,000 SP -->
</corpse>
<lucky_corpse>
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="16" />
@@ -394,23 +382,19 @@
<skill id="4416" level="9" /> <!-- Demons -->
</skill_list>
<drop_lists>
<death>
<group chance="50">
<item id="57" min="7209" max="16790" chance="100" /> <!-- Adena -->
</group>
<group chance="0.3055">
<item id="37791" min="1" max="1" chance="98.199672667758" /> <!-- Sealed Demonic Tome -->
<item id="36898" min="1" max="1" chance="1.8003273322422" /> <!-- Recipe: Quality Leather Braid - Combination -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="7209" max="16790" chance="50" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.300000000000001" /> <!-- Sealed Demonic Tome -->
<item id="36898" min="1" max="1" chance="0.00549999999999992" /> <!-- Recipe: Quality Leather Braid - Combination -->
</drop>
<spoil>
<item id="40049" min="1" max="1" chance="41.72" /> <!-- Scroll: 1,000 SP -->
<item id="40050" min="1" max="1" chance="4.181" /> <!-- Scroll: 10,000 SP -->
<item id="40051" min="1" max="1" chance="0.3" /> <!-- Scroll: 100,000 SP -->
</corpse>
<lucky_corpse>
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="12" />
@@ -442,27 +426,21 @@
<skill id="4416" level="9" /> <!-- Demons -->
</skill_list>
<drop_lists>
<death>
<group chance="50">
<item id="57" min="38746" max="90257" chance="100" /> <!-- Adena -->
</group>
<group chance="0.003">
<item id="17423" min="1" max="1" chance="100" /> <!-- Amaranthine Shooter -->
</group>
<group chance="0.3805">
<item id="37791" min="1" max="1" chance="78.843626806833" /> <!-- Sealed Demonic Tome -->
<item id="37777" min="1" max="1" chance="19.710906701708" /> <!-- Scroll of Blessing Scraps: Weapon (R95-grade) -->
<item id="37774" min="1" max="1" chance="1.4454664914586" /> <!-- Recipe: Scroll of Blessing: Weapon (R95-grade) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="38746" max="90257" chance="50" /> <!-- Adena -->
<item id="17423" min="1" max="1" chance="0.003" /> <!-- Amaranthine Shooter -->
<item id="37791" min="1" max="1" chance="0.3" /> <!-- Sealed Demonic Tome -->
<item id="37777" min="1" max="1" chance="0.0749999999999989" /> <!-- Scroll of Blessing Scraps: Weapon (R95-grade) -->
<item id="37774" min="1" max="1" chance="0.00549999999999997" /> <!-- Recipe: Scroll of Blessing: Weapon (R95-grade) -->
</drop>
<spoil>
<item id="40049" min="1" max="5" chance="74.55" /> <!-- Scroll: 1,000 SP -->
<item id="40050" min="1" max="1" chance="21.74" /> <!-- Scroll: 10,000 SP -->
<item id="40051" min="1" max="1" chance="2.199" /> <!-- Scroll: 100,000 SP -->
</corpse>
<lucky_corpse>
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="15" />
@@ -493,25 +471,21 @@
<skill id="4416" level="9" /> <!-- Demons -->
</skill_list>
<drop_lists>
<death>
<group chance="50">
<item id="57" min="31002" max="72216" chance="100" /> <!-- Adena -->
</group>
<group chance="0.633">
<item id="37786" min="1" max="1" chance="47.39336492891" /> <!-- Scroll of Blessing Scraps: Armor (R95-grade) -->
<item id="37791" min="1" max="1" chance="47.39336492891" /> <!-- Sealed Demonic Tome -->
<item id="37783" min="1" max="1" chance="4.739336492891" /> <!-- Recipe: Scroll of Blessing: Armor (R95-grade) -->
<item id="36921" min="1" max="1" chance="0.4739336492891" /> <!-- Recipe: Weapon Fragment (Top-grade) - Upgrade -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="31002" max="72216" chance="50" /> <!-- Adena -->
<item id="37786" min="1" max="1" chance="0.3" /> <!-- Scroll of Blessing Scraps: Armor (R95-grade) -->
<item id="37791" min="1" max="1" chance="0.3" /> <!-- Sealed Demonic Tome -->
<item id="37783" min="1" max="1" chance="0.03" /> <!-- Recipe: Scroll of Blessing: Armor (R95-grade) -->
<item id="36921" min="1" max="1" chance="0.003" /> <!-- Recipe: Weapon Fragment (Top-grade) - Upgrade -->
</drop>
<spoil>
<item id="40049" min="1" max="3" chance="86.97" /> <!-- Scroll: 1,000 SP -->
<item id="40050" min="1" max="1" chance="18.55" /> <!-- Scroll: 10,000 SP -->
<item id="40051" min="1" max="1" chance="1.79" /> <!-- Scroll: 100,000 SP -->
</corpse>
<lucky_corpse>
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="20" />
@@ -570,27 +544,21 @@
<skill id="4416" level="9" /> <!-- Demons -->
</skill_list>
<drop_lists>
<death>
<group chance="50">
<item id="57" min="38746" max="90257" chance="100" /> <!-- Adena -->
</group>
<group chance="0.003">
<item id="17423" min="1" max="1" chance="100" /> <!-- Amaranthine Shooter -->
</group>
<group chance="0.3805">
<item id="37791" min="1" max="1" chance="78.843626806833" /> <!-- Sealed Demonic Tome -->
<item id="37777" min="1" max="1" chance="19.710906701708" /> <!-- Scroll of Blessing Scraps: Weapon (R95-grade) -->
<item id="37774" min="1" max="1" chance="1.4454664914586" /> <!-- Recipe: Scroll of Blessing: Weapon (R95-grade) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="38746" max="90257" chance="50" /> <!-- Adena -->
<item id="17423" min="1" max="1" chance="0.003" /> <!-- Amaranthine Shooter -->
<item id="37791" min="1" max="1" chance="0.3" /> <!-- Sealed Demonic Tome -->
<item id="37777" min="1" max="1" chance="0.0749999999999989" /> <!-- Scroll of Blessing Scraps: Weapon (R95-grade) -->
<item id="37774" min="1" max="1" chance="0.00549999999999997" /> <!-- Recipe: Scroll of Blessing: Weapon (R95-grade) -->
</drop>
<spoil>
<item id="40049" min="1" max="5" chance="75.47" /> <!-- Scroll: 1,000 SP -->
<item id="40050" min="1" max="1" chance="23.11" /> <!-- Scroll: 10,000 SP -->
<item id="40051" min="1" max="1" chance="2.229" /> <!-- Scroll: 100,000 SP -->
</corpse>
<lucky_corpse>
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="15" />
@@ -621,25 +589,21 @@
<skill id="4416" level="9" /> <!-- Demons -->
</skill_list>
<drop_lists>
<death>
<group chance="50">
<item id="57" min="31002" max="72216" chance="100" /> <!-- Adena -->
</group>
<group chance="0.633">
<item id="37786" min="1" max="1" chance="47.39336492891" /> <!-- Scroll of Blessing Scraps: Armor (R95-grade) -->
<item id="37791" min="1" max="1" chance="47.39336492891" /> <!-- Sealed Demonic Tome -->
<item id="37783" min="1" max="1" chance="4.739336492891" /> <!-- Recipe: Scroll of Blessing: Armor (R95-grade) -->
<item id="36919" min="1" max="1" chance="0.4739336492891" /> <!-- Recipe: Weapon Fragment (High-grade) - Downgrade -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="31002" max="72216" chance="50" /> <!-- Adena -->
<item id="37786" min="1" max="1" chance="0.3" /> <!-- Scroll of Blessing Scraps: Armor (R95-grade) -->
<item id="37791" min="1" max="1" chance="0.3" /> <!-- Sealed Demonic Tome -->
<item id="37783" min="1" max="1" chance="0.03" /> <!-- Recipe: Scroll of Blessing: Armor (R95-grade) -->
<item id="36919" min="1" max="1" chance="0.003" /> <!-- Recipe: Weapon Fragment (High-grade) - Downgrade -->
</drop>
<spoil>
<item id="40049" min="1" max="3" chance="91.49" /> <!-- Scroll: 1,000 SP -->
<item id="40050" min="1" max="1" chance="17.15" /> <!-- Scroll: 10,000 SP -->
<item id="40051" min="1" max="1" chance="1.754" /> <!-- Scroll: 100,000 SP -->
</corpse>
<lucky_corpse>
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="20" />
@@ -969,18 +933,16 @@
<skill id="4416" level="9" /> <!-- Demons -->
</skill_list>
<drop_lists>
<death>
<group chance="32.995">
<item id="40043" min="1" max="1" chance="12.633732383694" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40042" min="1" max="1" chance="12.588270950144" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40045" min="1" max="1" chance="12.588270950144" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40046" min="1" max="1" chance="12.529171086528" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40041" min="1" max="1" chance="12.462494317321" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40044" min="1" max="1" chance="12.462494317321" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40047" min="1" max="1" chance="12.409455978179" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40048" min="1" max="1" chance="12.326110016669" /> <!-- Dimensional Bracelet Enhancement Stone -->
</group>
</death>
<drop>
<item id="40043" min="1" max="1" chance="4.16849999999983" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40042" min="1" max="1" chance="4.15350000000001" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40045" min="1" max="1" chance="4.15350000000001" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40046" min="1" max="1" chance="4.13399999999991" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40041" min="1" max="1" chance="4.11200000000006" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40044" min="1" max="1" chance="4.11200000000006" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40047" min="1" max="1" chance="4.09450000000016" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40048" min="1" max="1" chance="4.06699999999994" /> <!-- Dimensional Bracelet Enhancement Stone -->
</drop>
</drop_lists>
<collision>
<radius normal="8" />
@@ -1007,21 +969,17 @@
<skill id="4416" level="9" /> <!-- Demons -->
</skill_list>
<drop_lists>
<death>
<group chance="49.18">
<item id="40063" min="1" max="4" chance="100" /> <!-- Secret Ancient Tome Fragment -->
</group>
<group chance="100">
<item id="40043" min="1" max="1" chance="13.003372346757" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40047" min="1" max="1" chance="12.874429676651" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40042" min="1" max="1" chance="12.834755008927" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40041" min="1" max="1" chance="12.586788335648" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40045" min="1" max="1" chance="12.289228327713" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40046" min="1" max="1" chance="12.259472326919" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40048" min="1" max="1" chance="12.219797659195" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40044" min="1" max="1" chance="11.932156318191" /> <!-- Dimensional Bracelet Enhancement Stone -->
</group>
</death>
<drop>
<item id="40063" min="1" max="4" chance="49.18" /> <!-- Secret Ancient Tome Fragment -->
<item id="40043" min="1" max="1" chance="13.003372346757" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40047" min="1" max="1" chance="12.874429676651" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40042" min="1" max="1" chance="12.834755008927" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40041" min="1" max="1" chance="12.586788335648" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40045" min="1" max="1" chance="12.289228327713" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40046" min="1" max="1" chance="12.259472326919" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40048" min="1" max="1" chance="12.219797659195" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40044" min="1" max="1" chance="11.932156318191" /> <!-- Dimensional Bracelet Enhancement Stone -->
</drop>
</drop_lists>
<collision>
<radius normal="10" />
@@ -1048,21 +1006,17 @@
<skill id="4416" level="9" /> <!-- Demons -->
</skill_list>
<drop_lists>
<death>
<group chance="48.78">
<item id="40063" min="4" max="8" chance="100" /> <!-- Secret Ancient Tome Fragment -->
</group>
<group chance="99.69">
<item id="40045" min="1" max="2" chance="12.9300832581" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40046" min="1" max="2" chance="12.899989968904" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40048" min="1" max="2" chance="12.548901594944" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40042" min="1" max="2" chance="12.508777209349" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40044" min="1" max="2" chance="12.49874611295" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40047" min="1" max="2" chance="12.478683920152" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40043" min="1" max="2" chance="12.167719931789" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40041" min="1" max="2" chance="11.967098003812" /> <!-- Dimensional Bracelet Enhancement Stone -->
</group>
</death>
<drop>
<item id="40063" min="4" max="8" chance="48.78" /> <!-- Secret Ancient Tome Fragment -->
<item id="40045" min="1" max="2" chance="12.8899999999999" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40046" min="1" max="2" chance="12.8600000000004" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40048" min="1" max="2" chance="12.5099999999997" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40042" min="1" max="2" chance="12.47" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40044" min="1" max="2" chance="12.4599999999999" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40047" min="1" max="2" chance="12.4399999999995" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40043" min="1" max="2" chance="12.1300000000005" /> <!-- Dimensional Bracelet Enhancement Stone -->
<item id="40041" min="1" max="2" chance="11.9300000000002" /> <!-- Dimensional Bracelet Enhancement Stone -->
</drop>
</drop_lists>
<collision>
<radius normal="12" />
@@ -22,17 +22,17 @@
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<drop>
<item id="57" min="6507" max="15209" chance="30" /> <!-- Adena -->
<item id="36530" min="1" max="1" chance="0.075" /> <!-- Exquisite Fiber -->
<item id="35473" min="1" max="1" chance="0.03" /> <!-- Recipe: Eternal Circlet (60%) -->
</death>
<corpse>
</drop>
<spoil>
<item id="36565" min="1" max="1" chance="0.03" /> <!-- Exquisite Synthetic Cokes -->
</corpse>
<lucky_corpse>
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
</npc>
<npc id="19601" level="85" type="L2Npc" name="" title="">
@@ -665,7 +665,7 @@
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<drop>
<item id="47244" min="1" max="1" chance="50.24" /> <!-- Ramonas Fancy Earrings -->
<item id="47128" min="60" max="60" chance="100" /> <!-- Giants Lightning Protection Potion -->
<item id="47129" min="60" max="60" chance="100" /> <!-- Particle Dissolver -->
@@ -734,11 +734,11 @@
<item id="38049" min="1" max="1" chance="0.75" /> <!-- Helios Thrower Crafting Pack -->
<item id="38045" min="1" max="1" chance="0.75" /> <!-- Helios Slasher Crafting Pack -->
<!-- FIXME: Also drops herbs. -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
<item id="40198" min="1" max="1" chance="0.0002452" /> <!-- Disassembly Recipe Pouch: Armor --> <!-- Lucky Drop -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
</npc>
<npc id="19648" level="104" type="L2RaidBoss" name="Ramona">
@@ -770,7 +770,7 @@
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<drop>
<item id="47244" min="1" max="1" chance="50.24" /> <!-- Ramonas Fancy Earrings -->
<item id="47128" min="60" max="60" chance="100" /> <!-- Giants Lightning Protection Potion -->
<item id="47129" min="60" max="60" chance="100" /> <!-- Particle Dissolver -->
@@ -839,11 +839,11 @@
<item id="38049" min="1" max="1" chance="0.75" /> <!-- Helios Thrower Crafting Pack -->
<item id="38045" min="1" max="1" chance="0.75" /> <!-- Helios Slasher Crafting Pack -->
<!-- FIXME: Also drops herbs. -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
<item id="40198" min="1" max="1" chance="0.0002452" /> <!-- Disassembly Recipe Pouch: Armor --> <!-- Lucky Drop -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
</npc>
</list>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -52,20 +52,16 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="70">
<item id="57" min="10" max="24" chance="100" /> <!-- Adena -->
</group>
<group chance="0.003">
<item id="729" min="1" max="1" chance="100" /> <!-- Scroll: Enchant Weapon (A-grade) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="10" max="24" chance="70" /> <!-- Adena -->
<item id="729" min="1" max="1" chance="0.003" /> <!-- Scroll: Enchant Weapon (A-grade) -->
</corpse>
<lucky_corpse>
</drop>
<spoil>
<item id="729" min="1" max="1" chance="0.003" /> <!-- Scroll: Enchant Weapon (A-grade) -->
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="11" />
@@ -121,20 +117,16 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="70">
<item id="57" min="11" max="25" chance="100" /> <!-- Adena -->
</group>
<group chance="0.03">
<item id="730" min="1" max="1" chance="100" /> <!-- Scroll: Enchant Armor (A-grade) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="11" max="25" chance="70" /> <!-- Adena -->
<item id="730" min="1" max="1" chance="0.03" /> <!-- Scroll: Enchant Armor (A-grade) -->
</corpse>
<lucky_corpse>
</drop>
<spoil>
<item id="730" min="1" max="1" chance="0.03" /> <!-- Scroll: Enchant Armor (A-grade) -->
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="30" grown="15.5" />
@@ -194,20 +186,16 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="70">
<item id="57" min="11" max="27" chance="100" /> <!-- Adena -->
</group>
<group chance="0.03">
<item id="730" min="1" max="1" chance="100" /> <!-- Scroll: Enchant Armor (A-grade) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="11" max="27" chance="70" /> <!-- Adena -->
<item id="730" min="1" max="1" chance="0.03" /> <!-- Scroll: Enchant Armor (A-grade) -->
</corpse>
<lucky_corpse>
</drop>
<spoil>
<item id="730" min="1" max="1" chance="0.03" /> <!-- Scroll: Enchant Armor (A-grade) -->
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="11" />
@@ -266,20 +254,16 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="70">
<item id="57" min="11" max="26" chance="100" /> <!-- Adena -->
</group>
<group chance="0.003">
<item id="729" min="1" max="1" chance="100" /> <!-- Scroll: Enchant Weapon (A-grade) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="11" max="26" chance="70" /> <!-- Adena -->
<item id="729" min="1" max="1" chance="0.003" /> <!-- Scroll: Enchant Weapon (A-grade) -->
</corpse>
<lucky_corpse>
</drop>
<spoil>
<item id="729" min="1" max="1" chance="0.003" /> <!-- Scroll: Enchant Weapon (A-grade) -->
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="10" grown="12" />
@@ -338,20 +322,16 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="70">
<item id="57" min="12" max="27" chance="100" /> <!-- Adena -->
</group>
<group chance="0.03">
<item id="730" min="1" max="1" chance="100" /> <!-- Scroll: Enchant Armor (A-grade) -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="12" max="27" chance="70" /> <!-- Adena -->
<item id="730" min="1" max="1" chance="0.03" /> <!-- Scroll: Enchant Armor (A-grade) -->
</corpse>
<lucky_corpse>
</drop>
<spoil>
<item id="730" min="1" max="1" chance="0.03" /> <!-- Scroll: Enchant Armor (A-grade) -->
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="10" />
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+371 -371
View File
@@ -1,372 +1,372 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/npcs.xsd">
<npc id="23800" level="102" type="L2Monster" name="Delta Kshana">
<!-- NEED TO CHECK IF ITS THE SAME STATS AS NPC ID: 23776 -->
<race>GIANT</race>
<acquire exp="547017485" sp="1312842" />
<stats>
<vitals hp="1325641" hpRegen="11.5" mp="23928" mpRegen="3.9" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="11" /> <!-- Giants -->
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="14823" level="1" /> <!-- Lethal Strike Resistance -->
<skill id="16547" level="10" /> <!-- Danger Zone Attack Resistance -->
<skill id="4379" level="5" /> <!-- Spear Resistance -->
<skill id="4438" level="5" /> <!-- Greater Sleep Resistance -->
<skill id="4461" level="1" /> <!-- Dagger/Rapier Vulnerability -->
<skill id="16608" level="1" /> <!-- Servitor Attack Weakness -->
<skill id="4071" level="1" /> <!-- Bow/Crossbow Resistance -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<item id="17434" min="1" max="1" chance="0.03" /> <!-- Eternal Boots -->
<item id="17435" min="1" max="1" chance="0.03" /> <!-- Eternal Shield -->
<item id="57" min="30979" max="72169" chance="70" /> <!-- Adena -->
<item id="36543" min="1" max="1" chance="14.65" /> <!-- Adamantite Wire -->
<item id="47250" min="1" max="1" chance="0.75" /> <!-- Giant Power Crystal -->
<item id="35332" min="1" max="1" chance="0.3" /> <!-- Helios Stormer Fragment -->
<item id="35342" min="1" max="1" chance="0.3" /> <!-- Eternal Boot Ingredient -->
<item id="35343" min="1" max="1" chance="0.3" /> <!-- Eternal Shield Ingredient -->
<item id="36545" min="1" max="1" chance="0.075" /> <!-- Durandil Wire -->
</death>
<corpse>
<item id="36564" min="1" max="1" chance="1.059" /> <!-- Greater Synthetic Cokes -->
<item id="36565" min="1" max="1" chance="0.075" /> <!-- Exquisite Synthetic Cokes -->
</corpse>
<lucky_corpse>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_corpse>
</drop_lists>
</npc>
<npc id="23801" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Lillim Royal Knight ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23802" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Lillim Slayer ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23803" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Gigantic Healer ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23804" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Lillim Great Magus ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23805" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Nephilim Royal Guard ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23806" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Wandering Dead of the Dimension ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23807" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Wandering Dimensional Spirit ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23808" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Lost Soul of the Dimension ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23809" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Lost Dimensional Evil Thoughts ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23810" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Roaming Vengeance of the Dimension ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23811" level="99" type="L2Monster" name="Cantera Tanya">
<race>DEMONIC</race>
<acquire exp="11672991" sp="28015" />
<stats>
<vitals hp="39070" hpRegen="10.5" mp="23550" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="9" /> <!-- Demons -->
<skill id="5462" level="1" /> <!-- Fire Attack -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<item id="57" min="8428" max="19635" chance="10" /> <!-- Adena -->
<item id="37776" min="1" max="1" chance="0.075" /> <!-- Scroll of Blessing Scraps: Weapon (R-grade) -->
<item id="37791" min="1" max="1" chance="0.03" /> <!-- Sealed Demonic Tome -->
<item id="37773" min="1" max="1" chance="0.0075" /> <!-- Recipe: Scroll of Blessing: Weapon (R-grade) -->
</death>
<lucky_corpse>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_corpse>
</drop_lists>
</npc>
<npc id="23812" level="99" type="L2Monster" name="Cantera Deathmoz">
<race>DEMONIC</race>
<acquire exp="11672991" sp="28015" />
<stats>
<vitals hp="39070" hpRegen="10.5" mp="23550" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="9" /> <!-- Demons -->
<skill id="5462" level="1" /> <!-- Fire Attack -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<item id="57" min="8428" max="19635" chance="10" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.03" /> <!-- Sealed Demonic Tome -->
<item id="37778" min="1" max="1" chance="0.003" /> <!-- Scroll of Blessing Scraps: Weapon (R99-grade) -->
<item id="37775" min="1" max="1" chance="0.0009" /> <!-- Recipe: Scroll of Blessing: Weapon (R99-grade) -->
</death>
<lucky_corpse>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_corpse>
</drop_lists>
</npc>
<npc id="23813" level="99" type="L2Monster" name="Cantera Floxis">
<race>ETC</race> <!-- TODO: Magic Creatures -->
<acquire exp="11672991" sp="28015" />
<stats>
<vitals hp="39070" hpRegen="10.5" mp="23550" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="2" /> <!-- Magic Creatures -->
<skill id="5462" level="1" /> <!-- Fire Attack -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<item id="57" min="8428" max="19635" chance="10" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.03" /> <!-- Sealed Demonic Tome -->
<item id="37787" min="1" max="1" chance="0.0075" /> <!-- Scroll of Blessing Scraps: Armor (R99-grade) -->
<item id="36921" min="1" max="1" chance="0.0009" /> <!-- Recipe: Weapon Fragment (Top-grade) - Upgrade -->
<item id="37784" min="1" max="1" chance="0.0009" /> <!-- Recipe: Scroll of Blessing: Armor (R99-grade) -->
</death>
<lucky_corpse>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_corpse>
</drop_lists>
</npc>
<npc id="23814" level="99" type="L2Monster" name="Cantera Belika">
<race>ELEMENTAL</race>
<acquire exp="11672991" sp="28015" />
<stats>
<vitals hp="39070" hpRegen="10.5" mp="23550" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="7" /> <!-- Spirits -->
<skill id="5462" level="1" /> <!-- Fire Attack -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<item id="57" min="8428" max="19635" chance="10" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.03" /> <!-- Sealed Demonic Tome -->
<item id="37778" min="1" max="1" chance="0.003" /> <!-- Scroll of Blessing Scraps: Weapon (R99-grade) -->
<item id="37775" min="1" max="1" chance="0.0009" /> <!-- Recipe: Scroll of Blessing: Weapon (R99-grade) -->
</death>
<lucky_corpse>
<item id="39629" min="1" max="1" chance="0.01" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_corpse>
</drop_lists>
</npc>
<npc id="23815" level="99" type="L2Monster" name="Cantera Bridget">
<race>HUMANOID</race>
<acquire exp="11672991" sp="28015" />
<stats>
<vitals hp="39070" hpRegen="10.5" mp="23550" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="6" /> <!-- Humanoids -->
<skill id="5462" level="1" /> <!-- Fire Attack -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<item id="57" min="8428" max="19635" chance="10" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.03" /> <!-- Sealed Demonic Tome -->
<item id="37787" min="1" max="1" chance="0.0075" /> <!-- Scroll of Blessing Scraps: Armor (R99-grade) -->
<item id="36919" min="1" max="1" chance="0.0009" /> <!-- Recipe: Weapon Fragment (High-grade) - Downgrade -->
<item id="37784" min="1" max="1" chance="0.0009" /> <!-- Recipe: Scroll of Blessing: Armor (R99-grade) -->
</death>
<lucky_corpse>
<item id="39629" min="1" max="1" chance="0.01" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_corpse>
</drop_lists>
</npc>
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/npcs.xsd">
<npc id="23800" level="102" type="L2Monster" name="Delta Kshana">
<!-- NEED TO CHECK IF ITS THE SAME STATS AS NPC ID: 23776 -->
<race>GIANT</race>
<acquire exp="547017485" sp="1312842" />
<stats>
<vitals hp="1325641" hpRegen="11.5" mp="23928" mpRegen="3.9" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="11" /> <!-- Giants -->
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="14823" level="1" /> <!-- Lethal Strike Resistance -->
<skill id="16547" level="10" /> <!-- Danger Zone Attack Resistance -->
<skill id="4379" level="5" /> <!-- Spear Resistance -->
<skill id="4438" level="5" /> <!-- Greater Sleep Resistance -->
<skill id="4461" level="1" /> <!-- Dagger/Rapier Vulnerability -->
<skill id="16608" level="1" /> <!-- Servitor Attack Weakness -->
<skill id="4071" level="1" /> <!-- Bow/Crossbow Resistance -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<drop>
<item id="17434" min="1" max="1" chance="0.03" /> <!-- Eternal Boots -->
<item id="17435" min="1" max="1" chance="0.03" /> <!-- Eternal Shield -->
<item id="57" min="30979" max="72169" chance="70" /> <!-- Adena -->
<item id="36543" min="1" max="1" chance="14.65" /> <!-- Adamantite Wire -->
<item id="47250" min="1" max="1" chance="0.75" /> <!-- Giant Power Crystal -->
<item id="35332" min="1" max="1" chance="0.3" /> <!-- Helios Stormer Fragment -->
<item id="35342" min="1" max="1" chance="0.3" /> <!-- Eternal Boot Ingredient -->
<item id="35343" min="1" max="1" chance="0.3" /> <!-- Eternal Shield Ingredient -->
<item id="36545" min="1" max="1" chance="0.075" /> <!-- Durandil Wire -->
</drop>
<spoil>
<item id="36564" min="1" max="1" chance="1.059" /> <!-- Greater Synthetic Cokes -->
<item id="36565" min="1" max="1" chance="0.075" /> <!-- Exquisite Synthetic Cokes -->
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_drop>
</drop_lists>
</npc>
<npc id="23801" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Lillim Royal Knight ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23802" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Lillim Slayer ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23803" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Gigantic Healer ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23804" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Lillim Great Magus ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23805" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Nephilim Royal Guard ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23806" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Wandering Dead of the Dimension ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23807" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Wandering Dimensional Spirit ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23808" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Lost Soul of the Dimension ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23809" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Lost Dimensional Evil Thoughts ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23810" level="99" type="L2Monster" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Roaming Vengeance of the Dimension ?? -->
<race>ETC</race>
<acquire exp="0" sp="0" />
<stats>
<vitals hp="0" hpRegen="10.5" mp="0" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
</npc>
<npc id="23811" level="99" type="L2Monster" name="Cantera Tanya">
<race>DEMONIC</race>
<acquire exp="11672991" sp="28015" />
<stats>
<vitals hp="39070" hpRegen="10.5" mp="23550" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="9" /> <!-- Demons -->
<skill id="5462" level="1" /> <!-- Fire Attack -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<drop>
<item id="57" min="8428" max="19635" chance="10" /> <!-- Adena -->
<item id="37776" min="1" max="1" chance="0.075" /> <!-- Scroll of Blessing Scraps: Weapon (R-grade) -->
<item id="37791" min="1" max="1" chance="0.03" /> <!-- Sealed Demonic Tome -->
<item id="37773" min="1" max="1" chance="0.0075" /> <!-- Recipe: Scroll of Blessing: Weapon (R-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_drop>
</drop_lists>
</npc>
<npc id="23812" level="99" type="L2Monster" name="Cantera Deathmoz">
<race>DEMONIC</race>
<acquire exp="11672991" sp="28015" />
<stats>
<vitals hp="39070" hpRegen="10.5" mp="23550" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="9" /> <!-- Demons -->
<skill id="5462" level="1" /> <!-- Fire Attack -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<drop>
<item id="57" min="8428" max="19635" chance="10" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.03" /> <!-- Sealed Demonic Tome -->
<item id="37778" min="1" max="1" chance="0.003" /> <!-- Scroll of Blessing Scraps: Weapon (R99-grade) -->
<item id="37775" min="1" max="1" chance="0.0009" /> <!-- Recipe: Scroll of Blessing: Weapon (R99-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_drop>
</drop_lists>
</npc>
<npc id="23813" level="99" type="L2Monster" name="Cantera Floxis">
<race>ETC</race> <!-- TODO: Magic Creatures -->
<acquire exp="11672991" sp="28015" />
<stats>
<vitals hp="39070" hpRegen="10.5" mp="23550" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="2" /> <!-- Magic Creatures -->
<skill id="5462" level="1" /> <!-- Fire Attack -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<drop>
<item id="57" min="8428" max="19635" chance="10" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.03" /> <!-- Sealed Demonic Tome -->
<item id="37787" min="1" max="1" chance="0.0075" /> <!-- Scroll of Blessing Scraps: Armor (R99-grade) -->
<item id="36921" min="1" max="1" chance="0.0009" /> <!-- Recipe: Weapon Fragment (Top-grade) - Upgrade -->
<item id="37784" min="1" max="1" chance="0.0009" /> <!-- Recipe: Scroll of Blessing: Armor (R99-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_drop>
</drop_lists>
</npc>
<npc id="23814" level="99" type="L2Monster" name="Cantera Belika">
<race>ELEMENTAL</race>
<acquire exp="11672991" sp="28015" />
<stats>
<vitals hp="39070" hpRegen="10.5" mp="23550" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="7" /> <!-- Spirits -->
<skill id="5462" level="1" /> <!-- Fire Attack -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<drop>
<item id="57" min="8428" max="19635" chance="10" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.03" /> <!-- Sealed Demonic Tome -->
<item id="37778" min="1" max="1" chance="0.003" /> <!-- Scroll of Blessing Scraps: Weapon (R99-grade) -->
<item id="37775" min="1" max="1" chance="0.0009" /> <!-- Recipe: Scroll of Blessing: Weapon (R99-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="0.01" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_drop>
</drop_lists>
</npc>
<npc id="23815" level="99" type="L2Monster" name="Cantera Bridget">
<race>HUMANOID</race>
<acquire exp="11672991" sp="28015" />
<stats>
<vitals hp="39070" hpRegen="10.5" mp="23550" mpRegen="3.6" />
<speed>
<walk ground="60" /> <!-- Need retail value -->
<run ground="120" /> <!-- Need retail value -->
</speed>
</stats>
<skill_list>
<skill id="4416" level="6" /> <!-- Humanoids -->
<skill id="5462" level="1" /> <!-- Fire Attack -->
</skill_list>
<collision>
<radius normal="16" /> <!-- Need retail value -->
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<drop>
<item id="57" min="8428" max="19635" chance="10" /> <!-- Adena -->
<item id="37791" min="1" max="1" chance="0.03" /> <!-- Sealed Demonic Tome -->
<item id="37787" min="1" max="1" chance="0.0075" /> <!-- Scroll of Blessing Scraps: Armor (R99-grade) -->
<item id="36919" min="1" max="1" chance="0.0009" /> <!-- Recipe: Weapon Fragment (High-grade) - Downgrade -->
<item id="37784" min="1" max="1" chance="0.0009" /> <!-- Recipe: Scroll of Blessing: Armor (R99-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="0.01" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
</lucky_drop>
</drop_lists>
</npc>
</list>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+301 -455
View File
@@ -204,26 +204,20 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="0.6">
<item id="6364" min="1" max="1" chance="50" /> <!-- Forgotten Blade -->
<item id="6372" min="1" max="1" chance="50" /> <!-- Heaven's Divider -->
</group>
<group chance="16.34">
<item id="6685" min="1" max="1" chance="17.141982864137" /> <!-- Sealed Major Arcana Gloves -->
<item id="6677" min="1" max="1" chance="17.099143206854" /> <!-- Sealed Imperial Crusader Boots -->
<item id="6682" min="1" max="1" chance="16.652386780906" /> <!-- Sealed Draconic Leather Boots -->
<item id="6676" min="1" max="1" chance="16.41370869033" /> <!-- Sealed Imperial Crusader Gauntlets -->
<item id="6681" min="1" max="1" chance="16.364749082007" /> <!-- Sealed Draconic Leather Gloves -->
<item id="6686" min="1" max="1" chance="16.328029375765" /> <!-- Sealed Major Arcana Boots -->
</group>
<group chance="2.133">
<item id="6578" min="1" max="1" chance="100" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6364" min="1" max="1" chance="0.3" /> <!-- Forgotten Blade -->
<item id="6372" min="1" max="1" chance="0.3" /> <!-- Heaven's Divider -->
<item id="6685" min="1" max="1" chance="2.80099999999999" /> <!-- Sealed Major Arcana Gloves -->
<item id="6677" min="1" max="1" chance="2.79399999999994" /> <!-- Sealed Imperial Crusader Boots -->
<item id="6682" min="1" max="1" chance="2.72100000000004" /> <!-- Sealed Draconic Leather Boots -->
<item id="6676" min="1" max="1" chance="2.68199999999992" /> <!-- Sealed Imperial Crusader Gauntlets -->
<item id="6681" min="1" max="1" chance="2.67399999999994" /> <!-- Sealed Draconic Leather Gloves -->
<item id="6686" min="1" max="1" chance="2.668" /> <!-- Sealed Major Arcana Boots -->
<item id="6578" min="1" max="1" chance="2.133" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="88.99" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="10" />
@@ -357,26 +351,20 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="1.533">
<item id="6367" min="1" max="1" chance="19.569471624266" /> <!-- Angel Slayer -->
<item id="6691" min="27" max="81" chance="80.430528375734" /> <!-- Angel Slayer Blade -->
</group>
<group chance="11.325">
<item id="6675" min="1" max="1" chance="18.587196467991" /> <!-- Sealed Imperial Crusader Gaiters -->
<item id="6674" min="1" max="1" chance="10.887417218543" /> <!-- Sealed Imperial Crusader Breastplate -->
<item id="6702" min="28" max="84" chance="54.922737306843" /> <!-- Sealed Imperial Crusader Gaiter Pattern -->
<item id="6701" min="60" max="180" chance="15.602649006623" /> <!-- Sealed Imperial Crusader Breastplate Part -->
</group>
<group chance="10.372">
<item id="960" min="1" max="1" chance="89.876590821442" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="7.2310065561126" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="2.892402622445" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6367" min="1" max="1" chance="0.299999999999998" /> <!-- Angel Slayer -->
<item id="6691" min="27" max="81" chance="1.233" /> <!-- Angel Slayer Blade -->
<item id="6675" min="1" max="1" chance="2.10499999999998" /> <!-- Sealed Imperial Crusader Gaiters -->
<item id="6674" min="1" max="1" chance="1.23299999999999" /> <!-- Sealed Imperial Crusader Breastplate -->
<item id="6702" min="28" max="84" chance="6.21999999999997" /> <!-- Sealed Imperial Crusader Gaiter Pattern -->
<item id="6701" min="60" max="180" chance="1.76700000000005" /> <!-- Sealed Imperial Crusader Breastplate Part -->
<item id="960" min="1" max="1" chance="9.32199999999996" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="0.749999999999999" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.299999999999995" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="86.94" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="17" />
@@ -587,23 +575,17 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="3.134">
<item id="6371" min="1" max="1" chance="9.572431397575" /> <!-- Demon Splinter -->
<item id="6695" min="12" max="36" chance="90.427568602425" /> <!-- Demon Splinter Blade -->
</group>
<group chance="7.272">
<item id="6680" min="1" max="1" chance="15.236523652365" /> <!-- Sealed Draconic Leather Armor -->
<item id="6707" min="15" max="45" chance="84.763476347635" /> <!-- Sealed Draconic Leather Armor Part -->
</group>
<group chance="13.849">
<item id="3936" min="1" max="1" chance="91.631164705033" /> <!-- Blessed Scroll of Resurrection -->
<item id="6578" min="1" max="1" chance="8.3688352949671" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6371" min="1" max="1" chance="0.3" /> <!-- Demon Splinter -->
<item id="6695" min="12" max="36" chance="2.834" /> <!-- Demon Splinter Blade -->
<item id="6680" min="1" max="1" chance="1.10799999999998" /> <!-- Sealed Draconic Leather Armor -->
<item id="6707" min="15" max="45" chance="6.16400000000002" /> <!-- Sealed Draconic Leather Armor Part -->
<item id="3936" min="1" max="1" chance="12.69" /> <!-- Blessed Scroll of Resurrection -->
<item id="6578" min="1" max="1" chance="1.15899999999999" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="91.045" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="12" />
@@ -736,28 +718,22 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="1.2">
<item id="6579" min="1" max="1" chance="25" /> <!-- Arcana Mace -->
<item id="6369" min="1" max="1" chance="25" /> <!-- Dragon Hunter Axe -->
<item id="6366" min="1" max="1" chance="25" /> <!-- Imperial Staff -->
<item id="6365" min="1" max="1" chance="25" /> <!-- Basalt Battlehammer -->
</group>
<group chance="14.876">
<item id="6686" min="1" max="1" chance="40.649368109707" /> <!-- Sealed Major Arcana Boots -->
<item id="6676" min="1" max="1" chance="20.173433718742" /> <!-- Sealed Imperial Crusader Gauntlets -->
<item id="6677" min="1" max="1" chance="13.915030922291" /> <!-- Sealed Imperial Crusader Boots -->
<item id="6681" min="1" max="1" chance="10.20435600968" /> <!-- Sealed Draconic Leather Gloves -->
<item id="6682" min="1" max="1" chance="8.1876848615219" /> <!-- Sealed Draconic Leather Boots -->
<item id="6685" min="1" max="1" chance="6.8701263780586" /> <!-- Sealed Major Arcana Gloves -->
</group>
<group chance="5.989">
<item id="6578" min="1" max="1" chance="100" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6579" min="1" max="1" chance="0.3" /> <!-- Arcana Mace -->
<item id="6369" min="1" max="1" chance="0.3" /> <!-- Dragon Hunter Axe -->
<item id="6366" min="1" max="1" chance="0.3" /> <!-- Imperial Staff -->
<item id="6365" min="1" max="1" chance="0.3" /> <!-- Basalt Battlehammer -->
<item id="6686" min="1" max="1" chance="6.04700000000001" /> <!-- Sealed Major Arcana Boots -->
<item id="6676" min="1" max="1" chance="3.00100000000006" /> <!-- Sealed Imperial Crusader Gauntlets -->
<item id="6677" min="1" max="1" chance="2.07000000000001" /> <!-- Sealed Imperial Crusader Boots -->
<item id="6681" min="1" max="1" chance="1.518" /> <!-- Sealed Draconic Leather Gloves -->
<item id="6682" min="1" max="1" chance="1.218" /> <!-- Sealed Draconic Leather Boots -->
<item id="6685" min="1" max="1" chance="1.022" /> <!-- Sealed Major Arcana Gloves -->
<item id="6578" min="1" max="1" chance="5.989" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="91.95" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="48" />
@@ -895,27 +871,21 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="4.694">
<item id="2504" min="1" max="1" chance="51.299531316574" /> <!-- Meteor Shower -->
<item id="212" min="1" max="1" chance="48.700468683426" /> <!-- Dasparion's Staff -->
</group>
<group chance="12.837">
<item id="6323" min="1" max="1" chance="47.557840616967" /> <!-- Sealed Phoenix Necklace -->
<item id="6325" min="1" max="1" chance="37.835942977331" /> <!-- Sealed Phoenix Ring -->
<item id="6324" min="1" max="1" chance="14.606216405702" /> <!-- Sealed Phoenix Earring -->
</group>
<group chance="100">
<item id="9814" min="3" max="7" chance="38.324298522135" /> <!-- Memento Mori -->
<item id="8176" min="1" max="4" chance="37.005704455336" /> <!-- Destruction Tombstone -->
<item id="8619" min="1" max="1" chance="23.091937671618" /> <!-- Ancient Book: Divine Inspiration (Original Language Version) -->
<item id="729" min="1" max="1" chance="1.4362750426534" /> <!-- Scroll: Enchant Weapon (A-grade) -->
<item id="6569" min="1" max="1" chance="0.14178430825799" /> <!-- Blessed Scroll: Enchant Weapon (A-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="2504" min="1" max="1" chance="2.40799999999998" /> <!-- Meteor Shower -->
<item id="212" min="1" max="1" chance="2.28600000000002" /> <!-- Dasparion's Staff -->
<item id="6323" min="1" max="1" chance="6.10500000000005" /> <!-- Sealed Phoenix Necklace -->
<item id="6325" min="1" max="1" chance="4.85699999999998" /> <!-- Sealed Phoenix Ring -->
<item id="6324" min="1" max="1" chance="1.87499999999997" /> <!-- Sealed Phoenix Earring -->
<item id="9814" min="3" max="7" chance="38.324298522135" /> <!-- Memento Mori -->
<item id="8176" min="1" max="4" chance="37.005704455336" /> <!-- Destruction Tombstone -->
<item id="8619" min="1" max="1" chance="23.091937671618" /> <!-- Ancient Book: Divine Inspiration (Original Language Version) -->
<item id="729" min="1" max="1" chance="1.4362750426534" /> <!-- Scroll: Enchant Weapon (A-grade) -->
<item id="6569" min="1" max="1" chance="0.14178430825799" /> <!-- Blessed Scroll: Enchant Weapon (A-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="79.96" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="9" grown="10" />
@@ -1055,27 +1025,21 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="2.426">
<item id="5315" min="1" max="1" chance="100" /> <!-- Sealed Shield of Nightmare -->
</group>
<group chance="17.232">
<item id="5312" min="1" max="1" chance="32.190111420613" /> <!-- Sealed Helm of Nightmare -->
<item id="5317" min="1" max="1" chance="23.734911792015" /> <!-- Sealed Majestic Circlet -->
<item id="5311" min="1" max="1" chance="22.063602599814" /> <!-- Sealed Armor of Nightmare -->
<item id="5316" min="1" max="1" chance="22.011374187558" /> <!-- Sealed Majestic Plate Armor -->
</group>
<group chance="100">
<item id="9818" min="3" max="7" chance="37.726296756696" /> <!-- Angelic Essence -->
<item id="8176" min="1" max="4" chance="36.582664707877" /> <!-- Destruction Tombstone -->
<item id="8619" min="1" max="1" chance="23.736015368968" /> <!-- Ancient Book: Divine Inspiration (Original Language Version) -->
<item id="6570" min="1" max="1" chance="1.4107808791954" /> <!-- Blessed Scroll: Enchant Armor (A-grade) -->
<item id="6578" min="1" max="1" chance="0.5442422872641" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="5315" min="1" max="1" chance="2.426" /> <!-- Sealed Shield of Nightmare -->
<item id="5312" min="1" max="1" chance="5.54700000000003" /> <!-- Sealed Helm of Nightmare -->
<item id="5317" min="1" max="1" chance="4.09000000000002" /> <!-- Sealed Majestic Circlet -->
<item id="5311" min="1" max="1" chance="3.80199999999995" /> <!-- Sealed Armor of Nightmare -->
<item id="5316" min="1" max="1" chance="3.79299999999999" /> <!-- Sealed Majestic Plate Armor -->
<item id="9818" min="3" max="7" chance="37.726296756696" /> <!-- Angelic Essence -->
<item id="8176" min="1" max="4" chance="36.582664707877" /> <!-- Destruction Tombstone -->
<item id="8619" min="1" max="1" chance="23.736015368968" /> <!-- Ancient Book: Divine Inspiration (Original Language Version) -->
<item id="6570" min="1" max="1" chance="1.4107808791954" /> <!-- Blessed Scroll: Enchant Armor (A-grade) -->
<item id="6578" min="1" max="1" chance="0.5442422872641" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="79.63" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="8" grown="9" />
@@ -1206,32 +1170,26 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="72.15">
<item id="81" min="1" max="1" chance="1.039501039501" /> <!-- Dragon Slayer -->
<item id="151" min="1" max="1" chance="1.039501039501" /> <!-- Sword of Miracles -->
<item id="2500" min="1" max="1" chance="1.039501039501" /> <!-- Dark Legion's Edge -->
<item id="5529" min="2" max="6" chance="38.641718641719" /> <!-- Dragon Slayer Edge -->
<item id="5546" min="3" max="9" chance="32.446292446292" /> <!-- Sword of Miracles Edge -->
<item id="5545" min="3" max="9" chance="25.793485793486" /> <!-- Dark Legion's Edge Blade -->
</group>
<group chance="19.603">
<item id="5311" min="1" max="1" chance="10.003570882008" /> <!-- Sealed Armor of Nightmare -->
<item id="5316" min="1" max="1" chance="9.5801663010764" /> <!-- Sealed Majestic Plate Armor -->
<item id="5523" min="12" max="36" chance="60.347905932765" /> <!-- Sealed Majestic Plate Armor Pattern -->
<item id="5522" min="36" max="108" chance="20.06835688415" /> <!-- Sealed Armor of Nightmare Pattern -->
</group>
<group chance="100">
<item id="8176" min="1" max="4" chance="33.925288795867" /> <!-- Destruction Tombstone -->
<item id="9814" min="3" max="7" chance="33.390363706606" /> <!-- Memento Mori -->
<item id="8619" min="1" max="1" chance="21.834283603697" /> <!-- Ancient Book: Divine Inspiration (Original Language Version) -->
<item id="730" min="1" max="1" chance="10.341885059033" /> <!-- Scroll: Enchant Armor (A-grade) -->
<item id="6578" min="1" max="1" chance="0.5081788347973" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="81" min="1" max="1" chance="0.749999999999972" /> <!-- Dragon Slayer -->
<item id="151" min="1" max="1" chance="0.749999999999972" /> <!-- Sword of Miracles -->
<item id="2500" min="1" max="1" chance="0.749999999999972" /> <!-- Dark Legion's Edge -->
<item id="5529" min="2" max="6" chance="27.8800000000003" /> <!-- Dragon Slayer Edge -->
<item id="5546" min="3" max="9" chance="23.4099999999997" /> <!-- Sword of Miracles Edge -->
<item id="5545" min="3" max="9" chance="18.6100000000001" /> <!-- Dark Legion's Edge Blade -->
<item id="5311" min="1" max="1" chance="1.96100000000003" /> <!-- Sealed Armor of Nightmare -->
<item id="5316" min="1" max="1" chance="1.87800000000001" /> <!-- Sealed Majestic Plate Armor -->
<item id="5523" min="12" max="36" chance="11.8299999999999" /> <!-- Sealed Majestic Plate Armor Pattern -->
<item id="5522" min="36" max="108" chance="3.93399999999992" /> <!-- Sealed Armor of Nightmare Pattern -->
<item id="8176" min="1" max="4" chance="33.925288795867" /> <!-- Destruction Tombstone -->
<item id="9814" min="3" max="7" chance="33.390363706606" /> <!-- Memento Mori -->
<item id="8619" min="1" max="1" chance="21.834283603697" /> <!-- Ancient Book: Divine Inspiration (Original Language Version) -->
<item id="730" min="1" max="1" chance="10.341885059033" /> <!-- Scroll: Enchant Armor (A-grade) -->
<item id="6578" min="1" max="1" chance="0.5081788347973" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="79.34" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="7.5" />
@@ -2352,23 +2310,17 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="12.11">
<item id="261" min="1" max="1" chance="100" /> <!-- Bich'Hwa -->
</group>
<group chance="7.506">
<item id="395" min="1" max="1" chance="66.560085265121" /> <!-- Manticore Skin Shirt -->
<item id="417" min="1" max="1" chance="33.439914734879" /> <!-- Manticore Skin Gaiters -->
</group>
<group chance="44.967">
<item id="4561" min="1" max="1" chance="40.629795183134" /> <!-- Greater MEN Dye (Men + 1 Int - 1) -->
<item id="4560" min="1" max="1" chance="39.762492494496" /> <!-- Greater INT Dye (Int + 1 Wit - 1) -->
<item id="4559" min="1" max="3" chance="19.60771232237" /> <!-- Greater INT Dye (Int + 1 Men - 1) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="261" min="1" max="1" chance="12.11" /> <!-- Bich'Hwa -->
<item id="395" min="1" max="1" chance="4.99599999999998" /> <!-- Manticore Skin Shirt -->
<item id="417" min="1" max="1" chance="2.51000000000002" /> <!-- Manticore Skin Gaiters -->
<item id="4561" min="1" max="1" chance="18.2699999999999" /> <!-- Greater MEN Dye (Men + 1 Int - 1) -->
<item id="4560" min="1" max="1" chance="17.88" /> <!-- Greater INT Dye (Int + 1 Wit - 1) -->
<item id="4559" min="1" max="3" chance="8.81700000000012" /> <!-- Greater INT Dye (Int + 1 Men - 1) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="49.52" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="34" />
@@ -2465,26 +2417,18 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="17.094">
<item id="630" min="1" max="1" chance="67.333567333567" /> <!-- Square Shield -->
<item id="2494" min="1" max="1" chance="32.666432666433" /> <!-- Plate Shield -->
</group>
<group chance="12.433">
<item id="2387" min="1" max="1" chance="67.948202364675" /> <!-- Reinforced Mithril Gaiters -->
<item id="397" min="1" max="1" chance="32.051797635325" /> <!-- Reinforced Mithril Shirt -->
</group>
<group chance="2.198">
<item id="2412" min="1" max="1" chance="100" /> <!-- Plate Helmet -->
</group>
<group chance="14.24">
<item id="951" min="1" max="1" chance="94.733146067416" /> <!-- Scroll: Enchant Weapon (C-grade) -->
<item id="6573" min="1" max="1" chance="5.2668539325843" /> <!-- Blessed Scroll: Enchant Weapon (C-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="630" min="1" max="1" chance="11.5099999999999" /> <!-- Square Shield -->
<item id="2494" min="1" max="1" chance="5.58400000000006" /> <!-- Plate Shield -->
<item id="2387" min="1" max="1" chance="8.44800000000004" /> <!-- Reinforced Mithril Gaiters -->
<item id="397" min="1" max="1" chance="3.98499999999996" /> <!-- Reinforced Mithril Shirt -->
<item id="2412" min="1" max="1" chance="2.198" /> <!-- Plate Helmet -->
<item id="951" min="1" max="1" chance="13.49" /> <!-- Scroll: Enchant Weapon (C-grade) -->
<item id="6573" min="1" max="1" chance="0.750000000000004" /> <!-- Blessed Scroll: Enchant Weapon (C-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="51.21" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="16" />
@@ -2616,23 +2560,17 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="2.475">
<item id="222" min="1" max="1" chance="100" /> <!-- Poniard Dagger -->
</group>
<group chance="11.823">
<item id="605" min="1" max="1" chance="68.180664805887" /> <!-- Leather Gauntlets -->
<item id="1123" min="1" max="1" chance="31.819335194113" /> <!-- Blue Buckskin Boots -->
</group>
<group chance="38.347">
<item id="6387" min="4" max="12" chance="44.644952669048" /> <!-- Blessed Scroll of Resurrection (Pet) -->
<item id="955" min="1" max="1" chance="35.856781495293" /> <!-- Scroll: Enchant Weapon (D-grade) -->
<item id="956" min="7" max="21" chance="19.498265835659" /> <!-- Scroll: Enchant Armor (D-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="222" min="1" max="1" chance="2.475" /> <!-- Poniard Dagger -->
<item id="605" min="1" max="1" chance="8.06100000000002" /> <!-- Leather Gauntlets -->
<item id="1123" min="1" max="1" chance="3.76199999999998" /> <!-- Blue Buckskin Boots -->
<item id="6387" min="4" max="12" chance="17.1199999999998" /> <!-- Blessed Scroll of Resurrection (Pet) -->
<item id="955" min="1" max="1" chance="13.75" /> <!-- Scroll: Enchant Weapon (D-grade) -->
<item id="956" min="7" max="21" chance="7.47700000000016" /> <!-- Scroll: Enchant Armor (D-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="40.5" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="14" />
@@ -2764,30 +2702,22 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="9.537">
<item id="316" min="1" max="1" chance="50.22543776869" /> <!-- Sage's Blood -->
<item id="317" min="1" max="1" chance="49.77456223131" /> <!-- Tome of Blood -->
</group>
<group chance="48.065">
<item id="351" min="1" max="1" chance="47.248517632373" /> <!-- Breastplate -->
<item id="59" min="1" max="1" chance="18.658067200666" /> <!-- Mithril Gaiters -->
<item id="378" min="1" max="1" chance="15.065016123999" /> <!-- Compound Scale Gaiters -->
<item id="379" min="1" max="1" chance="12.456049100177" /> <!-- Dwarven Scale Gaiters -->
<item id="58" min="1" max="1" chance="6.5723499427858" /> <!-- Mithril Breastplate -->
</group>
<group chance="26.453">
<item id="350" min="1" max="1" chance="89.706271500397" /> <!-- Dwarven Scale Mail -->
<item id="349" min="1" max="1" chance="10.293728499603" /> <!-- Compound Scale Mail -->
</group>
<group chance="25.678">
<item id="6576" min="1" max="1" chance="81.003193395124" /> <!-- Blessed Scroll: Enchant Armor (D-grade) -->
<item id="2030" min="21" max="63" chance="18.996806604876" /> <!-- Tome of Blood Page -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="316" min="1" max="1" chance="4.78999999999997" /> <!-- Sage's Blood -->
<item id="317" min="1" max="1" chance="4.74700000000004" /> <!-- Tome of Blood -->
<item id="351" min="1" max="1" chance="22.7100000000001" /> <!-- Breastplate -->
<item id="59" min="1" max="1" chance="8.96800000000011" /> <!-- Mithril Gaiters -->
<item id="378" min="1" max="1" chance="7.24100000000012" /> <!-- Compound Scale Gaiters -->
<item id="379" min="1" max="1" chance="5.98700000000007" /> <!-- Dwarven Scale Gaiters -->
<item id="58" min="1" max="1" chance="3.15899999999999" /> <!-- Mithril Breastplate -->
<item id="350" min="1" max="1" chance="23.73" /> <!-- Dwarven Scale Mail -->
<item id="349" min="1" max="1" chance="2.72299999999998" /> <!-- Compound Scale Mail -->
<item id="6576" min="1" max="1" chance="20.7999999999999" /> <!-- Blessed Scroll: Enchant Armor (D-grade) -->
<item id="2030" min="21" max="63" chance="4.87800000000006" /> <!-- Tome of Blood Page -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="41.13" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="8" />
@@ -2878,32 +2808,26 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="36.529">
<item id="179" min="1" max="1" chance="12.677598620274" /> <!-- Mace of Prayer -->
<item id="181" min="1" max="1" chance="12.650223110405" /> <!-- Mace of Miracle -->
<item id="180" min="1" max="1" chance="12.527033315996" /> <!-- Mace of Judgment -->
<item id="184" min="1" max="1" chance="12.5051329081" /> <!-- Conjuror's Staff -->
<item id="183" min="1" max="1" chance="12.431219031454" /> <!-- Mystic Staff -->
<item id="86" min="1" max="1" chance="12.409318623559" /> <!-- Tomahawk -->
<item id="182" min="1" max="1" chance="12.403843521586" /> <!-- Doom Hammer -->
<item id="185" min="1" max="1" chance="12.395630868625" /> <!-- Staff of Mana -->
</group>
<group chance="31.715">
<item id="468" min="1" max="1" chance="37.616269903831" /> <!-- Wizard Stockings -->
<item id="433" min="1" max="1" chance="18.83020652688" /> <!-- Elven Tunic -->
<item id="434" min="1" max="1" chance="15.639287403437" /> <!-- White Tunic -->
<item id="435" min="1" max="1" chance="13.148352514583" /> <!-- Wizard Tunic -->
<item id="466" min="1" max="1" chance="9.3236638814441" /> <!-- Elven Stockings -->
<item id="467" min="1" max="1" chance="5.442219769825" /> <!-- Dark Stockings -->
</group>
<group chance="43.67">
<item id="955" min="1" max="1" chance="100" /> <!-- Scroll: Enchant Weapon (D-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="179" min="1" max="1" chance="4.63099999999989" /> <!-- Mace of Prayer -->
<item id="181" min="1" max="1" chance="4.62099999999984" /> <!-- Mace of Miracle -->
<item id="180" min="1" max="1" chance="4.57600000000018" /> <!-- Mace of Judgment -->
<item id="184" min="1" max="1" chance="4.56799999999985" /> <!-- Conjuror's Staff -->
<item id="183" min="1" max="1" chance="4.54099999999983" /> <!-- Mystic Staff -->
<item id="86" min="1" max="1" chance="4.53299999999987" /> <!-- Tomahawk -->
<item id="182" min="1" max="1" chance="4.53100000000015" /> <!-- Doom Hammer -->
<item id="185" min="1" max="1" chance="4.52800000000003" /> <!-- Staff of Mana -->
<item id="468" min="1" max="1" chance="11.93" /> <!-- Wizard Stockings -->
<item id="433" min="1" max="1" chance="5.97199999999999" /> <!-- Elven Tunic -->
<item id="434" min="1" max="1" chance="4.96000000000005" /> <!-- White Tunic -->
<item id="435" min="1" max="1" chance="4.17" /> <!-- Wizard Tunic -->
<item id="466" min="1" max="1" chance="2.957" /> <!-- Elven Stockings -->
<item id="467" min="1" max="1" chance="1.726" /> <!-- Dark Stockings -->
<item id="955" min="1" max="1" chance="43.67" /> <!-- Scroll: Enchant Weapon (D-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="38.07" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="12" />
@@ -3029,22 +2953,16 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="3.182">
<item id="293" min="1" max="1" chance="53.89692017599" /> <!-- War Hammer -->
<item id="296" min="1" max="1" chance="46.10307982401" /> <!-- Dwarven Pike -->
</group>
<group chance="7.351">
<item id="436" min="1" max="1" chance="66.480750918242" /> <!-- Tunic of Knowledge -->
<item id="469" min="1" max="1" chance="33.519249081758" /> <!-- Stockings of Knowledge -->
</group>
<group chance="19.16">
<item id="6387" min="12" max="36" chance="100" /> <!-- Blessed Scroll of Resurrection (Pet) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="293" min="1" max="1" chance="1.715" /> <!-- War Hammer -->
<item id="296" min="1" max="1" chance="1.467" /> <!-- Dwarven Pike -->
<item id="436" min="1" max="1" chance="4.88699999999997" /> <!-- Tunic of Knowledge -->
<item id="469" min="1" max="1" chance="2.46400000000003" /> <!-- Stockings of Knowledge -->
<item id="6387" min="12" max="36" chance="19.16" /> <!-- Blessed Scroll of Resurrection (Pet) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="41.2" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="12" />
@@ -3096,23 +3014,17 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="1.725">
<item id="259" min="1" max="1" chance="100" /> <!-- Single-Edged Jamadhr -->
</group>
<group chance="24.297">
<item id="848" min="1" max="1" chance="54.410009466189" /> <!-- Earring of Magic -->
<item id="879" min="1" max="1" chance="26.851051570153" /> <!-- Ring of Magic -->
<item id="911" min="1" max="1" chance="18.738938963658" /> <!-- Magic Necklace -->
</group>
<group chance="11.44">
<item id="6576" min="1" max="1" chance="89.51048951049" /> <!-- Blessed Scroll: Enchant Armor (D-grade) -->
<item id="6575" min="1" max="1" chance="10.48951048951" /> <!-- Blessed Scroll: Enchant Weapon (D-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="259" min="1" max="1" chance="1.725" /> <!-- Single-Edged Jamadhr -->
<item id="848" min="1" max="1" chance="13.2199999999999" /> <!-- Earring of Magic -->
<item id="879" min="1" max="1" chance="6.52400000000007" /> <!-- Ring of Magic -->
<item id="911" min="1" max="1" chance="4.55299999999998" /> <!-- Magic Necklace -->
<item id="6576" min="1" max="1" chance="10.2400000000001" /> <!-- Blessed Scroll: Enchant Armor (D-grade) -->
<item id="6575" min="1" max="1" chance="1.19999999999994" /> <!-- Blessed Scroll: Enchant Weapon (D-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="41.6" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="13" />
@@ -3253,25 +3165,19 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="6.449">
<item id="260" min="1" max="1" chance="100" /> <!-- Triple-Edged Jamadhr -->
</group>
<group chance="100">
<item id="2422" min="1" max="1" chance="28.783070843148" /> <!-- Reinforced Leather Boots -->
<item id="2423" min="1" max="1" chance="24.130278194171" /> <!-- Boots of Knowledge -->
<item id="2446" min="1" max="1" chance="19.136799890981" /> <!-- Reinforced Leather Gloves -->
<item id="2447" min="1" max="1" chance="16.158233885569" /> <!-- Gloves of Knowledge -->
<item id="63" min="1" max="1" chance="7.4074795101914" /> <!-- Gauntlets -->
<item id="553" min="1" max="1" chance="4.3841376759398" /> <!-- Iron Boots -->
</group>
<group chance="44.75">
<item id="955" min="1" max="1" chance="100" /> <!-- Scroll: Enchant Weapon (D-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="260" min="1" max="1" chance="6.449" /> <!-- Triple-Edged Jamadhr -->
<item id="2422" min="1" max="1" chance="28.783070843148" /> <!-- Reinforced Leather Boots -->
<item id="2423" min="1" max="1" chance="24.130278194171" /> <!-- Boots of Knowledge -->
<item id="2446" min="1" max="1" chance="19.136799890981" /> <!-- Reinforced Leather Gloves -->
<item id="2447" min="1" max="1" chance="16.158233885569" /> <!-- Gloves of Knowledge -->
<item id="63" min="1" max="1" chance="7.4074795101914" /> <!-- Gauntlets -->
<item id="553" min="1" max="1" chance="4.3841376759398" /> <!-- Iron Boots -->
<item id="955" min="1" max="1" chance="44.75" /> <!-- Scroll: Enchant Weapon (D-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="40.16" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="20" />
@@ -3460,23 +3366,17 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="17.722">
<item id="315" min="1" max="1" chance="77.530752736711" /> <!-- Divine Tome -->
<item id="627" min="1" max="1" chance="22.469247263289" /> <!-- Aspis -->
</group>
<group chance="10.29">
<item id="46" min="1" max="1" chance="100" /> <!-- Bronze Helmet -->
</group>
<group chance="28.178">
<item id="6387" min="3" max="9" chance="74.916601604088" /> <!-- Blessed Scroll of Resurrection (Pet) -->
<item id="6576" min="1" max="1" chance="22.421747462559" /> <!-- Blessed Scroll: Enchant Armor (D-grade) -->
<item id="6575" min="1" max="1" chance="2.6616509333523" /> <!-- Blessed Scroll: Enchant Weapon (D-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="315" min="1" max="1" chance="13.7399999999999" /> <!-- Divine Tome -->
<item id="627" min="1" max="1" chance="3.98200000000008" /> <!-- Aspis -->
<item id="46" min="1" max="1" chance="10.29" /> <!-- Bronze Helmet -->
<item id="6387" min="3" max="9" chance="21.1099999999999" /> <!-- Blessed Scroll of Resurrection (Pet) -->
<item id="6576" min="1" max="1" chance="6.31799999999988" /> <!-- Blessed Scroll: Enchant Armor (D-grade) -->
<item id="6575" min="1" max="1" chance="0.750000000000011" /> <!-- Blessed Scroll: Enchant Weapon (D-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="40.84" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="21" />
@@ -3570,27 +3470,19 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="8.421">
<item id="156" min="1" max="1" chance="37.988362427265" /> <!-- Hand Axe -->
<item id="167" min="1" max="1" chance="32.668329177057" /> <!-- Scalpel -->
<item id="178" min="1" max="1" chance="29.343308395677" /> <!-- Bone Staff -->
</group>
<group chance="2.182">
<item id="376" min="1" max="1" chance="100" /> <!-- Iron Plate Gaiters -->
</group>
<group chance="6.467">
<item id="347" min="1" max="1" chance="100" /> <!-- Ring Breastplate -->
</group>
<group chance="21.684">
<item id="955" min="1" max="1" chance="64.379265818115" /> <!-- Scroll: Enchant Weapon (D-grade) -->
<item id="6576" min="1" max="1" chance="32.161962737502" /> <!-- Blessed Scroll: Enchant Armor (D-grade) -->
<item id="6575" min="1" max="1" chance="3.458771444383" /> <!-- Blessed Scroll: Enchant Weapon (D-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="156" min="1" max="1" chance="3.19899999999999" /> <!-- Hand Axe -->
<item id="167" min="1" max="1" chance="2.75099999999997" /> <!-- Scalpel -->
<item id="178" min="1" max="1" chance="2.47099999999996" /> <!-- Bone Staff -->
<item id="376" min="1" max="1" chance="2.182" /> <!-- Iron Plate Gaiters -->
<item id="347" min="1" max="1" chance="6.467" /> <!-- Ring Breastplate -->
<item id="955" min="1" max="1" chance="13.9600000000001" /> <!-- Scroll: Enchant Weapon (D-grade) -->
<item id="6576" min="1" max="1" chance="6.97399999999993" /> <!-- Blessed Scroll: Enchant Armor (D-grade) -->
<item id="6575" min="1" max="1" chance="0.75000000000001" /> <!-- Blessed Scroll: Enchant Weapon (D-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="38.7" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="12" />
@@ -3831,25 +3723,19 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="4.923">
<item id="280" min="1" max="1" chance="100" /> <!-- Light Crossbow -->
</group>
<group chance="78.652">
<item id="1125" min="1" max="1" chance="29.115597823323" /> <!-- Assault Boots -->
<item id="2427" min="1" max="1" chance="22.961908152367" /> <!-- Salamander Skin Boots -->
<item id="2428" min="1" max="1" chance="20.253776127753" /> <!-- Plate Boots -->
<item id="2451" min="1" max="1" chance="16.0962213294" /> <!-- Sage's Worn Gloves -->
<item id="61" min="1" max="1" chance="7.2420281747444" /> <!-- Mithril Gloves -->
<item id="607" min="1" max="1" chance="4.3304683924121" /> <!-- Ogre Power Gauntlets -->
</group>
<group chance="9.21">
<item id="6574" min="1" max="1" chance="100" /> <!-- Blessed Scroll: Enchant Armor (C-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="280" min="1" max="1" chance="4.923" /> <!-- Light Crossbow -->
<item id="1125" min="1" max="1" chance="22.9" /> <!-- Assault Boots -->
<item id="2427" min="1" max="1" chance="18.0599999999997" /> <!-- Salamander Skin Boots -->
<item id="2428" min="1" max="1" chance="15.9300000000003" /> <!-- Plate Boots -->
<item id="2451" min="1" max="1" chance="12.6599999999997" /> <!-- Sage's Worn Gloves -->
<item id="61" min="1" max="1" chance="5.69599999999997" /> <!-- Mithril Gloves -->
<item id="607" min="1" max="1" chance="3.40599999999997" /> <!-- Ogre Power Gauntlets -->
<item id="6574" min="1" max="1" chance="9.21" /> <!-- Blessed Scroll: Enchant Armor (C-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="49.69" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="21" />
@@ -3985,22 +3871,16 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="10.477">
<item id="297" min="1" max="1" chance="79.402500715854" /> <!-- Glaive -->
<item id="2055" min="108" max="324" chance="20.597499284146" /> <!-- Glaive Edge -->
</group>
<group chance="3.936">
<item id="396" min="1" max="1" chance="100" /> <!-- Salamander Skin Mail -->
</group>
<group chance="17.635">
<item id="6574" min="1" max="1" chance="50.042529061525" /> <!-- Blessed Scroll: Enchant Armor (C-grade) -->
<item id="1952" min="105" max="315" chance="49.957470938475" /> <!-- Salamander Skin Mail Texture -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="297" min="1" max="1" chance="8.31900000000002" /> <!-- Glaive -->
<item id="2055" min="108" max="324" chance="2.15799999999998" /> <!-- Glaive Edge -->
<item id="396" min="1" max="1" chance="3.936" /> <!-- Salamander Skin Mail -->
<item id="6574" min="1" max="1" chance="8.82499999999994" /> <!-- Blessed Scroll: Enchant Armor (C-grade) -->
<item id="1952" min="105" max="315" chance="8.81000000000007" /> <!-- Salamander Skin Mail Texture -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="51.2" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="30" />
@@ -4126,25 +4006,19 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="4.306">
<item id="297" min="1" max="1" chance="100" /> <!-- Glaive -->
</group>
<group chance="67.547">
<item id="1125" min="1" max="1" chance="28.572697529128" /> <!-- Assault Boots -->
<item id="2427" min="1" max="1" chance="24.057323049136" /> <!-- Salamander Skin Boots -->
<item id="2428" min="1" max="1" chance="18.875745777015" /> <!-- Plate Boots -->
<item id="2451" min="1" max="1" chance="16.566242764297" /> <!-- Sage's Worn Gloves -->
<item id="61" min="1" max="1" chance="7.510326143278" /> <!-- Mithril Gloves -->
<item id="607" min="1" max="1" chance="4.417664737146" /> <!-- Ogre Power Gauntlets -->
</group>
<group chance="8.056">
<item id="6574" min="1" max="1" chance="100" /> <!-- Blessed Scroll: Enchant Armor (C-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="297" min="1" max="1" chance="4.306" /> <!-- Glaive -->
<item id="1125" min="1" max="1" chance="19.3000000000001" /> <!-- Assault Boots -->
<item id="2427" min="1" max="1" chance="16.2499999999999" /> <!-- Salamander Skin Boots -->
<item id="2428" min="1" max="1" chance="12.7500000000003" /> <!-- Plate Boots -->
<item id="2451" min="1" max="1" chance="11.1899999999997" /> <!-- Sage's Worn Gloves -->
<item id="61" min="1" max="1" chance="5.07299999999999" /> <!-- Mithril Gloves -->
<item id="607" min="1" max="1" chance="2.98400000000001" /> <!-- Ogre Power Gauntlets -->
<item id="6574" min="1" max="1" chance="8.056" /> <!-- Blessed Scroll: Enchant Armor (C-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="49.23" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="21" />
@@ -4195,27 +4069,19 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="1.111">
<item id="279" min="1" max="1" chance="100" /> <!-- Reinforced Longbow -->
</group>
<group chance="10.96">
<item id="2377" min="1" max="1" chance="64.160583941606" /> <!-- Mithril Scale Gaiters -->
<item id="2378" min="1" max="1" chance="35.839416058394" /> <!-- Brigandine Gaiters -->
</group>
<group chance="1.568">
<item id="352" min="1" max="1" chance="100" /> <!-- Brigandine -->
</group>
<group chance="47.198">
<item id="4564" min="1" max="1" chance="29.916521886521" /> <!-- Greater WIT Dye (Wit + 1 Men - 1) -->
<item id="955" min="1" max="1" chance="28.306284164583" /> <!-- Scroll: Enchant Weapon (D-grade) -->
<item id="4563" min="1" max="1" chance="27.352853934489" /> <!-- Greater WIT Dye (Wit + 1 Int - 1) -->
<item id="4562" min="1" max="3" chance="14.424340014407" /> <!-- Greater MEN Dye (Men + 1 Wit - 1) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="279" min="1" max="1" chance="1.111" /> <!-- Reinforced Longbow -->
<item id="2377" min="1" max="1" chance="7.03200000000002" /> <!-- Mithril Scale Gaiters -->
<item id="2378" min="1" max="1" chance="3.92799999999998" /> <!-- Brigandine Gaiters -->
<item id="352" min="1" max="1" chance="1.568" /> <!-- Brigandine -->
<item id="4564" min="1" max="1" chance="14.1200000000002" /> <!-- Greater WIT Dye (Wit + 1 Men - 1) -->
<item id="955" min="1" max="1" chance="13.3599999999999" /> <!-- Scroll: Enchant Weapon (D-grade) -->
<item id="4563" min="1" max="1" chance="12.9100000000001" /> <!-- Greater WIT Dye (Wit + 1 Int - 1) -->
<item id="4562" min="1" max="3" chance="6.80799999999982" /> <!-- Greater MEN Dye (Men + 1 Wit - 1) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="50.16" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="15" />
@@ -4312,23 +4178,17 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="11.918">
<item id="298" min="1" max="1" chance="47.424064440342" /> <!-- Orcish Glaive -->
<item id="302" min="1" max="1" chance="46.282933378084" /> <!-- Body Slasher -->
<item id="96" min="1" max="1" chance="6.2930021815741" /> <!-- Scythe -->
</group>
<group chance="6.698">
<item id="381" min="1" max="1" chance="75.530008957898" /> <!-- Chain Gaiters -->
<item id="354" min="1" max="1" chance="24.469991042102" /> <!-- Chain Mail Shirt -->
</group>
<group chance="1.088">
<item id="6573" min="1" max="1" chance="100" /> <!-- Blessed Scroll: Enchant Weapon (C-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="298" min="1" max="1" chance="5.65199999999996" /> <!-- Orcish Glaive -->
<item id="302" min="1" max="1" chance="5.51600000000005" /> <!-- Body Slasher -->
<item id="96" min="1" max="1" chance="0.750000000000001" /> <!-- Scythe -->
<item id="381" min="1" max="1" chance="5.05900000000001" /> <!-- Chain Gaiters -->
<item id="354" min="1" max="1" chance="1.63899999999999" /> <!-- Chain Mail Shirt -->
<item id="6573" min="1" max="1" chance="1.088" /> <!-- Blessed Scroll: Enchant Weapon (C-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="49.1" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="17" grown="20" />
@@ -4379,34 +4239,28 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="15.877">
<item id="103" min="1" max="1" chance="13.957296718524" /> <!-- Tower Shield -->
<item id="202" min="1" max="1" chance="10.134156326762" /> <!-- Mace of Underworld -->
<item id="196" min="1" max="1" chance="10.027083202116" /> <!-- Stick of Eternity -->
<item id="197" min="1" max="1" chance="9.938905334761" /> <!-- Paradia Staff -->
<item id="199" min="1" max="1" chance="9.8570258865025" /> <!-- Pa'agrio Hammer -->
<item id="201" min="1" max="1" chance="9.8507274674057" /> <!-- Club of Nature -->
<item id="200" min="1" max="1" chance="9.6869685708887" /> <!-- Sage's Staff -->
<item id="174" min="1" max="1" chance="9.4602254834037" /> <!-- Nirvana Axe -->
<item id="162" min="1" max="1" chance="9.4350318070164" /> <!-- War Axe -->
<item id="107" min="1" max="1" chance="7.6525792026201" /> <!-- Compound Shield -->
</group>
<group chance="1.05">
<item id="517" min="1" max="1" chance="71.428571428571" /> <!-- Compound Helmet -->
<item id="1149" min="1" max="1" chance="28.571428571429" /> <!-- Shining Circlet -->
</group>
<group chance="100">
<item id="9817" min="1" max="3" chance="38.13524165111" /> <!-- Nonliving Nucleus -->
<item id="8176" min="1" max="1" chance="38.124870358847" /> <!-- Destruction Tombstone -->
<item id="4605" min="1" max="1" chance="8.1673926571251" /> <!-- Greater DEX Dye (Dex + 3 Str - 3) -->
<item id="4604" min="1" max="1" chance="7.9703381041278" /> <!-- Greater CON Dye (Con + 3 DEX - 3) -->
<item id="4606" min="1" max="1" chance="7.6021572287907" /> <!-- Greater DEX Dye (Dex + 3 CON - 3) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="103" min="1" max="1" chance="2.21600000000006" /> <!-- Tower Shield -->
<item id="202" min="1" max="1" chance="1.609" /> <!-- Mace of Underworld -->
<item id="196" min="1" max="1" chance="1.59199999999996" /> <!-- Stick of Eternity -->
<item id="197" min="1" max="1" chance="1.578" /> <!-- Paradia Staff -->
<item id="199" min="1" max="1" chance="1.565" /> <!-- Pa'agrio Hammer -->
<item id="201" min="1" max="1" chance="1.564" /> <!-- Club of Nature -->
<item id="200" min="1" max="1" chance="1.538" /> <!-- Sage's Staff -->
<item id="174" min="1" max="1" chance="1.50200000000001" /> <!-- Nirvana Axe -->
<item id="162" min="1" max="1" chance="1.49799999999999" /> <!-- War Axe -->
<item id="107" min="1" max="1" chance="1.21499999999999" /> <!-- Compound Shield -->
<item id="517" min="1" max="1" chance="0.749999999999996" /> <!-- Compound Helmet -->
<item id="1149" min="1" max="1" chance="0.300000000000004" /> <!-- Shining Circlet -->
<item id="9817" min="1" max="3" chance="38.13524165111" /> <!-- Nonliving Nucleus -->
<item id="8176" min="1" max="1" chance="38.124870358847" /> <!-- Destruction Tombstone -->
<item id="4605" min="1" max="1" chance="8.1673926571251" /> <!-- Greater DEX Dye (Dex + 3 Str - 3) -->
<item id="4604" min="1" max="1" chance="7.9703381041278" /> <!-- Greater CON Dye (Con + 3 DEX - 3) -->
<item id="4606" min="1" max="1" chance="7.6021572287907" /> <!-- Greater DEX Dye (Dex + 3 CON - 3) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="59.41" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="45" />
@@ -4541,24 +4395,16 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="9.693">
<item id="2499" min="1" max="1" chance="85.381202929949" /> <!-- Elven Long Sword -->
<item id="70" min="1" max="1" chance="14.618797070051" /> <!-- Claymore -->
</group>
<group chance="7.682">
<item id="380" min="1" max="1" chance="100" /> <!-- Plate Gaiters -->
</group>
<group chance="2.479">
<item id="353" min="1" max="1" chance="100" /> <!-- Half Plate Armor -->
</group>
<group chance="28.42">
<item id="951" min="1" max="1" chance="100" /> <!-- Scroll: Enchant Weapon (C-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="2499" min="1" max="1" chance="8.27599999999996" /> <!-- Elven Long Sword -->
<item id="70" min="1" max="1" chance="1.41700000000004" /> <!-- Claymore -->
<item id="380" min="1" max="1" chance="7.682" /> <!-- Plate Gaiters -->
<item id="353" min="1" max="1" chance="2.479" /> <!-- Half Plate Armor -->
<item id="951" min="1" max="1" chance="28.42" /> <!-- Scroll: Enchant Weapon (C-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="49.59" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="21" />
File diff suppressed because it is too large Load Diff
+141 -205
View File
@@ -80,25 +80,19 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="10.418">
<item id="1660" min="1" max="1" chance="86.993664810904" /> <!-- Cursed Maingauche -->
<item id="224" min="1" max="1" chance="13.006335189096" /> <!-- Maingauche -->
</group>
<group chance="5.707">
<item id="395" min="1" max="1" chance="66.234448922376" /> <!-- Manticore Skin Shirt -->
<item id="417" min="1" max="1" chance="33.765551077624" /> <!-- Manticore Skin Gaiters -->
</group>
<group chance="41.15">
<item id="4555" min="1" max="1" chance="33.195625759417" /> <!-- Greater CON Dye (Con + 1 Str - 1) -->
<item id="4554" min="1" max="1" chance="32.539489671932" /> <!-- Greater STR Dye (STR + 1 DEX - 1) -->
<item id="4553" min="1" max="1" chance="32.442284325638" /> <!-- Greater STR Dye (STR + 1 CON - 1) -->
<item id="6575" min="1" max="1" chance="1.8226002430134" /> <!-- Blessed Scroll: Enchant Weapon (D-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="1660" min="1" max="1" chance="9.06299999999998" /> <!-- Cursed Maingauche -->
<item id="224" min="1" max="1" chance="1.35500000000002" /> <!-- Maingauche -->
<item id="395" min="1" max="1" chance="3.78" /> <!-- Manticore Skin Shirt -->
<item id="417" min="1" max="1" chance="1.927" /> <!-- Manticore Skin Gaiters -->
<item id="4555" min="1" max="1" chance="13.6600000000001" /> <!-- Greater CON Dye (Con + 1 Str - 1) -->
<item id="4554" min="1" max="1" chance="13.39" /> <!-- Greater STR Dye (STR + 1 DEX - 1) -->
<item id="4553" min="1" max="1" chance="13.35" /> <!-- Greater STR Dye (STR + 1 CON - 1) -->
<item id="6575" min="1" max="1" chance="0.750000000000014" /> <!-- Blessed Scroll: Enchant Weapon (D-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="50.62" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="11" />
@@ -227,32 +221,26 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="7.297">
<item id="298" min="1" max="1" chance="34.12361244347" /> <!-- Orcish Glaive -->
<item id="302" min="1" max="1" chance="32.986158695354" /> <!-- Body Slasher -->
<item id="96" min="1" max="1" chance="32.890228861176" /> <!-- Scythe -->
</group>
<group chance="100">
<item id="2454" min="1" max="1" chance="34.77090686393" /> <!-- Karmian Gloves -->
<item id="62" min="1" max="1" chance="17.445889538913" /> <!-- Reinforced Mithril Boots -->
<item id="2429" min="1" max="1" chance="12.425663588454" /> <!-- Chain Boots -->
<item id="2430" min="1" max="1" chance="8.8236716143693" /> <!-- Karmian Boots -->
<item id="2431" min="1" max="1" chance="7.0726361424036" /> <!-- Plated Leather Boots -->
<item id="2432" min="1" max="1" chance="5.9436896646199" /> <!-- Dwarven Chain Boots -->
<item id="2433" min="1" max="1" chance="5.1298167577237" /> <!-- Boots of Seal -->
<item id="2452" min="1" max="1" chance="4.4561556189463" /> <!-- Reinforced Mithril Gloves -->
<item id="2453" min="1" max="1" chance="3.93157021064" /> <!-- Chain Gloves -->
</group>
<group chance="49.26">
<item id="952" min="1" max="3" chance="77.283800243605" /> <!-- Scroll: Enchant Armor (C-grade) -->
<item id="951" min="1" max="1" chance="22.1071863581" /> <!-- Scroll: Enchant Weapon (C-grade) -->
<item id="6573" min="1" max="1" chance="0.60901339829476" /> <!-- Blessed Scroll: Enchant Weapon (C-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="298" min="1" max="1" chance="2.49000000000001" /> <!-- Orcish Glaive -->
<item id="302" min="1" max="1" chance="2.40699999999998" /> <!-- Body Slasher -->
<item id="96" min="1" max="1" chance="2.40000000000001" /> <!-- Scythe -->
<item id="2454" min="1" max="1" chance="34.77090686393" /> <!-- Karmian Gloves -->
<item id="62" min="1" max="1" chance="17.445889538913" /> <!-- Reinforced Mithril Boots -->
<item id="2429" min="1" max="1" chance="12.425663588454" /> <!-- Chain Boots -->
<item id="2430" min="1" max="1" chance="8.8236716143693" /> <!-- Karmian Boots -->
<item id="2431" min="1" max="1" chance="7.0726361424036" /> <!-- Plated Leather Boots -->
<item id="2432" min="1" max="1" chance="5.9436896646199" /> <!-- Dwarven Chain Boots -->
<item id="2433" min="1" max="1" chance="5.1298167577237" /> <!-- Boots of Seal -->
<item id="2452" min="1" max="1" chance="4.4561556189463" /> <!-- Reinforced Mithril Gloves -->
<item id="2453" min="1" max="1" chance="3.93157021064" /> <!-- Chain Gloves -->
<item id="952" min="1" max="3" chance="38.0699999999998" /> <!-- Scroll: Enchant Armor (C-grade) -->
<item id="951" min="1" max="1" chance="10.8900000000001" /> <!-- Scroll: Enchant Weapon (C-grade) -->
<item id="6573" min="1" max="1" chance="0.299999999999999" /> <!-- Blessed Scroll: Enchant Weapon (C-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="49.85" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="10" />
@@ -345,21 +333,15 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="8.894">
<item id="281" min="1" max="1" chance="100" /> <!-- Crystallized Ice Bow -->
</group>
<group chance="5.266">
<item id="397" min="1" max="1" chance="67.147740220281" /> <!-- Reinforced Mithril Shirt -->
<item id="2387" min="1" max="1" chance="32.852259779719" /> <!-- Reinforced Mithril Gaiters -->
</group>
<group chance="9.011">
<item id="6574" min="1" max="1" chance="100" /> <!-- Blessed Scroll: Enchant Armor (C-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="281" min="1" max="1" chance="8.894" /> <!-- Crystallized Ice Bow -->
<item id="397" min="1" max="1" chance="3.536" /> <!-- Reinforced Mithril Shirt -->
<item id="2387" min="1" max="1" chance="1.73" /> <!-- Reinforced Mithril Gaiters -->
<item id="6574" min="1" max="1" chance="9.011" /> <!-- Blessed Scroll: Enchant Armor (C-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="49.1" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="16" />
@@ -808,26 +790,20 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="7.042">
<item id="6678" min="1" max="1" chance="89.349616586197" /> <!-- Sealed Imperial Crusader Shield -->
<item id="6367" min="1" max="1" chance="10.650383413803" /> <!-- Angel Slayer -->
</group>
<group chance="11.802">
<item id="6683" min="1" max="1" chance="75.48720555838" /> <!-- Sealed Draconic Leather Helmet -->
<item id="6679" min="1" max="1" chance="24.51279444162" /> <!-- Sealed Imperial Crusader Helmet -->
</group>
<group chance="100">
<item id="9817" min="3" max="7" chance="37.098249732454" /> <!-- Nonliving Nucleus -->
<item id="8176" min="1" max="4" chance="36.955846307868" /> <!-- Destruction Tombstone -->
<item id="8619" min="1" max="1" chance="23.984188904616" /> <!-- Ancient Book: Divine Inspiration (Original Language Version) -->
<item id="6570" min="1" max="1" chance="1.3886491524839" /> <!-- Blessed Scroll: Enchant Armor (A-grade) -->
<item id="6578" min="1" max="1" chance="0.5730659025788" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6678" min="1" max="1" chance="6.29199999999999" /> <!-- Sealed Imperial Crusader Shield -->
<item id="6367" min="1" max="1" chance="0.750000000000007" /> <!-- Angel Slayer -->
<item id="6683" min="1" max="1" chance="8.90900000000001" /> <!-- Sealed Draconic Leather Helmet -->
<item id="6679" min="1" max="1" chance="2.89299999999999" /> <!-- Sealed Imperial Crusader Helmet -->
<item id="9817" min="3" max="7" chance="37.098249732454" /> <!-- Nonliving Nucleus -->
<item id="8176" min="1" max="4" chance="36.955846307868" /> <!-- Destruction Tombstone -->
<item id="8619" min="1" max="1" chance="23.984188904616" /> <!-- Ancient Book: Divine Inspiration (Original Language Version) -->
<item id="6570" min="1" max="1" chance="1.3886491524839" /> <!-- Blessed Scroll: Enchant Armor (A-grade) -->
<item id="6578" min="1" max="1" chance="0.5730659025788" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="79.47" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="35" />
@@ -878,30 +854,24 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="98.395">
<item id="81" min="1" max="1" chance="1.1819706285889" /> <!-- Dragon Slayer -->
<item id="2500" min="1" max="1" chance="1.1697748869353" /> <!-- Dark Legion's Edge -->
<item id="151" min="1" max="1" chance="1.0783068245338" /> <!-- Sword of Miracles -->
<item id="5529" min="2" max="6" chance="38.192997611667" /> <!-- Dragon Slayer Edge -->
<item id="5546" min="3" max="9" chance="30.458864779714" /> <!-- Sword of Miracles Edge -->
<item id="5545" min="3" max="9" chance="27.91808526856" /> <!-- Dark Legion's Edge Blade -->
</group>
<group chance="27.371">
<item id="5316" min="1" max="1" chance="9.769464031274" /> <!-- Sealed Majestic Plate Armor -->
<item id="5311" min="1" max="1" chance="9.4552628694604" /> <!-- Sealed Armor of Nightmare -->
<item id="5523" min="12" max="36" chance="61.013481421943" /> <!-- Sealed Majestic Plate Armor Pattern -->
<item id="5522" min="36" max="108" chance="19.761791677323" /> <!-- Sealed Armor of Nightmare Pattern -->
</group>
<group chance="11.526">
<item id="960" min="1" max="1" chance="88.842616692695" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="8.5545722713864" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="2.6028110359188" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="81" min="1" max="1" chance="1.16300000000005" /> <!-- Dragon Slayer -->
<item id="2500" min="1" max="1" chance="1.15099999999999" /> <!-- Dark Legion's Edge -->
<item id="151" min="1" max="1" chance="1.06100000000003" /> <!-- Sword of Miracles -->
<item id="5529" min="2" max="6" chance="37.5799999999997" /> <!-- Dragon Slayer Edge -->
<item id="5546" min="3" max="9" chance="29.9699999999996" /> <!-- Sword of Miracles Edge -->
<item id="5545" min="3" max="9" chance="27.4699999999996" /> <!-- Dark Legion's Edge Blade -->
<item id="5316" min="1" max="1" chance="2.67400000000001" /> <!-- Sealed Majestic Plate Armor -->
<item id="5311" min="1" max="1" chance="2.58800000000001" /> <!-- Sealed Armor of Nightmare -->
<item id="5523" min="12" max="36" chance="16.7" /> <!-- Sealed Majestic Plate Armor Pattern -->
<item id="5522" min="36" max="108" chance="5.40900000000008" /> <!-- Sealed Armor of Nightmare Pattern -->
<item id="960" min="1" max="1" chance="10.24" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="0.985999999999996" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.300000000000001" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="80.87" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="38" />
@@ -1029,22 +999,18 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="1.2">
<item id="6365" min="1" max="1" chance="25" /> <!-- Basalt Battlehammer -->
<item id="6366" min="1" max="1" chance="25" /> <!-- Imperial Staff -->
<item id="6369" min="1" max="1" chance="25" /> <!-- Dragon Hunter Axe -->
<item id="6579" min="1" max="1" chance="25" /> <!-- Arcana Mace -->
</group>
<group chance="16.09">
<item id="6725" min="1" max="1" chance="46.041019266625" /> <!-- Sealed Tateossian Ring -->
<item id="6724" min="1" max="1" chance="30.702299564947" /> <!-- Sealed Tateossian Earring -->
<item id="6726" min="1" max="1" chance="23.256681168428" /> <!-- Sealed Tateossian Necklace -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6365" min="1" max="1" chance="0.3" /> <!-- Basalt Battlehammer -->
<item id="6366" min="1" max="1" chance="0.3" /> <!-- Imperial Staff -->
<item id="6369" min="1" max="1" chance="0.3" /> <!-- Dragon Hunter Axe -->
<item id="6579" min="1" max="1" chance="0.3" /> <!-- Arcana Mace -->
<item id="6725" min="1" max="1" chance="7.40799999999996" /> <!-- Sealed Tateossian Ring -->
<item id="6724" min="1" max="1" chance="4.93999999999997" /> <!-- Sealed Tateossian Earring -->
<item id="6726" min="1" max="1" chance="3.74200000000007" /> <!-- Sealed Tateossian Necklace -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="86.09" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="30" />
@@ -1111,32 +1077,24 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="25.14">
<item id="128" min="1" max="1" chance="11.304693715195" /> <!-- Knight's Sword -->
<item id="126" min="1" max="1" chance="11.121718377088" /> <!-- Artisan's Sword -->
<item id="69" min="1" max="1" chance="10.954653937947" /> <!-- Bastard Sword -->
<item id="125" min="1" max="1" chance="10.891010342084" /> <!-- Spinebone Sword -->
<item id="2021" min="3" max="9" chance="55.727923627685" /> <!-- Spinebone Sword Blade -->
</group>
<group chance="12.859">
<item id="377" min="1" max="1" chance="18.267361381134" /> <!-- Scale Gaiters -->
<item id="1937" min="28" max="84" chance="81.732638618866" /> <!-- Scale Gaiter Fragment -->
</group>
<group chance="17.361">
<item id="348" min="1" max="1" chance="81.331720523011" /> <!-- Scale Mail -->
<item id="1935" min="60" max="180" chance="18.668279476989" /> <!-- Scale Mail Fragment -->
</group>
<group chance="100">
<item id="9712" min="1" max="1" chance="66.761467951157" /> <!-- Gate Key: Massive Cavern -->
<item id="956" min="1" max="1" chance="31.1642532396" /> <!-- Scroll: Enchant Armor (D-grade) -->
<item id="6576" min="1" max="1" chance="1.873994405389" /> <!-- Blessed Scroll: Enchant Armor (D-grade) -->
<item id="6575" min="1" max="1" chance="0.20028440385347" /> <!-- Blessed Scroll: Enchant Weapon (D-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="128" min="1" max="1" chance="2.84200000000002" /> <!-- Knight's Sword -->
<item id="126" min="1" max="1" chance="2.79599999999992" /> <!-- Artisan's Sword -->
<item id="69" min="1" max="1" chance="2.75399999999988" /> <!-- Bastard Sword -->
<item id="125" min="1" max="1" chance="2.73799999999992" /> <!-- Spinebone Sword -->
<item id="2021" min="3" max="9" chance="14.01" /> <!-- Spinebone Sword Blade -->
<item id="377" min="1" max="1" chance="2.34900000000002" /> <!-- Scale Gaiters -->
<item id="1937" min="28" max="84" chance="10.51" /> <!-- Scale Gaiter Fragment -->
<item id="348" min="1" max="1" chance="14.1199999999999" /> <!-- Scale Mail -->
<item id="1935" min="60" max="180" chance="3.24100000000006" /> <!-- Scale Mail Fragment -->
<item id="9712" min="1" max="1" chance="66.761467951157" /> <!-- Gate Key: Massive Cavern -->
<item id="956" min="1" max="1" chance="31.1642532396" /> <!-- Scroll: Enchant Armor (D-grade) -->
<item id="6576" min="1" max="1" chance="1.873994405389" /> <!-- Blessed Scroll: Enchant Armor (D-grade) -->
<item id="6575" min="1" max="1" chance="0.20028440385347" /> <!-- Blessed Scroll: Enchant Weapon (D-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="41.29" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="10" />
@@ -1766,28 +1724,22 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" aggroRange="300" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="100">
<item id="6365" min="1" max="1" chance="0.22675736961451" /> <!-- Basalt Battlehammer -->
<item id="6366" min="1" max="1" chance="0.22675736961451" /> <!-- Imperial Staff -->
<item id="6369" min="1" max="1" chance="0.22675736961451" /> <!-- Dragon Hunter Axe -->
<item id="6579" min="1" max="1" chance="0.22675736961451" /> <!-- Arcana Mace -->
<item id="6693" min="3" max="9" chance="25.343915343915" /> <!-- Dragon Hunter Axe Blade -->
<item id="6689" min="18" max="54" chance="25.147392290249" /> <!-- Basalt Battlehammer Head -->
<item id="6697" min="3" max="9" chance="24.331065759637" /> <!-- Arcana Mace Head -->
<item id="6690" min="2" max="6" chance="24.27059712774" /> <!-- Imperial Staff Head -->
</group>
<group chance="93.145">
<item id="6680" min="1" max="1" chance="0.80519619947394" /> <!-- Sealed Draconic Leather Armor -->
<item id="6707" min="24" max="72" chance="99.194803800526" /> <!-- Sealed Draconic Leather Armor Part -->
</group>
<group chance="0.03">
<item id="10301" min="1" max="1" chance="100" /> <!-- Transformation Sealbook: Demon Prince -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6365" min="1" max="1" chance="0.22675736961451" /> <!-- Basalt Battlehammer -->
<item id="6366" min="1" max="1" chance="0.22675736961451" /> <!-- Imperial Staff -->
<item id="6369" min="1" max="1" chance="0.22675736961451" /> <!-- Dragon Hunter Axe -->
<item id="6579" min="1" max="1" chance="0.22675736961451" /> <!-- Arcana Mace -->
<item id="6693" min="3" max="9" chance="25.343915343915" /> <!-- Dragon Hunter Axe Blade -->
<item id="6689" min="18" max="54" chance="25.147392290249" /> <!-- Basalt Battlehammer Head -->
<item id="6697" min="3" max="9" chance="24.331065759637" /> <!-- Arcana Mace Head -->
<item id="6690" min="2" max="6" chance="24.27059712774" /> <!-- Imperial Staff Head -->
<item id="6680" min="1" max="1" chance="0.750000000000001" /> <!-- Sealed Draconic Leather Armor -->
<item id="6707" min="24" max="72" chance="92.3949999999999" /> <!-- Sealed Draconic Leather Armor Part -->
<item id="10301" min="1" max="1" chance="0.03" /> <!-- Transformation Sealbook: Demon Prince -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="92.445" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="33" grown="39.6" />
@@ -1897,22 +1849,18 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="100">
<item id="6364" min="1" max="1" chance="0.17707472553418" /> <!-- Forgotten Blade -->
<item id="6372" min="1" max="1" chance="0.17707472553418" /> <!-- Heaven's Divider -->
<item id="7575" min="1" max="1" chance="0.17707472553418" /> <!-- Draconic Bow -->
<item id="6688" min="40" max="120" chance="33.301853382127" /> <!-- Forgotten Blade Edge -->
<item id="6696" min="81" max="243" chance="33.095266202337" /> <!-- Heaven's Divider Edge -->
<item id="7579" min="14" max="42" chance="33.071656238933" /> <!-- Draconic Bow Shaft -->
</group>
<group chance="0.03">
<item id="10299" min="1" max="1" chance="100" /> <!-- Transformation Sealbook: Ranku -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6364" min="1" max="1" chance="0.17707472553418" /> <!-- Forgotten Blade -->
<item id="6372" min="1" max="1" chance="0.17707472553418" /> <!-- Heaven's Divider -->
<item id="7575" min="1" max="1" chance="0.17707472553418" /> <!-- Draconic Bow -->
<item id="6688" min="40" max="120" chance="33.301853382127" /> <!-- Forgotten Blade Edge -->
<item id="6696" min="81" max="243" chance="33.095266202337" /> <!-- Heaven's Divider Edge -->
<item id="7579" min="14" max="42" chance="33.071656238933" /> <!-- Draconic Bow Shaft -->
<item id="10299" min="1" max="1" chance="0.03" /> <!-- Transformation Sealbook: Ranku -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="89.68" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="13" />
@@ -3006,11 +2954,9 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="1000" />
<drop_lists>
<death>
<group chance="100">
<item id="36313" min="14" max="21" chance="100" /> <!-- Battleground Scroll: Sleep -->
</group>
</death>
<drop>
<item id="36313" min="14" max="21" chance="100" /> <!-- Battleground Scroll: Sleep -->
</drop>
</drop_lists>
<collision>
<radius normal="20" />
@@ -3170,11 +3116,9 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="1000" />
<drop_lists>
<death>
<group chance="100">
<item id="36311" min="7" max="14" chance="100" /> <!-- Battleground Scroll: Damage Reflect Resistance -->
</group>
</death>
<drop>
<item id="36311" min="7" max="14" chance="100" /> <!-- Battleground Scroll: Damage Reflect Resistance -->
</drop>
</drop_lists>
<collision>
<radius normal="10" />
@@ -3336,11 +3280,9 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="1000" />
<drop_lists>
<death>
<group chance="100">
<item id="36309" min="100" max="150" chance="100" /> <!-- Healing Potion (Battleground) -->
</group>
</death>
<drop>
<item id="36309" min="100" max="150" chance="100" /> <!-- Healing Potion (Battleground) -->
</drop>
</drop_lists>
<collision>
<radius normal="17" />
@@ -4379,11 +4321,9 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="1000" />
<drop_lists>
<death>
<group chance="100">
<item id="36313" min="14" max="21" chance="100" /> <!-- Battleground Scroll: Sleep -->
</group>
</death>
<drop>
<item id="36313" min="14" max="21" chance="100" /> <!-- Battleground Scroll: Sleep -->
</drop>
</drop_lists>
<collision>
<radius normal="19.5" />
@@ -4540,11 +4480,9 @@
<s_npc_prop_hp_rate>1.331</s_npc_prop_hp_rate>
<ai type="BALANCED" clanHelpRange="300" aggroRange="1000" />
<drop_lists>
<death>
<group chance="100">
<item id="36311" min="7" max="14" chance="100" /> <!-- Battleground Scroll: Damage Reflect Resistance -->
</group>
</death>
<drop>
<item id="36311" min="7" max="14" chance="100" /> <!-- Battleground Scroll: Damage Reflect Resistance -->
</drop>
</drop_lists>
<collision>
<radius normal="20" />
@@ -4603,11 +4541,9 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="1000" />
<drop_lists>
<death>
<group chance="100">
<item id="36309" min="100" max="150" chance="100" /> <!-- Healing Potion (Battleground) -->
</group>
</death>
<drop>
<item id="36309" min="100" max="150" chance="100" /> <!-- Healing Potion (Battleground) -->
</drop>
</drop_lists>
<collision>
<radius normal="46" />
+253 -349
View File
@@ -2144,22 +2144,18 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="6.642">
<item id="14110" min="1" max="1" chance="17.14844926227" /> <!-- Sealed Vesper Boots -->
<item id="14113" min="1" max="1" chance="16.862390846131" /> <!-- Sealed Vesper Leather Gloves -->
<item id="14109" min="1" max="1" chance="16.726889491117" /> <!-- Sealed Vesper Gauntlets -->
<item id="14114" min="1" max="1" chance="16.576332429991" /> <!-- Sealed Vesper Leather Boots -->
<item id="14117" min="1" max="1" chance="16.561276723878" /> <!-- Sealed Vesper Shoes -->
<item id="14116" min="1" max="1" chance="16.124661246612" /> <!-- Sealed Vesper Gloves -->
</group>
<group chance="11.42">
<item id="14052" min="60" max="180" chance="100" /> <!-- Vesper Noble Enhancement Stone -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="14110" min="1" max="1" chance="1.13899999999997" /> <!-- Sealed Vesper Boots -->
<item id="14113" min="1" max="1" chance="1.12000000000002" /> <!-- Sealed Vesper Leather Gloves -->
<item id="14109" min="1" max="1" chance="1.11099999999999" /> <!-- Sealed Vesper Gauntlets -->
<item id="14114" min="1" max="1" chance="1.101" /> <!-- Sealed Vesper Leather Boots -->
<item id="14117" min="1" max="1" chance="1.09999999999998" /> <!-- Sealed Vesper Shoes -->
<item id="14116" min="1" max="1" chance="1.07099999999997" /> <!-- Sealed Vesper Gloves -->
<item id="14052" min="60" max="180" chance="11.42" /> <!-- Vesper Noble Enhancement Stone -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="91.03" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="70" />
@@ -2217,26 +2213,20 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="8.483">
<item id="6367" min="1" max="1" chance="3.5364847341742" /> <!-- Angel Slayer -->
<item id="6691" min="3" max="9" chance="96.463515265826" /> <!-- Angel Slayer Blade -->
</group>
<group chance="8.447">
<item id="6675" min="1" max="1" chance="18.456256659169" /> <!-- Sealed Imperial Crusader Gaiters -->
<item id="6674" min="1" max="1" chance="8.8788919142891" /> <!-- Sealed Imperial Crusader Breastplate -->
<item id="6702" min="28" max="84" chance="56.268497691488" /> <!-- Sealed Imperial Crusader Gaiter Pattern -->
<item id="6701" min="60" max="180" chance="16.396353735054" /> <!-- Sealed Imperial Crusader Breastplate Part -->
</group>
<group chance="8.178">
<item id="960" min="1" max="1" chance="87.160674981658" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="9.1709464416728" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="3.6683785766691" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6367" min="1" max="1" chance="0.299999999999997" /> <!-- Angel Slayer -->
<item id="6691" min="3" max="9" chance="8.18300000000002" /> <!-- Angel Slayer Blade -->
<item id="6675" min="1" max="1" chance="1.55900000000001" /> <!-- Sealed Imperial Crusader Gaiters -->
<item id="6674" min="1" max="1" chance="0.75" /> <!-- Sealed Imperial Crusader Breastplate -->
<item id="6702" min="28" max="84" chance="4.75299999999999" /> <!-- Sealed Imperial Crusader Gaiter Pattern -->
<item id="6701" min="60" max="180" chance="1.38500000000001" /> <!-- Sealed Imperial Crusader Breastplate Part -->
<item id="960" min="1" max="1" chance="7.12799999999999" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="0.750000000000002" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.299999999999999" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="89.81" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="31.68" />
@@ -2294,30 +2284,24 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="31.327">
<item id="6678" min="1" max="1" chance="7.0769623647333" /> <!-- Sealed Imperial Crusader Shield -->
<item id="6371" min="1" max="1" chance="0.95764037411817" /> <!-- Demon Splinter -->
<item id="6695" min="1" max="1" chance="91.965397261149" /> <!-- Demon Splinter Blade -->
</group>
<group chance="64.369">
<item id="6683" min="1" max="1" chance="2.516739424257" /> <!-- Sealed Draconic Leather Helmet -->
<item id="6679" min="1" max="1" chance="2.4079914244434" /> <!-- Sealed Imperial Crusader Helmet -->
<item id="6687" min="1" max="1" chance="2.3613851388091" /> <!-- Sealed Major Arcana Circlet -->
<item id="6705" min="6" max="18" chance="50.645497056036" /> <!-- Sealed Imperial Crusader Shield Part -->
<item id="6706" min="10" max="30" chance="20.149450822601" /> <!-- Sealed Imperial Crusader Helmet Pattern -->
<item id="6710" min="16" max="48" chance="12.815175006603" /> <!-- Sealed Draconic Leather Helmet Pattern -->
<item id="6714" min="22" max="66" chance="9.1037611272507" /> <!-- Sealed Major Arcana Circlet Pattern -->
</group>
<group chance="8.175">
<item id="960" min="1" max="1" chance="87.155963302752" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="9.1743119266055" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="3.6697247706422" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6678" min="1" max="1" chance="2.217" /> <!-- Sealed Imperial Crusader Shield -->
<item id="6371" min="1" max="1" chance="0.299999999999999" /> <!-- Demon Splinter -->
<item id="6695" min="1" max="1" chance="28.8100000000001" /> <!-- Demon Splinter Blade -->
<item id="6683" min="1" max="1" chance="1.61999999999999" /> <!-- Sealed Draconic Leather Helmet -->
<item id="6679" min="1" max="1" chance="1.54999999999997" /> <!-- Sealed Imperial Crusader Helmet -->
<item id="6687" min="1" max="1" chance="1.52000000000003" /> <!-- Sealed Major Arcana Circlet -->
<item id="6705" min="6" max="18" chance="32.5999999999998" /> <!-- Sealed Imperial Crusader Shield Part -->
<item id="6706" min="10" max="30" chance="12.97" /> <!-- Sealed Imperial Crusader Helmet Pattern -->
<item id="6710" min="16" max="48" chance="8.24900000000028" /> <!-- Sealed Draconic Leather Helmet Pattern -->
<item id="6714" min="22" max="66" chance="5.86" /> <!-- Sealed Major Arcana Circlet Pattern -->
<item id="960" min="1" max="1" chance="7.12499999999998" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="0.75" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.3" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="86.43" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="31.68" />
@@ -2377,28 +2361,22 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="12.062">
<item id="6364" min="1" max="1" chance="2.4871497264135" /> <!-- Forgotten Blade -->
<item id="6372" min="1" max="1" chance="2.4871497264135" /> <!-- Heaven's Divider -->
<item id="6688" min="3" max="9" chance="51.243574863207" /> <!-- Forgotten Blade Edge -->
<item id="6696" min="3" max="9" chance="43.782125683966" /> <!-- Heaven's Divider Edge -->
</group>
<group chance="5.705">
<item id="6675" min="1" max="1" chance="19.474145486415" /> <!-- Sealed Imperial Crusader Gaiters -->
<item id="6674" min="1" max="1" chance="13.146362839614" /> <!-- Sealed Imperial Crusader Breastplate -->
<item id="6702" min="32" max="96" chance="54.233128834356" /> <!-- Sealed Imperial Crusader Gaiter Pattern -->
<item id="6701" min="67" max="201" chance="13.146362839614" /> <!-- Sealed Imperial Crusader Breastplate Part -->
</group>
<group chance="8.173">
<item id="960" min="1" max="1" chance="87.152820261838" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="9.1765569558302" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="3.6706227823321" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6364" min="1" max="1" chance="0.299999999999996" /> <!-- Forgotten Blade -->
<item id="6372" min="1" max="1" chance="0.299999999999996" /> <!-- Heaven's Divider -->
<item id="6688" min="3" max="9" chance="6.18100000000003" /> <!-- Forgotten Blade Edge -->
<item id="6696" min="3" max="9" chance="5.28099999999998" /> <!-- Heaven's Divider Edge -->
<item id="6675" min="1" max="1" chance="1.11099999999998" /> <!-- Sealed Imperial Crusader Gaiters -->
<item id="6674" min="1" max="1" chance="0.749999999999979" /> <!-- Sealed Imperial Crusader Breastplate -->
<item id="6702" min="32" max="96" chance="3.09400000000001" /> <!-- Sealed Imperial Crusader Gaiter Pattern -->
<item id="6701" min="67" max="201" chance="0.749999999999979" /> <!-- Sealed Imperial Crusader Breastplate Part -->
<item id="960" min="1" max="1" chance="7.12300000000002" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="0.750000000000002" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.300000000000003" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="86.45" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="24" />
@@ -2456,24 +2434,18 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="3.353">
<item id="7575" min="1" max="1" chance="8.9472114524307" /> <!-- Draconic Bow -->
<item id="7579" min="12" max="36" chance="91.052788547569" /> <!-- Draconic Bow Shaft -->
</group>
<group chance="7.923">
<item id="6680" min="1" max="1" chance="15.070049223779" /> <!-- Sealed Draconic Leather Armor -->
<item id="6707" min="15" max="45" chance="84.929950776221" /> <!-- Sealed Draconic Leather Armor Part -->
</group>
<group chance="8.084">
<item id="960" min="1" max="1" chance="87.011380504701" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="9.2775853537853" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="3.7110341415141" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="7575" min="1" max="1" chance="0.300000000000001" /> <!-- Draconic Bow -->
<item id="7579" min="12" max="36" chance="3.05299999999999" /> <!-- Draconic Bow Shaft -->
<item id="6680" min="1" max="1" chance="1.19400000000001" /> <!-- Sealed Draconic Leather Armor -->
<item id="6707" min="15" max="45" chance="6.72899999999999" /> <!-- Sealed Draconic Leather Armor Part -->
<item id="960" min="1" max="1" chance="7.03400000000003" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="0.750000000000004" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.3" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="86.08" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="24" />
@@ -2534,29 +2506,23 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="17.039">
<item id="6365" min="1" max="1" chance="1.7606667057926" /> <!-- Basalt Battlehammer -->
<item id="6366" min="1" max="1" chance="1.7606667057926" /> <!-- Imperial Staff -->
<item id="6369" min="1" max="1" chance="1.7606667057926" /> <!-- Dragon Hunter Axe -->
<item id="6579" min="1" max="1" chance="1.7606667057926" /> <!-- Arcana Mace -->
<item id="6690" min="2" max="6" chance="34.937496331944" /> <!-- Imperial Staff Head -->
<item id="6693" min="3" max="9" chance="28.716473971477" /> <!-- Dragon Hunter Axe Blade -->
<item id="6697" min="3" max="9" chance="24.901696108927" /> <!-- Arcana Mace Head -->
<item id="6689" min="18" max="54" chance="4.4016667644815" /> <!-- Basalt Battlehammer Head -->
</group>
<group chance="2.012">
<item id="6684" min="1" max="1" chance="14.910536779324" /> <!-- Sealed Major Arcana Robe -->
<item id="6711" min="24" max="72" chance="85.089463220676" /> <!-- Sealed Major Arcana Robe Part -->
</group>
<group chance="14.172">
<item id="3936" min="1" max="1" chance="92.153542195879" /> <!-- Blessed Scroll of Resurrection -->
<item id="6578" min="1" max="1" chance="7.8464578041208" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6365" min="1" max="1" chance="0.300000000000001" /> <!-- Basalt Battlehammer -->
<item id="6366" min="1" max="1" chance="0.300000000000001" /> <!-- Imperial Staff -->
<item id="6369" min="1" max="1" chance="0.300000000000001" /> <!-- Dragon Hunter Axe -->
<item id="6579" min="1" max="1" chance="0.300000000000001" /> <!-- Arcana Mace -->
<item id="6690" min="2" max="6" chance="5.95299999999994" /> <!-- Imperial Staff Head -->
<item id="6693" min="3" max="9" chance="4.89299999999997" /> <!-- Dragon Hunter Axe Blade -->
<item id="6697" min="3" max="9" chance="4.24300000000007" /> <!-- Arcana Mace Head -->
<item id="6689" min="18" max="54" chance="0.750000000000003" /> <!-- Basalt Battlehammer Head -->
<item id="6684" min="1" max="1" chance="0.299999999999999" /> <!-- Sealed Major Arcana Robe -->
<item id="6711" min="24" max="72" chance="1.712" /> <!-- Sealed Major Arcana Robe Part -->
<item id="3936" min="1" max="1" chance="13.06" /> <!-- Blessed Scroll of Resurrection -->
<item id="6578" min="1" max="1" chance="1.112" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="92.285" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="34.32" />
@@ -2617,25 +2583,19 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="12.236">
<item id="6364" min="1" max="1" chance="2.451781627983" /> <!-- Forgotten Blade -->
<item id="6372" min="1" max="1" chance="2.451781627983" /> <!-- Heaven's Divider -->
<item id="6696" min="2" max="6" chance="80.573716900948" /> <!-- Heaven's Divider Edge -->
<item id="6688" min="14" max="42" chance="14.522719843086" /> <!-- Forgotten Blade Edge -->
</group>
<group chance="4.489">
<item id="6684" min="1" max="1" chance="16.70750723992" /> <!-- Sealed Major Arcana Robe -->
<item id="6711" min="18" max="54" chance="83.29249276008" /> <!-- Sealed Major Arcana Robe Part -->
</group>
<group chance="14.142">
<item id="3936" min="1" max="1" chance="91.571206335738" /> <!-- Blessed Scroll of Resurrection -->
<item id="6578" min="1" max="1" chance="8.4287936642625" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6364" min="1" max="1" chance="0.3" /> <!-- Forgotten Blade -->
<item id="6372" min="1" max="1" chance="0.3" /> <!-- Heaven's Divider -->
<item id="6696" min="2" max="6" chance="9.859" /> <!-- Heaven's Divider Edge -->
<item id="6688" min="14" max="42" chance="1.777" /> <!-- Forgotten Blade Edge -->
<item id="6684" min="1" max="1" chance="0.750000000000009" /> <!-- Sealed Major Arcana Robe -->
<item id="6711" min="18" max="54" chance="3.73899999999999" /> <!-- Sealed Major Arcana Robe Part -->
<item id="3936" min="1" max="1" chance="12.9500000000001" /> <!-- Blessed Scroll of Resurrection -->
<item id="6578" min="1" max="1" chance="1.192" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="90.005" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="34.32" />
@@ -3043,29 +3003,23 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="32.999">
<item id="6678" min="1" max="1" chance="6.6941422467348" /> <!-- Sealed Imperial Crusader Shield -->
<item id="6370" min="1" max="1" chance="0.9091184581351" /> <!-- Saint Spear -->
<item id="6694" min="1" max="1" chance="92.39673929513" /> <!-- Saint Spear Blade -->
</group>
<group chance="64.368">
<item id="6683" min="1" max="1" chance="2.5462962962963" /> <!-- Sealed Draconic Leather Helmet -->
<item id="6679" min="1" max="1" chance="2.5043499875715" /> <!-- Sealed Imperial Crusader Helmet -->
<item id="6687" min="1" max="1" chance="2.4717250807855" /> <!-- Sealed Major Arcana Circlet -->
<item id="6705" min="6" max="18" chance="50.739497887149" /> <!-- Sealed Imperial Crusader Shield Part -->
<item id="6706" min="10" max="30" chance="19.854586129754" /> <!-- Sealed Imperial Crusader Helmet Pattern -->
<item id="6710" min="16" max="48" chance="12.773427790206" /> <!-- Sealed Draconic Leather Helmet Pattern -->
<item id="6714" min="22" max="66" chance="9.1101168282376" /> <!-- Sealed Major Arcana Circlet Pattern -->
</group>
<group chance="14.967">
<item id="3936" min="1" max="1" chance="91.801964321507" /> <!-- Blessed Scroll of Resurrection -->
<item id="6578" min="1" max="1" chance="8.1980356784927" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6678" min="1" max="1" chance="2.20900000000002" /> <!-- Sealed Imperial Crusader Shield -->
<item id="6370" min="1" max="1" chance="0.300000000000002" /> <!-- Saint Spear -->
<item id="6694" min="1" max="1" chance="30.4899999999999" /> <!-- Saint Spear Blade -->
<item id="6683" min="1" max="1" chance="1.639" /> <!-- Sealed Draconic Leather Helmet -->
<item id="6679" min="1" max="1" chance="1.61200000000002" /> <!-- Sealed Imperial Crusader Helmet -->
<item id="6687" min="1" max="1" chance="1.59100000000001" /> <!-- Sealed Major Arcana Circlet -->
<item id="6705" min="6" max="18" chance="32.6600000000001" /> <!-- Sealed Imperial Crusader Shield Part -->
<item id="6706" min="10" max="30" chance="12.7800000000001" /> <!-- Sealed Imperial Crusader Helmet Pattern -->
<item id="6710" min="16" max="48" chance="8.2219999999998" /> <!-- Sealed Draconic Leather Helmet Pattern -->
<item id="6714" min="22" max="66" chance="5.86399999999998" /> <!-- Sealed Major Arcana Circlet Pattern -->
<item id="3936" min="1" max="1" chance="13.74" /> <!-- Blessed Scroll of Resurrection -->
<item id="6578" min="1" max="1" chance="1.227" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="91.45" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="24" />
@@ -3432,11 +3386,9 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="100">
<item id="36310" min="7" max="14" chance="100" /> <!-- Battleground Scroll: Remove Invincibility -->
</group>
</death>
<drop>
<item id="36310" min="7" max="14" chance="100" /> <!-- Battleground Scroll: Remove Invincibility -->
</drop>
</drop_lists>
<collision>
<radius normal="30" />
@@ -3793,11 +3745,9 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="100">
<item id="36310" min="7" max="14" chance="100" /> <!-- Battleground Scroll: Remove Invincibility -->
</group>
</death>
<drop>
<item id="36310" min="7" max="14" chance="100" /> <!-- Battleground Scroll: Remove Invincibility -->
</drop>
</drop_lists>
<collision>
<radius normal="30" />
@@ -4272,26 +4222,22 @@
<ex_crt_effect>true</ex_crt_effect>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="28.393">
<item id="9525" min="1" max="1" chance="4.0150741379918" /> <!-- Sealed Dynasty Stockings -->
<item id="9514" min="1" max="1" chance="2.6414961434156" /> <!-- Sealed Dynasty Breastplate -->
<item id="9515" min="1" max="1" chance="2.6414961434156" /> <!-- Sealed Dynasty Gaiters -->
<item id="9524" min="1" max="1" chance="2.6414961434156" /> <!-- Sealed Dynasty Tunic -->
<item id="9531" min="6" max="18" chance="42.475257986123" /> <!-- Sealed Dynasty Gaiters Piece -->
<item id="9530" min="10" max="30" chance="24.227802627408" /> <!-- Sealed Dynasty Breastplate Piece -->
<item id="9541" min="16" max="48" chance="14.186595287571" /> <!-- Sealed Dynasty Stockings Piece -->
<item id="9540" min="22" max="66" chance="7.170781530659" /> <!-- Sealed Dynasty Tunic Piece -->
</group>
<group chance="11.007">
<item id="960" min="1" max="1" chance="90.460615971654" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="6.8138457345326" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="2.725538293813" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="9525" min="1" max="1" chance="1.14000000000001" /> <!-- Sealed Dynasty Stockings -->
<item id="9514" min="1" max="1" chance="0.749999999999991" /> <!-- Sealed Dynasty Breastplate -->
<item id="9515" min="1" max="1" chance="0.749999999999991" /> <!-- Sealed Dynasty Gaiters -->
<item id="9524" min="1" max="1" chance="0.749999999999991" /> <!-- Sealed Dynasty Tunic -->
<item id="9531" min="6" max="18" chance="12.0599999999999" /> <!-- Sealed Dynasty Gaiters Piece -->
<item id="9530" min="10" max="30" chance="6.87899999999995" /> <!-- Sealed Dynasty Breastplate Piece -->
<item id="9541" min="16" max="48" chance="4.02800000000003" /> <!-- Sealed Dynasty Stockings Piece -->
<item id="9540" min="22" max="66" chance="2.03600000000001" /> <!-- Sealed Dynasty Tunic Piece -->
<item id="960" min="1" max="1" chance="9.95699999999995" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="0.750000000000003" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.299999999999997" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="87.3" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="45" />
@@ -4439,24 +4385,18 @@
<ex_crt_effect>true</ex_crt_effect>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="0.3">
<item id="10223" min="1" max="1" chance="100" /> <!-- Icarus Spitter -->
</group>
<group chance="8.557">
<item id="9515" min="1" max="1" chance="14.86502278836" /> <!-- Sealed Dynasty Gaiters -->
<item id="9514" min="1" max="1" chance="8.764754002571" /> <!-- Sealed Dynasty Breastplate -->
<item id="9531" min="24" max="72" chance="52.892368820848" /> <!-- Sealed Dynasty Gaiters Piece -->
<item id="9530" min="52" max="156" chance="23.47785438822" /> <!-- Sealed Dynasty Breastplate Piece -->
</group>
<group chance="18.727">
<item id="3936" min="1" max="1" chance="92.166390772681" /> <!-- Blessed Scroll of Resurrection -->
<item id="6578" min="1" max="1" chance="7.8336092273188" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="10223" min="1" max="1" chance="0.3" /> <!-- Icarus Spitter -->
<item id="9515" min="1" max="1" chance="1.27199999999997" /> <!-- Sealed Dynasty Gaiters -->
<item id="9514" min="1" max="1" chance="0.75" /> <!-- Sealed Dynasty Breastplate -->
<item id="9531" min="24" max="72" chance="4.52599999999996" /> <!-- Sealed Dynasty Gaiters Piece -->
<item id="9530" min="52" max="156" chance="2.00899999999999" /> <!-- Sealed Dynasty Breastplate Piece -->
<item id="3936" min="1" max="1" chance="17.26" /> <!-- Blessed Scroll of Resurrection -->
<item id="6578" min="1" max="1" chance="1.46699999999999" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="86.71" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="17" />
@@ -4596,28 +4536,22 @@
<ex_crt_effect>true</ex_crt_effect>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="2.537">
<item id="9529" min="1" max="1" chance="76.350019708317" /> <!-- Sealed Dynasty Shield -->
<item id="10220" min="1" max="1" chance="11.824990145842" /> <!-- Icarus Hammer -->
<item id="10222" min="1" max="1" chance="11.824990145842" /> <!-- Icarus Hall -->
</group>
<group chance="12.732">
<item id="13885" min="1" max="1" chance="29.170593779453" /> <!-- Sealed Arcana Sigil -->
<item id="9516" min="1" max="1" chance="10.768143261074" /> <!-- Sealed Dynasty Helmet -->
<item id="10114" min="14" max="42" chance="32.39082626453" /> <!-- Sealed Dynasty Sigil Piece -->
<item id="9545" min="40" max="120" chance="19.64341815897" /> <!-- Sealed Dynasty Shield Fragment -->
<item id="9532" min="81" max="243" chance="8.0270185359724" /> <!-- Sealed Dynasty Helmet Piece -->
</group>
<group chance="10.464">
<item id="960" min="1" max="1" chance="89.965596330275" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="7.1674311926606" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="2.8669724770642" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="9529" min="1" max="1" chance="1.937" /> <!-- Sealed Dynasty Shield -->
<item id="10220" min="1" max="1" chance="0.300000000000012" /> <!-- Icarus Hammer -->
<item id="10222" min="1" max="1" chance="0.300000000000012" /> <!-- Icarus Hall -->
<item id="13885" min="1" max="1" chance="3.71399999999996" /> <!-- Sealed Arcana Sigil -->
<item id="9516" min="1" max="1" chance="1.37099999999994" /> <!-- Sealed Dynasty Helmet -->
<item id="10114" min="14" max="42" chance="4.12399999999996" /> <!-- Sealed Dynasty Sigil Piece -->
<item id="9545" min="40" max="120" chance="2.50100000000006" /> <!-- Sealed Dynasty Shield Fragment -->
<item id="9532" min="81" max="243" chance="1.02200000000001" /> <!-- Sealed Dynasty Helmet Piece -->
<item id="960" min="1" max="1" chance="9.41399999999998" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="0.750000000000005" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.299999999999998" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="91.625" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="10" />
@@ -4836,32 +4770,26 @@
<ex_crt_effect>true</ex_crt_effect>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="0.225">
<item id="9442" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Sword -->
<item id="9443" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Blade -->
<item id="9444" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Phantom -->
</group>
<group chance="20.49">
<item id="9454" min="1" max="1" chance="8.9848706686188" /> <!-- Sealed Dynasty Ring -->
<item id="9452" min="1" max="1" chance="6.066373840898" /> <!-- Sealed Dynasty Earring -->
<item id="9453" min="1" max="1" chance="3.6603221083455" /> <!-- Sealed Dynasty Necklace -->
<item id="9992" min="2" max="6" chance="40.234260614934" /> <!-- Sealed Dynasty Necklace Gemstone -->
<item id="9993" min="5" max="15" chance="29.526598340654" /> <!-- Sealed Dynasty Ring Gemstone -->
<item id="9991" min="9" max="27" chance="11.52757442655" /> <!-- Sealed Dynasty Earring Gemstone -->
</group>
<group chance="10.093">
<item id="960" min="1" max="1" chance="54.225700980878" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="9616" min="3" max="9" chance="14.594273258694" /> <!-- Dynasty Sword Piece -->
<item id="9617" min="4" max="12" chance="12.176756167641" /> <!-- Dynasty Blade Piece -->
<item id="9618" min="4" max="12" chance="10.829287625087" /> <!-- Dynasty Phantom Piece -->
<item id="959" min="1" max="1" chance="7.4308926979094" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.74308926979094" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="9442" min="1" max="1" chance="0.0749999999999992" /> <!-- Dynasty Sword -->
<item id="9443" min="1" max="1" chance="0.0749999999999992" /> <!-- Dynasty Blade -->
<item id="9444" min="1" max="1" chance="0.0749999999999992" /> <!-- Dynasty Phantom -->
<item id="9454" min="1" max="1" chance="1.84099999999999" /> <!-- Sealed Dynasty Ring -->
<item id="9452" min="1" max="1" chance="1.243" /> <!-- Sealed Dynasty Earring -->
<item id="9453" min="1" max="1" chance="0.749999999999993" /> <!-- Sealed Dynasty Necklace -->
<item id="9992" min="2" max="6" chance="8.24399999999998" /> <!-- Sealed Dynasty Necklace Gemstone -->
<item id="9993" min="5" max="15" chance="6.05" /> <!-- Sealed Dynasty Ring Gemstone -->
<item id="9991" min="9" max="27" chance="2.36200000000009" /> <!-- Sealed Dynasty Earring Gemstone -->
<item id="960" min="1" max="1" chance="5.47300000000002" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="9616" min="3" max="9" chance="1.47299999999999" /> <!-- Dynasty Sword Piece -->
<item id="9617" min="4" max="12" chance="1.22900000000001" /> <!-- Dynasty Blade Piece -->
<item id="9618" min="4" max="12" chance="1.09300000000003" /> <!-- Dynasty Phantom Piece -->
<item id="959" min="1" max="1" chance="0.749999999999996" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.0749999999999996" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="90.645" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="30" />
@@ -4927,32 +4855,26 @@
<ex_crt_effect>true</ex_crt_effect>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="0.225">
<item id="9442" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Sword -->
<item id="9443" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Blade -->
<item id="9444" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Phantom -->
</group>
<group chance="20.188">
<item id="9454" min="1" max="1" chance="8.6041212601545" /> <!-- Sealed Dynasty Ring -->
<item id="9452" min="1" max="1" chance="5.7459877154745" /> <!-- Sealed Dynasty Earring -->
<item id="9453" min="1" max="1" chance="3.7150782643154" /> <!-- Sealed Dynasty Necklace -->
<item id="9992" min="2" max="6" chance="40.558747770953" /> <!-- Sealed Dynasty Necklace Gemstone -->
<item id="9993" min="5" max="15" chance="29.928670497325" /> <!-- Sealed Dynasty Ring Gemstone -->
<item id="9991" min="9" max="27" chance="11.447394491777" /> <!-- Sealed Dynasty Earring Gemstone -->
</group>
<group chance="10.234">
<item id="960" min="1" max="1" chance="54.016025014657" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="9616" min="3" max="9" chance="14.188000781708" /> <!-- Dynasty Sword Piece -->
<item id="9617" min="4" max="12" chance="12.223959351182" /> <!-- Dynasty Blade Piece -->
<item id="9618" min="4" max="12" chance="11.510650771937" /> <!-- Dynasty Phantom Piece -->
<item id="959" min="1" max="1" chance="7.328512800469" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.7328512800469" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="9442" min="1" max="1" chance="0.0749999999999992" /> <!-- Dynasty Sword -->
<item id="9443" min="1" max="1" chance="0.0749999999999992" /> <!-- Dynasty Blade -->
<item id="9444" min="1" max="1" chance="0.0749999999999992" /> <!-- Dynasty Phantom -->
<item id="9454" min="1" max="1" chance="1.73699999999999" /> <!-- Sealed Dynasty Ring -->
<item id="9452" min="1" max="1" chance="1.15999999999999" /> <!-- Sealed Dynasty Earring -->
<item id="9453" min="1" max="1" chance="0.749999999999993" /> <!-- Sealed Dynasty Necklace -->
<item id="9992" min="2" max="6" chance="8.18799999999999" /> <!-- Sealed Dynasty Necklace Gemstone -->
<item id="9993" min="5" max="15" chance="6.04199999999997" /> <!-- Sealed Dynasty Ring Gemstone -->
<item id="9991" min="9" max="27" chance="2.31099999999994" /> <!-- Sealed Dynasty Earring Gemstone -->
<item id="960" min="1" max="1" chance="5.528" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="9616" min="3" max="9" chance="1.452" /> <!-- Dynasty Sword Piece -->
<item id="9617" min="4" max="12" chance="1.25099999999997" /> <!-- Dynasty Blade Piece -->
<item id="9618" min="4" max="12" chance="1.17800000000003" /> <!-- Dynasty Phantom Piece -->
<item id="959" min="1" max="1" chance="0.749999999999997" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.0749999999999997" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="90.24" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="30" />
@@ -5018,32 +4940,26 @@
<ex_crt_effect>true</ex_crt_effect>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="0.225">
<item id="9442" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Sword -->
<item id="9443" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Blade -->
<item id="9444" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Phantom -->
</group>
<group chance="20.492">
<item id="9454" min="1" max="1" chance="8.5838375951591" /> <!-- Sealed Dynasty Ring -->
<item id="9452" min="1" max="1" chance="5.9925824712083" /> <!-- Sealed Dynasty Earring -->
<item id="9453" min="1" max="1" chance="3.6599648643373" /> <!-- Sealed Dynasty Necklace -->
<item id="9992" min="2" max="6" chance="40.274253367168" /> <!-- Sealed Dynasty Necklace Gemstone -->
<item id="9993" min="5" max="15" chance="29.616435682217" /> <!-- Sealed Dynasty Ring Gemstone -->
<item id="9991" min="9" max="27" chance="11.87292601991" /> <!-- Sealed Dynasty Earring Gemstone -->
</group>
<group chance="10.187">
<item id="960" min="1" max="1" chance="53.892215568862" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="9616" min="3" max="9" chance="14.479238244822" /> <!-- Dynasty Sword Piece -->
<item id="9617" min="4" max="12" chance="12.260724452734" /> <!-- Dynasty Blade Piece -->
<item id="9618" min="4" max="12" chance="11.26926474919" /> <!-- Dynasty Phantom Piece -->
<item id="959" min="1" max="1" chance="7.3623245312653" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.73623245312653" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="9442" min="1" max="1" chance="0.0749999999999992" /> <!-- Dynasty Sword -->
<item id="9443" min="1" max="1" chance="0.0749999999999992" /> <!-- Dynasty Blade -->
<item id="9444" min="1" max="1" chance="0.0749999999999992" /> <!-- Dynasty Phantom -->
<item id="9454" min="1" max="1" chance="1.759" /> <!-- Sealed Dynasty Ring -->
<item id="9452" min="1" max="1" chance="1.228" /> <!-- Sealed Dynasty Earring -->
<item id="9453" min="1" max="1" chance="0.75" /> <!-- Sealed Dynasty Necklace -->
<item id="9992" min="2" max="6" chance="8.25300000000007" /> <!-- Sealed Dynasty Necklace Gemstone -->
<item id="9993" min="5" max="15" chance="6.06899999999991" /> <!-- Sealed Dynasty Ring Gemstone -->
<item id="9991" min="9" max="27" chance="2.43299999999996" /> <!-- Sealed Dynasty Earring Gemstone -->
<item id="960" min="1" max="1" chance="5.48999999999997" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="9616" min="3" max="9" chance="1.47500000000002" /> <!-- Dynasty Sword Piece -->
<item id="9617" min="4" max="12" chance="1.24900000000001" /> <!-- Dynasty Blade Piece -->
<item id="9618" min="4" max="12" chance="1.14799999999999" /> <!-- Dynasty Phantom Piece -->
<item id="959" min="1" max="1" chance="0.749999999999996" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.0749999999999996" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="88.02" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="30" />
@@ -5109,26 +5025,20 @@
<ex_crt_effect>true</ex_crt_effect>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="2.25">
<item id="9442" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Sword -->
<item id="9444" min="1" max="1" chance="33.333333333333" /> <!-- Dynasty Phantom -->
<item id="21955" min="1" max="1" chance="33.333333333333" /> <!-- Blades of Delusion -->
</group>
<group chance="11.166">
<item id="9452" min="1" max="1" chance="49.704459967759" /> <!-- Sealed Dynasty Earring -->
<item id="9453" min="1" max="1" chance="28.138993372739" /> <!-- Sealed Dynasty Necklace -->
<item id="9454" min="1" max="1" chance="22.156546659502" /> <!-- Sealed Dynasty Ring -->
</group>
<group chance="100">
<item id="15341" min="1" max="3" chance="93.934640277295" /> <!-- Guiding Tea Leaves -->
<item id="959" min="1" max="1" chance="5.3608499206252" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.70450980207971" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="9442" min="1" max="1" chance="0.749999999999993" /> <!-- Dynasty Sword -->
<item id="9444" min="1" max="1" chance="0.749999999999993" /> <!-- Dynasty Phantom -->
<item id="21955" min="1" max="1" chance="0.749999999999993" /> <!-- Blades of Delusion -->
<item id="9452" min="1" max="1" chance="5.54999999999997" /> <!-- Sealed Dynasty Earring -->
<item id="9453" min="1" max="1" chance="3.14200000000004" /> <!-- Sealed Dynasty Necklace -->
<item id="9454" min="1" max="1" chance="2.47399999999999" /> <!-- Sealed Dynasty Ring -->
<item id="15341" min="1" max="3" chance="93.934640277295" /> <!-- Guiding Tea Leaves -->
<item id="959" min="1" max="1" chance="5.3608499206252" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.70450980207971" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="87.4" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="14" />
@@ -5194,26 +5104,20 @@
<ex_crt_effect>true</ex_crt_effect>
<ai aggroRange="300" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="2.25">
<item id="10215" min="1" max="1" chance="33.333333333333" /> <!-- Icarus Sawsword -->
<item id="10217" min="1" max="1" chance="33.333333333333" /> <!-- Icarus Spirit -->
<item id="10218" min="1" max="1" chance="33.333333333333" /> <!-- Icarus Heavy Arms -->
</group>
<group chance="13.197">
<item id="9452" min="1" max="1" chance="49.685534591195" /> <!-- Sealed Dynasty Earring -->
<item id="9453" min="1" max="1" chance="27.748730772145" /> <!-- Sealed Dynasty Necklace -->
<item id="9454" min="1" max="1" chance="22.56573463666" /> <!-- Sealed Dynasty Ring -->
</group>
<group chance="100">
<item id="15341" min="2" max="3" chance="92.884145605187" /> <!-- Guiding Tea Leaves -->
<item id="959" min="1" max="1" chance="6.1312824513984" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.98457194341498" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="10215" min="1" max="1" chance="0.749999999999993" /> <!-- Icarus Sawsword -->
<item id="10217" min="1" max="1" chance="0.749999999999993" /> <!-- Icarus Spirit -->
<item id="10218" min="1" max="1" chance="0.749999999999993" /> <!-- Icarus Heavy Arms -->
<item id="9452" min="1" max="1" chance="6.557" /> <!-- Sealed Dynasty Earring -->
<item id="9453" min="1" max="1" chance="3.66199999999998" /> <!-- Sealed Dynasty Necklace -->
<item id="9454" min="1" max="1" chance="2.97800000000002" /> <!-- Sealed Dynasty Ring -->
<item id="15341" min="2" max="3" chance="92.884145605187" /> <!-- Guiding Tea Leaves -->
<item id="959" min="1" max="1" chance="6.1312824513984" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.98457194341498" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="86.18" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="21" />
@@ -5274,7 +5178,7 @@
<ex_crt_effect>true</ex_crt_effect>
<ai aggroRange="300" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<drop>
<item id="17295" min="1" max="1" chance="0.75" /> <!-- Requiem Stormer -->
<item id="17298" min="1" max="1" chance="0.75" /> <!-- Requiem Buster -->
<item id="17299" min="1" max="1" chance="0.75" /> <!-- Requiem Caster -->
@@ -5305,10 +5209,10 @@
<item id="46447" min="1" max="1" chance="0.3" /> <!-- Kain's Soul Crystal - Stage 4 -->
<item id="46477" min="1" max="1" chance="0.3" /> <!-- Leona's Soul Crystal - Stage 4 -->
<item id="46507" min="1" max="1" chance="0.3" /> <!-- Lionel's Soul Crystal - Stage 4 -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="40" />
@@ -5364,7 +5268,7 @@
<ex_crt_effect>true</ex_crt_effect>
<ai aggroRange="300" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<drop>
<item id="17309" min="1" max="1" chance="4.526" /> <!-- Immortal Shield Heavy Armor -->
<item id="17292" min="1" max="1" chance="0.75" /> <!-- Requiem Slasher -->
<item id="17293" min="1" max="1" chance="0.75" /> <!-- Requiem Avenger -->
@@ -5395,10 +5299,10 @@
<item id="46447" min="1" max="1" chance="0.3" /> <!-- Kain's Soul Crystal - Stage 4 -->
<item id="46477" min="1" max="1" chance="0.3" /> <!-- Leona's Soul Crystal - Stage 4 -->
<item id="46507" min="1" max="1" chance="0.3" /> <!-- Lionel's Soul Crystal - Stage 4 -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="40" />
@@ -5457,7 +5361,7 @@
<ex_crt_effect>true</ex_crt_effect>
<ai aggroRange="300" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<drop>
<item id="17300" min="1" max="1" chance="0.75" /> <!-- Requiem Retributer -->
<item id="17296" min="1" max="1" chance="0.75" /> <!-- Requiem Thrower -->
<item id="17291" min="1" max="1" chance="0.75" /> <!-- Requiem Cutter -->
@@ -5489,10 +5393,10 @@
<item id="46447" min="1" max="1" chance="0.3" /> <!-- Kain's Soul Crystal - Stage 4 -->
<item id="46477" min="1" max="1" chance="0.3" /> <!-- Leona's Soul Crystal - Stage 4 -->
<item id="46507" min="1" max="1" chance="0.3" /> <!-- Lionel's Soul Crystal - Stage 4 -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="45" />
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -1587,14 +1587,10 @@
</stats>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -1649,14 +1645,10 @@
</stats>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -1711,14 +1703,10 @@
</stats>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -1772,14 +1760,10 @@
</stats>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -1834,14 +1818,10 @@
</stats>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -1895,14 +1875,10 @@
</stats>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -1956,14 +1932,10 @@
</stats>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -2023,14 +1995,10 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="50" />
@@ -2426,14 +2394,10 @@
</stats>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<status undying="false" />
<collision>
@@ -3451,18 +3415,14 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="33">
<item id="8600" min="1" max="1" chance="55" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="38" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="7" /> <!-- Superior Herb of Life -->
</group>
<group chance="10">
<item id="8603" min="1" max="1" chance="40" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="52" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="8" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8600" min="1" max="1" chance="18.15" /> <!-- Herb of Life -->
<item id="8601" min="1" max="1" chance="12.54" /> <!-- Major Herb of Life -->
<item id="8602" min="1" max="1" chance="2.31" /> <!-- Superior Herb of Life -->
<item id="8603" min="1" max="1" chance="4" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="5.2" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="0.8" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="6" />
@@ -556,20 +556,16 @@
<skill id="4416" level="7" /> <!-- Spirits -->
</skill_list>
<drop_lists>
<death>
<group chance="70">
<item id="57" min="6" max="14" chance="100" /> <!-- Adena -->
</group>
<group chance="21.69">
<item id="36526" min="1" max="1" chance="100" /> <!-- Fiber -->
</group>
</death>
<corpse>
<drop>
<item id="57" min="6" max="14" chance="70" /> <!-- Adena -->
<item id="36526" min="1" max="1" chance="21.69" /> <!-- Fiber -->
</drop>
<spoil>
<item id="36532" min="1" max="1" chance="0.3" /> <!-- Thin Braid -->
</corpse>
<lucky_corpse>
</spoil>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="23" />
@@ -663,14 +659,10 @@
</skill_list>
<ex_crt_effect>false</ex_crt_effect>
<drop_lists>
<death>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
</death>
<drop>
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</drop>
</drop_lists>
<collision>
<radius normal="10" />
@@ -697,14 +689,10 @@
<skill id="4416" level="4" /> <!-- Animals -->
</skill_list>
<drop_lists>
<death>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
</death>
<drop>
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</drop>
</drop_lists>
<collision>
<radius normal="10" />
@@ -799,14 +787,10 @@
<skill id="4416" level="7" /> <!-- Spirits -->
</skill_list>
<drop_lists>
<death>
<group chance="100">
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
</group>
<group chance="100">
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</group>
</death>
<drop>
<item id="8605" min="1" max="1" chance="100" /> <!-- Superior Herb of Mana -->
<item id="8602" min="1" max="1" chance="100" /> <!-- Superior Herb of Life -->
</drop>
</drop_lists>
<collision>
<radius normal="10" />
+163 -233
View File
@@ -47,7 +47,7 @@
</clan_list>
</ai>
<drop_lists>
<death>
<drop>
<item id="396" min="1" max="2" chance="42.525" /> <!-- Salamander Skin Mail -->
<item id="438" min="1" max="2" chance="42.075" /> <!-- Sage's Rags -->
<item id="380" min="1" max="2" chance="37.41" /> <!-- Plate Gaiters -->
@@ -78,10 +78,10 @@
<item id="46489" min="1" max="1" chance="9.448" /> <!-- Pantheon's Soul Crystal - Stage 1 -->
<item id="46444" min="1" max="1" chance="6.436" /> <!-- Kain's Soul Crystal - Stage 1 -->
<item id="46459" min="1" max="1" chance="6.364" /> <!-- Mermoden's Soul Crystal - Stage 1 -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="60.34" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="45" />
@@ -303,7 +303,7 @@
</clan_list>
</ai>
<drop_lists>
<death>
<drop>
<item id="6662" min="1" max="1" chance="29.72" /> <!-- Ring of Core -->
<item id="107" min="1" max="1" chance="14.52" /> <!-- Compound Shield -->
<item id="2459" min="1" max="1" chance="14.25" /> <!-- Demon's Gloves -->
@@ -331,10 +331,10 @@
<item id="46474" min="1" max="1" chance="4.736" /> <!-- Leona's Soul Crystal - Stage 1 -->
<item id="46459" min="1" max="1" chance="3.233" /> <!-- Mermoden's Soul Crystal - Stage 1 -->
<item id="46444" min="1" max="1" chance="3.195" /> <!-- Kain's Soul Crystal - Stage 1 -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="68.52" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="140" />
@@ -722,7 +722,7 @@
</clan_list>
</ai>
<drop_lists>
<death>
<drop>
<item id="6661" min="1" max="1" chance="50.62" /> <!-- Orfen's Earring -->
<item id="885" min="1" max="2" chance="36.39" /> <!-- Ring of Ages -->
<item id="854" min="1" max="2" chance="33.46" /> <!-- Earring of Seal -->
@@ -760,10 +760,10 @@
<item id="46460" min="1" max="1" chance="10.72" /> <!-- Mermoden's Soul Crystal - Stage 2 -->
<item id="46445" min="1" max="1" chance="10.66" /> <!-- Kain's Soul Crystal - Stage 2 -->
<item id="951" min="1" max="2" chance="9.944" /> <!-- Scroll: Enchant Weapon (C-grade) -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="80.27" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="35" />
@@ -1032,7 +1032,7 @@
<skill primaryId="4127" />
</ai>
<drop_lists>
<death>
<drop>
<item id="6658" min="1" max="1" chance="69.75" /> <!-- Baium's Ring -->
<item id="2504" min="1" max="1" chance="6.06" /> <!-- Meteor Shower -->
<item id="288" min="1" max="1" chance="6.059" /> <!-- Carnage Bow -->
@@ -1071,10 +1071,10 @@
<item id="46460" min="1" max="1" chance="11.67" /> <!-- Mermoden's Soul Crystal - Stage 2 -->
<item id="46446" min="1" max="1" chance="9.671" /> <!-- Kain's Soul Crystal - Stage 3 -->
<item id="46461" min="1" max="1" chance="9.613" /> <!-- Mermoden's Soul Crystal - Stage 3 -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="78.68" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="65" />
@@ -1423,7 +1423,7 @@
</clan_list>
</ai>
<drop_lists>
<death>
<drop>
<item id="6657" min="1" max="1" chance="20.96" /> <!-- Valakas' Necklace -->
<item id="17439" min="1" max="3" chance="19.72" /> <!-- Eternal Leather Gloves -->
<item id="17440" min="1" max="3" chance="19.43" /> <!-- Eternal Leather Boots -->
@@ -1516,11 +1516,11 @@
<item id="46511" min="1" max="1" chance="7.613" /> <!-- Lionel's Soul Crystal - Stage 8 -->
<item id="46466" min="1" max="1" chance="5.195" /> <!-- Mermoden's Soul Crystal - Stage 8 -->
<item id="46451" min="1" max="1" chance="5.118" /> <!-- Kain's Soul Crystal - Stage 8 -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
<item id="40199" min="1" max="1" chance="5.022" /> <!-- Disassembly Recipe Pouch: Weapon -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="190" />
@@ -2106,16 +2106,14 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="30.469">
<item id="6652" min="2" max="6" chance="63.310249762053" /> <!-- Amulet: Protection of Valakas -->
<item id="6654" min="18" max="54" chance="22.301355476058" /> <!-- Amulet: Flames of Valakas -->
<item id="6655" min="14" max="42" chance="14.388394761889" /> <!-- Amulet: Slay Valakas -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6652" min="2" max="6" chance="19.2899999999999" /> <!-- Amulet: Protection of Valakas -->
<item id="6654" min="18" max="54" chance="6.79500000000011" /> <!-- Amulet: Flames of Valakas -->
<item id="6655" min="14" max="42" chance="4.38399999999996" /> <!-- Amulet: Slay Valakas -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="92.37" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="29" />
@@ -2748,26 +2746,20 @@
<ex_crt_effect>true</ex_crt_effect>
<ai aggroRange="1000" />
<drop_lists>
<death>
<group chance="37.875">
<item id="6364" min="1" max="1" chance="1.980198019802" /> <!-- Forgotten Blade -->
<item id="6372" min="1" max="1" chance="1.980198019802" /> <!-- Heaven's Divider -->
<item id="6688" min="8" max="22" chance="72.818481848185" /> <!-- Forgotten Blade Edge -->
<item id="6696" min="24" max="72" chance="23.221122112211" /> <!-- Heaven's Divider Edge -->
</group>
<group chance="69.22">
<item id="6675" min="1" max="1" chance="4.0869690840797" /> <!-- Sealed Imperial Crusader Gaiters -->
<item id="6674" min="1" max="1" chance="2.5296157180006" /> <!-- Sealed Imperial Crusader Breastplate -->
<item id="6701" min="8" max="22" chance="67.162669748628" /> <!-- Sealed Imperial Crusader Breastplate Part -->
<item id="6702" min="24" max="72" chance="26.220745449292" /> <!-- Sealed Imperial Crusader Gaiter Pattern -->
</group>
<group chance="0.75">
<item id="10297" min="1" max="1" chance="100" /> <!-- Transformation Sealbook: Venom -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6364" min="1" max="1" chance="0.750000000000008" /> <!-- Forgotten Blade -->
<item id="6372" min="1" max="1" chance="0.750000000000008" /> <!-- Heaven's Divider -->
<item id="6688" min="8" max="22" chance="27.5800000000001" /> <!-- Forgotten Blade Edge -->
<item id="6696" min="24" max="72" chance="8.79499999999992" /> <!-- Heaven's Divider Edge -->
<item id="6675" min="1" max="1" chance="2.82899999999997" /> <!-- Sealed Imperial Crusader Gaiters -->
<item id="6674" min="1" max="1" chance="1.75100000000002" /> <!-- Sealed Imperial Crusader Breastplate -->
<item id="6701" min="8" max="22" chance="46.4900000000003" /> <!-- Sealed Imperial Crusader Breastplate Part -->
<item id="6702" min="24" max="72" chance="18.1499999999999" /> <!-- Sealed Imperial Crusader Gaiter Pattern -->
<item id="10297" min="1" max="1" chance="0.75" /> <!-- Transformation Sealbook: Venom -->
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="20" />
@@ -2867,35 +2859,29 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="39.373">
<item id="110" min="1" max="1" chance="9.0137911766947" /> <!-- Doom Shield -->
<item id="171" min="1" max="1" chance="0.76194346379499" /> <!-- Deadman's Glory -->
<item id="175" min="1" max="1" chance="0.76194346379499" /> <!-- Art of Battle Axe -->
<item id="210" min="1" max="1" chance="0.76194346379499" /> <!-- Staff of Evil Spirits -->
<item id="7893" min="1" max="1" chance="0.76194346379499" /> <!-- Kaim Vanul's Bones -->
<item id="7901" min="1" max="1" chance="0.76194346379499" /> <!-- Star Buster -->
<item id="8348" min="8" max="22" chance="47.621466487187" /> <!-- Star Buster Head -->
<item id="4117" min="4" max="10" chance="21.585858329312" /> <!-- Art of Battle Axe Blade -->
<item id="4118" min="4" max="12" chance="17.969166687832" /> <!-- Evil Spirit Head -->
</group>
<group chance="85.311">
<item id="8180" min="1" max="1" chance="24.287606522019" /> <!-- Circlet of Ice Fairy Sirra -->
<item id="2416" min="1" max="1" chance="2.8999777285461" /> <!-- Blue Wolf Helmet -->
<item id="2417" min="1" max="1" chance="2.8917724560725" /> <!-- Doom Helmet -->
<item id="4088" min="9" max="27" chance="35.728100713859" /> <!-- Blue Wolf Helmet Design -->
<item id="4089" min="14" max="42" chance="24.287606522019" /> <!-- Doom Helmet Pattern -->
<item id="4077" min="40" max="120" chance="9.9049360574838" /> <!-- Doom Shield Fragment -->
</group>
<group chance="49.946">
<item id="1343" min="100" max="200" chance="72.117887318304" /> <!-- Silver Arrow -->
<item id="4116" min="3" max="9" chance="19.843430905378" /> <!-- Deadman's Glory Stone -->
<item id="8340" min="36" max="108" chance="8.0386817763184" /> <!-- Bones Head of Kaim Vanul -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="110" min="1" max="1" chance="3.549" /> <!-- Doom Shield -->
<item id="171" min="1" max="1" chance="0.300000000000001" /> <!-- Deadman's Glory -->
<item id="175" min="1" max="1" chance="0.300000000000001" /> <!-- Art of Battle Axe -->
<item id="210" min="1" max="1" chance="0.300000000000001" /> <!-- Staff of Evil Spirits -->
<item id="7893" min="1" max="1" chance="0.300000000000001" /> <!-- Kaim Vanul's Bones -->
<item id="7901" min="1" max="1" chance="0.300000000000001" /> <!-- Star Buster -->
<item id="8348" min="8" max="22" chance="18.7500000000001" /> <!-- Star Buster Head -->
<item id="4117" min="4" max="10" chance="8.49900000000001" /> <!-- Art of Battle Axe Blade -->
<item id="4118" min="4" max="12" chance="7.07500000000009" /> <!-- Evil Spirit Head -->
<item id="8180" min="1" max="1" chance="20.7199999999996" /> <!-- Circlet of Ice Fairy Sirra -->
<item id="2416" min="1" max="1" chance="2.47399999999996" /> <!-- Blue Wolf Helmet -->
<item id="2417" min="1" max="1" chance="2.46700000000001" /> <!-- Doom Helmet -->
<item id="4088" min="9" max="27" chance="30.4800000000003" /> <!-- Blue Wolf Helmet Design -->
<item id="4089" min="14" max="42" chance="20.7199999999996" /> <!-- Doom Helmet Pattern -->
<item id="4077" min="40" max="120" chance="8.45000000000001" /> <!-- Doom Shield Fragment -->
<item id="1343" min="100" max="200" chance="36.0200000000001" /> <!-- Silver Arrow -->
<item id="4116" min="3" max="9" chance="9.9110000000001" /> <!-- Deadman's Glory Stone -->
<item id="8340" min="36" max="108" chance="4.01499999999999" /> <!-- Bones Head of Kaim Vanul -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="79.27" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="16" />
@@ -3071,26 +3057,20 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="55.608">
<item id="287" min="1" max="1" chance="2.136383254208" /> <!-- Bow of Peril -->
<item id="4121" min="3" max="9" chance="97.863616745792" /> <!-- Bow of Peril Shaft -->
</group>
<group chance="55.416">
<item id="2391" min="1" max="1" chance="2.6057456330302" /> <!-- Blue Wolf Leather Armor -->
<item id="2392" min="1" max="1" chance="2.4397285982388" /> <!-- Leather Armor of Doom -->
<item id="4082" min="4" max="12" chance="60.72253500794" /> <!-- Blue Wolf Leather Armor Texture -->
<item id="4083" min="8" max="22" chance="34.231990760791" /> <!-- Leather Armor of Doom Design -->
</group>
<group chance="81.95">
<item id="4618" min="1" max="1" chance="54.740695546065" /> <!-- Greater DEX Dye (Dex + 4 CON - 4) -->
<item id="4616" min="1" max="3" chance="27.309334960342" /> <!-- Greater CON Dye (Con + 4 DEX - 4) -->
<item id="4617" min="2" max="4" chance="17.949969493594" /> <!-- Greater DEX Dye (Dex + 4 Str - 4) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="287" min="1" max="1" chance="1.18799999999998" /> <!-- Bow of Peril -->
<item id="4121" min="3" max="9" chance="54.42" /> <!-- Bow of Peril Shaft -->
<item id="2391" min="1" max="1" chance="1.44400000000002" /> <!-- Blue Wolf Leather Armor -->
<item id="2392" min="1" max="1" chance="1.35200000000001" /> <!-- Leather Armor of Doom -->
<item id="4082" min="4" max="12" chance="33.65" /> <!-- Blue Wolf Leather Armor Texture -->
<item id="4083" min="8" max="22" chance="18.9699999999999" /> <!-- Leather Armor of Doom Design -->
<item id="4618" min="1" max="1" chance="44.8600000000003" /> <!-- Greater DEX Dye (Dex + 4 CON - 4) -->
<item id="4616" min="1" max="3" chance="22.3800000000003" /> <!-- Greater CON Dye (Con + 4 DEX - 4) -->
<item id="4617" min="2" max="4" chance="14.7100000000003" /> <!-- Greater DEX Dye (Dex + 4 Str - 4) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="70.92" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="19" />
@@ -3191,42 +3171,36 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="0.825">
<item id="38052" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Caster Crafting Pack -->
<item id="38051" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38050" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Shooter Crafting Pack -->
<item id="38049" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Thrower Crafting Pack -->
<item id="38048" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Stormer Crafting Pack -->
<item id="38047" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Fighter Crafting Pack -->
<item id="38046" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Avenger Crafting Pack -->
<item id="38045" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Slasher Crafting Pack -->
<item id="38044" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Cutter Crafting Pack -->
<item id="38043" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Shaper Crafting Pack -->
<item id="38053" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Retributer Crafting Pack -->
</group>
<group chance="4.945">
<item id="36279" min="1" max="1" chance="34.256825075834" /> <!-- Pagan Devil Circlet -->
<item id="36280" min="1" max="1" chance="33.14459049545" /> <!-- Pagan Devil Circlet -->
<item id="36281" min="1" max="1" chance="32.598584428716" /> <!-- Pagan Devil Circlet -->
</group>
<group chance="100">
<item id="36389" min="1" max="1" chance="32.221598653091" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36386" min="1" max="1" chance="7.9571875250541" /> <!-- Giant's Scroll: Enchant Weapon (R-grade) -->
<item id="17691" min="1" max="1" chance="6.8908843101098" /> <!-- Lv. 4 Legendary STR Dye STR + 5 / DEX - 1 / Fire Resistance + 20 -->
<item id="17692" min="1" max="1" chance="6.8026938186483" /> <!-- Lv. 4 Legendary DEX Dye DEX + 5 / CON - 1 / Earth Resistance + 20 -->
<item id="17696" min="1" max="1" chance="6.7906678425399" /> <!-- Lv. 4 Legendary MEN Dye MEN + 5 / INT - 1 / Holy Resistance + 20 -->
<item id="19467" min="1" max="1" chance="6.7505812555119" /> <!-- Yellow Soul Crystal Fragment (R99-grade) -->
<item id="17693" min="1" max="1" chance="6.7024773510783" /> <!-- Lv. 4 Legendary CON Dye CON + 5 / STR - 1 / Dark Resistance + 20 -->
<item id="17694" min="1" max="1" chance="6.5461396616692" /> <!-- Lv. 4 Legendary INT Dye INT + 5 / WIT - 1 / Water Resistance + 20 -->
<item id="19468" min="1" max="1" chance="6.510061733344" /> <!-- Teal Soul Crystal Fragment (R99-grade) -->
<item id="17695" min="1" max="1" chance="6.4579491702076" /> <!-- Lv. 4 Legendary WIT Dye WIT + 5 / MEN - 1 / Wind Resistance + 20 -->
<item id="19469" min="1" max="1" chance="6.3697586787461" /> <!-- Purple Soul Crystal Fragment (R99-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="38052" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Caster Crafting Pack -->
<item id="38051" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38050" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Shooter Crafting Pack -->
<item id="38049" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Thrower Crafting Pack -->
<item id="38048" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Stormer Crafting Pack -->
<item id="38047" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Fighter Crafting Pack -->
<item id="38046" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Avenger Crafting Pack -->
<item id="38045" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Slasher Crafting Pack -->
<item id="38044" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Cutter Crafting Pack -->
<item id="38043" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Shaper Crafting Pack -->
<item id="38053" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Retributer Crafting Pack -->
<item id="36279" min="1" max="1" chance="1.69399999999999" /> <!-- Pagan Devil Circlet -->
<item id="36280" min="1" max="1" chance="1.639" /> <!-- Pagan Devil Circlet -->
<item id="36281" min="1" max="1" chance="1.61200000000001" /> <!-- Pagan Devil Circlet -->
<item id="36389" min="1" max="1" chance="32.221598653091" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36386" min="1" max="1" chance="7.9571875250541" /> <!-- Giant's Scroll: Enchant Weapon (R-grade) -->
<item id="17691" min="1" max="1" chance="6.8908843101098" /> <!-- Lv. 4 Legendary STR Dye STR + 5 / DEX - 1 / Fire Resistance + 20 -->
<item id="17692" min="1" max="1" chance="6.8026938186483" /> <!-- Lv. 4 Legendary DEX Dye DEX + 5 / CON - 1 / Earth Resistance + 20 -->
<item id="17696" min="1" max="1" chance="6.7906678425399" /> <!-- Lv. 4 Legendary MEN Dye MEN + 5 / INT - 1 / Holy Resistance + 20 -->
<item id="19467" min="1" max="1" chance="6.7505812555119" /> <!-- Yellow Soul Crystal Fragment (R99-grade) -->
<item id="17693" min="1" max="1" chance="6.7024773510783" /> <!-- Lv. 4 Legendary CON Dye CON + 5 / STR - 1 / Dark Resistance + 20 -->
<item id="17694" min="1" max="1" chance="6.5461396616692" /> <!-- Lv. 4 Legendary INT Dye INT + 5 / WIT - 1 / Water Resistance + 20 -->
<item id="19468" min="1" max="1" chance="6.510061733344" /> <!-- Teal Soul Crystal Fragment (R99-grade) -->
<item id="17695" min="1" max="1" chance="6.4579491702076" /> <!-- Lv. 4 Legendary WIT Dye WIT + 5 / MEN - 1 / Wind Resistance + 20 -->
<item id="19469" min="1" max="1" chance="6.3697586787461" /> <!-- Purple Soul Crystal Fragment (R99-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="9" />
@@ -3385,24 +3359,18 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="1000" />
<drop_lists>
<death>
<group chance="40.69">
<item id="6367" min="1" max="1" chance="0.73728188744163" /> <!-- Angel Slayer -->
<item id="6691" min="3" max="9" chance="99.262718112558" /> <!-- Angel Slayer Blade -->
</group>
<group chance="54.35">
<item id="6680" min="1" max="1" chance="1.3799448022079" /> <!-- Sealed Draconic Leather Armor -->
<item id="6707" min="3" max="9" chance="98.620055197792" /> <!-- Sealed Draconic Leather Armor Part -->
</group>
<group chance="20.204">
<item id="960" min="1" max="1" chance="89.338744803009" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="9.1764007127302" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="1.4848544842605" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6367" min="1" max="1" chance="0.299999999999999" /> <!-- Angel Slayer -->
<item id="6691" min="3" max="9" chance="40.3899999999999" /> <!-- Angel Slayer Blade -->
<item id="6680" min="1" max="1" chance="0.749999999999994" /> <!-- Sealed Draconic Leather Armor -->
<item id="6707" min="3" max="9" chance="53.6" /> <!-- Sealed Draconic Leather Armor Part -->
<item id="960" min="1" max="1" chance="18.0499999999999" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="1.85400000000001" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.299999999999991" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="88.86" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="100" />
@@ -3546,7 +3514,7 @@
<skill maxChance="25" primaryId="4112" />
</ai>
<drop_lists>
<death>
<drop>
<item id="17440" min="1" max="3" chance="20.84" /> <!-- Eternal Leather Boots -->
<item id="17436" min="1" max="3" chance="20.73" /> <!-- Eternal Leather Helmet -->
<item id="17438" min="1" max="3" chance="20.51" /> <!-- Eternal Leather Leggings -->
@@ -3642,11 +3610,11 @@
<item id="46481" min="1" max="1" chance="7.598" /> <!-- Leona's Soul Crystal - Stage 8 -->
<item id="46451" min="1" max="1" chance="5.136" /> <!-- Kain's Soul Crystal - Stage 8 -->
<item id="46466" min="1" max="1" chance="5.108" /> <!-- Mermoden's Soul Crystal - Stage 8 -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
<item id="40199" min="1" max="1" chance="5.018" /> <!-- Disassembly Recipe Pouch: Weapon -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="300" />
@@ -3698,14 +3666,10 @@
<skill maxChance="25" />
</ai>
<drop_lists>
<death>
<group chance="100">
<item id="8952" min="10" max="20" chance="100" /> <!-- Major Herb of Life -->
</group>
<group chance="100">
<item id="8953" min="10" max="20" chance="100" /> <!-- Major Herb of Mana -->
</group>
</death>
<drop>
<item id="8952" min="10" max="20" chance="100" /> <!-- Major Herb of Life -->
<item id="8953" min="10" max="20" chance="100" /> <!-- Major Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="63" />
@@ -3753,14 +3717,10 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" aggroRange="100" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="100">
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
</group>
<group chance="100">
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</group>
</death>
<drop>
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="37" />
@@ -3802,14 +3762,10 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" aggroRange="100" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="100">
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
</group>
<group chance="100">
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</group>
</death>
<drop>
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="37" />
@@ -3851,14 +3807,10 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" aggroRange="100" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="100">
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
</group>
<group chance="100">
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</group>
</death>
<drop>
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="37" />
@@ -3900,14 +3852,10 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" aggroRange="100" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="100">
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
</group>
<group chance="100">
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</group>
</death>
<drop>
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="37" />
@@ -3949,14 +3897,10 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" aggroRange="100" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="100">
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
</group>
<group chance="100">
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</group>
</death>
<drop>
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="37" />
@@ -3998,14 +3942,10 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" aggroRange="100" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="100">
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
</group>
<group chance="100">
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</group>
</death>
<drop>
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="37" />
@@ -4052,14 +3992,10 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" aggroRange="200" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="100">
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
</group>
<group chance="100">
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</group>
</death>
<drop>
<item id="8952" min="1" max="3" chance="100" /> <!-- Major Herb of Life -->
<item id="8953" min="1" max="3" chance="100" /> <!-- Major Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="42" />
@@ -5029,25 +4965,19 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" isAggressive="true" aggroRange="1000" />
<drop_lists>
<death>
<group chance="69.62">
<item id="6371" min="1" max="1" chance="1.0772766446423" /> <!-- Demon Splinter -->
<item id="6695" min="3" max="9" chance="98.922723355358" /> <!-- Demon Splinter Blade -->
</group>
<group chance="24.629">
<item id="6684" min="1" max="1" chance="5.2336676275935" /> <!-- Sealed Major Arcana Robe -->
<item id="6711" min="12" max="36" chance="94.766332372407" /> <!-- Sealed Major Arcana Robe Part -->
</group>
<group chance="39.34">
<item id="960" min="1" max="1" chance="87.849517031012" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="8.3375699034062" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="1.9064565327911" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
<item id="10298" min="1" max="1" chance="1.9064565327911" /> <!-- Transformation Sealbook: Gordon -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6371" min="1" max="1" chance="0.749999999999969" /> <!-- Demon Splinter -->
<item id="6695" min="3" max="9" chance="68.8700000000002" /> <!-- Demon Splinter Blade -->
<item id="6684" min="1" max="1" chance="1.289" /> <!-- Sealed Major Arcana Robe -->
<item id="6711" min="12" max="36" chance="23.3400000000001" /> <!-- Sealed Major Arcana Robe Part -->
<item id="960" min="1" max="1" chance="34.5600000000001" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="3.28" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="0.750000000000019" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
<item id="10298" min="1" max="1" chance="0.750000000000019" /> <!-- Transformation Sealbook: Gordon -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="90.055" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="43" />
+355 -435
View File
@@ -702,7 +702,7 @@
</clan_list>
</ai>
<drop_lists>
<death>
<drop>
<item id="13893" min="1" max="1" chance="38.2799" /> <!-- Sealed Holy Spirit's Cloak -->
<item id="10215" min="1" max="1" chance="5.662" /> <!-- Icarus Sawsword -->
<item id="10216" min="1" max="1" chance="5.483" /> <!-- Icarus Disperser -->
@@ -727,7 +727,7 @@
<item id="13465" min="1" max="1" chance="3.714" /> <!-- Vesper Caster -->
<item id="13466" min="1" max="1" chance="3.82" /> <!-- Vesper Singer -->
<item id="13467" min="1" max="1" chance="3.766" /> <!-- Vesper Thrower -->
</death>
</drop>
</drop_lists>
<collision>
<radius normal="15" />
@@ -1265,28 +1265,22 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="52.811">
<item id="71" min="1" max="1" chance="12.609115525175" /> <!-- Flamberge -->
<item id="72" min="1" max="1" chance="12.446270663309" /> <!-- StormBringer -->
<item id="2059" min="8" max="22" chance="56.560186324819" /> <!-- Flamberge Blade -->
<item id="2060" min="24" max="72" chance="18.384427486698" /> <!-- StormBringer Blade -->
</group>
<group chance="47.917">
<item id="439" min="1" max="1" chance="53.863973120187" /> <!-- Karmian Tunic -->
<item id="471" min="5" max="13" chance="9.8482793163178" /> <!-- Karmian Stockings -->
<item id="1962" min="53" max="157" chance="25.105912306697" /> <!-- Karmian Tunic Pattern -->
<item id="1954" min="192" max="576" chance="11.181835256798" /> <!-- Karmian Stocking Design -->
</group>
<group chance="60.73">
<item id="6574" min="1" max="1" chance="46.747900543389" /> <!-- Blessed Scroll: Enchant Armor (C-grade) -->
<item id="4589" min="4" max="12" chance="35.452000658653" /> <!-- Greater STR Dye (STR + 2 CON - 2) -->
<item id="4590" min="8" max="22" chance="17.800098797958" /> <!-- Greater STR Dye (STR + 2 DEX - 2) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="71" min="1" max="1" chance="6.65900000000017" /> <!-- Flamberge -->
<item id="72" min="1" max="1" chance="6.57300000000012" /> <!-- StormBringer -->
<item id="2059" min="8" max="22" chance="29.8700000000002" /> <!-- Flamberge Blade -->
<item id="2060" min="24" max="72" chance="9.70900000000008" /> <!-- StormBringer Blade -->
<item id="439" min="1" max="1" chance="25.81" /> <!-- Karmian Tunic -->
<item id="471" min="5" max="13" chance="4.719" /> <!-- Karmian Stockings -->
<item id="1962" min="53" max="157" chance="12.03" /> <!-- Karmian Tunic Pattern -->
<item id="1954" min="192" max="576" chance="5.3579999999999" /> <!-- Karmian Stocking Design -->
<item id="6574" min="1" max="1" chance="28.3900000000001" /> <!-- Blessed Scroll: Enchant Armor (C-grade) -->
<item id="4589" min="4" max="12" chance="21.53" /> <!-- Greater STR Dye (STR + 2 CON - 2) -->
<item id="4590" min="8" max="22" chance="10.8099999999999" /> <!-- Greater STR Dye (STR + 2 DEX - 2) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="50.53" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="40" />
@@ -1424,29 +1418,23 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="39.133">
<item id="286" min="1" max="1" chance="17.997597935246" /> <!-- Eminence Bow -->
<item id="2121" min="12" max="36" chance="82.002402064754" /> <!-- Eminence Bow Shaft -->
</group>
<group chance="58.144">
<item id="855" min="1" max="1" chance="37.080352228949" /> <!-- Nassen's Earring -->
<item id="119" min="1" max="1" chance="29.426940011007" /> <!-- Necklace of Seal -->
<item id="886" min="6" max="16" chance="5.2283984589983" /> <!-- Ring of Seal -->
<item id="1918" min="81" max="243" chance="16.818588332416" /> <!-- Nassen's Earring Gemstone -->
<item id="1920" min="140" max="420" chance="7.7755228398459" /> <!-- Necklace of Seal Chain -->
<item id="2917" min="480" max="1440" chance="3.6701981287837" /> <!-- Ring of Seal Gemstone -->
</group>
<group chance="86.055">
<item id="4608" min="2" max="4" chance="46.330834931149" /> <!-- Greater INT Dye (Int + 3 Wit - 3) -->
<item id="4609" min="2" max="6" chance="35.384347219801" /> <!-- Greater MEN Dye (Men + 3 Int - 3) -->
<item id="4607" min="5" max="15" chance="14.20022078903" /> <!-- Greater INT Dye (Int + 3 Men - 3) -->
<item id="6573" min="1" max="1" chance="4.0845970600198" /> <!-- Blessed Scroll: Enchant Weapon (C-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="286" min="1" max="1" chance="7.04299999999982" /> <!-- Eminence Bow -->
<item id="2121" min="12" max="36" chance="32.0900000000002" /> <!-- Eminence Bow Shaft -->
<item id="855" min="1" max="1" chance="21.5600000000001" /> <!-- Nassen's Earring -->
<item id="119" min="1" max="1" chance="17.1099999999999" /> <!-- Necklace of Seal -->
<item id="886" min="6" max="16" chance="3.03999999999997" /> <!-- Ring of Seal -->
<item id="1918" min="81" max="243" chance="9.77899999999996" /> <!-- Nassen's Earring Gemstone -->
<item id="1920" min="140" max="420" chance="4.521" /> <!-- Necklace of Seal Chain -->
<item id="2917" min="480" max="1440" chance="2.13399999999999" /> <!-- Ring of Seal Gemstone -->
<item id="4608" min="2" max="4" chance="39.8700000000003" /> <!-- Greater INT Dye (Int + 3 Wit - 3) -->
<item id="4609" min="2" max="6" chance="30.4499999999998" /> <!-- Greater MEN Dye (Men + 3 Int - 3) -->
<item id="4607" min="5" max="15" chance="12.2199999999998" /> <!-- Greater INT Dye (Int + 3 Men - 3) -->
<item id="6573" min="1" max="1" chance="3.51500000000004" /> <!-- Blessed Scroll: Enchant Weapon (C-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="60.27" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="45" />
@@ -1584,33 +1572,27 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="32.748">
<item id="175" min="1" max="1" chance="4.5804323928179" /> <!-- Art of Battle Axe -->
<item id="171" min="1" max="1" chance="4.5651642848418" /> <!-- Deadman's Glory -->
<item id="210" min="1" max="1" chance="4.3758397459387" /> <!-- Staff of Evil Spirits -->
<item id="4117" min="9" max="27" chance="53.102479540735" /> <!-- Art of Battle Axe Blade -->
<item id="4118" min="14" max="42" chance="33.376084035666" /> <!-- Evil Spirit Head -->
</group>
<group chance="62.313">
<item id="895" min="1" max="1" chance="31.999743231749" /> <!-- Black Ore Ring -->
<item id="864" min="1" max="1" chance="23.478246914769" /> <!-- Black Ore Earring -->
<item id="926" min="1" max="1" chance="16.930656524321" /> <!-- Black Ore Necklace -->
<item id="4052" min="81" max="243" chance="17.98982555807" /> <!-- Black Ore Earring Piece -->
<item id="4053" min="280" max="840" chance="6.030844286104" /> <!-- Black Ore Ring Gemstone -->
<item id="4054" min="220" max="660" chance="3.5706834849871" /> <!-- Black Ore Necklace Beads -->
</group>
<group chance="100">
<item id="4617" min="2" max="4" chance="27.5468121196" /> <!-- Greater DEX Dye (Dex + 4 Str - 4) -->
<item id="4116" min="5" max="15" chance="26.973093424685" /> <!-- Deadman's Glory Stone -->
<item id="4618" min="2" max="6" chance="20.953204509928" /> <!-- Greater DEX Dye (Dex + 4 CON - 4) -->
<item id="6572" min="1" max="1" chance="16.222103967805" /> <!-- Blessed Scroll: Enchant Armor (B-grade) -->
<item id="4616" min="5" max="15" chance="8.3047859779825" /> <!-- Greater CON Dye (Con + 4 DEX - 4) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="175" min="1" max="1" chance="1.50000000000001" /> <!-- Art of Battle Axe -->
<item id="171" min="1" max="1" chance="1.49499999999999" /> <!-- Deadman's Glory -->
<item id="210" min="1" max="1" chance="1.43300000000001" /> <!-- Staff of Evil Spirits -->
<item id="4117" min="9" max="27" chance="17.3899999999999" /> <!-- Art of Battle Axe Blade -->
<item id="4118" min="14" max="42" chance="10.9299999999999" /> <!-- Evil Spirit Head -->
<item id="895" min="1" max="1" chance="19.9399999999998" /> <!-- Black Ore Ring -->
<item id="864" min="1" max="1" chance="14.63" /> <!-- Black Ore Earring -->
<item id="926" min="1" max="1" chance="10.5500000000001" /> <!-- Black Ore Necklace -->
<item id="4052" min="81" max="243" chance="11.2100000000002" /> <!-- Black Ore Earring Piece -->
<item id="4053" min="280" max="840" chance="3.75799999999999" /> <!-- Black Ore Ring Gemstone -->
<item id="4054" min="220" max="660" chance="2.22500000000001" /> <!-- Black Ore Necklace Beads -->
<item id="4617" min="2" max="4" chance="27.5468121196" /> <!-- Greater DEX Dye (Dex + 4 Str - 4) -->
<item id="4116" min="5" max="15" chance="26.973093424685" /> <!-- Deadman's Glory Stone -->
<item id="4618" min="2" max="6" chance="20.953204509928" /> <!-- Greater DEX Dye (Dex + 4 CON - 4) -->
<item id="6572" min="1" max="1" chance="16.222103967805" /> <!-- Blessed Scroll: Enchant Armor (B-grade) -->
<item id="4616" min="5" max="15" chance="8.3047859779825" /> <!-- Greater CON Dye (Con + 4 DEX - 4) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="70.99" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="35" />
@@ -1747,26 +1729,20 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="26.834">
<item id="289" min="1" max="1" chance="7.691734366848" /> <!-- Soul Bow -->
<item id="5534" min="12" max="36" chance="92.308265633152" /> <!-- Soul Bow Shaft -->
</group>
<group chance="66.012">
<item id="5326" min="1" max="1" chance="3.3584802763134" /> <!-- Sealed Robe of Nightmare -->
<item id="5329" min="1" max="1" chance="3.3403017633158" /> <!-- Sealed Majestic Robe -->
<item id="5487" min="4" max="12" chance="60.034539174696" /> <!-- Sealed Robe of Nightmare Fabric -->
<item id="5488" min="8" max="22" chance="33.266678785675" /> <!-- Sealed Majestic Robe Fabric -->
</group>
<group chance="90.7">
<item id="730" min="1" max="1" chance="87.331863285557" /> <!-- Scroll: Enchant Armor (A-grade) -->
<item id="729" min="1" max="1" chance="11.367144432194" /> <!-- Scroll: Enchant Weapon (A-grade) -->
<item id="6569" min="1" max="1" chance="1.3009922822492" /> <!-- Blessed Scroll: Enchant Weapon (A-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="289" min="1" max="1" chance="2.06399999999999" /> <!-- Soul Bow -->
<item id="5534" min="12" max="36" chance="24.77" /> <!-- Soul Bow Shaft -->
<item id="5326" min="1" max="1" chance="2.217" /> <!-- Sealed Robe of Nightmare -->
<item id="5329" min="1" max="1" chance="2.20500000000003" /> <!-- Sealed Majestic Robe -->
<item id="5487" min="4" max="12" chance="39.6300000000003" /> <!-- Sealed Robe of Nightmare Fabric -->
<item id="5488" min="8" max="22" chance="21.9599999999998" /> <!-- Sealed Majestic Robe Fabric -->
<item id="730" min="1" max="1" chance="79.2100000000002" /> <!-- Scroll: Enchant Armor (A-grade) -->
<item id="729" min="1" max="1" chance="10.31" /> <!-- Scroll: Enchant Weapon (A-grade) -->
<item id="6569" min="1" max="1" chance="1.18000000000002" /> <!-- Blessed Scroll: Enchant Weapon (A-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="81.69" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="40" />
@@ -1909,24 +1885,18 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="38.489">
<item id="7575" min="1" max="1" chance="4.8299514146899" /> <!-- Draconic Bow -->
<item id="7579" min="12" max="36" chance="95.17004858531" /> <!-- Draconic Bow Shaft -->
</group>
<group chance="57.53">
<item id="6680" min="1" max="1" chance="5.8404310794368" /> <!-- Sealed Draconic Leather Armor -->
<item id="6707" min="12" max="36" chance="94.159568920563" /> <!-- Sealed Draconic Leather Armor Part -->
</group>
<group chance="75.111">
<item id="960" min="1" max="1" chance="89.587410632264" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="8.864214296175" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="1.5483750715608" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="7575" min="1" max="1" chance="1.859" /> <!-- Draconic Bow -->
<item id="7579" min="12" max="36" chance="36.63" /> <!-- Draconic Bow Shaft -->
<item id="6680" min="1" max="1" chance="3.35999999999999" /> <!-- Sealed Draconic Leather Armor -->
<item id="6707" min="12" max="36" chance="54.1699999999999" /> <!-- Sealed Draconic Leather Armor Part -->
<item id="960" min="1" max="1" chance="67.2899999999998" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="6.658" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="1.16300000000003" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="79.27" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="15" />
@@ -2079,30 +2049,24 @@
<ex_crt_effect>true</ex_crt_effect>
<ai type="BALANCED" clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="38.628">
<item id="6678" min="1" max="1" chance="9.3455524490007" /> <!-- Sealed Imperial Crusader Shield -->
<item id="6371" min="1" max="1" chance="4.3181112146629" /> <!-- Demon Splinter -->
<item id="6695" min="12" max="36" chance="86.336336336336" /> <!-- Demon Splinter Blade -->
</group>
<group chance="72.083">
<item id="6687" min="1" max="1" chance="3.6333115991288" /> <!-- Sealed Major Arcana Circlet -->
<item id="6679" min="1" max="1" chance="3.6291497301722" /> <!-- Sealed Imperial Crusader Helmet -->
<item id="6683" min="1" max="1" chance="3.6208259922589" /> <!-- Sealed Draconic Leather Helmet -->
<item id="6714" min="16" max="48" chance="44.310031491475" /> <!-- Sealed Major Arcana Circlet Pattern -->
<item id="6705" min="23" max="67" chance="27.398970631078" /> <!-- Sealed Imperial Crusader Shield Part -->
<item id="6706" min="60" max="180" chance="11.4742727134" /> <!-- Sealed Imperial Crusader Helmet Pattern -->
<item id="6710" min="116" max="346" chance="5.9334378424871" /> <!-- Sealed Draconic Leather Helmet Pattern -->
</group>
<group chance="70.405">
<item id="960" min="1" max="1" chance="89.439670477949" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="9.0320289752148" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="1.5283005468362" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="6678" min="1" max="1" chance="3.60999999999999" /> <!-- Sealed Imperial Crusader Shield -->
<item id="6371" min="1" max="1" chance="1.66799999999999" /> <!-- Demon Splinter -->
<item id="6695" min="12" max="36" chance="33.3499999999999" /> <!-- Demon Splinter Blade -->
<item id="6687" min="1" max="1" chance="2.61900000000001" /> <!-- Sealed Major Arcana Circlet -->
<item id="6679" min="1" max="1" chance="2.61600000000003" /> <!-- Sealed Imperial Crusader Helmet -->
<item id="6683" min="1" max="1" chance="2.60999999999998" /> <!-- Sealed Draconic Leather Helmet -->
<item id="6714" min="16" max="48" chance="31.9399999999999" /> <!-- Sealed Major Arcana Circlet Pattern -->
<item id="6705" min="23" max="67" chance="19.75" /> <!-- Sealed Imperial Crusader Shield Part -->
<item id="6706" min="60" max="180" chance="8.27100000000012" /> <!-- Sealed Imperial Crusader Helmet Pattern -->
<item id="6710" min="116" max="346" chance="4.27699999999998" /> <!-- Sealed Draconic Leather Helmet Pattern -->
<item id="960" min="1" max="1" chance="62.97" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="959" min="1" max="1" chance="6.35899999999998" /> <!-- Scroll: Enchant Weapon (S-grade) -->
<item id="6577" min="1" max="1" chance="1.07600000000003" /> <!-- Blessed Scroll: Enchant Weapon (S-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="90.785" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="44" />
@@ -2245,59 +2209,49 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="35.215">
<item id="9529" min="1" max="1" chance="8.5418145676558" /> <!-- Sealed Dynasty Shield -->
<item id="14111" min="1" max="1" chance="8.4253869089876" /> <!-- Sealed Vesper Shield -->
<item id="10552" min="1" max="1" chance="83.032798523357" /> <!-- Forgotten Scroll: Fighter's Will -->
</group>
<group chance="35.388">
<item id="17012" min="1" max="1" chance="8.5057081496553" /> <!-- Sealed Vesper Noble Leather Leggings -->
<item id="17008" min="1" max="1" chance="8.5000565163332" /> <!-- Sealed Vesper Noble Tunic -->
<item id="17007" min="1" max="1" chance="8.4802757997061" /> <!-- Sealed Vesper Noble Leather Breastplate -->
<item id="14112" min="1" max="1" chance="8.4096303831807" /> <!-- Sealed Vesper Leather Leggings -->
<item id="17006" min="1" max="1" chance="8.3841980332316" /> <!-- Sealed Vesper Noble Breastplate -->
<item id="14115" min="1" max="1" chance="8.3785463999096" /> <!-- Sealed Vesper Stockings -->
<item id="14105" min="1" max="1" chance="8.3305075166723" /> <!-- Sealed Vesper Breastplate -->
<item id="14108" min="1" max="1" chance="8.2937719000791" /> <!-- Sealed Vesper Gaiters -->
<item id="14106" min="1" max="1" chance="8.2259523002148" /> <!-- Sealed Vesper Leather Breastplate -->
<item id="14107" min="1" max="1" chance="8.2259523002148" /> <!-- Sealed Vesper Tunic -->
<item id="17009" min="1" max="1" chance="8.1411778003843" /> <!-- Sealed Vesper Noble Gaiters -->
<item id="17015" min="1" max="1" chance="8.1242229004182" /> <!-- Sealed Vesper Noble Stockings -->
</group>
<group chance="58.696">
<item id="17017" min="1" max="1" chance="5.1127845168325" /> <!-- Sealed Vesper Noble Shoes -->
<item id="14117" min="1" max="1" chance="5.0480441597383" /> <!-- Sealed Vesper Shoes -->
<item id="14113" min="1" max="1" chance="5.0463404661306" /> <!-- Sealed Vesper Leather Gloves -->
<item id="13887" min="1" max="1" chance="5.0361183044841" /> <!-- Sealed Vesper Sigil -->
<item id="13148" min="1" max="1" chance="5.0224887556222" /> <!-- Sealed Vesper Noble Circlet -->
<item id="13145" min="1" max="1" chance="5.0207850620144" /> <!-- Sealed Vesper Circlet -->
<item id="13143" min="1" max="1" chance="5.0207850620144" /> <!-- Sealed Vesper Helmet -->
<item id="13886" min="1" max="1" chance="5.0190813684067" /> <!-- Sealed Dynasty Sigil -->
<item id="13144" min="1" max="1" chance="5.010562900368" /> <!-- Sealed Vesper Leather Helmet -->
<item id="17014" min="1" max="1" chance="5.0020444323293" /> <!-- Sealed Vesper Noble Leather Boots -->
<item id="17011" min="1" max="1" chance="4.9986370451138" /> <!-- Sealed Vesper Noble Boots -->
<item id="13146" min="1" max="1" chance="4.9986370451138" /> <!-- Sealed Vesper Noble Helmet -->
<item id="14116" min="1" max="1" chance="4.9935259642906" /> <!-- Sealed Vesper Gloves -->
<item id="13147" min="1" max="1" chance="4.9781927218209" /> <!-- Sealed Vesper Noble Leather Helmet -->
<item id="14109" min="1" max="1" chance="4.9764890282132" /> <!-- Sealed Vesper Gauntlets -->
<item id="17016" min="1" max="1" chance="4.9662668665667" /> <!-- Sealed Vesper Noble Gloves -->
<item id="17013" min="1" max="1" chance="4.9662668665667" /> <!-- Sealed Vesper Noble Leather Gloves -->
<item id="14114" min="1" max="1" chance="4.9526373177048" /> <!-- Sealed Vesper Leather Boots -->
<item id="14110" min="1" max="1" chance="4.9236745263732" /> <!-- Sealed Vesper Boots -->
<item id="17010" min="1" max="1" chance="4.9066375902958" /> <!-- Sealed Vesper Noble Gauntlets -->
</group>
<group chance="99.29">
<item id="14162" min="1" max="1" chance="35.592708228422" /> <!-- Sealed Vesper Ring -->
<item id="14160" min="1" max="1" chance="34.394198811562" /> <!-- Sealed Vesper Earring -->
<item id="14161" min="1" max="1" chance="30.013092960016" /> <!-- Sealed Vesper Necklace -->
</group>
<group chance="67.944">
<item id="14219" min="1" max="1" chance="42.741080890145" /> <!-- Forgotten Scroll: Magician's Will -->
<item id="10553" min="1" max="1" chance="42.490874838102" /> <!-- Forgotten Scroll: Archer's Will -->
<item id="13893" min="1" max="1" chance="14.768044271753" /> <!-- Sealed Holy Spirit's Cloak -->
</group>
</death>
<drop>
<item id="9529" min="1" max="1" chance="3.00799999999999" /> <!-- Sealed Dynasty Shield -->
<item id="14111" min="1" max="1" chance="2.96699999999998" /> <!-- Sealed Vesper Shield -->
<item id="10552" min="1" max="1" chance="29.2400000000002" /> <!-- Forgotten Scroll: Fighter's Will -->
<item id="17012" min="1" max="1" chance="3.01000000000002" /> <!-- Sealed Vesper Noble Leather Leggings -->
<item id="17008" min="1" max="1" chance="3.00799999999999" /> <!-- Sealed Vesper Noble Tunic -->
<item id="17007" min="1" max="1" chance="3.00099999999999" /> <!-- Sealed Vesper Noble Leather Breastplate -->
<item id="14112" min="1" max="1" chance="2.97599999999999" /> <!-- Sealed Vesper Leather Leggings -->
<item id="17006" min="1" max="1" chance="2.967" /> <!-- Sealed Vesper Noble Breastplate -->
<item id="14115" min="1" max="1" chance="2.96500000000001" /> <!-- Sealed Vesper Stockings -->
<item id="14105" min="1" max="1" chance="2.94799999999999" /> <!-- Sealed Vesper Breastplate -->
<item id="14108" min="1" max="1" chance="2.93499999999999" /> <!-- Sealed Vesper Gaiters -->
<item id="14106" min="1" max="1" chance="2.91100000000001" /> <!-- Sealed Vesper Leather Breastplate -->
<item id="14107" min="1" max="1" chance="2.91100000000001" /> <!-- Sealed Vesper Tunic -->
<item id="17009" min="1" max="1" chance="2.881" /> <!-- Sealed Vesper Noble Gaiters -->
<item id="17015" min="1" max="1" chance="2.87499999999999" /> <!-- Sealed Vesper Noble Stockings -->
<item id="17017" min="1" max="1" chance="3.001" /> <!-- Sealed Vesper Noble Shoes -->
<item id="14117" min="1" max="1" chance="2.96299999999999" /> <!-- Sealed Vesper Shoes -->
<item id="14113" min="1" max="1" chance="2.96200000000002" /> <!-- Sealed Vesper Leather Gloves -->
<item id="13887" min="1" max="1" chance="2.95599999999999" /> <!-- Sealed Vesper Sigil -->
<item id="13148" min="1" max="1" chance="2.94800000000001" /> <!-- Sealed Vesper Noble Circlet -->
<item id="13145" min="1" max="1" chance="2.94699999999997" /> <!-- Sealed Vesper Circlet -->
<item id="13143" min="1" max="1" chance="2.94699999999997" /> <!-- Sealed Vesper Helmet -->
<item id="13886" min="1" max="1" chance="2.946" /> <!-- Sealed Dynasty Sigil -->
<item id="13144" min="1" max="1" chance="2.941" /> <!-- Sealed Vesper Leather Helmet -->
<item id="17014" min="1" max="1" chance="2.93600000000001" /> <!-- Sealed Vesper Noble Leather Boots -->
<item id="17011" min="1" max="1" chance="2.934" /> <!-- Sealed Vesper Noble Boots -->
<item id="13146" min="1" max="1" chance="2.934" /> <!-- Sealed Vesper Noble Helmet -->
<item id="14116" min="1" max="1" chance="2.93100000000001" /> <!-- Sealed Vesper Gloves -->
<item id="13147" min="1" max="1" chance="2.922" /> <!-- Sealed Vesper Noble Leather Helmet -->
<item id="14109" min="1" max="1" chance="2.92100000000002" /> <!-- Sealed Vesper Gauntlets -->
<item id="17016" min="1" max="1" chance="2.91499999999999" /> <!-- Sealed Vesper Noble Gloves -->
<item id="17013" min="1" max="1" chance="2.91499999999999" /> <!-- Sealed Vesper Noble Leather Gloves -->
<item id="14114" min="1" max="1" chance="2.90700000000001" /> <!-- Sealed Vesper Leather Boots -->
<item id="14110" min="1" max="1" chance="2.89000000000001" /> <!-- Sealed Vesper Boots -->
<item id="17010" min="1" max="1" chance="2.88000000000002" /> <!-- Sealed Vesper Noble Gauntlets -->
<item id="14162" min="1" max="1" chance="35.3400000000002" /> <!-- Sealed Vesper Ring -->
<item id="14160" min="1" max="1" chance="34.1499999999999" /> <!-- Sealed Vesper Earring -->
<item id="14161" min="1" max="1" chance="29.7999999999999" /> <!-- Sealed Vesper Necklace -->
<item id="14219" min="1" max="1" chance="29.0400000000001" /> <!-- Forgotten Scroll: Magician's Will -->
<item id="10553" min="1" max="1" chance="28.87" /> <!-- Forgotten Scroll: Archer's Will -->
<item id="13893" min="1" max="1" chance="10.0339999999999" /> <!-- Sealed Holy Spirit's Cloak -->
</drop>
</drop_lists>
<collision>
<radius normal="25" />
@@ -3917,14 +3871,10 @@
<ex_crt_effect>true</ex_crt_effect>
<ai aggroRange="300" clanHelpRange="300" isAggressive="true" />
<drop_lists>
<death>
<group chance="100">
<item id="8952" min="10" max="20" chance="100" /> <!-- Major Herb of Life -->
</group>
<group chance="100">
<item id="8953" min="10" max="20" chance="100" /> <!-- Major Herb of Mana -->
</group>
</death>
<drop>
<item id="8952" min="10" max="20" chance="100" /> <!-- Major Herb of Life -->
<item id="8953" min="10" max="20" chance="100" /> <!-- Major Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="63" />
@@ -4095,7 +4045,7 @@
<height normal="81" />
</collision>
<drop_lists>
<death>
<drop>
<item id="19462" min="1" max="1" chance="1.370" /> <!-- Octavis' Shirt -->
<item id="19459" min="1" max="1" chance="0.3" /> <!-- Octavis' Necklace -->
<item id="19458" min="1" max="1" chance="0.3" /> <!-- Octavis' Earring -->
@@ -4168,10 +4118,10 @@
<item id="38015" min="1" max="1" chance="0.075" /> <!-- Specter Avenger Crafting Pack -->
<item id="38017" min="1" max="1" chance="0.075" /> <!-- Specter Stormer Crafting Pack -->
<item id="38018" min="1" max="1" chance="0.075" /> <!-- Specter Thrower Crafting Pack -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="2" max="2" chance="99" /> <!-- Fortune Bag - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
</npc>
<npc id="29195" level="94" type="L2RaidBoss" name="Istina" title="Queen of Annihilation">
@@ -4217,95 +4167,85 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="4.875">
<item id="17343" min="1" max="1" chance="15.384615384615" /> <!-- Twilight Shield Heavy Armor -->
<item id="37986" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Stormer Crafting Pack -->
<item id="37981" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Shaper Crafting Pack -->
<item id="37982" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Cutter Crafting Pack -->
<item id="37983" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Slasher Crafting Pack -->
<item id="37984" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Avenger Crafting Pack -->
<item id="37985" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Fighter Crafting Pack -->
<item id="37987" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Thrower Crafting Pack -->
<item id="37988" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Shooter Crafting Pack -->
<item id="37989" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Buster Crafting Pack -->
<item id="37990" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Caster Crafting Pack -->
<item id="37991" min="1" max="1" chance="6.1538461538462" /> <!-- Apocalypse Retributer Crafting Pack -->
<item id="38020" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Buster Crafting Pack -->
<item id="38012" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Shaper Crafting Pack -->
<item id="38022" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Retributer Crafting Pack -->
<item id="38019" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Shooter Crafting Pack -->
<item id="38018" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Thrower Crafting Pack -->
<item id="38017" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Stormer Crafting Pack -->
<item id="38016" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Fighter Crafting Pack -->
<item id="38015" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Avenger Crafting Pack -->
<item id="38014" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Slasher Crafting Pack -->
<item id="38013" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Cutter Crafting Pack -->
<item id="38021" min="1" max="1" chance="1.5384615384615" /> <!-- Specter Caster Crafting Pack -->
</group>
<group chance="32.113">
<item id="19456" min="1" max="1" chance="6.3494534923551" /> <!-- Istina's Shirt -->
<item id="38005" min="1" max="1" chance="14.853797527481" /> <!-- Twilight Stockings Crafting Pack Robe -->
<item id="37999" min="1" max="1" chance="14.847569520132" /> <!-- Twilight Leather Armor Crafting Pack Light Armor -->
<item id="37994" min="1" max="1" chance="14.791517453991" /> <!-- Twilight Gaiters Crafting Pack Heavy Armor -->
<item id="37993" min="1" max="1" chance="14.573537196774" /> <!-- Twilight Breastplate Crafting Pack Heavy Armor -->
<item id="38004" min="1" max="1" chance="14.50191511226" /> <!-- Twilight Tunic Crafting Pack Robe -->
<item id="38000" min="1" max="1" chance="14.477003082864" /> <!-- Twilight Leather Leggings Crafting Pack Light Armor -->
<item id="38024" min="1" max="1" chance="0.9342011023573" /> <!-- Seraph Breastplate Crafting Pack Heavy Armor -->
<item id="38025" min="1" max="1" chance="0.9342011023573" /> <!-- Seraph Gaiters Crafting Pack Heavy Armor -->
<item id="38030" min="1" max="1" chance="0.9342011023573" /> <!-- Seraph Leather Armor Crafting Pack Light Armor -->
<item id="38031" min="1" max="1" chance="0.9342011023573" /> <!-- Seraph Leather Leggings Crafting Pack Light Armor -->
<item id="38035" min="1" max="1" chance="0.9342011023573" /> <!-- Seraph Tunic Crafting Pack Robe -->
<item id="38036" min="1" max="1" chance="0.9342011023573" /> <!-- Seraph Stockings Crafting Pack Robe -->
</group>
<group chance="62.587">
<item id="17354" min="1" max="1" chance="1.1983319219646" /> <!-- Twilight Sigil Robe -->
<item id="17353" min="1" max="1" chance="1.1983319219646" /> <!-- Twilight Shoes Robe -->
<item id="17352" min="1" max="1" chance="1.1983319219646" /> <!-- Twilight Gloves Robe -->
<item id="17349" min="1" max="1" chance="1.1983319219646" /> <!-- Twilight Circlet Robe -->
<item id="17348" min="1" max="1" chance="1.1983319219646" /> <!-- Twilight Leather Boots Light Armor -->
<item id="17347" min="1" max="1" chance="1.1983319219646" /> <!-- Twilight Leather Gloves Light Armor -->
<item id="17344" min="1" max="1" chance="1.1983319219646" /> <!-- Twilight Leather Helmet Light Armor -->
<item id="17342" min="1" max="1" chance="1.1983319219646" /> <!-- Twilight Boots Heavy Armor -->
<item id="17341" min="1" max="1" chance="1.1983319219646" /> <!-- Twilight Gauntlets Heavy Armor -->
<item id="17338" min="1" max="1" chance="1.1983319219646" /> <!-- Twilight Helmet Heavy Armor -->
<item id="38003" min="1" max="1" chance="7.6181954719031" /> <!-- Twilight Circlet Crafting Pack Robe -->
<item id="37995" min="1" max="1" chance="7.6086088165274" /> <!-- Twilight Gauntlets Crafting Pack Heavy Armor -->
<item id="38001" min="1" max="1" chance="7.5846421780881" /> <!-- Twilight Leather Gloves Crafting Pack Light Armor -->
<item id="38006" min="1" max="1" chance="7.5830444021922" /> <!-- Twilight Gloves Crafting Pack Robe -->
<item id="38007" min="1" max="1" chance="7.5431000047933" /> <!-- Twilight Shoes Crafting Pack Robe -->
<item id="37997" min="1" max="1" chance="7.5271222458338" /> <!-- Twilight Shield Crafting Pack Heavy Armor -->
<item id="37996" min="1" max="1" chance="7.5079489350824" /> <!-- Twilight Boots Crafting Pack Heavy Armor -->
<item id="37992" min="1" max="1" chance="7.4775911930593" /> <!-- Twilight Helmet Crafting Pack Heavy Armor -->
<item id="38002" min="1" max="1" chance="7.4456356751402" /> <!-- Twilight Leather Boots Crafting Pack Light Armor -->
<item id="37998" min="1" max="1" chance="7.4360490197645" /> <!-- Twilight Leather Helmet Crafting Pack Light Armor -->
<item id="38008" min="1" max="1" chance="7.4120823813252" /> <!-- Twilight Sigil Crafting Pack Robe -->
<item id="38023" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Helmet Crafting Pack Heavy Armor -->
<item id="38027" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Boots Crafting Pack Heavy Armor -->
<item id="38028" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Shield Crafting Pack Heavy Armor -->
<item id="38029" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Leather Helmet Crafting Pack Light Armor -->
<item id="38032" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Leather Gloves Crafting Pack Light Armor -->
<item id="38033" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Leather Boots Crafting Pack Light Armor -->
<item id="38034" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Circlet Crafting Pack Robe -->
<item id="38037" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Gloves Crafting Pack Robe -->
<item id="38038" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Shoes Crafting Pack Robe -->
<item id="38039" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Sigil Crafting Pack Robe -->
<item id="38026" min="1" max="1" chance="0.47933276878585" /> <!-- Seraph Gauntlets Crafting Pack Heavy Armor -->
</group>
<group chance="0.9">
<item id="19451" min="1" max="1" chance="33.333333333333" /> <!-- Istina's Ring -->
<item id="19452" min="1" max="1" chance="33.333333333333" /> <!-- Istina's Earring -->
<item id="19453" min="1" max="1" chance="33.333333333333" /> <!-- Istina's Necklace -->
</group>
<group chance="100">
<item id="39738" min="1" max="1" chance="90.887608383473" /> <!-- Rune Stone -->
<item id="19448" min="1" max="1" chance="7.2800974315162" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="19447" min="1" max="1" chance="1.8322941850108" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="17343" min="1" max="1" chance="0.749999999999981" /> <!-- Twilight Shield Heavy Armor -->
<item id="37986" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Stormer Crafting Pack -->
<item id="37981" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Shaper Crafting Pack -->
<item id="37982" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Cutter Crafting Pack -->
<item id="37983" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Slasher Crafting Pack -->
<item id="37984" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Avenger Crafting Pack -->
<item id="37985" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Fighter Crafting Pack -->
<item id="37987" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Thrower Crafting Pack -->
<item id="37988" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Shooter Crafting Pack -->
<item id="37989" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Buster Crafting Pack -->
<item id="37990" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Caster Crafting Pack -->
<item id="37991" min="1" max="1" chance="0.300000000000002" /> <!-- Apocalypse Retributer Crafting Pack -->
<item id="38020" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Buster Crafting Pack -->
<item id="38012" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Shaper Crafting Pack -->
<item id="38022" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Retributer Crafting Pack -->
<item id="38019" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Shooter Crafting Pack -->
<item id="38018" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Thrower Crafting Pack -->
<item id="38017" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Stormer Crafting Pack -->
<item id="38016" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Fighter Crafting Pack -->
<item id="38015" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Avenger Crafting Pack -->
<item id="38014" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Slasher Crafting Pack -->
<item id="38013" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Cutter Crafting Pack -->
<item id="38021" min="1" max="1" chance="0.0749999999999981" /> <!-- Specter Caster Crafting Pack -->
<item id="19456" min="1" max="1" chance="2.03899999999999" /> <!-- Istina's Shirt -->
<item id="38005" min="1" max="1" chance="4.76999999999997" /> <!-- Twilight Stockings Crafting Pack Robe -->
<item id="37999" min="1" max="1" chance="4.76799999999999" /> <!-- Twilight Leather Armor Crafting Pack Light Armor -->
<item id="37994" min="1" max="1" chance="4.75000000000013" /> <!-- Twilight Gaiters Crafting Pack Heavy Armor -->
<item id="37993" min="1" max="1" chance="4.68000000000003" /> <!-- Twilight Breastplate Crafting Pack Heavy Armor -->
<item id="38004" min="1" max="1" chance="4.65700000000005" /> <!-- Twilight Tunic Crafting Pack Robe -->
<item id="38000" min="1" max="1" chance="4.64900000000012" /> <!-- Twilight Leather Leggings Crafting Pack Light Armor -->
<item id="38024" min="1" max="1" chance="0.3" /> <!-- Seraph Breastplate Crafting Pack Heavy Armor -->
<item id="38025" min="1" max="1" chance="0.3" /> <!-- Seraph Gaiters Crafting Pack Heavy Armor -->
<item id="38030" min="1" max="1" chance="0.3" /> <!-- Seraph Leather Armor Crafting Pack Light Armor -->
<item id="38031" min="1" max="1" chance="0.3" /> <!-- Seraph Leather Leggings Crafting Pack Light Armor -->
<item id="38035" min="1" max="1" chance="0.3" /> <!-- Seraph Tunic Crafting Pack Robe -->
<item id="38036" min="1" max="1" chance="0.3" /> <!-- Seraph Stockings Crafting Pack Robe -->
<item id="17354" min="1" max="1" chance="0.749999999999984" /> <!-- Twilight Sigil Robe -->
<item id="17353" min="1" max="1" chance="0.749999999999984" /> <!-- Twilight Shoes Robe -->
<item id="17352" min="1" max="1" chance="0.749999999999984" /> <!-- Twilight Gloves Robe -->
<item id="17349" min="1" max="1" chance="0.749999999999984" /> <!-- Twilight Circlet Robe -->
<item id="17348" min="1" max="1" chance="0.749999999999984" /> <!-- Twilight Leather Boots Light Armor -->
<item id="17347" min="1" max="1" chance="0.749999999999984" /> <!-- Twilight Leather Gloves Light Armor -->
<item id="17344" min="1" max="1" chance="0.749999999999984" /> <!-- Twilight Leather Helmet Light Armor -->
<item id="17342" min="1" max="1" chance="0.749999999999984" /> <!-- Twilight Boots Heavy Armor -->
<item id="17341" min="1" max="1" chance="0.749999999999984" /> <!-- Twilight Gauntlets Heavy Armor -->
<item id="17338" min="1" max="1" chance="0.749999999999984" /> <!-- Twilight Helmet Heavy Armor -->
<item id="38003" min="1" max="1" chance="4.76799999999999" /> <!-- Twilight Circlet Crafting Pack Robe -->
<item id="37995" min="1" max="1" chance="4.762" /> <!-- Twilight Gauntlets Crafting Pack Heavy Armor -->
<item id="38001" min="1" max="1" chance="4.747" /> <!-- Twilight Leather Gloves Crafting Pack Light Armor -->
<item id="38006" min="1" max="1" chance="4.74600000000003" /> <!-- Twilight Gloves Crafting Pack Robe -->
<item id="38007" min="1" max="1" chance="4.72099999999998" /> <!-- Twilight Shoes Crafting Pack Robe -->
<item id="37997" min="1" max="1" chance="4.711" /> <!-- Twilight Shield Crafting Pack Heavy Armor -->
<item id="37996" min="1" max="1" chance="4.69900000000002" /> <!-- Twilight Boots Crafting Pack Heavy Armor -->
<item id="37992" min="1" max="1" chance="4.68000000000002" /> <!-- Twilight Helmet Crafting Pack Heavy Armor -->
<item id="38002" min="1" max="1" chance="4.66" /> <!-- Twilight Leather Boots Crafting Pack Light Armor -->
<item id="37998" min="1" max="1" chance="4.65400000000001" /> <!-- Twilight Leather Helmet Crafting Pack Light Armor -->
<item id="38008" min="1" max="1" chance="4.639" /> <!-- Twilight Sigil Crafting Pack Robe -->
<item id="38023" min="1" max="1" chance="0.3" /> <!-- Seraph Helmet Crafting Pack Heavy Armor -->
<item id="38027" min="1" max="1" chance="0.3" /> <!-- Seraph Boots Crafting Pack Heavy Armor -->
<item id="38028" min="1" max="1" chance="0.3" /> <!-- Seraph Shield Crafting Pack Heavy Armor -->
<item id="38029" min="1" max="1" chance="0.3" /> <!-- Seraph Leather Helmet Crafting Pack Light Armor -->
<item id="38032" min="1" max="1" chance="0.3" /> <!-- Seraph Leather Gloves Crafting Pack Light Armor -->
<item id="38033" min="1" max="1" chance="0.3" /> <!-- Seraph Leather Boots Crafting Pack Light Armor -->
<item id="38034" min="1" max="1" chance="0.3" /> <!-- Seraph Circlet Crafting Pack Robe -->
<item id="38037" min="1" max="1" chance="0.3" /> <!-- Seraph Gloves Crafting Pack Robe -->
<item id="38038" min="1" max="1" chance="0.3" /> <!-- Seraph Shoes Crafting Pack Robe -->
<item id="38039" min="1" max="1" chance="0.3" /> <!-- Seraph Sigil Crafting Pack Robe -->
<item id="38026" min="1" max="1" chance="0.3" /> <!-- Seraph Gauntlets Crafting Pack Heavy Armor -->
<item id="19451" min="1" max="1" chance="0.299999999999997" /> <!-- Istina's Ring -->
<item id="19452" min="1" max="1" chance="0.299999999999997" /> <!-- Istina's Earring -->
<item id="19453" min="1" max="1" chance="0.299999999999997" /> <!-- Istina's Necklace -->
<item id="39738" min="1" max="1" chance="90.887608383473" /> <!-- Rune Stone -->
<item id="19448" min="1" max="1" chance="7.2800974315162" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="19447" min="1" max="1" chance="1.8322941850108" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
</drop>
<lucky_drop>
<item id="39629" min="1" max="1" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="100" />
@@ -4355,85 +4295,75 @@
</skill_list>
<ai clanHelpRange="300" aggroRange="300" />
<drop_lists>
<death>
<group chance="0.825">
<item id="38044" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Cutter Crafting Pack -->
<item id="38045" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Slasher Crafting Pack -->
<item id="38046" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Avenger Crafting Pack -->
<item id="38048" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Stormer Crafting Pack -->
<item id="38047" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Fighter Crafting Pack -->
<item id="38049" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Thrower Crafting Pack -->
<item id="38050" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Shooter Crafting Pack -->
<item id="38051" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38052" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Caster Crafting Pack -->
<item id="38053" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Retributer Crafting Pack -->
<item id="38043" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Shaper Crafting Pack -->
</group>
<group chance="36.551">
<item id="19456" min="1" max="1" chance="59.861563295122" /> <!-- Istina's Shirt -->
<item id="17397" min="1" max="1" chance="4.7276408306202" /> <!-- Seraph Breastplate Heavy Armor -->
<item id="17404" min="1" max="1" chance="4.6920740882602" /> <!-- Seraph Leather Leggings Light Armor -->
<item id="17398" min="1" max="1" chance="4.672922765451" /> <!-- Seraph Gaiters Heavy Armor -->
<item id="17403" min="1" max="1" chance="4.6647150556756" /> <!-- Seraph Leather Armor Light Armor -->
<item id="17409" min="1" max="1" chance="4.5799020546633" /> <!-- Seraph Stockings Robe -->
<item id="17408" min="1" max="1" chance="4.4896172471341" /> <!-- Seraph Tunic Robe -->
<item id="38061" min="1" max="1" chance="2.0519274438456" /> <!-- Eternal Leather Armor Crafting Pack Light Armor -->
<item id="38062" min="1" max="1" chance="2.0519274438456" /> <!-- Eternal Leather Leggings Crafting Pack Light Armor -->
<item id="38066" min="1" max="1" chance="2.0519274438456" /> <!-- Eternal Tunic Crafting Pack Robe -->
<item id="38056" min="1" max="1" chance="2.0519274438456" /> <!-- Eternal Gaiters Crafting Pack Heavy Armor -->
<item id="38055" min="1" max="1" chance="2.0519274438456" /> <!-- Eternal Breastplate Crafting Pack Heavy Armor -->
<item id="38067" min="1" max="1" chance="2.0519274438456" /> <!-- Eternal Stockings Crafting Pack Robe -->
</group>
<group chance="8.25">
<item id="38059" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Shield Crafting Pack Heavy Armor -->
<item id="38060" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Leather Helmet Crafting Pack Light Armor -->
<item id="38063" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Leather Gloves Crafting Pack Light Armor -->
<item id="38064" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Leather Boots Crafting Pack Light Armor -->
<item id="38065" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Circlet Crafting Pack Robe -->
<item id="38068" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Gloves Crafting Pack Robe -->
<item id="38069" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Shoes Crafting Pack Robe -->
<item id="38070" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Sigil Crafting Pack Robe -->
<item id="38058" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Boots Crafting Pack Heavy Armor -->
<item id="38057" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Gauntlets Crafting Pack Heavy Armor -->
<item id="38054" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Helmet Crafting Pack Heavy Armor -->
</group>
<group chance="8.996">
<item id="19453" min="1" max="1" chance="33.937305469097" /> <!-- Istina's Necklace -->
<item id="19451" min="1" max="1" chance="33.125833703868" /> <!-- Istina's Ring -->
<item id="19452" min="1" max="1" chance="32.936860827034" /> <!-- Istina's Earring -->
</group>
<group chance="100">
<item id="19447" min="1" max="1" chance="24.805251044905" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="19448" min="1" max="1" chance="24.026741792809" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="37076" min="1" max="1" chance="2.4659280560137" /> <!-- Monster Weapon Appearance Stone: Drakos' Dual Dagger -->
<item id="37071" min="1" max="1" chance="2.4620355097533" /> <!-- Monster Weapon Appearance Stone: Seknus' One-handed Magic Sword -->
<item id="37070" min="1" max="1" chance="2.4542504172323" /> <!-- Monster Weapon Appearance Stone: Tegaffe's Dualsword -->
<item id="37084" min="1" max="1" chance="2.4513310075369" /> <!-- Monster Weapon Appearance Stone: Spicula's Crossbow -->
<item id="37078" min="1" max="1" chance="2.4508444392544" /> <!-- Monster Weapon Appearance Stone: Thesakar's Spear -->
<item id="37068" min="1" max="1" chance="2.447925029559" /> <!-- Monster Weapon Appearance Stone: Sword of Corruption -->
<item id="37073" min="1" max="1" chance="2.4474384612765" /> <!-- Monster Weapon Appearance Stone: Glakias' Hammer -->
<item id="37081" min="1" max="1" chance="2.4469518929939" /> <!-- Monster Weapon Appearance Stone: Kanadis' Hand -->
<item id="37083" min="1" max="1" chance="2.4464653247113" /> <!-- Monster Weapon Appearance Stone: Centaur's Bow -->
<item id="37077" min="1" max="1" chance="2.4450056198637" /> <!-- Monster Weapon Appearance Stone: Guillotine's Greatsword -->
<item id="37082" min="1" max="1" chance="2.4386802321904" /> <!-- Monster Weapon Appearance Stone: Kanadis' Bow -->
<item id="37074" min="1" max="1" chance="2.4362473907776" /> <!-- Monster Weapon Appearance Stone: Tebot's Dual Blunt Weapon -->
<item id="37085" min="1" max="1" chance="2.4328414127997" /> <!-- Monster Weapon Appearance Stone: Theor's Shield -->
<item id="37075" min="1" max="1" chance="2.431381707952" /> <!-- Monster Weapon Appearance Stone: Drakos' Dagger -->
<item id="37072" min="1" max="1" chance="2.4260294568438" /> <!-- Monster Weapon Appearance Stone: Tebot's Axe -->
<item id="37086" min="1" max="1" chance="2.4153249546275" /> <!-- Monster Weapon Appearance Stone: Shield of Corruption -->
<item id="37069" min="1" max="1" chance="2.4065667255414" /> <!-- Monster Weapon Appearance Stone: Octavis' Sword -->
<item id="37067" min="1" max="1" chance="2.4046204524112" /> <!-- Monster Weapon Appearance Stone: Theor's Sword -->
<item id="37079" min="1" max="1" chance="2.4026741792809" /> <!-- Monster Weapon Appearance Stone: Mimilead's Staff -->
<item id="37080" min="1" max="1" chance="2.3987816330205" /> <!-- Monster Weapon Appearance Stone: Satyr's Staff -->
<item id="39485" min="1" max="1" chance="0.83738401428564" /> <!-- Alchemic Tome: Dye -->
<item id="39483" min="1" max="1" chance="0.83495117287284" /> <!-- Alchemic Tome: Enchant Scroll -->
<item id="39484" min="1" max="1" chance="0.78434807148661" /> <!-- Alchemic Tome: Life Stone -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="38044" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Cutter Crafting Pack -->
<item id="38045" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Slasher Crafting Pack -->
<item id="38046" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Avenger Crafting Pack -->
<item id="38048" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Stormer Crafting Pack -->
<item id="38047" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Fighter Crafting Pack -->
<item id="38049" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Thrower Crafting Pack -->
<item id="38050" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Shooter Crafting Pack -->
<item id="38051" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38052" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Caster Crafting Pack -->
<item id="38053" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Retributer Crafting Pack -->
<item id="38043" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Shaper Crafting Pack -->
<item id="19456" min="1" max="1" chance="21.88" /> <!-- Istina's Shirt -->
<item id="17397" min="1" max="1" chance="1.72799999999999" /> <!-- Seraph Breastplate Heavy Armor -->
<item id="17404" min="1" max="1" chance="1.71499999999999" /> <!-- Seraph Leather Leggings Light Armor -->
<item id="17398" min="1" max="1" chance="1.708" /> <!-- Seraph Gaiters Heavy Armor -->
<item id="17403" min="1" max="1" chance="1.70499999999999" /> <!-- Seraph Leather Armor Light Armor -->
<item id="17409" min="1" max="1" chance="1.67399999999998" /> <!-- Seraph Stockings Robe -->
<item id="17408" min="1" max="1" chance="1.64099999999998" /> <!-- Seraph Tunic Robe -->
<item id="38061" min="1" max="1" chance="0.750000000000005" /> <!-- Eternal Leather Armor Crafting Pack Light Armor -->
<item id="38062" min="1" max="1" chance="0.750000000000005" /> <!-- Eternal Leather Leggings Crafting Pack Light Armor -->
<item id="38066" min="1" max="1" chance="0.750000000000005" /> <!-- Eternal Tunic Crafting Pack Robe -->
<item id="38056" min="1" max="1" chance="0.750000000000005" /> <!-- Eternal Gaiters Crafting Pack Heavy Armor -->
<item id="38055" min="1" max="1" chance="0.750000000000005" /> <!-- Eternal Breastplate Crafting Pack Heavy Armor -->
<item id="38067" min="1" max="1" chance="0.750000000000005" /> <!-- Eternal Stockings Crafting Pack Robe -->
<item id="38059" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Shield Crafting Pack Heavy Armor -->
<item id="38060" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Leather Helmet Crafting Pack Light Armor -->
<item id="38063" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Leather Gloves Crafting Pack Light Armor -->
<item id="38064" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Leather Boots Crafting Pack Light Armor -->
<item id="38065" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Circlet Crafting Pack Robe -->
<item id="38068" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Gloves Crafting Pack Robe -->
<item id="38069" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Shoes Crafting Pack Robe -->
<item id="38070" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Sigil Crafting Pack Robe -->
<item id="38058" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Boots Crafting Pack Heavy Armor -->
<item id="38057" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Gauntlets Crafting Pack Heavy Armor -->
<item id="38054" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Helmet Crafting Pack Heavy Armor -->
<item id="19453" min="1" max="1" chance="3.05299999999997" /> <!-- Istina's Necklace -->
<item id="19451" min="1" max="1" chance="2.97999999999997" /> <!-- Istina's Ring -->
<item id="19452" min="1" max="1" chance="2.96299999999998" /> <!-- Istina's Earring -->
<item id="19447" min="1" max="1" chance="24.805251044905" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="19448" min="1" max="1" chance="24.026741792809" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="37076" min="1" max="1" chance="2.4659280560137" /> <!-- Monster Weapon Appearance Stone: Drakos' Dual Dagger -->
<item id="37071" min="1" max="1" chance="2.4620355097533" /> <!-- Monster Weapon Appearance Stone: Seknus' One-handed Magic Sword -->
<item id="37070" min="1" max="1" chance="2.4542504172323" /> <!-- Monster Weapon Appearance Stone: Tegaffe's Dualsword -->
<item id="37084" min="1" max="1" chance="2.4513310075369" /> <!-- Monster Weapon Appearance Stone: Spicula's Crossbow -->
<item id="37078" min="1" max="1" chance="2.4508444392544" /> <!-- Monster Weapon Appearance Stone: Thesakar's Spear -->
<item id="37068" min="1" max="1" chance="2.447925029559" /> <!-- Monster Weapon Appearance Stone: Sword of Corruption -->
<item id="37073" min="1" max="1" chance="2.4474384612765" /> <!-- Monster Weapon Appearance Stone: Glakias' Hammer -->
<item id="37081" min="1" max="1" chance="2.4469518929939" /> <!-- Monster Weapon Appearance Stone: Kanadis' Hand -->
<item id="37083" min="1" max="1" chance="2.4464653247113" /> <!-- Monster Weapon Appearance Stone: Centaur's Bow -->
<item id="37077" min="1" max="1" chance="2.4450056198637" /> <!-- Monster Weapon Appearance Stone: Guillotine's Greatsword -->
<item id="37082" min="1" max="1" chance="2.4386802321904" /> <!-- Monster Weapon Appearance Stone: Kanadis' Bow -->
<item id="37074" min="1" max="1" chance="2.4362473907776" /> <!-- Monster Weapon Appearance Stone: Tebot's Dual Blunt Weapon -->
<item id="37085" min="1" max="1" chance="2.4328414127997" /> <!-- Monster Weapon Appearance Stone: Theor's Shield -->
<item id="37075" min="1" max="1" chance="2.431381707952" /> <!-- Monster Weapon Appearance Stone: Drakos' Dagger -->
<item id="37072" min="1" max="1" chance="2.4260294568438" /> <!-- Monster Weapon Appearance Stone: Tebot's Axe -->
<item id="37086" min="1" max="1" chance="2.4153249546275" /> <!-- Monster Weapon Appearance Stone: Shield of Corruption -->
<item id="37069" min="1" max="1" chance="2.4065667255414" /> <!-- Monster Weapon Appearance Stone: Octavis' Sword -->
<item id="37067" min="1" max="1" chance="2.4046204524112" /> <!-- Monster Weapon Appearance Stone: Theor's Sword -->
<item id="37079" min="1" max="1" chance="2.4026741792809" /> <!-- Monster Weapon Appearance Stone: Mimilead's Staff -->
<item id="37080" min="1" max="1" chance="2.3987816330205" /> <!-- Monster Weapon Appearance Stone: Satyr's Staff -->
<item id="39485" min="1" max="1" chance="0.83738401428564" /> <!-- Alchemic Tome: Dye -->
<item id="39483" min="1" max="1" chance="0.83495117287284" /> <!-- Alchemic Tome: Enchant Scroll -->
<item id="39484" min="1" max="1" chance="0.78434807148661" /> <!-- Alchemic Tome: Life Stone -->
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
<item id="40198" min="1" max="1" chance="0.03" /> <!-- Disassembly Recipe Pouch: Armor -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="100" />
@@ -4489,83 +4419,73 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="100">
<item id="17426" min="1" max="1" chance="8.6643350033084" /> <!-- Amaranthine Retributer -->
<item id="17419" min="1" max="1" chance="8.6416485490122" /> <!-- Amaranthine Avenger -->
<item id="17418" min="1" max="1" chance="8.6378674732962" /> <!-- Amaranthine Slasher -->
<item id="17416" min="1" max="1" chance="8.5981661782777" /> <!-- Amaranthine Shaper -->
<item id="17424" min="1" max="1" chance="8.5943851025617" /> <!-- Amaranthine Buster -->
<item id="17421" min="1" max="1" chance="8.5849324132716" /> <!-- Amaranthine Stormer -->
<item id="17425" min="1" max="1" chance="8.5735891861235" /> <!-- Amaranthine Caster -->
<item id="17420" min="1" max="1" chance="8.5669723036204" /> <!-- Amaranthine Fighter -->
<item id="17422" min="1" max="1" chance="8.5613006900463" /> <!-- Amaranthine Thrower -->
<item id="17417" min="1" max="1" chance="8.5386142357501" /> <!-- Amaranthine Cutter -->
<item id="17423" min="1" max="1" chance="8.535778428963" /> <!-- Amaranthine Shooter -->
<item id="17435" min="1" max="1" chance="5.502410435769" /> <!-- Eternal Shield Heavy Armor -->
</group>
<group chance="35.258">
<item id="17442" min="1" max="1" chance="16.841567871121" /> <!-- Eternal Tunic Robe -->
<item id="17438" min="1" max="1" chance="16.736627148449" /> <!-- Eternal Leather Leggings Light Armor -->
<item id="17443" min="1" max="1" chance="16.708264790969" /> <!-- Eternal Stockings Robe -->
<item id="17432" min="1" max="1" chance="16.660048783255" /> <!-- Eternal Gaiters Heavy Armor -->
<item id="17431" min="1" max="1" chance="16.546599353338" /> <!-- Eternal Breastplate Heavy Armor -->
<item id="17437" min="1" max="1" chance="16.506892052867" /> <!-- Eternal Leather Armor Light Armor -->
</group>
<group chance="58.851">
<item id="17433" min="1" max="1" chance="10.093286435235" /> <!-- Eternal Gauntlets Heavy Armor -->
<item id="17434" min="1" max="1" chance="10.07969278347" /> <!-- Eternal Boots Heavy Armor -->
<item id="17446" min="1" max="1" chance="10.064399925235" /> <!-- Eternal Sigil Robe -->
<item id="17444" min="1" max="1" chance="10.02191976347" /> <!-- Eternal Gloves Robe -->
<item id="17436" min="1" max="1" chance="10.006626905235" /> <!-- Eternal Leather Helmet Light Armor -->
<item id="17430" min="1" max="1" chance="9.9913340470001" /> <!-- Eternal Helmet Heavy Armor -->
<item id="17439" min="1" max="1" chance="9.9777403952354" /> <!-- Eternal Leather Gloves Light Armor -->
<item id="17445" min="1" max="1" chance="9.9624475370002" /> <!-- Eternal Shoes Robe -->
<item id="17440" min="1" max="1" chance="9.90297531053" /> <!-- Eternal Leather Boots Light Armor -->
<item id="17441" min="1" max="1" chance="9.8995768975888" /> <!-- Eternal Circlet Robe -->
</group>
<group chance="10.052">
<item id="17623" min="1" max="1" chance="100" /> <!-- Earth Wyrm Heart Ring -->
</group>
<group chance="100">
<item id="37781" min="1" max="1" chance="7.805172593469" /> <!-- Scroll of Blessing: Armor (R99-grade) -->
<item id="37772" min="1" max="1" chance="7.5047968172428" /> <!-- Scroll of Blessing: Weapon (R99-grade) -->
<item id="18562" min="1" max="1" chance="5.0788026653753" /> <!-- Purple Soul Crystal (R99-grade) -->
<item id="18560" min="1" max="1" chance="4.9623304256141" /> <!-- Yellow Soul Crystal (R99-grade) -->
<item id="18561" min="1" max="1" chance="4.885703952087" /> <!-- Teal Soul Crystal (R99-grade) -->
<item id="36389" min="5" max="5" chance="4.8090774785599" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="35568" min="1" max="1" chance="4.7998823017367" /> <!-- Bloody Amaranthine Enhancement Stone -->
<item id="19448" min="5" max="5" chance="4.684942591446" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36386" min="2" max="2" chance="3.2045191229027" /> <!-- Giant's Scroll: Enchant Weapon (R-grade) -->
<item id="19447" min="2" max="2" chance="3.0221481159083" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="17704" min="1" max="1" chance="2.6681338082131" /> <!-- Lv. 5 Ancient DEX Dye DEX + 5 / Earth Resistance + 25 -->
<item id="17711" min="1" max="1" chance="2.6589386313899" /> <!-- Lv. 5 Legendary CON Dye CON + 5 / STR + 1 / Dark Resistance + 25 -->
<item id="17701" min="1" max="1" chance="2.6558735724488" /> <!-- Lv. 5 Giant WIT Dye Wit + 5 -->
<item id="17709" min="1" max="1" chance="2.6528085135077" /> <!-- Lv. 5 Legendary STR Dye STR + 5 / DEX + 1 / Fire Resistance + 25 -->
<item id="17705" min="1" max="1" chance="2.6190928651558" /> <!-- Lv. 5 Ancient CON Dye CON + 5 / Dark Resistance + 25 -->
<item id="17706" min="1" max="1" chance="2.6129627472736" /> <!-- Lv. 5 Ancient INT Dye INT + 5 / Water Resistance + 25 -->
<item id="17710" min="1" max="1" chance="2.5930398641566" /> <!-- Lv. 5 Legendary DEX Dye DEX + 5 / CON + 1 / Earth Resistance + 25 -->
<item id="17703" min="1" max="1" chance="2.591507334686" /> <!-- Lv. 5 Ancient STR Dye STR + 5 / Fire Resistance + 25 -->
<item id="17713" min="1" max="1" chance="2.5899748052155" /> <!-- Lv. 5 Legendary WIT Dye WIT + 5 / MEN + 1 / Wind Resistance + 25 -->
<item id="17700" min="1" max="1" chance="2.571584451569" /> <!-- Lv. 5 Giant INT Dye INT + 5 -->
<item id="17712" min="1" max="1" chance="2.571584451569" /> <!-- Lv. 5 Legendary INT Dye INT + 5 / WIT + 1 / Water Resistance + 25 -->
<item id="17697" min="1" max="1" chance="2.5302061558644" /> <!-- Lv. 5 Giant STR Dye STR + 5 -->
<item id="17699" min="1" max="1" chance="2.5256085674528" /> <!-- Lv. 5 Giant CON Dye CON + 5 -->
<item id="17698" min="1" max="1" chance="2.5072182138063" /> <!-- Lv. 5 Giant DEX Dye DEX + 5 -->
<item id="17702" min="1" max="1" chance="2.5026206253946" /> <!-- Lv. 5 Giant MEN Dye Men + 5 -->
<item id="17714" min="1" max="1" chance="2.4566447412784" /> <!-- Lv. 5 Legendary MEN Dye MEN + 5 / INT + 1 / Holy Resistance + 25 -->
<item id="17708" min="1" max="1" chance="2.4520471528667" /> <!-- Lv. 5 Ancient MEN Dye MEN + 5 / Holy Resistance + 25 -->
<item id="17707" min="1" max="1" chance="2.4382543876319" /> <!-- Lv. 5 Ancient WIT Dye WIT + 5 / Wind Resistance + 25 -->
<item id="36162" min="1" max="1" chance="1.5222615230891" /> <!-- Scroll of Blessing (R99-grade) -->
<item id="39484" min="1" max="1" chance="0.51355062557853" /> <!-- Alchemic Tome: Life Stone -->
<item id="39483" min="1" max="1" chance="0.50711400180225" /> <!-- Alchemic Tome: Enchant Scroll -->
<item id="39485" min="1" max="1" chance="0.5015968957083" /> <!-- Alchemic Tome: Dye -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="17426" min="1" max="1" chance="8.6643350033084" /> <!-- Amaranthine Retributer -->
<item id="17419" min="1" max="1" chance="8.6416485490122" /> <!-- Amaranthine Avenger -->
<item id="17418" min="1" max="1" chance="8.6378674732962" /> <!-- Amaranthine Slasher -->
<item id="17416" min="1" max="1" chance="8.5981661782777" /> <!-- Amaranthine Shaper -->
<item id="17424" min="1" max="1" chance="8.5943851025617" /> <!-- Amaranthine Buster -->
<item id="17421" min="1" max="1" chance="8.5849324132716" /> <!-- Amaranthine Stormer -->
<item id="17425" min="1" max="1" chance="8.5735891861235" /> <!-- Amaranthine Caster -->
<item id="17420" min="1" max="1" chance="8.5669723036204" /> <!-- Amaranthine Fighter -->
<item id="17422" min="1" max="1" chance="8.5613006900463" /> <!-- Amaranthine Thrower -->
<item id="17417" min="1" max="1" chance="8.5386142357501" /> <!-- Amaranthine Cutter -->
<item id="17423" min="1" max="1" chance="8.535778428963" /> <!-- Amaranthine Shooter -->
<item id="17435" min="1" max="1" chance="5.502410435769" /> <!-- Eternal Shield Heavy Armor -->
<item id="17442" min="1" max="1" chance="5.93799999999984" /> <!-- Eternal Tunic Robe -->
<item id="17438" min="1" max="1" chance="5.90100000000015" /> <!-- Eternal Leather Leggings Light Armor -->
<item id="17443" min="1" max="1" chance="5.89099999999985" /> <!-- Eternal Stockings Robe -->
<item id="17432" min="1" max="1" chance="5.87400000000005" /> <!-- Eternal Gaiters Heavy Armor -->
<item id="17431" min="1" max="1" chance="5.83399999999991" /> <!-- Eternal Breastplate Heavy Armor -->
<item id="17437" min="1" max="1" chance="5.81999999999985" /> <!-- Eternal Leather Armor Light Armor -->
<item id="17433" min="1" max="1" chance="5.94000000000015" /> <!-- Eternal Gauntlets Heavy Armor -->
<item id="17434" min="1" max="1" chance="5.93199999999993" /> <!-- Eternal Boots Heavy Armor -->
<item id="17446" min="1" max="1" chance="5.92300000000005" /> <!-- Eternal Sigil Robe -->
<item id="17444" min="1" max="1" chance="5.89799999999973" /> <!-- Eternal Gloves Robe -->
<item id="17436" min="1" max="1" chance="5.88899999999985" /> <!-- Eternal Leather Helmet Light Armor -->
<item id="17430" min="1" max="1" chance="5.88000000000003" /> <!-- Eternal Helmet Heavy Armor -->
<item id="17439" min="1" max="1" chance="5.87199999999999" /> <!-- Eternal Leather Gloves Light Armor -->
<item id="17445" min="1" max="1" chance="5.86299999999999" /> <!-- Eternal Shoes Robe -->
<item id="17440" min="1" max="1" chance="5.82800000000001" /> <!-- Eternal Leather Boots Light Armor -->
<item id="17441" min="1" max="1" chance="5.82599999999998" /> <!-- Eternal Circlet Robe -->
<item id="17623" min="1" max="1" chance="10.052" /> <!-- Earth Wyrm Heart Ring -->
<item id="37781" min="1" max="1" chance="7.805172593469" /> <!-- Scroll of Blessing: Armor (R99-grade) -->
<item id="37772" min="1" max="1" chance="7.5047968172428" /> <!-- Scroll of Blessing: Weapon (R99-grade) -->
<item id="18562" min="1" max="1" chance="5.0788026653753" /> <!-- Purple Soul Crystal (R99-grade) -->
<item id="18560" min="1" max="1" chance="4.9623304256141" /> <!-- Yellow Soul Crystal (R99-grade) -->
<item id="18561" min="1" max="1" chance="4.885703952087" /> <!-- Teal Soul Crystal (R99-grade) -->
<item id="36389" min="5" max="5" chance="4.8090774785599" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="35568" min="1" max="1" chance="4.7998823017367" /> <!-- Bloody Amaranthine Enhancement Stone -->
<item id="19448" min="5" max="5" chance="4.684942591446" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36386" min="2" max="2" chance="3.2045191229027" /> <!-- Giant's Scroll: Enchant Weapon (R-grade) -->
<item id="19447" min="2" max="2" chance="3.0221481159083" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="17704" min="1" max="1" chance="2.6681338082131" /> <!-- Lv. 5 Ancient DEX Dye DEX + 5 / Earth Resistance + 25 -->
<item id="17711" min="1" max="1" chance="2.6589386313899" /> <!-- Lv. 5 Legendary CON Dye CON + 5 / STR + 1 / Dark Resistance + 25 -->
<item id="17701" min="1" max="1" chance="2.6558735724488" /> <!-- Lv. 5 Giant WIT Dye Wit + 5 -->
<item id="17709" min="1" max="1" chance="2.6528085135077" /> <!-- Lv. 5 Legendary STR Dye STR + 5 / DEX + 1 / Fire Resistance + 25 -->
<item id="17705" min="1" max="1" chance="2.6190928651558" /> <!-- Lv. 5 Ancient CON Dye CON + 5 / Dark Resistance + 25 -->
<item id="17706" min="1" max="1" chance="2.6129627472736" /> <!-- Lv. 5 Ancient INT Dye INT + 5 / Water Resistance + 25 -->
<item id="17710" min="1" max="1" chance="2.5930398641566" /> <!-- Lv. 5 Legendary DEX Dye DEX + 5 / CON + 1 / Earth Resistance + 25 -->
<item id="17703" min="1" max="1" chance="2.591507334686" /> <!-- Lv. 5 Ancient STR Dye STR + 5 / Fire Resistance + 25 -->
<item id="17713" min="1" max="1" chance="2.5899748052155" /> <!-- Lv. 5 Legendary WIT Dye WIT + 5 / MEN + 1 / Wind Resistance + 25 -->
<item id="17700" min="1" max="1" chance="2.571584451569" /> <!-- Lv. 5 Giant INT Dye INT + 5 -->
<item id="17712" min="1" max="1" chance="2.571584451569" /> <!-- Lv. 5 Legendary INT Dye INT + 5 / WIT + 1 / Water Resistance + 25 -->
<item id="17697" min="1" max="1" chance="2.5302061558644" /> <!-- Lv. 5 Giant STR Dye STR + 5 -->
<item id="17699" min="1" max="1" chance="2.5256085674528" /> <!-- Lv. 5 Giant CON Dye CON + 5 -->
<item id="17698" min="1" max="1" chance="2.5072182138063" /> <!-- Lv. 5 Giant DEX Dye DEX + 5 -->
<item id="17702" min="1" max="1" chance="2.5026206253946" /> <!-- Lv. 5 Giant MEN Dye Men + 5 -->
<item id="17714" min="1" max="1" chance="2.4566447412784" /> <!-- Lv. 5 Legendary MEN Dye MEN + 5 / INT + 1 / Holy Resistance + 25 -->
<item id="17708" min="1" max="1" chance="2.4520471528667" /> <!-- Lv. 5 Ancient MEN Dye MEN + 5 / Holy Resistance + 25 -->
<item id="17707" min="1" max="1" chance="2.4382543876319" /> <!-- Lv. 5 Ancient WIT Dye WIT + 5 / Wind Resistance + 25 -->
<item id="36162" min="1" max="1" chance="1.5222615230891" /> <!-- Scroll of Blessing (R99-grade) -->
<item id="39484" min="1" max="1" chance="0.51355062557853" /> <!-- Alchemic Tome: Life Stone -->
<item id="39483" min="1" max="1" chance="0.50711400180225" /> <!-- Alchemic Tome: Enchant Scroll -->
<item id="39485" min="1" max="1" chance="0.5015968957083" /> <!-- Alchemic Tome: Dye -->
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
<item id="40198" min="1" max="1" chance="2.551" /> <!-- Disassembly Recipe Pouch: Armor -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="500" />
+355 -399
View File
@@ -561,7 +561,7 @@
<height normal="81" />
</collision>
<drop_lists>
<death>
<drop>
<item id="19462" min="1" max="1" chance="12.75" /> <!-- Octavis' Shirt -->
<item id="19458" min="1" max="1" chance="2.059" /> <!-- Octavis' Earring -->
<item id="19459" min="1" max="1" chance="2.029" /> <!-- Octavis' Necklace -->
@@ -651,11 +651,11 @@
<item id="38053" min="1" max="1" chance="0.075" /> <!-- Amaranthine Retributer Crafting Pack -->
<item id="38051" min="1" max="1" chance="0.075" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38049" min="1" max="1" chance="0.075" /> <!-- Amaranthine Thrower Crafting Pack -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="99" /> <!-- Fortune Bag - Stage 1 -->
<item id="40198" min="1" max="1" chance="0.03" /> <!-- Disassembly Recipe Pouch: Armor -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
</npc>
<npc id="29213" level="98" type="L2RaidBoss" name="Baylor" title="Warden">
@@ -720,73 +720,67 @@
</clan_list>
</ai>
<drop_lists>
<death>
<group chance="3.6">
<item id="38056" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Gaiters Crafting Pack Heavy Armor -->
<item id="38055" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Breastplate Crafting Pack Heavy Armor -->
<item id="38067" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Stockings Crafting Pack Robe -->
<item id="38066" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Tunic Crafting Pack Robe -->
<item id="38062" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Leather Leggings Crafting Pack Light Armor -->
<item id="38061" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Leather Armor Crafting Pack Light Armor -->
<item id="35346" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Leather Legging Ingredient -->
<item id="35345" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Leather Armor Ingredient -->
<item id="35340" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Gaiter Ingredient -->
<item id="35339" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Breastplate Ingredient -->
<item id="35350" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Tunic Ingredient -->
<item id="35351" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Stocking Ingredient -->
</group>
<group chance="4.8">
<item id="38054" min="1" max="1" chance="6.25" /> <!-- Eternal Helmet Crafting Pack Heavy Armor -->
<item id="38058" min="1" max="1" chance="6.25" /> <!-- Eternal Boots Crafting Pack Heavy Armor -->
<item id="38059" min="1" max="1" chance="6.25" /> <!-- Eternal Shield Crafting Pack Heavy Armor -->
<item id="38057" min="1" max="1" chance="6.25" /> <!-- Eternal Gauntlets Crafting Pack Heavy Armor -->
<item id="38070" min="1" max="1" chance="6.25" /> <!-- Eternal Sigil Crafting Pack Robe -->
<item id="38069" min="1" max="1" chance="6.25" /> <!-- Eternal Shoes Crafting Pack Robe -->
<item id="38068" min="1" max="1" chance="6.25" /> <!-- Eternal Gloves Crafting Pack Robe -->
<item id="38065" min="1" max="1" chance="6.25" /> <!-- Eternal Circlet Crafting Pack Robe -->
<item id="38064" min="1" max="1" chance="6.25" /> <!-- Eternal Leather Boots Crafting Pack Light Armor -->
<item id="38063" min="1" max="1" chance="6.25" /> <!-- Eternal Leather Gloves Crafting Pack Light Armor -->
<item id="38060" min="1" max="1" chance="6.25" /> <!-- Eternal Leather Helmet Crafting Pack Light Armor -->
<item id="35349" min="1" max="1" chance="6.25" /> <!-- Eternal Circlet Ingredient -->
<item id="35344" min="1" max="1" chance="6.25" /> <!-- Eternal Leather Helmet Ingredient -->
<item id="35343" min="1" max="1" chance="6.25" /> <!-- Eternal Shield Ingredient -->
<item id="35354" min="1" max="1" chance="6.25" /> <!-- Eternal Sigil Ingredient -->
<item id="35338" min="1" max="1" chance="6.25" /> <!-- Eternal Helmet Ingredient -->
</group>
<group chance="100">
<item id="36586" min="1" max="1" chance="60.131214161486" /> <!-- Scroll: Modify Armor (R-grade) -->
<item id="45431" min="1" max="1" chance="16.642846073046" /> <!-- Entrance Pass: Baylor -->
<item id="36574" min="1" max="1" chance="8.5866065124929" /> <!-- Scroll: Modify Weapon (R-grade) -->
<item id="17527" min="1" max="1" chance="6.9205999345651" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="17526" min="1" max="1" chance="1.7779346684346" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="35478" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Sigil (60%) -->
<item id="35477" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Shoes (60%) -->
<item id="35476" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Gloves (60%) -->
<item id="35475" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Stockings (60%) -->
<item id="35474" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Tunic (60%) -->
<item id="35473" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Circlet (60%) -->
<item id="35472" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Leather Boots (60%) -->
<item id="35471" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Leather Gloves (60%) -->
<item id="35348" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Leather Boot Ingredient -->
<item id="35347" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Leather Glove Ingredient -->
<item id="35342" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Boot Ingredient -->
<item id="35341" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Gauntlet Ingredient -->
<item id="35352" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Glove Ingredient -->
<item id="35470" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Leather Leggings (60%) -->
<item id="35469" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Leather Armor (60%) -->
<item id="35468" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Leather Helmet (60%) -->
<item id="35467" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Shield (60%) -->
<item id="35466" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Boots (60%) -->
<item id="35465" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Gauntlets (60%) -->
<item id="35464" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Gaiters (60%) -->
<item id="35463" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Breastplate (60%) -->
<item id="35462" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Helmet (60%) -->
<item id="35353" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Shoe Ingredient -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="38056" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Gaiters Crafting Pack Heavy Armor -->
<item id="38055" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Breastplate Crafting Pack Heavy Armor -->
<item id="38067" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Stockings Crafting Pack Robe -->
<item id="38066" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Tunic Crafting Pack Robe -->
<item id="38062" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Leather Leggings Crafting Pack Light Armor -->
<item id="38061" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Leather Armor Crafting Pack Light Armor -->
<item id="35346" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Leather Legging Ingredient -->
<item id="35345" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Leather Armor Ingredient -->
<item id="35340" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Gaiter Ingredient -->
<item id="35339" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Breastplate Ingredient -->
<item id="35350" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Tunic Ingredient -->
<item id="35351" min="1" max="1" chance="0.299999999999999" /> <!-- Eternal Stocking Ingredient -->
<item id="38054" min="1" max="1" chance="0.3" /> <!-- Eternal Helmet Crafting Pack Heavy Armor -->
<item id="38058" min="1" max="1" chance="0.3" /> <!-- Eternal Boots Crafting Pack Heavy Armor -->
<item id="38059" min="1" max="1" chance="0.3" /> <!-- Eternal Shield Crafting Pack Heavy Armor -->
<item id="38057" min="1" max="1" chance="0.3" /> <!-- Eternal Gauntlets Crafting Pack Heavy Armor -->
<item id="38070" min="1" max="1" chance="0.3" /> <!-- Eternal Sigil Crafting Pack Robe -->
<item id="38069" min="1" max="1" chance="0.3" /> <!-- Eternal Shoes Crafting Pack Robe -->
<item id="38068" min="1" max="1" chance="0.3" /> <!-- Eternal Gloves Crafting Pack Robe -->
<item id="38065" min="1" max="1" chance="0.3" /> <!-- Eternal Circlet Crafting Pack Robe -->
<item id="38064" min="1" max="1" chance="0.3" /> <!-- Eternal Leather Boots Crafting Pack Light Armor -->
<item id="38063" min="1" max="1" chance="0.3" /> <!-- Eternal Leather Gloves Crafting Pack Light Armor -->
<item id="38060" min="1" max="1" chance="0.3" /> <!-- Eternal Leather Helmet Crafting Pack Light Armor -->
<item id="35349" min="1" max="1" chance="0.3" /> <!-- Eternal Circlet Ingredient -->
<item id="35344" min="1" max="1" chance="0.3" /> <!-- Eternal Leather Helmet Ingredient -->
<item id="35343" min="1" max="1" chance="0.3" /> <!-- Eternal Shield Ingredient -->
<item id="35354" min="1" max="1" chance="0.3" /> <!-- Eternal Sigil Ingredient -->
<item id="35338" min="1" max="1" chance="0.3" /> <!-- Eternal Helmet Ingredient -->
<item id="36586" min="1" max="1" chance="60.131214161486" /> <!-- Scroll: Modify Armor (R-grade) -->
<item id="45431" min="1" max="1" chance="16.642846073046" /> <!-- Entrance Pass: Baylor -->
<item id="36574" min="1" max="1" chance="8.5866065124929" /> <!-- Scroll: Modify Weapon (R-grade) -->
<item id="17527" min="1" max="1" chance="6.9205999345651" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="17526" min="1" max="1" chance="1.7779346684346" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="35478" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Sigil (60%) -->
<item id="35477" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Shoes (60%) -->
<item id="35476" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Gloves (60%) -->
<item id="35475" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Stockings (60%) -->
<item id="35474" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Tunic (60%) -->
<item id="35473" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Circlet (60%) -->
<item id="35472" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Leather Boots (60%) -->
<item id="35471" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Leather Gloves (60%) -->
<item id="35348" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Leather Boot Ingredient -->
<item id="35347" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Leather Glove Ingredient -->
<item id="35342" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Boot Ingredient -->
<item id="35341" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Gauntlet Ingredient -->
<item id="35352" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Glove Ingredient -->
<item id="35470" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Leather Leggings (60%) -->
<item id="35469" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Leather Armor (60%) -->
<item id="35468" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Leather Helmet (60%) -->
<item id="35467" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Shield (60%) -->
<item id="35466" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Boots (60%) -->
<item id="35465" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Gauntlets (60%) -->
<item id="35464" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Gaiters (60%) -->
<item id="35463" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Breastplate (60%) -->
<item id="35462" min="1" max="1" chance="0.25829559347718" /> <!-- Recipe: Eternal Helmet (60%) -->
<item id="35353" min="1" max="1" chance="0.25829559347718" /> <!-- Eternal Shoe Ingredient -->
</drop>
<lucky_drop>
<item id="39629" min="2" max="2" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="54" />
@@ -982,79 +976,71 @@
</skill_list>
<ai aggroRange="300" isAggressive="true" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="0.825">
<item id="38052" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Caster Crafting Pack -->
<item id="38043" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Shaper Crafting Pack -->
<item id="38044" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Cutter Crafting Pack -->
<item id="38046" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Avenger Crafting Pack -->
<item id="38047" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Fighter Crafting Pack -->
<item id="38045" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Slasher Crafting Pack -->
<item id="38053" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Retributer Crafting Pack -->
<item id="38049" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Thrower Crafting Pack -->
<item id="38050" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Shooter Crafting Pack -->
<item id="38051" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38048" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Stormer Crafting Pack -->
</group>
<group chance="6.3">
<item id="17397" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Breastplate Heavy Armor -->
<item id="17398" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Gaiters Heavy Armor -->
<item id="17403" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Leather Armor Light Armor -->
<item id="17404" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Leather Leggings Light Armor -->
<item id="17408" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Tunic Robe -->
<item id="17409" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Stockings Robe -->
<item id="38062" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Leather Leggings Crafting Pack Light Armor -->
<item id="38061" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Leather Armor Crafting Pack Light Armor -->
<item id="38066" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Tunic Crafting Pack Robe -->
<item id="38067" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Stockings Crafting Pack Robe -->
<item id="38056" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Gaiters Crafting Pack Heavy Armor -->
<item id="38055" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Breastplate Crafting Pack Heavy Armor -->
</group>
<group chance="8.25">
<item id="38060" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Leather Helmet Crafting Pack Light Armor -->
<item id="38059" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Shield Crafting Pack Heavy Armor -->
<item id="38058" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Boots Crafting Pack Heavy Armor -->
<item id="38063" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Leather Gloves Crafting Pack Light Armor -->
<item id="38064" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Leather Boots Crafting Pack Light Armor -->
<item id="38068" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Gloves Crafting Pack Robe -->
<item id="38069" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Shoes Crafting Pack Robe -->
<item id="38070" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Sigil Crafting Pack Robe -->
<item id="38057" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Gauntlets Crafting Pack Heavy Armor -->
<item id="38065" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Circlet Crafting Pack Robe -->
<item id="38054" min="1" max="1" chance="9.0909090909091" /> <!-- Eternal Helmet Crafting Pack Heavy Armor -->
</group>
<group chance="100">
<item id="39738" min="1" max="1" chance="25.08094876213" /> <!-- Rune Stone -->
<item id="30299" min="1" max="1" chance="19.821473806711" /> <!-- Superior Giant's Codex - Discipline -->
<item id="19447" min="1" max="1" chance="12.633273891485" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="19448" min="1" max="1" chance="12.36490773973" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="30300" min="1" max="1" chance="4.8205583520813" /> <!-- Superior Giant's Codex - Oblivion -->
<item id="37067" min="1" max="1" chance="1.2683435789009" /> <!-- Monster Weapon Appearance Stone: Theor's Sword -->
<item id="37073" min="1" max="1" chance="1.2680927694133" /> <!-- Monster Weapon Appearance Stone: Glakias' Hammer -->
<item id="37072" min="1" max="1" chance="1.267591150438" /> <!-- Monster Weapon Appearance Stone: Tebot's Axe -->
<item id="37071" min="1" max="1" chance="1.2668387219752" /> <!-- Monster Weapon Appearance Stone: Seknus' One-handed Magic Sword -->
<item id="37080" min="1" max="1" chance="1.2665879124876" /> <!-- Monster Weapon Appearance Stone: Satyr's Staff -->
<item id="37079" min="1" max="1" chance="1.2640798176113" /> <!-- Monster Weapon Appearance Stone: Mimilead's Staff -->
<item id="37077" min="1" max="1" chance="1.2605684847846" /> <!-- Monster Weapon Appearance Stone: Guillotine's Greatsword -->
<item id="37081" min="1" max="1" chance="1.260317675297" /> <!-- Monster Weapon Appearance Stone: Kanadis' Hand -->
<item id="37085" min="1" max="1" chance="1.2590636278589" /> <!-- Monster Weapon Appearance Stone: Theor's Shield -->
<item id="37083" min="1" max="1" chance="1.2563047234951" /> <!-- Monster Weapon Appearance Stone: Centaur's Bow -->
<item id="37069" min="1" max="1" chance="1.2563047234951" /> <!-- Monster Weapon Appearance Stone: Octavis' Sword -->
<item id="37068" min="1" max="1" chance="1.2555522950322" /> <!-- Monster Weapon Appearance Stone: Sword of Corruption -->
<item id="37075" min="1" max="1" chance="1.2500344863045" /> <!-- Monster Weapon Appearance Stone: Drakos' Dagger -->
<item id="37084" min="1" max="1" chance="1.2475263914283" /> <!-- Monster Weapon Appearance Stone: Spicula's Crossbow -->
<item id="37076" min="1" max="1" chance="1.2445166775769" /> <!-- Monster Weapon Appearance Stone: Drakos' Dual Dagger -->
<item id="37070" min="1" max="1" chance="1.2440150586016" /> <!-- Monster Weapon Appearance Stone: Tegaffe's Dualsword -->
<item id="37078" min="1" max="1" chance="1.2420085827007" /> <!-- Monster Weapon Appearance Stone: Thesakar's Spear -->
<item id="37086" min="1" max="1" chance="1.2397512973121" /> <!-- Monster Weapon Appearance Stone: Shield of Corruption -->
<item id="37082" min="1" max="1" chance="1.2367415834606" /> <!-- Monster Weapon Appearance Stone: Kanadis' Bow -->
<item id="37074" min="1" max="1" chance="1.236490773973" /> <!-- Monster Weapon Appearance Stone: Tebot's Dual Blunt Weapon -->
<item id="30298" min="1" max="1" chance="0.18810711571597" /> <!-- Superior Giant's Codex - Mastery -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="38052" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Caster Crafting Pack -->
<item id="38043" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Shaper Crafting Pack -->
<item id="38044" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Cutter Crafting Pack -->
<item id="38046" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Avenger Crafting Pack -->
<item id="38047" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Fighter Crafting Pack -->
<item id="38045" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Slasher Crafting Pack -->
<item id="38053" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Retributer Crafting Pack -->
<item id="38049" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Thrower Crafting Pack -->
<item id="38050" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Shooter Crafting Pack -->
<item id="38051" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38048" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Stormer Crafting Pack -->
<item id="17397" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Breastplate Heavy Armor -->
<item id="17398" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Gaiters Heavy Armor -->
<item id="17403" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Leather Armor Light Armor -->
<item id="17404" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Leather Leggings Light Armor -->
<item id="17408" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Tunic Robe -->
<item id="17409" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Stockings Robe -->
<item id="38062" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Leather Leggings Crafting Pack Light Armor -->
<item id="38061" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Leather Armor Crafting Pack Light Armor -->
<item id="38066" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Tunic Crafting Pack Robe -->
<item id="38067" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Stockings Crafting Pack Robe -->
<item id="38056" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Gaiters Crafting Pack Heavy Armor -->
<item id="38055" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Breastplate Crafting Pack Heavy Armor -->
<item id="38060" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Leather Helmet Crafting Pack Light Armor -->
<item id="38059" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Shield Crafting Pack Heavy Armor -->
<item id="38058" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Boots Crafting Pack Heavy Armor -->
<item id="38063" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Leather Gloves Crafting Pack Light Armor -->
<item id="38064" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Leather Boots Crafting Pack Light Armor -->
<item id="38068" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Gloves Crafting Pack Robe -->
<item id="38069" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Shoes Crafting Pack Robe -->
<item id="38070" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Sigil Crafting Pack Robe -->
<item id="38057" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Gauntlets Crafting Pack Heavy Armor -->
<item id="38065" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Circlet Crafting Pack Robe -->
<item id="38054" min="1" max="1" chance="0.750000000000001" /> <!-- Eternal Helmet Crafting Pack Heavy Armor -->
<item id="39738" min="1" max="1" chance="25.08094876213" /> <!-- Rune Stone -->
<item id="30299" min="1" max="1" chance="19.821473806711" /> <!-- Superior Giant's Codex - Discipline -->
<item id="19447" min="1" max="1" chance="12.633273891485" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="19448" min="1" max="1" chance="12.36490773973" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="30300" min="1" max="1" chance="4.8205583520813" /> <!-- Superior Giant's Codex - Oblivion -->
<item id="37067" min="1" max="1" chance="1.2683435789009" /> <!-- Monster Weapon Appearance Stone: Theor's Sword -->
<item id="37073" min="1" max="1" chance="1.2680927694133" /> <!-- Monster Weapon Appearance Stone: Glakias' Hammer -->
<item id="37072" min="1" max="1" chance="1.267591150438" /> <!-- Monster Weapon Appearance Stone: Tebot's Axe -->
<item id="37071" min="1" max="1" chance="1.2668387219752" /> <!-- Monster Weapon Appearance Stone: Seknus' One-handed Magic Sword -->
<item id="37080" min="1" max="1" chance="1.2665879124876" /> <!-- Monster Weapon Appearance Stone: Satyr's Staff -->
<item id="37079" min="1" max="1" chance="1.2640798176113" /> <!-- Monster Weapon Appearance Stone: Mimilead's Staff -->
<item id="37077" min="1" max="1" chance="1.2605684847846" /> <!-- Monster Weapon Appearance Stone: Guillotine's Greatsword -->
<item id="37081" min="1" max="1" chance="1.260317675297" /> <!-- Monster Weapon Appearance Stone: Kanadis' Hand -->
<item id="37085" min="1" max="1" chance="1.2590636278589" /> <!-- Monster Weapon Appearance Stone: Theor's Shield -->
<item id="37083" min="1" max="1" chance="1.2563047234951" /> <!-- Monster Weapon Appearance Stone: Centaur's Bow -->
<item id="37069" min="1" max="1" chance="1.2563047234951" /> <!-- Monster Weapon Appearance Stone: Octavis' Sword -->
<item id="37068" min="1" max="1" chance="1.2555522950322" /> <!-- Monster Weapon Appearance Stone: Sword of Corruption -->
<item id="37075" min="1" max="1" chance="1.2500344863045" /> <!-- Monster Weapon Appearance Stone: Drakos' Dagger -->
<item id="37084" min="1" max="1" chance="1.2475263914283" /> <!-- Monster Weapon Appearance Stone: Spicula's Crossbow -->
<item id="37076" min="1" max="1" chance="1.2445166775769" /> <!-- Monster Weapon Appearance Stone: Drakos' Dual Dagger -->
<item id="37070" min="1" max="1" chance="1.2440150586016" /> <!-- Monster Weapon Appearance Stone: Tegaffe's Dualsword -->
<item id="37078" min="1" max="1" chance="1.2420085827007" /> <!-- Monster Weapon Appearance Stone: Thesakar's Spear -->
<item id="37086" min="1" max="1" chance="1.2397512973121" /> <!-- Monster Weapon Appearance Stone: Shield of Corruption -->
<item id="37082" min="1" max="1" chance="1.2367415834606" /> <!-- Monster Weapon Appearance Stone: Kanadis' Bow -->
<item id="37074" min="1" max="1" chance="1.236490773973" /> <!-- Monster Weapon Appearance Stone: Tebot's Dual Blunt Weapon -->
<item id="30298" min="1" max="1" chance="0.18810711571597" /> <!-- Superior Giant's Codex - Mastery -->
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="150" />
@@ -1096,13 +1082,11 @@
</skill_list>
<ai aggroRange="800" isAggressive="true" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="6">
<item id="8603" min="1" max="1" chance="40" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="52" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="8" /> <!-- Superior Herb of Mana -->
</group>
</death>
<drop>
<item id="8603" min="1" max="1" chance="2.4" /> <!-- Herb of Mana -->
<item id="8604" min="1" max="1" chance="3.12" /> <!-- Major Herb of Mana -->
<item id="8605" min="1" max="1" chance="0.48" /> <!-- Superior Herb of Mana -->
</drop>
</drop_lists>
<collision>
<radius normal="15" />
@@ -1846,82 +1830,72 @@
</skill_list>
<ai aggroRange="300" isAggressive="true" clanHelpRange="300" />
<drop_lists>
<death>
<group chance="0.825">
<item id="38044" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Cutter Crafting Pack -->
<item id="38045" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Slasher Crafting Pack -->
<item id="38046" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Avenger Crafting Pack -->
<item id="38048" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Stormer Crafting Pack -->
<item id="38047" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Fighter Crafting Pack -->
<item id="38049" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Thrower Crafting Pack -->
<item id="38050" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Shooter Crafting Pack -->
<item id="38051" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38052" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Caster Crafting Pack -->
<item id="38053" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Retributer Crafting Pack -->
<item id="38043" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Shaper Crafting Pack -->
</group>
<group chance="14.504">
<item id="17408" min="1" max="1" chance="11.920849420849" /> <!-- Seraph Tunic Robe -->
<item id="17403" min="1" max="1" chance="11.913954771098" /> <!-- Seraph Leather Armor Light Armor -->
<item id="17404" min="1" max="1" chance="11.548538334253" /> <!-- Seraph Leather Leggings Light Armor -->
<item id="17398" min="1" max="1" chance="11.376172090458" /> <!-- Seraph Gaiters Heavy Armor -->
<item id="17397" min="1" max="1" chance="11.11417539989" /> <!-- Seraph Breastplate Heavy Armor -->
<item id="17409" min="1" max="1" chance="11.100386100386" /> <!-- Seraph Stockings Robe -->
<item id="38062" min="1" max="1" chance="5.1709873138445" /> <!-- Eternal Leather Leggings Crafting Pack Light Armor -->
<item id="38066" min="1" max="1" chance="5.1709873138445" /> <!-- Eternal Tunic Crafting Pack Robe -->
<item id="38061" min="1" max="1" chance="5.1709873138445" /> <!-- Eternal Leather Armor Crafting Pack Light Armor -->
<item id="38056" min="1" max="1" chance="5.1709873138445" /> <!-- Eternal Gaiters Crafting Pack Heavy Armor -->
<item id="38055" min="1" max="1" chance="5.1709873138445" /> <!-- Eternal Breastplate Crafting Pack Heavy Armor -->
<item id="38067" min="1" max="1" chance="5.1709873138445" /> <!-- Eternal Stockings Crafting Pack Robe -->
</group>
<group chance="13.212">
<item id="35667" min="1" max="1" chance="37.55676657584" /> <!-- Tauti's Fragment -->
<item id="38059" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Shield Crafting Pack Heavy Armor -->
<item id="38060" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Leather Helmet Crafting Pack Light Armor -->
<item id="38063" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Leather Gloves Crafting Pack Light Armor -->
<item id="38064" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Leather Boots Crafting Pack Light Armor -->
<item id="38065" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Circlet Crafting Pack Robe -->
<item id="38068" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Gloves Crafting Pack Robe -->
<item id="38069" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Shoes Crafting Pack Robe -->
<item id="38070" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Sigil Crafting Pack Robe -->
<item id="38058" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Boots Crafting Pack Heavy Armor -->
<item id="38057" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Gauntlets Crafting Pack Heavy Armor -->
<item id="38054" min="1" max="1" chance="5.6766575840145" /> <!-- Eternal Helmet Crafting Pack Heavy Armor -->
</group>
<group chance="0.75">
<item id="35570" min="1" max="1" chance="100" /> <!-- Tauti's Ring -->
</group>
<group chance="100">
<item id="19448" min="1" max="1" chance="24.799444803036" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="19447" min="1" max="1" chance="24.285014049783" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="37073" min="1" max="1" chance="2.4585907509233" /> <!-- Monster Weapon Appearance Stone: Glakias' Hammer -->
<item id="37079" min="1" max="1" chance="2.4571348148292" /> <!-- Monster Weapon Appearance Stone: Mimilead's Staff -->
<item id="37083" min="1" max="1" chance="2.4551935667037" /> <!-- Monster Weapon Appearance Stone: Centaur's Bow -->
<item id="37072" min="1" max="1" chance="2.4522816945155" /> <!-- Monster Weapon Appearance Stone: Tebot's Axe -->
<item id="37081" min="1" max="1" chance="2.4445167020136" /> <!-- Monster Weapon Appearance Stone: Kanadis' Hand -->
<item id="37069" min="1" max="1" chance="2.4391782696685" /> <!-- Monster Weapon Appearance Stone: Octavis' Sword -->
<item id="37082" min="1" max="1" chance="2.4367517095116" /> <!-- Monster Weapon Appearance Stone: Kanadis' Bow -->
<item id="37080" min="1" max="1" chance="2.4343251493548" /> <!-- Monster Weapon Appearance Stone: Satyr's Staff -->
<item id="37076" min="1" max="1" chance="2.4318985891979" /> <!-- Monster Weapon Appearance Stone: Drakos' Dual Dagger -->
<item id="37077" min="1" max="1" chance="2.4270454688842" /> <!-- Monster Weapon Appearance Stone: Guillotine's Greatsword -->
<item id="37074" min="1" max="1" chance="2.4217070365391" /> <!-- Monster Weapon Appearance Stone: Tebot's Dual Blunt Weapon -->
<item id="37071" min="1" max="1" chance="2.4192804763823" /> <!-- Monster Weapon Appearance Stone: Seknus' One-handed Magic Sword -->
<item id="37067" min="1" max="1" chance="2.4153979801313" /> <!-- Monster Weapon Appearance Stone: Theor's Sword -->
<item id="37070" min="1" max="1" chance="2.4129714199745" /> <!-- Monster Weapon Appearance Stone: Tegaffe's Dualsword -->
<item id="37075" min="1" max="1" chance="2.4095742357549" /> <!-- Monster Weapon Appearance Stone: Drakos' Dagger -->
<item id="37084" min="1" max="1" chance="2.4090889237235" /> <!-- Monster Weapon Appearance Stone: Spicula's Crossbow -->
<item id="37085" min="1" max="1" chance="2.4032651793471" /> <!-- Monster Weapon Appearance Stone: Theor's Shield -->
<item id="37068" min="1" max="1" chance="2.4022945552843" /> <!-- Monster Weapon Appearance Stone: Sword of Corruption -->
<item id="37078" min="1" max="1" chance="2.397926747002" /> <!-- Monster Weapon Appearance Stone: Thesakar's Spear -->
<item id="37086" min="1" max="1" chance="2.3925883146569" /> <!-- Monster Weapon Appearance Stone: Shield of Corruption -->
<item id="39483" min="1" max="1" chance="0.81920670895352" /> <!-- Alchemic Tome: Enchant Scroll -->
<item id="39485" min="1" max="1" chance="0.79105861113403" /> <!-- Alchemic Tome: Dye -->
<item id="39484" min="1" max="1" chance="0.78426424269484" /> <!-- Alchemic Tome: Life Stone -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="38044" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Cutter Crafting Pack -->
<item id="38045" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Slasher Crafting Pack -->
<item id="38046" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Avenger Crafting Pack -->
<item id="38048" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Stormer Crafting Pack -->
<item id="38047" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Fighter Crafting Pack -->
<item id="38049" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Thrower Crafting Pack -->
<item id="38050" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Shooter Crafting Pack -->
<item id="38051" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38052" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Caster Crafting Pack -->
<item id="38053" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Retributer Crafting Pack -->
<item id="38043" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Shaper Crafting Pack -->
<item id="17408" min="1" max="1" chance="1.72899999999994" /> <!-- Seraph Tunic Robe -->
<item id="17403" min="1" max="1" chance="1.72800000000005" /> <!-- Seraph Leather Armor Light Armor -->
<item id="17404" min="1" max="1" chance="1.67500000000005" /> <!-- Seraph Leather Leggings Light Armor -->
<item id="17398" min="1" max="1" chance="1.65000000000003" /> <!-- Seraph Gaiters Heavy Armor -->
<item id="17397" min="1" max="1" chance="1.61200000000005" /> <!-- Seraph Breastplate Heavy Armor -->
<item id="17409" min="1" max="1" chance="1.60999999999999" /> <!-- Seraph Stockings Robe -->
<item id="38062" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Leather Leggings Crafting Pack Light Armor -->
<item id="38066" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Tunic Crafting Pack Robe -->
<item id="38061" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Leather Armor Crafting Pack Light Armor -->
<item id="38056" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Gaiters Crafting Pack Heavy Armor -->
<item id="38055" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Breastplate Crafting Pack Heavy Armor -->
<item id="38067" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Stockings Crafting Pack Robe -->
<item id="35667" min="1" max="1" chance="4.96199999999998" /> <!-- Tauti's Fragment -->
<item id="38059" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Shield Crafting Pack Heavy Armor -->
<item id="38060" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Leather Helmet Crafting Pack Light Armor -->
<item id="38063" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Leather Gloves Crafting Pack Light Armor -->
<item id="38064" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Leather Boots Crafting Pack Light Armor -->
<item id="38065" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Circlet Crafting Pack Robe -->
<item id="38068" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Gloves Crafting Pack Robe -->
<item id="38069" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Shoes Crafting Pack Robe -->
<item id="38070" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Sigil Crafting Pack Robe -->
<item id="38058" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Boots Crafting Pack Heavy Armor -->
<item id="38057" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Gauntlets Crafting Pack Heavy Armor -->
<item id="38054" min="1" max="1" chance="0.749999999999996" /> <!-- Eternal Helmet Crafting Pack Heavy Armor -->
<item id="35570" min="1" max="1" chance="0.75" /> <!-- Tauti's Ring -->
<item id="19448" min="1" max="1" chance="24.799444803036" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="19447" min="1" max="1" chance="24.285014049783" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="37073" min="1" max="1" chance="2.4585907509233" /> <!-- Monster Weapon Appearance Stone: Glakias' Hammer -->
<item id="37079" min="1" max="1" chance="2.4571348148292" /> <!-- Monster Weapon Appearance Stone: Mimilead's Staff -->
<item id="37083" min="1" max="1" chance="2.4551935667037" /> <!-- Monster Weapon Appearance Stone: Centaur's Bow -->
<item id="37072" min="1" max="1" chance="2.4522816945155" /> <!-- Monster Weapon Appearance Stone: Tebot's Axe -->
<item id="37081" min="1" max="1" chance="2.4445167020136" /> <!-- Monster Weapon Appearance Stone: Kanadis' Hand -->
<item id="37069" min="1" max="1" chance="2.4391782696685" /> <!-- Monster Weapon Appearance Stone: Octavis' Sword -->
<item id="37082" min="1" max="1" chance="2.4367517095116" /> <!-- Monster Weapon Appearance Stone: Kanadis' Bow -->
<item id="37080" min="1" max="1" chance="2.4343251493548" /> <!-- Monster Weapon Appearance Stone: Satyr's Staff -->
<item id="37076" min="1" max="1" chance="2.4318985891979" /> <!-- Monster Weapon Appearance Stone: Drakos' Dual Dagger -->
<item id="37077" min="1" max="1" chance="2.4270454688842" /> <!-- Monster Weapon Appearance Stone: Guillotine's Greatsword -->
<item id="37074" min="1" max="1" chance="2.4217070365391" /> <!-- Monster Weapon Appearance Stone: Tebot's Dual Blunt Weapon -->
<item id="37071" min="1" max="1" chance="2.4192804763823" /> <!-- Monster Weapon Appearance Stone: Seknus' One-handed Magic Sword -->
<item id="37067" min="1" max="1" chance="2.4153979801313" /> <!-- Monster Weapon Appearance Stone: Theor's Sword -->
<item id="37070" min="1" max="1" chance="2.4129714199745" /> <!-- Monster Weapon Appearance Stone: Tegaffe's Dualsword -->
<item id="37075" min="1" max="1" chance="2.4095742357549" /> <!-- Monster Weapon Appearance Stone: Drakos' Dagger -->
<item id="37084" min="1" max="1" chance="2.4090889237235" /> <!-- Monster Weapon Appearance Stone: Spicula's Crossbow -->
<item id="37085" min="1" max="1" chance="2.4032651793471" /> <!-- Monster Weapon Appearance Stone: Theor's Shield -->
<item id="37068" min="1" max="1" chance="2.4022945552843" /> <!-- Monster Weapon Appearance Stone: Sword of Corruption -->
<item id="37078" min="1" max="1" chance="2.397926747002" /> <!-- Monster Weapon Appearance Stone: Thesakar's Spear -->
<item id="37086" min="1" max="1" chance="2.3925883146569" /> <!-- Monster Weapon Appearance Stone: Shield of Corruption -->
<item id="39483" min="1" max="1" chance="0.81920670895352" /> <!-- Alchemic Tome: Enchant Scroll -->
<item id="39485" min="1" max="1" chance="0.79105861113403" /> <!-- Alchemic Tome: Dye -->
<item id="39484" min="1" max="1" chance="0.78426424269484" /> <!-- Alchemic Tome: Life Stone -->
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="24" />
@@ -2083,113 +2057,103 @@
</skill_list>
<ai aggroRange="2000" isAggressive="true" />
<drop_lists>
<death>
<group chance="100">
<item id="17435" min="1" max="3" chance="14.491582377011" /> <!-- Eternal Shield - Heavy Armor -->
<item id="17423" min="1" max="3" chance="7.7770499612934" /> <!-- Amaranthine Shooter -->
<item id="17422" min="1" max="3" chance="7.7761992667013" /> <!-- Amaranthine Thrower -->
<item id="17425" min="1" max="3" chance="7.7761992667013" /> <!-- Amaranthine Caster -->
<item id="17419" min="1" max="3" chance="7.7676923207799" /> <!-- Amaranthine Avenger -->
<item id="17426" min="1" max="3" chance="7.7413207884237" /> <!-- Amaranthine Retributer -->
<item id="17421" min="1" max="3" chance="7.7277096749496" /> <!-- Amaranthine Stormer -->
<item id="17416" min="1" max="3" chance="7.7149492560676" /> <!-- Amaranthine Shaper -->
<item id="17420" min="1" max="3" chance="7.7021888371856" /> <!-- Amaranthine Fighter -->
<item id="17424" min="1" max="3" chance="7.698786058817" /> <!-- Amaranthine Buster -->
<item id="17418" min="1" max="3" chance="7.6936818912642" /> <!-- Amaranthine Slasher -->
<item id="17417" min="1" max="3" chance="7.686025639935" /> <!-- Amaranthine Cutter -->
<item id="36434" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Shaper - Fragment -->
<item id="36436" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Slasher - Fragment -->
<item id="36437" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Caster - Fragment -->
<item id="36438" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Cutter - Fragment -->
<item id="36439" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Shooter - Fragment -->
<item id="36440" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Dual Dagger - Fragment -->
<item id="36435" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Thrower - Fragment -->
</group>
<group chance="100">
<item id="17438" min="1" max="3" chance="19.488372093023" /> <!-- Eternal Leather Leggings - Light Armor -->
<item id="17437" min="1" max="3" chance="18.706976744186" /> <!-- Eternal Leather Armor - Light Armor -->
<item id="17431" min="1" max="3" chance="16" /> <!-- Eternal Breastplate - Heavy Armor -->
<item id="17442" min="1" max="3" chance="15.944186046512" /> <!-- Eternal Tunic - Robe -->
<item id="17432" min="1" max="3" chance="14.939534883721" /> <!-- Eternal Gaiters - Heavy Armor -->
<item id="17443" min="1" max="3" chance="14.920930232558" /> <!-- Eternal Stockings - Robe -->
</group>
<group chance="100">
<item id="17436" min="1" max="3" chance="11.580551322898" /> <!-- Eternal Leather Helmet - Light Armor -->
<item id="17440" min="1" max="3" chance="11.414323313478" /> <!-- Eternal Leather Boots - Light Armor -->
<item id="17439" min="1" max="3" chance="10.738329408505" /> <!-- Eternal Leather Gloves - Light Armor -->
<item id="17441" min="1" max="3" chance="9.6910929491619" /> <!-- Eternal Circlet - Robe -->
<item id="17445" min="1" max="3" chance="9.6855520155146" /> <!-- Eternal Shoes - Robe -->
<item id="17434" min="1" max="3" chance="9.6301426790414" /> <!-- Eternal Boots - Heavy Armor -->
<item id="17430" min="1" max="3" chance="9.5913561435102" /> <!-- Eternal Helmet - Heavy Armor -->
<item id="17446" min="1" max="3" chance="9.4611442027982" /> <!-- Eternal Sigil - Robe -->
<item id="17433" min="1" max="3" chance="9.3032275938496" /> <!-- Eternal Gauntlets - Heavy Armor -->
<item id="17444" min="1" max="3" chance="8.9042803712426" /> <!-- Eternal Gloves - Robe -->
</group>
<group chance="20.07">
<item id="36946" min="1" max="1" chance="100" /> <!-- Lindvior's Earring -->
</group>
<group chance="100">
<item id="36414" min="1" max="1" chance="9.2128877243799" /> <!-- Dragon Claw -->
<item id="37781" min="1" max="1" chance="4.7169985148825" /> <!-- Scroll of Blessing: Armor (R99-grade) -->
<item id="35568" min="1" max="1" chance="4.6156567499143" /> <!-- Bloody Amaranthine Enhancement Stone -->
<item id="37772" min="1" max="1" chance="4.4940466319525" /> <!-- Scroll of Blessing: Weapon (R99-grade) -->
<item id="36389" min="10" max="10" chance="2.8403332854263" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="19448" min="10" max="10" chance="2.7979540018942" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="46492" min="1" max="2" chance="2.1373899520561" /> <!-- Pantheon's Soul Crystal - Stage 4 -->
<item id="46493" min="1" max="1" chance="2.1162003102901" /> <!-- Pantheon's Soul Crystal - Stage 5 -->
<item id="46477" min="1" max="2" chance="2.1088300001106" /> <!-- Leona's Soul Crystal - Stage 4 -->
<item id="46478" min="1" max="1" chance="2.086719069572" /> <!-- Leona's Soul Crystal - Stage 5 -->
<item id="46508" min="1" max="1" chance="2.036048187088" /> <!-- Lionel's Soul Crystal - Stage 5 -->
<item id="46507" min="1" max="2" chance="2.0222288555014" /> <!-- Lionel's Soul Crystal - Stage 4 -->
<item id="36162" min="1" max="1" chance="1.9079890477191" /> <!-- Scroll of Blessing: (R99-grade) -->
<item id="46479" min="1" max="1" chance="1.819545325565" /> <!-- Leona's Soul Crystal - Stage 6 -->
<item id="46509" min="1" max="1" chance="1.8075685715233" /> <!-- Lionel's Soul Crystal - Stage 6 -->
<item id="36386" min="10" max="10" chance="1.8149388817028" /> <!-- Giant's Scroll: Enchant Weapon (R-grade) -->
<item id="46494" min="1" max="1" chance="1.8066472827509" /> <!-- Pantheon's Soul Crystal - Stage 6 -->
<item id="19447" min="10" max="10" chance="1.8029621276611" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="17708" min="1" max="1" chance="1.6122553517665" /> <!-- Lv. 5 Ancient MEN Dye - MEN + 5 / Holy Resistance + 25 -->
<item id="39484" min="1" max="1" chance="1.6021211752697" /> <!-- Alchemic Tome: Life Stone -->
<item id="17714" min="1" max="1" chance="1.5892231324555" /> <!-- Lv. 5 Legendary MEN Dye - MEN + 5 / INT + 1 / Holy Resistance + 25 -->
<item id="17703" min="1" max="1" chance="1.5643483355997" /> <!-- Lv. 5 Ancient STR Dye - STR + 5 / Fire Resistance + 25 -->
<item id="17709" min="1" max="1" chance="1.5615844692824" /> <!-- Lv. 5 Legendary STR Dye - STR + 5 / DEX + 1 / Fire Resistance + 25 -->
<item id="17706" min="1" max="1" chance="1.5542141591029" /> <!-- Lv. 5 Ancient INT Dye - INT + 5 / Water Resistance + 25 -->
<item id="17702" min="1" max="1" chance="1.5477651376958" /> <!-- Lv. 5 Giant MEN Dye - Men + 5 -->
<item id="39485" min="1" max="1" chance="1.5413161162888" /> <!-- Alchemic Tome: Dye -->
<item id="39483" min="1" max="1" chance="1.5367096724266" /> <!-- Alchemic Tome: Enchant Scroll -->
<item id="17711" min="1" max="1" chance="1.5367096724266" /> <!-- Lv. 5 Legendary CON Dye - CON + 5 / STR + 1 / Dark Resistance + 25 -->
<item id="17697" min="1" max="1" chance="1.5357883836541" /> <!-- Lv. 5 Giant STR Dye - STR + 5 -->
<item id="17712" min="1" max="1" chance="1.5357883836541" /> <!-- Lv. 5 Legendary INT Dye - INT + 5 / WIT + 1 / Water Resistance + 25 -->
<item id="17713" min="1" max="1" chance="1.5265754959297" /> <!-- Lv. 5 Legendary WIT Dye - WIT + 5 / MEN + 1 / Wind Resistance + 25 -->
<item id="17705" min="1" max="1" chance="1.5072284317085" /> <!-- Lv. 5 Ancient CON Dye - CON + 5 / Dark Resistance + 25 -->
<item id="46463" min="1" max="1" chance="1.4952516776669" /> <!-- Mermoden's Soul Crystal - Stage 5 -->
<item id="17707" min="1" max="1" chance="1.5026219878464" /> <!-- Lv. 5 Ancient WIT Dye - WIT + 5 / Wind Resistance + 25 -->
<item id="17699" min="1" max="1" chance="1.4980155439842" /> <!-- Lv. 5 Giant CON Dye - CON + 5 -->
<item id="17704" min="1" max="1" chance="1.4924878113495" /> <!-- Lv. 5 Ancient DEX Dye - DEX + 5 / Earth Resistance + 25 -->
<item id="17701" min="1" max="1" chance="1.4860387899425" /> <!-- Lv. 5 Giant WIT Dye - Wit + 5 -->
<item id="17698" min="1" max="1" chance="1.4759046134457" /> <!-- Lv. 5 Giant DEX Dye - DEX + 5 -->
<item id="46462" min="1" max="2" chance="1.4593214155418" /> <!-- Mermoden's Soul Crystal - Stage 4 -->
<item id="17700" min="1" max="1" chance="1.4685343032662" /> <!-- Lv. 5 Giant INT Dye - INT + 5 -->
<item id="17710" min="1" max="1" chance="1.4620852818591" /> <!-- Lv. 5 Legendary DEX Dye - DEX + 5 / CON + 1 / Earth Resistance + 25 -->
<item id="46448" min="1" max="1" chance="1.4215485758718" /> <!-- Kain's Soul Crystal - Stage 5 -->
<item id="46447" min="1" max="2" chance="1.3874608912916" /> <!-- Kain's Soul Crystal - Stage 4 -->
<item id="46449" min="1" max="1" chance="1.1728006073136" /> <!-- Kain's Soul Crystal - Stage 6 -->
<item id="46464" min="1" max="1" chance="1.1645090083616" /> <!-- Mermoden's Soul Crystal - Stage 6 -->
<item id="46495" min="1" max="1" chance="1.0677736872556" /> <!-- Pantheon's Soul Crystal - Stage 7 -->
<item id="46510" min="1" max="1" chance="1.032764713903" /> <!-- Lionel's Soul Crystal - Stage 7 -->
<item id="46480" min="1" max="1" chance="1.0189453823164" /> <!-- Leona's Soul Crystal - Stage 7 -->
<item id="46450" min="1" max="1" chance="0.71989504678304" /> <!-- Kain's Soul Crystal - Stage 7 -->
<item id="46465" min="1" max="1" chance="0.71630202057054" /> <!-- Mermoden's Soul Crystal - Stage 7 -->
<item id="46511" min="1" max="1" chance="0.71187983446283" /> <!-- Lionel's Soul Crystal - Stage 8 -->
<item id="46481" min="1" max="1" chance="0.70708913284616" /> <!-- Leona's Soul Crystal - Stage 8 -->
<item id="46496" min="1" max="1" chance="0.70220630235223" /> <!-- Pantheon's Soul Crystal - Stage 8 -->
<item id="46451" min="1" max="1" chance="0.47041004720684" /> <!-- Kain's Soul Crystal - Stage 8 -->
<item id="46466" min="1" max="1" chance="0.46958088731164" /> <!-- Mermoden's Soul Crystal - Stage 8 -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="17435" min="1" max="3" chance="14.491582377011" /> <!-- Eternal Shield - Heavy Armor -->
<item id="17423" min="1" max="3" chance="7.7770499612934" /> <!-- Amaranthine Shooter -->
<item id="17422" min="1" max="3" chance="7.7761992667013" /> <!-- Amaranthine Thrower -->
<item id="17425" min="1" max="3" chance="7.7761992667013" /> <!-- Amaranthine Caster -->
<item id="17419" min="1" max="3" chance="7.7676923207799" /> <!-- Amaranthine Avenger -->
<item id="17426" min="1" max="3" chance="7.7413207884237" /> <!-- Amaranthine Retributer -->
<item id="17421" min="1" max="3" chance="7.7277096749496" /> <!-- Amaranthine Stormer -->
<item id="17416" min="1" max="3" chance="7.7149492560676" /> <!-- Amaranthine Shaper -->
<item id="17420" min="1" max="3" chance="7.7021888371856" /> <!-- Amaranthine Fighter -->
<item id="17424" min="1" max="3" chance="7.698786058817" /> <!-- Amaranthine Buster -->
<item id="17418" min="1" max="3" chance="7.6936818912642" /> <!-- Amaranthine Slasher -->
<item id="17417" min="1" max="3" chance="7.686025639935" /> <!-- Amaranthine Cutter -->
<item id="36434" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Shaper - Fragment -->
<item id="36436" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Slasher - Fragment -->
<item id="36437" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Caster - Fragment -->
<item id="36438" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Cutter - Fragment -->
<item id="36439" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Shooter - Fragment -->
<item id="36440" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Dual Dagger - Fragment -->
<item id="36435" min="1" max="1" chance="0.063802094410086" /> <!-- Lindvior Thrower - Fragment -->
<item id="17438" min="1" max="3" chance="19.488372093023" /> <!-- Eternal Leather Leggings - Light Armor -->
<item id="17437" min="1" max="3" chance="18.706976744186" /> <!-- Eternal Leather Armor - Light Armor -->
<item id="17431" min="1" max="3" chance="16" /> <!-- Eternal Breastplate - Heavy Armor -->
<item id="17442" min="1" max="3" chance="15.944186046512" /> <!-- Eternal Tunic - Robe -->
<item id="17432" min="1" max="3" chance="14.939534883721" /> <!-- Eternal Gaiters - Heavy Armor -->
<item id="17443" min="1" max="3" chance="14.920930232558" /> <!-- Eternal Stockings - Robe -->
<item id="17436" min="1" max="3" chance="11.580551322898" /> <!-- Eternal Leather Helmet - Light Armor -->
<item id="17440" min="1" max="3" chance="11.414323313478" /> <!-- Eternal Leather Boots - Light Armor -->
<item id="17439" min="1" max="3" chance="10.738329408505" /> <!-- Eternal Leather Gloves - Light Armor -->
<item id="17441" min="1" max="3" chance="9.6910929491619" /> <!-- Eternal Circlet - Robe -->
<item id="17445" min="1" max="3" chance="9.6855520155146" /> <!-- Eternal Shoes - Robe -->
<item id="17434" min="1" max="3" chance="9.6301426790414" /> <!-- Eternal Boots - Heavy Armor -->
<item id="17430" min="1" max="3" chance="9.5913561435102" /> <!-- Eternal Helmet - Heavy Armor -->
<item id="17446" min="1" max="3" chance="9.4611442027982" /> <!-- Eternal Sigil - Robe -->
<item id="17433" min="1" max="3" chance="9.3032275938496" /> <!-- Eternal Gauntlets - Heavy Armor -->
<item id="17444" min="1" max="3" chance="8.9042803712426" /> <!-- Eternal Gloves - Robe -->
<item id="36946" min="1" max="1" chance="20.07" /> <!-- Lindvior's Earring -->
<item id="36414" min="1" max="1" chance="9.2128877243799" /> <!-- Dragon Claw -->
<item id="37781" min="1" max="1" chance="4.7169985148825" /> <!-- Scroll of Blessing: Armor (R99-grade) -->
<item id="35568" min="1" max="1" chance="4.6156567499143" /> <!-- Bloody Amaranthine Enhancement Stone -->
<item id="37772" min="1" max="1" chance="4.4940466319525" /> <!-- Scroll of Blessing: Weapon (R99-grade) -->
<item id="36389" min="10" max="10" chance="2.8403332854263" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="19448" min="10" max="10" chance="2.7979540018942" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="46492" min="1" max="2" chance="2.1373899520561" /> <!-- Pantheon's Soul Crystal - Stage 4 -->
<item id="46493" min="1" max="1" chance="2.1162003102901" /> <!-- Pantheon's Soul Crystal - Stage 5 -->
<item id="46477" min="1" max="2" chance="2.1088300001106" /> <!-- Leona's Soul Crystal - Stage 4 -->
<item id="46478" min="1" max="1" chance="2.086719069572" /> <!-- Leona's Soul Crystal - Stage 5 -->
<item id="46508" min="1" max="1" chance="2.036048187088" /> <!-- Lionel's Soul Crystal - Stage 5 -->
<item id="46507" min="1" max="2" chance="2.0222288555014" /> <!-- Lionel's Soul Crystal - Stage 4 -->
<item id="36162" min="1" max="1" chance="1.9079890477191" /> <!-- Scroll of Blessing: (R99-grade) -->
<item id="46479" min="1" max="1" chance="1.819545325565" /> <!-- Leona's Soul Crystal - Stage 6 -->
<item id="46509" min="1" max="1" chance="1.8075685715233" /> <!-- Lionel's Soul Crystal - Stage 6 -->
<item id="36386" min="10" max="10" chance="1.8149388817028" /> <!-- Giant's Scroll: Enchant Weapon (R-grade) -->
<item id="46494" min="1" max="1" chance="1.8066472827509" /> <!-- Pantheon's Soul Crystal - Stage 6 -->
<item id="19447" min="10" max="10" chance="1.8029621276611" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="17708" min="1" max="1" chance="1.6122553517665" /> <!-- Lv. 5 Ancient MEN Dye - MEN + 5 / Holy Resistance + 25 -->
<item id="39484" min="1" max="1" chance="1.6021211752697" /> <!-- Alchemic Tome: Life Stone -->
<item id="17714" min="1" max="1" chance="1.5892231324555" /> <!-- Lv. 5 Legendary MEN Dye - MEN + 5 / INT + 1 / Holy Resistance + 25 -->
<item id="17703" min="1" max="1" chance="1.5643483355997" /> <!-- Lv. 5 Ancient STR Dye - STR + 5 / Fire Resistance + 25 -->
<item id="17709" min="1" max="1" chance="1.5615844692824" /> <!-- Lv. 5 Legendary STR Dye - STR + 5 / DEX + 1 / Fire Resistance + 25 -->
<item id="17706" min="1" max="1" chance="1.5542141591029" /> <!-- Lv. 5 Ancient INT Dye - INT + 5 / Water Resistance + 25 -->
<item id="17702" min="1" max="1" chance="1.5477651376958" /> <!-- Lv. 5 Giant MEN Dye - Men + 5 -->
<item id="39485" min="1" max="1" chance="1.5413161162888" /> <!-- Alchemic Tome: Dye -->
<item id="39483" min="1" max="1" chance="1.5367096724266" /> <!-- Alchemic Tome: Enchant Scroll -->
<item id="17711" min="1" max="1" chance="1.5367096724266" /> <!-- Lv. 5 Legendary CON Dye - CON + 5 / STR + 1 / Dark Resistance + 25 -->
<item id="17697" min="1" max="1" chance="1.5357883836541" /> <!-- Lv. 5 Giant STR Dye - STR + 5 -->
<item id="17712" min="1" max="1" chance="1.5357883836541" /> <!-- Lv. 5 Legendary INT Dye - INT + 5 / WIT + 1 / Water Resistance + 25 -->
<item id="17713" min="1" max="1" chance="1.5265754959297" /> <!-- Lv. 5 Legendary WIT Dye - WIT + 5 / MEN + 1 / Wind Resistance + 25 -->
<item id="17705" min="1" max="1" chance="1.5072284317085" /> <!-- Lv. 5 Ancient CON Dye - CON + 5 / Dark Resistance + 25 -->
<item id="46463" min="1" max="1" chance="1.4952516776669" /> <!-- Mermoden's Soul Crystal - Stage 5 -->
<item id="17707" min="1" max="1" chance="1.5026219878464" /> <!-- Lv. 5 Ancient WIT Dye - WIT + 5 / Wind Resistance + 25 -->
<item id="17699" min="1" max="1" chance="1.4980155439842" /> <!-- Lv. 5 Giant CON Dye - CON + 5 -->
<item id="17704" min="1" max="1" chance="1.4924878113495" /> <!-- Lv. 5 Ancient DEX Dye - DEX + 5 / Earth Resistance + 25 -->
<item id="17701" min="1" max="1" chance="1.4860387899425" /> <!-- Lv. 5 Giant WIT Dye - Wit + 5 -->
<item id="17698" min="1" max="1" chance="1.4759046134457" /> <!-- Lv. 5 Giant DEX Dye - DEX + 5 -->
<item id="46462" min="1" max="2" chance="1.4593214155418" /> <!-- Mermoden's Soul Crystal - Stage 4 -->
<item id="17700" min="1" max="1" chance="1.4685343032662" /> <!-- Lv. 5 Giant INT Dye - INT + 5 -->
<item id="17710" min="1" max="1" chance="1.4620852818591" /> <!-- Lv. 5 Legendary DEX Dye - DEX + 5 / CON + 1 / Earth Resistance + 25 -->
<item id="46448" min="1" max="1" chance="1.4215485758718" /> <!-- Kain's Soul Crystal - Stage 5 -->
<item id="46447" min="1" max="2" chance="1.3874608912916" /> <!-- Kain's Soul Crystal - Stage 4 -->
<item id="46449" min="1" max="1" chance="1.1728006073136" /> <!-- Kain's Soul Crystal - Stage 6 -->
<item id="46464" min="1" max="1" chance="1.1645090083616" /> <!-- Mermoden's Soul Crystal - Stage 6 -->
<item id="46495" min="1" max="1" chance="1.0677736872556" /> <!-- Pantheon's Soul Crystal - Stage 7 -->
<item id="46510" min="1" max="1" chance="1.032764713903" /> <!-- Lionel's Soul Crystal - Stage 7 -->
<item id="46480" min="1" max="1" chance="1.0189453823164" /> <!-- Leona's Soul Crystal - Stage 7 -->
<item id="46450" min="1" max="1" chance="0.71989504678304" /> <!-- Kain's Soul Crystal - Stage 7 -->
<item id="46465" min="1" max="1" chance="0.71630202057054" /> <!-- Mermoden's Soul Crystal - Stage 7 -->
<item id="46511" min="1" max="1" chance="0.71187983446283" /> <!-- Lionel's Soul Crystal - Stage 8 -->
<item id="46481" min="1" max="1" chance="0.70708913284616" /> <!-- Leona's Soul Crystal - Stage 8 -->
<item id="46496" min="1" max="1" chance="0.70220630235223" /> <!-- Pantheon's Soul Crystal - Stage 8 -->
<item id="46451" min="1" max="1" chance="0.47041004720684" /> <!-- Kain's Soul Crystal - Stage 8 -->
<item id="46466" min="1" max="1" chance="0.46958088731164" /> <!-- Mermoden's Soul Crystal - Stage 8 -->
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
<item id="40199" min="1" max="1" chance="4.964" /> <!-- Disassembly Recipe Pouch: Weapon -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="350" />
@@ -2528,77 +2492,69 @@
<skill id="4045" level="1" /> <!-- Full Magic Attack Resistance -->
</skill_list>
<drop_lists>
<death>
<group chance="0.825">
<item id="38044" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Cutter Crafting Pack -->
<item id="38045" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Slasher Crafting Pack -->
<item id="38047" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Fighter Crafting Pack -->
<item id="38048" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Stormer Crafting Pack -->
<item id="38046" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Avenger Crafting Pack -->
<item id="38049" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Thrower Crafting Pack -->
<item id="38050" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Shooter Crafting Pack -->
<item id="38051" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38052" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Caster Crafting Pack -->
<item id="38053" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Retributer Crafting Pack -->
<item id="38043" min="1" max="1" chance="9.0909090909091" /> <!-- Amaranthine Shaper Crafting Pack -->
</group>
<group chance="6.3">
<item id="17397" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Breastplate -->
<item id="17398" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Gaiters -->
<item id="17403" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Leather Armor -->
<item id="17404" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Leather Leggings -->
<item id="17408" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Tunic -->
<item id="17409" min="1" max="1" chance="4.7619047619048" /> <!-- Seraph Stockings -->
<item id="38061" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Leather Armor Crafting Pack -->
<item id="38062" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Leather Leggings Crafting Pack -->
<item id="38066" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Tunic Crafting Pack -->
<item id="38067" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Stockings Crafting Pack -->
<item id="38056" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Gaiters Crafting Pack -->
<item id="38055" min="1" max="1" chance="11.904761904762" /> <!-- Eternal Breastplate Crafting Pack -->
</group>
<group chance="9">
<item id="38592" min="1" max="1" chance="8.3333333333333" /> <!-- Ekimus' Belt -->
<item id="38058" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Boots Crafting Pack -->
<item id="38060" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Leather Helmet Crafting Pack -->
<item id="38063" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Leather Gloves Crafting Pack -->
<item id="38064" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Leather Boots Crafting Pack -->
<item id="38068" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Gloves Crafting Pack -->
<item id="38069" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Shoes Crafting Pack -->
<item id="38070" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Sigil Crafting Pack -->
<item id="38059" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Shield Crafting Pack -->
<item id="38057" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Gauntlets Crafting Pack -->
<item id="38054" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Helmet Crafting Pack -->
<item id="38065" min="1" max="1" chance="8.3333333333333" /> <!-- Eternal Circlet Crafting Pack -->
</group>
<group chance="100">
<item id="39738" min="1" max="1" chance="33.466194124006" /> <!-- Rune Stone -->
<item id="19447" min="1" max="1" chance="16.746483539652" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="19448" min="1" max="1" chance="16.318116254865" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="37084" min="1" max="1" chance="1.6964013801458" /> <!-- Monster Weapon Appearance Stone: Spicula's Crossbow -->
<item id="37073" min="1" max="1" chance="1.6933894226747" /> <!-- Monster Weapon Appearance Stone: Glakias' Hammer -->
<item id="37081" min="1" max="1" chance="1.692385436851" /> <!-- Monster Weapon Appearance Stone: Kanadis' Hand -->
<item id="37071" min="1" max="1" chance="1.6917161129685" /> <!-- Monster Weapon Appearance Stone: Seknus' One-handed Magic Sword -->
<item id="37085" min="1" max="1" chance="1.6913814510272" /> <!-- Monster Weapon Appearance Stone: Theor's Shield -->
<item id="37070" min="1" max="1" chance="1.68401888832" /> <!-- Monster Weapon Appearance Stone: Tegaffe's Dualsword -->
<item id="37069" min="1" max="1" chance="1.6793336211426" /> <!-- Monster Weapon Appearance Stone: Octavis' Sword -->
<item id="37076" min="1" max="1" chance="1.6773256494952" /> <!-- Monster Weapon Appearance Stone: Drakos' Dual Dagger -->
<item id="37072" min="1" max="1" chance="1.6749830159065" /> <!-- Monster Weapon Appearance Stone: Tebot's Axe -->
<item id="37083" min="1" max="1" chance="1.6739790300828" /> <!-- Monster Weapon Appearance Stone: Centaur's Bow -->
<item id="37074" min="1" max="1" chance="1.6726403823178" /> <!-- Monster Weapon Appearance Stone: Tebot's Dual Blunt Weapon -->
<item id="37068" min="1" max="1" chance="1.6716363964941" /> <!-- Monster Weapon Appearance Stone: Sword of Corruption -->
<item id="37075" min="1" max="1" chance="1.6689591009642" /> <!-- Monster Weapon Appearance Stone: Drakos' Dagger -->
<item id="37067" min="1" max="1" chance="1.664608495728" /> <!-- Monster Weapon Appearance Stone: Theor's Sword -->
<item id="37079" min="1" max="1" chance="1.6605925524332" /> <!-- Monster Weapon Appearance Stone: Mimilead's Staff -->
<item id="37078" min="1" max="1" chance="1.656241947197" /> <!-- Monster Weapon Appearance Stone: Thesakar's Spear -->
<item id="37086" min="1" max="1" chance="1.6559072852558" /> <!-- Monster Weapon Appearance Stone: Shield of Corruption -->
<item id="37080" min="1" max="1" chance="1.6559072852558" /> <!-- Monster Weapon Appearance Stone: Satyr's Staff -->
<item id="37077" min="1" max="1" chance="1.6542339755496" /> <!-- Monster Weapon Appearance Stone: Guillotine's Greatsword -->
<item id="37082" min="1" max="1" chance="1.6535646516671" /> <!-- Monster Weapon Appearance Stone: Kanadis' Bow -->
</group>
</death>
<lucky_corpse>
<drop>
<item id="38044" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Cutter Crafting Pack -->
<item id="38045" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Slasher Crafting Pack -->
<item id="38047" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Fighter Crafting Pack -->
<item id="38048" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Stormer Crafting Pack -->
<item id="38046" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Avenger Crafting Pack -->
<item id="38049" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Thrower Crafting Pack -->
<item id="38050" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Shooter Crafting Pack -->
<item id="38051" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Buster Crafting Pack -->
<item id="38052" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Caster Crafting Pack -->
<item id="38053" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Retributer Crafting Pack -->
<item id="38043" min="1" max="1" chance="0.0750000000000001" /> <!-- Amaranthine Shaper Crafting Pack -->
<item id="17397" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Breastplate -->
<item id="17398" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Gaiters -->
<item id="17403" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Leather Armor -->
<item id="17404" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Leather Leggings -->
<item id="17408" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Tunic -->
<item id="17409" min="1" max="1" chance="0.300000000000002" /> <!-- Seraph Stockings -->
<item id="38061" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Leather Armor Crafting Pack -->
<item id="38062" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Leather Leggings Crafting Pack -->
<item id="38066" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Tunic Crafting Pack -->
<item id="38067" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Stockings Crafting Pack -->
<item id="38056" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Gaiters Crafting Pack -->
<item id="38055" min="1" max="1" chance="0.750000000000006" /> <!-- Eternal Breastplate Crafting Pack -->
<item id="38592" min="1" max="1" chance="0.749999999999997" /> <!-- Ekimus' Belt -->
<item id="38058" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Boots Crafting Pack -->
<item id="38060" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Leather Helmet Crafting Pack -->
<item id="38063" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Leather Gloves Crafting Pack -->
<item id="38064" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Leather Boots Crafting Pack -->
<item id="38068" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Gloves Crafting Pack -->
<item id="38069" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Shoes Crafting Pack -->
<item id="38070" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Sigil Crafting Pack -->
<item id="38059" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Shield Crafting Pack -->
<item id="38057" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Gauntlets Crafting Pack -->
<item id="38054" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Helmet Crafting Pack -->
<item id="38065" min="1" max="1" chance="0.749999999999997" /> <!-- Eternal Circlet Crafting Pack -->
<item id="39738" min="1" max="1" chance="33.466194124006" /> <!-- Rune Stone -->
<item id="19447" min="1" max="1" chance="16.746483539652" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="19448" min="1" max="1" chance="16.318116254865" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="37084" min="1" max="1" chance="1.6964013801458" /> <!-- Monster Weapon Appearance Stone: Spicula's Crossbow -->
<item id="37073" min="1" max="1" chance="1.6933894226747" /> <!-- Monster Weapon Appearance Stone: Glakias' Hammer -->
<item id="37081" min="1" max="1" chance="1.692385436851" /> <!-- Monster Weapon Appearance Stone: Kanadis' Hand -->
<item id="37071" min="1" max="1" chance="1.6917161129685" /> <!-- Monster Weapon Appearance Stone: Seknus' One-handed Magic Sword -->
<item id="37085" min="1" max="1" chance="1.6913814510272" /> <!-- Monster Weapon Appearance Stone: Theor's Shield -->
<item id="37070" min="1" max="1" chance="1.68401888832" /> <!-- Monster Weapon Appearance Stone: Tegaffe's Dualsword -->
<item id="37069" min="1" max="1" chance="1.6793336211426" /> <!-- Monster Weapon Appearance Stone: Octavis' Sword -->
<item id="37076" min="1" max="1" chance="1.6773256494952" /> <!-- Monster Weapon Appearance Stone: Drakos' Dual Dagger -->
<item id="37072" min="1" max="1" chance="1.6749830159065" /> <!-- Monster Weapon Appearance Stone: Tebot's Axe -->
<item id="37083" min="1" max="1" chance="1.6739790300828" /> <!-- Monster Weapon Appearance Stone: Centaur's Bow -->
<item id="37074" min="1" max="1" chance="1.6726403823178" /> <!-- Monster Weapon Appearance Stone: Tebot's Dual Blunt Weapon -->
<item id="37068" min="1" max="1" chance="1.6716363964941" /> <!-- Monster Weapon Appearance Stone: Sword of Corruption -->
<item id="37075" min="1" max="1" chance="1.6689591009642" /> <!-- Monster Weapon Appearance Stone: Drakos' Dagger -->
<item id="37067" min="1" max="1" chance="1.664608495728" /> <!-- Monster Weapon Appearance Stone: Theor's Sword -->
<item id="37079" min="1" max="1" chance="1.6605925524332" /> <!-- Monster Weapon Appearance Stone: Mimilead's Staff -->
<item id="37078" min="1" max="1" chance="1.656241947197" /> <!-- Monster Weapon Appearance Stone: Thesakar's Spear -->
<item id="37086" min="1" max="1" chance="1.6559072852558" /> <!-- Monster Weapon Appearance Stone: Shield of Corruption -->
<item id="37080" min="1" max="1" chance="1.6559072852558" /> <!-- Monster Weapon Appearance Stone: Satyr's Staff -->
<item id="37077" min="1" max="1" chance="1.6542339755496" /> <!-- Monster Weapon Appearance Stone: Guillotine's Greatsword -->
<item id="37082" min="1" max="1" chance="1.6535646516671" /> <!-- Monster Weapon Appearance Stone: Kanadis' Bow -->
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
<collision>
<radius normal="25" />
@@ -85,7 +85,7 @@
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<drop>
<item id="47245" min="1" max="1" chance="100" /> <!-- Helios's Majestic Earrings -->
<item id="47214" min="1" max="1" chance="42.00" /> <!-- Ring of the Beginning -->
<item id="17440" min="1" max="3" chance="20.68" /> <!-- Eternal Leather Boots -->
@@ -171,11 +171,11 @@
<item id="46466" min="1" max="1" chance="5.155" /> <!-- Mermoden's Soul Crystal - Stage 8 -->
<item id="46451" min="1" max="1" chance="5.116" /> <!-- Kain's Soul Crystal - Stage 8 -->
<!-- FIXME: Also drops herbs. -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
<item id="40199" min="1" max="1" chance="100" /> <!-- Disassembly Recipe Pouch: Weapon --> <!-- Lucky Drop -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
</npc>
<npc id="29304" level="105" type="L2Monster" name="Helios" title="Emperor of the Beginning">
@@ -198,7 +198,7 @@
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<drop>
<item id="47245" min="1" max="1" chance="100" /> <!-- Helios's Majestic Earrings -->
<item id="47214" min="1" max="1" chance="42.00" /> <!-- Ring of the Beginning -->
<item id="17440" min="1" max="3" chance="20.68" /> <!-- Eternal Leather Boots -->
@@ -284,11 +284,11 @@
<item id="46466" min="1" max="1" chance="5.155" /> <!-- Mermoden's Soul Crystal - Stage 8 -->
<item id="46451" min="1" max="1" chance="5.116" /> <!-- Kain's Soul Crystal - Stage 8 -->
<!-- FIXME: Also drops herbs. -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
<item id="40199" min="1" max="1" chance="100" /> <!-- Disassembly Recipe Pouch: Weapon --> <!-- Lucky Drop -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
</npc>
<npc id="29305" level="105" type="L2Monster" name="Helios" title="Emperor of the Beginning">
@@ -311,7 +311,7 @@
<height normal="13.25" /> <!-- Need retail value -->
</collision>
<drop_lists>
<death>
<drop>
<item id="47245" min="1" max="1" chance="100" /> <!-- Helios's Majestic Earrings -->
<item id="47214" min="1" max="1" chance="42.00" /> <!-- Ring of the Beginning -->
<item id="17440" min="1" max="3" chance="20.68" /> <!-- Eternal Leather Boots -->
@@ -397,11 +397,11 @@
<item id="46466" min="1" max="1" chance="5.155" /> <!-- Mermoden's Soul Crystal - Stage 8 -->
<item id="46451" min="1" max="1" chance="5.116" /> <!-- Kain's Soul Crystal - Stage 8 -->
<!-- FIXME: Also drops herbs. -->
</death>
<lucky_corpse>
</drop>
<lucky_drop>
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Bag - Stage 1 --> <!-- Lucky Drop -->
<item id="40199" min="1" max="1" chance="100" /> <!-- Disassembly Recipe Pouch: Weapon --> <!-- Lucky Drop -->
</lucky_corpse>
</lucky_drop>
</drop_lists>
</npc>
<npc id="29306" level="99" type="L2Monster" name="">
@@ -1,107 +1,107 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../xsd/npcs.xsd">
<npc id="500" displayId="34209" name="Faction Manager" usingServerSideName="true" title=" " usingServerSideTitle="true" type="L2Npc">
<race>ELF</race>
<sex>FEMALE</sex>
<stats>
<vitals hp="2444.46819" hpRegen="7.5" mp="1345.8" mpRegen="2.7" />
<attack physical="688.86373" magical="470.40463" random="30" critical="4" accuracy="95" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="295.91597" magical="216.53847" />
<speed>
<walk ground="50" />
<run ground="120" />
</speed>
</stats>
<status attackable="false" />
<collision>
<radius normal="8" />
<height normal="23" />
</collision>
</npc>
<npc id="501" displayId="31033" level="105" type="L2Guard" name="Sentinel" usingServerSideName="true">
<parameters>
<param name="NoFnHi" value="1" />
<param name="MoveAroundSocial" value="0" />
<param name="MoveAroundSocial1" value="79" />
</parameters>
<race>ELF</race>
<sex>MALE</sex>
<equipment rhand="276" /> <!-- rhand: Elven Bow -->
<stats>
<vitals hp="3290.11306877694" hpRegen="8.5" mp="1674.8" mpRegen="3" />
<attack physical="970.537548504614" magical="662.751329129412" random="10" critical="8" accuracy="100" attackSpeed="253" reuseDelay="1500" type="BOW" range="1100" distance="10" width="0" />
<defence physical="341.375" magical="249.80341" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
<speed>
<walk ground="50" />
<run ground="160" />
</speed>
</stats>
<status attackable="false" undying="false" />
<skill_list>
<skill id="4045" level="1" /> <!-- Resist Full Magic Attack -->
<skill id="4410" level="16" /> <!-- Very Strong P. Atk. -->
<skill id="4411" level="16" /> <!-- Very Strong M. Atk. -->
<skill id="4412" level="16" /> <!-- Very Strong P. Def. -->
<skill id="4413" level="16" /> <!-- Very Strong M. Def. -->
<skill id="4414" level="2" /> <!-- Standard Type -->
<skill id="4415" level="9" /> <!-- Bows -->
<skill id="4416" level="15" /> <!-- Elves -->
</skill_list>
<ex_crt_effect>true</ex_crt_effect>
<ai aggroRange="500" clanHelpRange="300">
<clan_list>
<clan>Good</clan>
</clan_list>
</ai>
<collision>
<radius normal="8" />
<height normal="23.5" />
</collision>
</npc>
<npc id="502" displayId="31036" level="105" type="L2Guard" name="Centurion" usingServerSideName="true">
<parameters>
<param name="NoFnHi" value="1" />
<param name="MoveAroundSocial" value="0" />
<param name="MoveAroundSocial1" value="140" />
</parameters>
<race>ORC</race>
<sex>MALE</sex>
<equipment rhand="273" /> <!-- rhand: Composite Bow -->
<stats>
<vitals hp="13290.11306877694" hpRegen="8.5" mp="11674.8" mpRegen="3" />
<attack physical="970.537548504614" magical="662.751329129412" random="10" critical="8" accuracy="100" attackSpeed="253" reuseDelay="1500" type="BOW" range="1100" distance="10" width="0" />
<defence physical="341.375" magical="249.80341" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
<speed>
<walk ground="50" />
<run ground="160" />
</speed>
</stats>
<status attackable="false" undying="false" />
<skill_list>
<skill id="4045" level="1" /> <!-- Resist Full Magic Attack -->
<skill id="4410" level="16" /> <!-- Very Strong P. Atk. -->
<skill id="4411" level="16" /> <!-- Very Strong M. Atk. -->
<skill id="4412" level="16" /> <!-- Very Strong P. Def. -->
<skill id="4413" level="16" /> <!-- Very Strong M. Def. -->
<skill id="4414" level="2" /> <!-- Standard Type -->
<skill id="4415" level="9" /> <!-- Bows -->
<skill id="4416" level="17" /> <!-- Orcs -->
</skill_list>
<ex_crt_effect>true</ex_crt_effect>
<ai aggroRange="500" clanHelpRange="300">
<clan_list>
<clan>Evil</clan>
</clan_list>
</ai>
<collision>
<radius normal="8" />
<height normal="27" />
</collision>
</npc>
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../xsd/npcs.xsd">
<npc id="500" displayId="34209" name="Faction Manager" usingServerSideName="true" title=" " usingServerSideTitle="true" type="L2Npc">
<race>ELF</race>
<sex>FEMALE</sex>
<stats>
<vitals hp="2444.46819" hpRegen="7.5" mp="1345.8" mpRegen="2.7" />
<attack physical="688.86373" magical="470.40463" random="30" critical="4" accuracy="95" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="295.91597" magical="216.53847" />
<speed>
<walk ground="50" />
<run ground="120" />
</speed>
</stats>
<status attackable="false" />
<collision>
<radius normal="8" />
<height normal="23" />
</collision>
</npc>
<npc id="501" displayId="31033" level="105" type="L2Guard" name="Sentinel" usingServerSideName="true">
<parameters>
<param name="NoFnHi" value="1" />
<param name="MoveAroundSocial" value="0" />
<param name="MoveAroundSocial1" value="79" />
</parameters>
<race>ELF</race>
<sex>MALE</sex>
<equipment rhand="276" /> <!-- rhand: Elven Bow -->
<stats>
<vitals hp="3290.11306877694" hpRegen="8.5" mp="1674.8" mpRegen="3" />
<attack physical="970.537548504614" magical="662.751329129412" random="10" critical="8" accuracy="100" attackSpeed="253" reuseDelay="1500" type="BOW" range="1100" distance="10" width="0" />
<defence physical="341.375" magical="249.80341" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
<speed>
<walk ground="50" />
<run ground="160" />
</speed>
</stats>
<status attackable="false" undying="false" />
<skill_list>
<skill id="4045" level="1" /> <!-- Resist Full Magic Attack -->
<skill id="4410" level="16" /> <!-- Very Strong P. Atk. -->
<skill id="4411" level="16" /> <!-- Very Strong M. Atk. -->
<skill id="4412" level="16" /> <!-- Very Strong P. Def. -->
<skill id="4413" level="16" /> <!-- Very Strong M. Def. -->
<skill id="4414" level="2" /> <!-- Standard Type -->
<skill id="4415" level="9" /> <!-- Bows -->
<skill id="4416" level="15" /> <!-- Elves -->
</skill_list>
<ex_crt_effect>true</ex_crt_effect>
<ai aggroRange="500" clanHelpRange="300">
<clan_list>
<clan>Good</clan>
</clan_list>
</ai>
<collision>
<radius normal="8" />
<height normal="23.5" />
</collision>
</npc>
<npc id="502" displayId="31036" level="105" type="L2Guard" name="Centurion" usingServerSideName="true">
<parameters>
<param name="NoFnHi" value="1" />
<param name="MoveAroundSocial" value="0" />
<param name="MoveAroundSocial1" value="140" />
</parameters>
<race>ORC</race>
<sex>MALE</sex>
<equipment rhand="273" /> <!-- rhand: Composite Bow -->
<stats>
<vitals hp="13290.11306877694" hpRegen="8.5" mp="11674.8" mpRegen="3" />
<attack physical="970.537548504614" magical="662.751329129412" random="10" critical="8" accuracy="100" attackSpeed="253" reuseDelay="1500" type="BOW" range="1100" distance="10" width="0" />
<defence physical="341.375" magical="249.80341" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
<speed>
<walk ground="50" />
<run ground="160" />
</speed>
</stats>
<status attackable="false" undying="false" />
<skill_list>
<skill id="4045" level="1" /> <!-- Resist Full Magic Attack -->
<skill id="4410" level="16" /> <!-- Very Strong P. Atk. -->
<skill id="4411" level="16" /> <!-- Very Strong M. Atk. -->
<skill id="4412" level="16" /> <!-- Very Strong P. Def. -->
<skill id="4413" level="16" /> <!-- Very Strong M. Def. -->
<skill id="4414" level="2" /> <!-- Standard Type -->
<skill id="4415" level="9" /> <!-- Bows -->
<skill id="4416" level="17" /> <!-- Orcs -->
</skill_list>
<ex_crt_effect>true</ex_crt_effect>
<ai aggroRange="500" clanHelpRange="300">
<clan_list>
<clan>Evil</clan>
</clan_list>
</ai>
<collision>
<radius normal="8" />
<height normal="27" />
</collision>
</npc>
</list>
+3 -11
View File
@@ -9,14 +9,6 @@
<xs:complexType name="drop_list">
<xs:choice minOccurs="1" maxOccurs="unbounded">
<xs:element name="item" type="drop_list_item" />
<xs:element name="group">
<xs:complexType>
<xs:sequence>
<xs:element name="item" type="drop_list_item" minOccurs="1" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="chance" type="xs:decimal" />
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
<xs:element name="list">
@@ -267,9 +259,9 @@
<xs:element name="drop_lists" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:all>
<xs:element name="death" type="drop_list" minOccurs="0" maxOccurs="1" />
<xs:element name="corpse" type="drop_list" minOccurs="0" maxOccurs="1" />
<xs:element name="lucky_corpse" type="drop_list" minOccurs="0" maxOccurs="1" />
<xs:element name="drop" type="drop_list" minOccurs="0" maxOccurs="1" />
<xs:element name="spoil" type="drop_list" minOccurs="0" maxOccurs="1" />
<xs:element name="lucky_drop" type="drop_list" minOccurs="0" maxOccurs="1" />
</xs:all>
</xs:complexType>
</xs:element>