Skip to content

Instantly share code, notes, and snippets.

@DeltaEvo
Created January 16, 2021 18:08
Show Gist options
  • Save DeltaEvo/b98a6f1b7561b5f348e2cebc39c3a0d3 to your computer and use it in GitHub Desktop.
Save DeltaEvo/b98a6f1b7561b5f348e2cebc39c3a0d3 to your computer and use it in GitHub Desktop.
Loots
/* */ package fr.pingoo.MySQL;
/* */
/* */ import java.util.ArrayList;
/* */ import java.util.List;
/* */ import org.bukkit.Material;
/* */ import org.bukkit.SkullType;
/* */ import org.bukkit.enchantments.Enchantment;
/* */ import org.bukkit.inventory.ItemStack;
/* */ import org.bukkit.inventory.meta.ItemMeta;
/* */ import org.bukkit.inventory.meta.SkullMeta;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class InventoryDeserializer
/* */ {
/* */ public static List<ItemStack> translateStrToLoot(List<String> loot) {
/* 24 */ List<ItemStack> isl = new ArrayList<>();
/* */
/* 26 */ for (String s : loot) {
/* */
/* 28 */ ItemStack is = new ItemStack(Material.DIRT);
/* 29 */ boolean skull = false;
/* */
/* 31 */ String[] ss = s.split(":");
/* */
/* */
/* 34 */ for (int i = 0; i < ss.length; i++) {
/* */
/* 36 */ String[] sss = ss[i].split("-");
/* */
/* 38 */ if (sss[0].equalsIgnoreCase("id")) {
/* */
/* 40 */ is.setTypeId(Integer.parseInt(sss[1]));
/* */
/* 42 */ if (sss[1].equalsIgnoreCase("397")) {
/* */
/* 44 */ is.setDurability((short)SkullType.PLAYER.ordinal());
/* 45 */ skull = true;
/* */ }
/* */ }
/* */
/* 49 */ if (sss[0].equalsIgnoreCase("data"))
/* */ {
/* 51 */ is.setDurability((short)Integer.parseInt(sss[1]));
/* */ }
/* */
/* 54 */ if (sss[0].equalsIgnoreCase("amount"))
/* */ {
/* 56 */ is.setAmount(Integer.parseInt(sss[1]));
/* */ }
/* */
/* 59 */ if (sss[0].equalsIgnoreCase("skullmeta") && skull) {
/* */
/* */
/* 62 */ SkullMeta skullMeta = (SkullMeta)is.getItemMeta();
/* 63 */ skullMeta.setOwner(sss[1]);
/* 64 */ is.setItemMeta((ItemMeta)skullMeta);
/* */ }
/* */
/* 67 */ if (sss[0].equalsIgnoreCase("enchantment")) {
/* */
/* 69 */ String[] ssss = sss[1].split(" ");
/* 70 */ is.addUnsafeEnchantment(Enchantment.getByName(ssss[0]), Integer.parseInt(ssss[1]));
/* */ }
/* */
/* 73 */ if (sss[0].equalsIgnoreCase("name")) {
/* */
/* 75 */ String los = translateFormatTONormal(sss[1]);
/* 76 */ ItemMeta im = is.getItemMeta();
/* 77 */ im.setDisplayName(los);
/* 78 */ is.setItemMeta(im);
/* */ }
/* */
/* */
/* */
/* 83 */ if (sss[0].equalsIgnoreCase("lore")) {
/* */
/* 85 */ ItemMeta im = is.getItemMeta();
/* 86 */ List<String> l = im.getLore();
/* 87 */ if (l == null) {
/* 88 */ l = new ArrayList<>();
/* */ }
/* 90 */ if (sss.length >= 2) {
/* */
/* 92 */ String los = translateFormatTONormal(sss[1]);
/* 93 */ l.add(los);
/* 94 */ im.setLore(l);
/* 95 */ is.setItemMeta(im);
/* */ }
/* */ }
/* */ }
/* */
/* */
/* */
/* 102 */ isl.add(is);
/* */ }
/* */
/* 105 */ return isl;
/* */ }
/* */
/* */
/* */
/* */ public static String serializeToMySQL(List<String> list) {
/* 111 */ String serialize = "";
/* 112 */ boolean first = true;
/* 113 */ for (String s : list) {
/* */
/* 115 */ if (first) {
/* */
/* 117 */ serialize = String.valueOf(serialize) + s;
/* 118 */ first = false;
/* */
/* */ continue;
/* */ }
/* 122 */ serialize = String.valueOf(serialize) + "#####" + s;
/* */ }
/* */
/* */
/* 126 */ return serialize;
/* */ }
/* */
/* */
/* */ public static List<String> getDeserializedFromMySQL(String serialize) {
/* 131 */ List<String> l = new ArrayList<>();
/* */
/* 133 */ String[] sl = serialize.split("#####");
/* 134 */ for (int i = 0; i < sl.length; i++) {
/* 135 */ l.add(sl[i]);
/* */ }
/* 137 */ return l;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static List<String> convertEquipementToString(List<ItemStack> loot) {
/* 147 */ List<String> str = new ArrayList<>();
/* */
/* 149 */ for (ItemStack is : loot) {
/* */
/* 151 */ if (is == null) {
/* 152 */ is = new ItemStack(Material.AIR);
/* */ }
/* 154 */ if (is != null) {
/* */
/* 156 */ if (is.getType() != Material.AIR) {
/* */
/* 158 */ String str1 = "";
/* */
/* 160 */ str1 = String.valueOf(str1) + "id-" + is.getTypeId();
/* 161 */ str1 = String.valueOf(str1) + ":";
/* 162 */ int dura = is.getDurability();
/* 163 */ if (dura < 0) dura = 0;
/* 164 */ str1 = String.valueOf(str1) + "data-" + dura;
/* 165 */ str1 = String.valueOf(str1) + ":";
/* 166 */ str1 = String.valueOf(str1) + "amount-" + is.getAmount();
/* 167 */ str1 = String.valueOf(str1) + ":";
/* 168 */ if (is.getItemMeta() != null && is.getItemMeta().getDisplayName() != null) {
/* */
/* 170 */ String nameFormat = translateNormalTOFormat(is.getItemMeta().getDisplayName());
/* 171 */ str1 = String.valueOf(str1) + "name-" + nameFormat;
/* 172 */ str1 = String.valueOf(str1) + ":";
/* */ }
/* */
/* 175 */ if (is.getType().equals(Material.SKULL_ITEM)) {
/* */
/* 177 */ SkullMeta skullMeta = (SkullMeta)is.getItemMeta();
/* 178 */ str1 = String.valueOf(str1) + "skullmeta-" + skullMeta.getOwner();
/* 179 */ str1 = String.valueOf(str1) + ":";
/* */ } byte b; int i;
/* */ Enchantment[] arrayOfEnchantment;
/* 182 */ for (i = (arrayOfEnchantment = Enchantment.values()).length, b = 0; b < i; ) { Enchantment ench = arrayOfEnchantment[b];
/* */
/* 184 */ if (is.containsEnchantment(ench)) {
/* */
/* 186 */ str1 = String.valueOf(str1) + "enchantment-" + ench.getName() + " " + is.getEnchantments().get(ench);
/* 187 */ str1 = String.valueOf(str1) + ":";
/* */ }
/* */ b++; }
/* */
/* 191 */ ItemMeta im = is.getItemMeta();
/* */
/* */
/* 194 */ if (im != null && im.getLore() != null) {
/* */
/* 196 */ List<String> lore = im.getLore();
/* */
/* 198 */ for (String los : lore) {
/* */
/* 200 */ if (!los.contains("dropchance")) {
/* */
/* 202 */ los = translateNormalTOFormat(los);
/* 203 */ str1 = String.valueOf(str1) + "lore-" + los;
/* 204 */ str1 = String.valueOf(str1) + ":";
/* */ }
/* */ }
/* */ }
/* */
/* */
/* 210 */ str.add(str1);
/* */
/* */ continue;
/* */ }
/* 214 */ String format = "id-0";
/* 215 */ str.add(format);
/* */ }
/* */ }
/* */
/* */
/* 220 */ return str;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public static List<String> convertLootToString(List<ItemStack> loot) {
/* 231 */ List<String> str = new ArrayList<>();
/* */
/* 233 */ for (ItemStack is : loot) {
/* */
/* 235 */ if (is == null) {
/* 236 */ is = new ItemStack(Material.AIR);
/* */ }
/* 238 */ if (is != null)
/* */ {
/* 240 */ if (is.getType() != Material.AIR) {
/* */
/* 242 */ String format = "";
/* */
/* 244 */ format = String.valueOf(format) + "id-" + is.getTypeId();
/* 245 */ format = String.valueOf(format) + ":";
/* 246 */ int dura = is.getDurability();
/* 247 */ if (dura < 0) dura = 0;
/* 248 */ format = String.valueOf(format) + "data-" + dura;
/* 249 */ format = String.valueOf(format) + ":";
/* 250 */ format = String.valueOf(format) + "amount-" + is.getAmount();
/* 251 */ format = String.valueOf(format) + ":";
/* 252 */ if (is.getItemMeta() != null && is.getItemMeta().getDisplayName() != null) {
/* */
/* 254 */ String nameFormat = translateNormalTOFormat(is.getItemMeta().getDisplayName());
/* 255 */ format = String.valueOf(format) + "name-" + nameFormat;
/* 256 */ format = String.valueOf(format) + ":";
/* */ }
/* */
/* 259 */ if (is.getType().equals(Material.SKULL_ITEM)) {
/* */
/* 261 */ SkullMeta skullMeta = (SkullMeta)is.getItemMeta();
/* 262 */ format = String.valueOf(format) + "skullmeta-" + skullMeta.getOwner();
/* 263 */ format = String.valueOf(format) + ":";
/* */ } byte b; int i;
/* */ Enchantment[] arrayOfEnchantment;
/* 266 */ for (i = (arrayOfEnchantment = Enchantment.values()).length, b = 0; b < i; ) { Enchantment ench = arrayOfEnchantment[b];
/* */
/* 268 */ if (is.containsEnchantment(ench)) {
/* */
/* 270 */ format = String.valueOf(format) + "enchantment-" + ench.getName() + " " + is.getEnchantments().get(ench);
/* 271 */ format = String.valueOf(format) + ":";
/* */ }
/* */ b++; }
/* */
/* 275 */ ItemMeta im = is.getItemMeta();
/* */
/* */
/* 278 */ if (im != null && im.getLore() != null) {
/* */
/* 280 */ List<String> lore = im.getLore();
/* */
/* 282 */ for (String los : lore) {
/* */
/* 284 */ if (!los.contains("dropchance")) {
/* */
/* 286 */ los = translateNormalTOFormat(los);
/* 287 */ format = String.valueOf(format) + "lore-" + los;
/* 288 */ format = String.valueOf(format) + ":";
/* */ }
/* */ }
/* */ }
/* */
/* */
/* 294 */ str.add(format);
/* */ }
/* */ }
/* */ }
/* */
/* 299 */ return str;
/* */ }
/* */
/* */
/* */
/* */
/* */ public static String translateNormalTOFormat(String s) {
/* 306 */ if (s.contains(":"))
/* 307 */ s = s.replaceAll(":", "%2%");
/* 308 */ if (s.contains("'"))
/* 309 */ s = s.replaceAll("'", "%a%");
/* 310 */ if (s.contains("-")) {
/* 311 */ s = s.replaceAll("-", "%t%");
/* */ }
/* */
/* 314 */ if (s.contains("_")) {
/* 315 */ s = s.replaceAll("_", "%u%");
/* */ }
/* 317 */ return s;
/* */ }
/* */
/* */ public static String translateFormatTONormal(String s) {
/* 321 */ if (s.contains("%2%"))
/* 322 */ s = s.replaceAll("%2%", ":");
/* 323 */ if (s.contains("%a%"))
/* 324 */ s = s.replaceAll("%a%", "'");
/* 325 */ if (s.contains("%t%")) {
/* 326 */ s = s.replaceAll("%t%", "-");
/* */ }
/* */
/* 329 */ if (s.contains("%u%")) {
/* 330 */ s = s.replaceAll("%u%", "_");
/* */ }
/* 332 */ return s;
/* */ }
/* */ }
/* */ package fr.pingoo.mobitems.Listener;
/* */
/* */ import fr.pingoo.AresSpell.Graphic.ParticleEffect;
/* */ import fr.pingoo.main.Main;
/* */ import fr.pingoo.player.Level.ExpListener;
/* */ import java.util.List;
/* */ import java.util.Random;
/* */ import org.bukkit.Bukkit;
/* */ import org.bukkit.Location;
/* */ import org.bukkit.entity.Item;
/* */ import org.bukkit.entity.Player;
/* */ import org.bukkit.inventory.ItemStack;
/* */ import org.bukkit.inventory.meta.ItemMeta;
/* */ import org.bukkit.metadata.FixedMetadataValue;
/* */ import org.bukkit.metadata.MetadataValue;
/* */ import org.bukkit.plugin.Plugin;
/* */ import org.bukkit.scheduler.BukkitRunnable;
/* */
/* */
/* */
/* */ public class Loot
/* */ {
/* */ private double dropchance;
/* */ private ItemStack is;
/* */ private int amount;
/* */ private boolean exp = false;
/* */
/* */ public Loot(ItemStack is, double dropchance) {
/* 29 */ this.is = is;
/* 30 */ this.dropchance = dropchance;
/* */
/* 32 */ checkIsExp();
/* 33 */ ItemMeta im = is.getItemMeta();
/* 34 */ List<String> ll = im.getLore();
/* 35 */ if (ll != null)
/* */ {
/* 37 */ if (((String)ll.get(ll.size() - 1)).contains("dropchance")) {
/* */
/* 39 */ ll.remove(ll.size() - 1);
/* 40 */ im.setLore(ll);
/* 41 */ is.setItemMeta(im);
/* */ }
/* */ }
/* */ }
/* */
/* */
/* */
/* */
/* */ public boolean isExp() {
/* 50 */ return this.exp;
/* */ }
/* */
/* */
/* */ private void checkIsExp() {
/* 55 */ if (this.is.hasItemMeta())
/* */ {
/* 57 */ if (this.is.getItemMeta().getDisplayName() != null && this.is.getItemMeta().getDisplayName().contains("_EXP_")) {
/* */
/* 59 */ String naa = this.is.getItemMeta().getDisplayName();
/* 60 */ naa = naa.replaceAll("_EXP_", "");
/* 61 */ this.exp = true;
/* 62 */ this.amount = Integer.parseInt(naa);
/* */ }
/* */ }
/* */ }
/* */
/* */
/* */ public double getDropchance() {
/* 69 */ return this.dropchance;
/* */ }
/* */
/* */ public void setDropchance(double dropchance) {
/* 73 */ this.dropchance = dropchance;
/* */ }
/* */
/* */ public ItemStack getIs() {
/* 77 */ return this.is;
/* */ }
/* */
/* */ public void setIs(ItemStack is) {
/* 81 */ this.is = is;
/* */ }
/* */
/* */
/* */ public boolean isRandDrop() {
/* 86 */ Random r = new Random();
/* */
/* 88 */ double x = r.nextDouble() * 100.0D;
/* */
/* 90 */ if (x <= this.dropchance)
/* 91 */ return true;
/* 92 */ return false;
/* */ }
/* */
/* */
/* */
/* */ public void drop(Location loc, String owner, int mobL) {
/* 98 */ if (this.exp) {
/* */
/* 100 */ if (owner != null)
/* */ {
/* 102 */ Player own = Bukkit.getPlayerExact(owner);
/* */
/* 104 */ if (own != null)
/* */ {
/* */
/* 107 */ ExpListener.calcAndAddPlayerExp(own, this.amount, mobL);
/* */
/* */
/* */
/* */
/* */ }
/* */
/* */
/* */
/* */ }
/* */
/* */
/* */
/* */
/* */ }
/* */ else {
/* */
/* */
/* */
/* */
/* 127 */ Random r = new Random();
/* */
/* 129 */ double x = r.nextDouble() * 100.0D;
/* */
/* 131 */ if (x <= this.dropchance) {
/* 132 */ dropFinal(loc, owner, mobL);
/* */ }
/* */ }
/* */ }
/* */
/* */ public void dropFinal(final Location loc, String own, int mobL) {
/* 138 */ Item it = loc.getWorld().dropItemNaturally(loc, this.is);
/* */
/* */
/* 141 */ if (own != null) {
/* */
/* */
/* 144 */ final Player p = Bukkit.getPlayer(own);
/* 145 */ if (p != null)
/* */ {
/* 147 */ if (p.getLevel() + 8 > mobL)
/* */ {
/* 149 */ for (int i = 0; i < 3; i++) {
/* */
/* 151 */ (new BukkitRunnable()
/* */ {
/* */ public void run() {
/* */
/* 155 */ try { ParticleEffect.HEART.sendToPlayer(p, loc, 0.1F, 0.5F, 0.1F, 1.0F, 40); } catch (Exception exception) {}
/* */ }
/* 157 */ }).runTaskLater((Plugin)Main.plugin, (i * 20));
/* */ }
/* */ }
/* */
/* 161 */ it.setMetadata(own, (MetadataValue)new FixedMetadataValue((Plugin)Main.plugin, Boolean.valueOf(true)));
/* 162 */ it.setMetadata("Owner", (MetadataValue)new FixedMetadataValue((Plugin)Main.plugin, Boolean.valueOf(true)));
/* */
/* */ }
/* */ else
/* */ {
/* 167 */ it.remove();
/* */
/* */ }
/* */
/* */ }
/* */ else {
/* */
/* 174 */ it.remove();
/* */ }
/* */ }
/* */ }
/* */ package fr.pingoo.mobitems.Listener;
/* */
/* */ import fr.pingoo.MySQL.MySQlMethodes;
/* */ import fr.pingoo.mobitems.MonsterLoot;
/* */ import fr.pingoo.player.GUI.StorageConvert;
/* */ import java.util.ArrayList;
/* */ import java.util.HashMap;
/* */ import java.util.List;
/* */ import org.bukkit.Location;
/* */ import org.bukkit.Material;
/* */ import org.bukkit.inventory.ItemStack;
/* */ import org.bukkit.inventory.meta.ItemMeta;
/* */
/* */
/* */
/* */ public class LootManager
/* */ {
/* 18 */ private static HashMap<String, ArrayList<Loot>> mobLoot = new HashMap<>();
/* 19 */ private static HashMap<String, List<ItemStack>> mobsDrops = new HashMap<>();
/* */
/* */
/* */
/* */ public static void setMobLootsFromMySQL(String mob, String s) {
/* 24 */ mob = MySQlMethodes.serializeMobName(mob);
/* */
/* 26 */ List<String> des = StorageConvert.getDeserializedFromMySQL(s);
/* 27 */ List<ItemStack> isl = MonsterLoot.translateStrToLoot(des);
/* 28 */ setMobLoots(mob, isl);
/* */ }
/* */
/* */
/* */ public static void setMobLoots(String mob, List<ItemStack> isl) {
/* 33 */ mob = MySQlMethodes.serializeMobName(mob);
/* */
/* 35 */ mobsDrops.put(mob, isl);
/* 36 */ ArrayList<Loot> lootL = new ArrayList<>();
/* */
/* 38 */ for (ItemStack is : isl) {
/* */
/* 40 */ if (is != null) {
/* */
/* 42 */ double dropc = 0.0D;
/* */
/* 44 */ ItemMeta im = is.getItemMeta();
/* */
/* 46 */ List<String> l = im.getLore();
/* 47 */ if (l == null) {
/* 48 */ l = new ArrayList<>();
/* */ }
/* 50 */ if (l.size() >= 1) {
/* */
/* 52 */ String d = l.get(l.size() - 1);
/* */
/* 54 */ if (d.contains("dropchance")) {
/* */
/* 56 */ String[] dd = d.split(":");
/* */
/* */
/* 59 */ if (!dd[1].contains("."))
/* */ {
/* */
/* */
/* */
/* 64 */ if (dd[1].length() == 1) {
/* 65 */ dd[1] = String.valueOf(dd[1]) + "00";
/* 66 */ } else if (dd[1].length() == 2) {
/* 67 */ dd[1] = String.valueOf(dd[1]) + "0";
/* */ }
/* */ }
/* */ try {
/* 71 */ dropc = Double.parseDouble(dd[1]);
/* 72 */ } catch (Exception ex) {
/* */
/* 74 */ System.err.println("[AresPingooPlg - LOOT] ERREUR DANS LES LOOTS AVEC LES DOUBLES !");
/* 75 */ dropc = 1.0D;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* 84 */ if (dropc < 0.0D) {
/* 85 */ dropc = 100.0D;
/* */ }
/* */ }
/* */ }
/* */
/* */
/* 91 */ lootL.add(new Loot(is.clone(), dropc));
/* */ }
/* */ }
/* */
/* */
/* 96 */ mobLoot.put(mob, lootL);
/* */ }
/* */
/* */
/* */
/* */ public static void updateMobLoots(String mob, List<ItemStack> isl) {
/* 102 */ mob = MySQlMethodes.serializeMobName(mob);
/* */
/* 104 */ setMobLoots(mob, isl);
/* 105 */ MySQlMethodes.setMobLoot(mob);
/* */ }
/* */
/* */
/* */
/* */
/* */ public static List<ItemStack> getDropMobLoots(String mob) {
/* 112 */ mob = MySQlMethodes.serializeMobName(mob);
/* */
/* 114 */ if (mobLoot.containsKey(mob)) {
/* */
/* 116 */ ArrayList<ItemStack> ll = new ArrayList<>();
/* */
/* 118 */ for (Loot l : mobLoot.get(mob)) {
/* 119 */ if (!l.isExp() &&
/* 120 */ l.isRandDrop())
/* 121 */ ll.add(l.getIs());
/* */ }
/* 123 */ return ll;
/* */ }
/* */
/* 126 */ return null;
/* */ }
/* */
/* */
/* */ public static void dropMobLoots(String mob, Location loc, String own) {
/* 131 */ mob = MySQlMethodes.serializeMobName(mob);
/* */
/* 133 */ if (mobLoot.containsKey(mob)) {
/* */
/* 135 */ String lvl = mob.substring(mob.lastIndexOf('[') + 5, mob.lastIndexOf(']'));
/* 136 */ int level = Integer.parseInt(lvl);
/* */
/* 138 */ ArrayList<Loot> ll = mobLoot.get(mob);
/* 139 */ for (Loot l : ll) {
/* 140 */ l.drop(loc, own, level);
/* */ }
/* */ }
/* */ }
/* */
/* */ public static boolean hasLoots(String mob) {
/* 146 */ mob = MySQlMethodes.serializeMobName(mob);
/* */
/* 148 */ if (mobLoot.containsKey(mob))
/* 149 */ return true;
/* 150 */ return false;
/* */ }
/* */
/* */
/* */
/* */
/* */ public static String getMobLootsSerialize(String mob) {
/* 157 */ mob = MySQlMethodes.serializeMobName(mob);
/* */
/* 159 */ List<ItemStack> isl = getMobLootInventory(mob);
/* 160 */ List<String> iss = MonsterLoot.convertLootToString(isl);
/* */
/* 162 */ return StorageConvert.serializeToMySQL(iss);
/* */ }
/* */
/* */
/* */ public static List<ItemStack> getMobLootInventory(String mob) {
/* 167 */ mob = MySQlMethodes.serializeMobName(mob);
/* */
/* 169 */ if (mobsDrops.containsKey(mob)) {
/* 170 */ return mobsDrops.get(mob);
/* */ }
/* 172 */ ArrayList<ItemStack> isl = new ArrayList<>();
/* 173 */ isl.add(new ItemStack(Material.AIR));
/* */
/* 175 */ return isl;
/* */ }
/* */ }
('§6Araknéa la Couveuse§4 [Lvl 27]', 'id-98:data-0:amount-1:name-%u%EXP%u%5000:dropchance-100#####id-265:data-0:amount-5:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-1#####id-375:data-0:amount-15:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-020#####id-410:data-0:amount-2:name-§fCocons Poreux:lore-§eItem:dropchance-002#####id-410:data-0:amount-1:name-§fCocons Poreux:lore-§eItem:dropchance-010'),
('§6Moutron l%a%Epique§4 [Lvl 4]', 'id-133:data-0:amount-1:name-%u%EXP%u%125:dropchance-100'),
('§6Nofus le Chafer§4 [Lvl 15]', 'id-44:data-3:amount-1:name-%u%EXP%u%2000:dropchance-100#####id-265:data-0:amount-10:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-02#####id-352:data-0:amount-30:name-§fOs brisé:lore-§eItem:dropchance-02#####id-352:data-0:amount-7:name-§fOs brisé:lore-§eItem:dropchance-02'),
('§6Ramick Eymouse§4 [Lvl 2]', 'id-44:data-3:amount-1:name-%u%EXP%u%20:dropchance-100#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-010'),
('§6Severin le boursouflé§4 [Lvl 7]', 'id-133:data-0:amount-1:name-%u%EXP%u%250:dropchance-100#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-010#####id-371:data-0:amount-3:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-020#####id-371:data-0:amount-3:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-020#####id-371:data-0:amount-3:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-020'),
('§6Sparot le Pirate§4 [Lvl 10]', 'id-44:data-3:amount-1:name-%u%EXP%u%850:dropchance-100#####id-351:data-10:amount-10:name-§fPierre de Magma:lore-§eItem:dropchance-100'),
('§cAragog L%a%Acromentule §4[Lvl 31]', 'id-339:data-0:amount-1:name-§eParchemin de téléportation:lore-§e§oConsommable:lore-§e:lore-§7Ce parchemin vous:lore-§7téléporte vers §2Caverne Legendaire:lore-§9§o10 secondes d%c%incantation:dropchance-010#####id-378:data-0:amount-1:name-§6Gemme d%c%Aragog:lore-§eItem Légendaire:lore-§7Essence de §5Carité:dropchance-003.5#####id-378:data-0:amount-1:name-§6Gemme d%c%Aragog:lore-§eItem Légendaire:lore-§7Essence de §5Chagrin:dropchance-003.5#####id-378:data-0:amount-1:name-§bGemme d%c%Aragog:lore-§eItem Rare:lore-§7Essence de§5 Combat:dropchance-006#####id-378:data-0:amount-1:name-§bGemme d%c%Aragog:lore-§eItem Rare:lore-§7Essence de §eForce:dropchance-008#####id-378:data-0:amount-1:name-§bGemme d%c%Aragog:lore-§eItem Rare:lore-§7Essence de §3Défense:dropchance-008#####id-378:data-0:amount-1:name-§bGemme d%c%Aragog:lore-§eItem Rare:lore-§7Essence d%c%§4Intelligence:dropchance-008#####id-378:data-0:amount-1:name-§bGemme d%c%Aragog:lore-§eItem Rare:lore-§7Essence d%c%§2Agilité:dropchance-008#####id-30:data-0:amount-1:name-§fFil de couture d%c%Aragog:lore-§eItem:lore-§8Un des fils les plus résistants au monde:dropchance-004#####id-410:data-0:amount-2:name-§fCocons Poreux:lore-§eItem:dropchance-010#####id-410:data-0:amount-2:name-§fCocons Poreux:lore-§eItem:dropchance-010#####id-410:data-0:amount-2:name-§fCocons Poreux:lore-§eItem:dropchance-010'),
('§cHades l%a%impitoyable§4 [Lvl 37]', ''),
('§cKraken §4[Lvl 25]', 'id-339:data-0:amount-1:name-§eParchemin de téléportation:lore-§e§oConsommable:lore-§e:lore-§7Ce parchemin vous:lore-§7téléporte vers §2Caverne Legendaire:lore-§9§o10 secondes d%c%incantation:dropchance-008#####id-378:data-0:amount-1:name-§bGemme du Kraken:lore-§eItem Rare:lore-§7Essence de §3Défense:dropchance-006#####id-378:data-0:amount-1:name-§6Gemme de Kraken:lore-§eItem Légendaire:lore-§7Essence §5Mystique:dropchance-003#####id-378:data-0:amount-1:name-§bGemme du Kraken:lore-§eItem Rare:lore-§7Essence de §eForce:dropchance-006#####id-378:data-0:amount-1:name-§bGemme du Kraken:lore-§eItem Rare:lore-§7Essence d%c%§4Intelligence:dropchance-006#####id-378:data-0:amount-1:name-§bGemme du Kraken:lore-§eItem Rare:lore-§7Essence d%c%§2Agilité:dropchance-006#####id-378:data-0:amount-1:name-§bGemme du Kraken:lore-§eItem Rare:lore-§7Essence de§5 Combat:dropchance-004#####id-351:data-9:amount-1:name-§fSac pourri:lore-§eItem:lore-§8Ce sac semble encore pouvoir être réparé:dropchance-004'),
('§cNérak l%a%Invoqué§4 [Lvl 18]', 'id-371:data-0:amount-5:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:#####id-378:data-0:amount-1:name-§bGemme de Nérak:lore-§eItem Rare:lore-§7Essence de §eForce:dropchance-007#####id-378:data-0:amount-1:name-§bGemme de Nérak:lore-§eItem Rare:lore-§7Essence d%c%§4Intelligence:dropchance-007#####id-378:data-0:amount-1:name-§bGemme de Nérak:lore-§eItem Rare:lore-§7Essence d%c%§2Agilité:dropchance-007#####id-378:data-0:amount-1:name-§bGemme de Nérak:lore-§eItem Rare:lore-§7Essence de §3Défense:dropchance-007#####id-378:data-0:amount-1:name-§bGemme de Nérak:lore-§eItem Rare:lore-§7Essence de§5 Combat:dropchance-004#####id-378:data-0:amount-1:name-§6Gemme de Nérak:lore-§eItem Légendaire:lore-§7Essence de §5Savoir:dropchance-003#####id-339:data-0:amount-1:name-§eParchemin de téléportation:lore-§e§oConsommable:lore-§e:lore-§7Ce parchemin vous:lore-§7téléporte vers §2Caverne Legendaire:lore-§9§o10 secondes d%c%incantation:dropchance-005'),
('§cPhacochère§4 [Lvl 5]', 'id-371:data-0:amount-5:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-371:data-0:amount-5:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-334:data-0:amount-5:name-§fPeau de bête décomposée:lore-§eItem:dropchance-100#####id-378:data-0:amount-1:name-§bGemme de Phacochère:lore-§eItem Rare:lore-§7Essence de§5 Combat:dropchance-007#####id-378:data-0:amount-1:name-§bGemme de Phacochère:lore-§eItem Rare:lore-§7Essence d%c%§2Agilité:dropchance-009#####id-378:data-0:amount-1:name-§bGemme de Phacochère:lore-§eItem Rare:lore-§7Essence de §3Défense:dropchance-009#####id-378:data-0:amount-1:name-§bGemme de Phacochère:lore-§eItem Rare:lore-§7Essence de §eForce:dropchance-009#####id-378:data-0:amount-1:name-§bGemme de Phacochère:lore-§eItem Rare:lore-§7Essence d%c%§4Intelligence:dropchance-009#####id-339:data-0:amount-1:name-§eParchemin de téléportation:lore-§e§oConsommable:lore-§e:lore-§7Ce parchemin vous:lore-§7téléporte vers §2Caverne Legendaire:lore-§9§o10 secondes d%c%incantation:dropchance-010'),
('§fAbrakleur Centenaire§4 [Lvl 26]', 'id-44:data-5:amount-1:name-%u%EXP%u%800:dropchance-100#####id-266:data-0:amount-1:name-§6Pièce d%c%Or:lore-§eMoney:lore-§7Vaut%2% 4K Or:dropchance-002#####id-265:data-0:amount-2:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-05#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-05#####id-351:data-1:amount-1:name-§fOeil d%c%abrakleur:lore-§eItem:dropchance-008#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-050'),
('§fAbrakleur§4 [Lvl 18]', 'id-133:data-0:amount-1:name-%u%EXP%u%540:dropchance-100#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-01#####id-265:data-0:amount-3:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-001#####id-371:data-0:amount-10:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05#####id-371:data-0:amount-11:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:#####id-351:data-1:amount-1:name-§fOeil d%c%abrakleur:lore-§eItem:dropchance-001#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-01'),
('§fAnkre Atrophié §4[Lvl 6]', 'id-133:data-0:amount-1:name-%u%EXP%u%50:dropchance-100#####id-154:data-0:amount-1:name-§fEncre épaisse:lore-§eItem:dropchance-001#####id-263:data-1:amount-2:name-§fPoudre d%c%encre:lore-§eItem:dropchance-02#####id-263:data-1:amount-1:name-§fPoudre d%c%encre:lore-§eItem:dropchance-02#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fAnkre des Profondeurs §4[Lvl 16]', 'id-22:data-0:amount-1:name-%u%EXP%u%380:dropchance-100#####id-263:data-1:amount-1:name-§fPoudre d%c%encre:lore-§eItem:dropchance-05#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-02#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-010'),
('§fAnkre Harpon §4[Lvl 11]', 'id-133:data-0:amount-1:name-%u%EXP%u%200:dropchance-100#####id-154:data-0:amount-1:name-§fEncre épaisse:lore-§eItem:dropchance-005#####id-263:data-1:amount-1:name-§fPoudre d%c%encre:lore-§eItem:dropchance-01#####id-263:data-1:amount-1:name-§fPoudre d%c%encre:lore-§eItem:dropchance-01#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05'),
('§fAnkre Vénérables §4[Lvl 19]', 'id-133:data-0:amount-1:name-%u%EXP%u%650:dropchance-100#####id-154:data-0:amount-1:name-§fEncre épaisse:lore-§eItem:dropchance-020#####id-263:data-1:amount-2:name-§fPoudre d%c%encre:lore-§eItem:dropchance-05#####id-263:data-1:amount-1:name-§fPoudre d%c%encre:lore-§eItem:dropchance-05#####id-265:data-0:amount-2:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-02'),
('§fArakne Affamée §4[Lvl 17]', 'id-133:data-0:amount-1:name-%u%EXP%u%550:dropchance-100#####id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-015#####id-375:data-0:amount-3:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-02#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-01#####id-375:data-0:amount-2:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-05#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-005'),
('§fArakne Elfique §4[Lvl 27]', 'id-133:data-0:amount-1:name-%u%EXP%u%1300:dropchance-100#####id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-030#####id-351:data-0:amount-1:name-§fVenin efficace:lore-§eItem:dropchance-005#####id-351:data-10:amount-2:name-§fPierre de Magma:lore-§eItem:dropchance-02#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-01#####id-410:data-0:amount-1:name-§fCocons Poreux:lore-§eItem:dropchance-002#####id-410:data-0:amount-1:name-§fCocons Poreux:lore-§eItem:dropchance-002#####id-410:data-0:amount-1:name-§fCocons Poreux:lore-§eItem:dropchance-002'),
('§fArakne Innofensive §4[Lvl 2]', 'id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-001#####id-375:data-0:amount-1:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-01#####id-375:data-0:amount-2:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-01#####id-133:data-0:amount-1:name-%u%EXP%u%12:dropchance-100#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01'),
('§fArakne Sombre §4[Lvl 23]', 'id-133:data-0:amount-1:name-%u%EXP%u%600:dropchance-100#####id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-015#####id-351:data-0:amount-1:name-§fVenin efficace:lore-§eItem:dropchance-001#####id-375:data-0:amount-5:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-05#####id-265:data-0:amount-2:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-02#####id-375:data-0:amount-2:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-05#####id-410:data-0:amount-1:name-§fCocons Poreux:lore-§eItem:dropchance-002'),
('§fArcher des Ténèbres§4 [Lvl 28]', 'id-133:data-0:amount-1:name-%u%EXP%u%1900:dropchance-100#####id-336:data-0:amount-1:name-§fBrique de l%c%entremonde:lore-§eItem:dropchance-009#####id-348:data-0:amount-1:name-Poudre Temporelle:lore-§eItem:dropchance-009'),
('§fCannibale§4 [Lvl 17]', 'id-133:data-0:amount-1:name-%u%EXP%u%500:dropchance-100#####id-319:data-0:amount-1:name-§fSteak de cannibale:lore-§eItem:dropchance-006#####id-265:data-0:amount-2:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-01#####id-265:data-0:amount-3:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-01#####id-351:data-10:amount-2:name-§fPierre de Magma:lore-§eItem:dropchance-005#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-002'),
('§fCerbère§4 [Lvl 35]', 'id-133:data-0:amount-1:name-%u%EXP%u%2350:dropchance-100#####id-348:data-0:amount-2:name-Poudre Temporelle:lore-§eItem:dropchance-009#####id-336:data-0:amount-1:name-§fBrique de l%c%entremonde:lore-§eItem:dropchance-009'),
('§fChaman§4 [Lvl 15]', 'id-331:data-0:amount-1:name-§fPoudre de Chaman:lore-§eItem:dropchance-010#####id-287:data-0:amount-1:name-§fCorde standard:lore-§eItem:dropchance-005#####id-265:data-0:amount-2:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-005#####id-371:data-0:amount-10:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-371:data-0:amount-6:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-005#####id-351:data-9:amount-1:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-020#####id-133:data-0:amount-1:name-%u%EXP%u%300:dropchance-100#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-100'),
('§fChef de Guerre§4 [Lvl 23]', 'id-133:data-0:amount-1:name-%u%EXP%u%650:dropchance-100#####id-265:data-0:amount-5:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-02#####id-351:data-10:amount-2:name-§fPierre de Magma:lore-§eItem:dropchance-01#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-005#####id-351:data-9:amount-2:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-020#####id-351:data-9:amount-2:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-020'),
('§fClaqueur Décomposé§4 [Lvl 10]', 'id-133:data-0:amount-1:name-%u%EXP%u%180:dropchance-100#####id-337:data-0:amount-1:name-§fCrâne d%c%infecté:lore-§eItem:dropchance-003#####id-299:data-0:amount-1:name-§fGilet troué:lore-§eItem:dropchance-015#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-100#####id-371:data-0:amount-4:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-050'),
('§fClaqueur Sombre§4 [Lvl 18]', 'id-133:data-0:amount-1:name-%u%EXP%u%700:dropchance-100#####id-299:data-0:amount-1:name-§fGilet troué:lore-§eItem:dropchance-025#####id-337:data-0:amount-1:name-§fCrâne d%c%infecté:lore-§eItem:dropchance-010#####id-299:data-0:amount-1:name-§fGilet de base:lore-§eItem:dropchance-001#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-035#####id-371:data-0:amount-10:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-005#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-002'),
('§fClaqueur§4 [Lvl 6]', 'id-133:data-0:amount-1:name-%u%EXP%u%100:dropchance-100#####id-299:data-0:amount-1:name-§fGilet troué:lore-§eItem:dropchance-008#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05'),
('§fClaqueur§4 [Lvl 8]', 'id-133:data-0:amount-1:name-%u%EXP%u%110:dropchance-100#####id-299:data-0:amount-1:name-§fGilet troué:lore-§eItem:dropchance-010#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-100#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-033'),
('§fCrane Tourmenté§4 [Lvl 9]', 'id-133:data-0:amount-1:name-%u%EXP%u%200:dropchance-100#####id-337:data-0:amount-1:name-§fCrâne d%c%infecté:lore-§eItem:dropchance-003#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05'),
('§fDémon Affamé§4 [Lvl 31]', 'id-133:data-0:amount-1:name-%u%EXP%u%2200:dropchance-100#####id-377:data-0:amount-1:name-§fFeu Sacré:lore-§eItem:lore-§8Cet objet semble destiné à:lore-§8renforcer quelque chose:dropchance-002#####id-336:data-0:amount-2:name-§fBrique de l%c%entremonde:lore-§eItem:dropchance-002#####id-336:data-0:amount-1:name-§fBrique de l%c%entremonde:lore-§eItem:dropchance-002#####id-348:data-0:amount-1:name-Poudre Temporelle:lore-§eItem:dropchance-002'),
('§fDévoreuse des Cavernes §4[Lvl 15]', 'id-133:data-0:amount-1:name-%u%EXP%u%220:dropchance-100#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-050#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05#####id-375:data-0:amount-1:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-020#####id-375:data-0:amount-1:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-020'),
('§fDévoreuse Velue §4[Lvl 10]', 'id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-002#####id-375:data-0:amount-2:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-030#####id-375:data-0:amount-1:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-030#####id-133:data-0:amount-1:name-%u%EXP%u%75:dropchance-100'),
('§fDraugr Antique§4 [Lvl 14]', 'id-133:data-0:amount-1:name-%u%EXP%u%400:dropchance-100#####id-314:data-0:amount-1:name-§fCasque de Draugr rouillé:lore-§eItem:dropchance-008#####id-352:data-0:amount-5:name-§fOs brisé:lore-§eItem:dropchance-02#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-005#####id-371:data-0:amount-7:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08'),
('§fDraugr Archer§4 [Lvl 7]', 'id-133:data-0:amount-1:name-%u%EXP%u%80:dropchance-100#####id-314:data-0:amount-1:name-§fCasque de Draugr rouillé:lore-§eItem:dropchance-003#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-352:data-0:amount-1:name-§fOs brisé:lore-§eItem:dropchance-02'),
('§fDraugr Lancier§4 [Lvl 13]', 'id-133:data-0:amount-1:name-%u%EXP%u%450:dropchance-100#####id-314:data-0:amount-1:name-§fCasque de Draugr rouillé:lore-§eItem:dropchance-007#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08'),
('§fDraugr Possédé§4 [Lvl 10]', 'id-133:data-0:amount-1:name-%u%EXP%u%200:dropchance-100#####id-314:data-0:amount-1:name-§fCasque de Draugr rouillé:lore-§eItem:dropchance-005#####id-264:data-0:amount-1:name-§fCrystal de Glace:lore-§eItem:dropchance-005#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-100'),
('§fDraugr§4 [Lvl 5]', 'id-133:data-0:amount-1:name-%u%EXP%u%50:dropchance-100#####id-314:data-0:amount-1:name-§fCasque de Draugr rouillé:lore-§eItem:dropchance-001#####id-352:data-0:amount-5:name-§fOs brisé:lore-§eItem:dropchance-01#####id-352:data-0:amount-2:name-§fOs brisé:lore-§eItem:dropchance-01#####id-352:data-0:amount-2:name-§fOs brisé:lore-§eItem:dropchance-01#####id-352:data-0:amount-2:name-§fOs brisé:lore-§eItem:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01'),
('§fEsprit des Glaces§4 [Lvl 20]', 'id-133:data-0:amount-1:name-%u%EXP%u%550:dropchance-100#####id-264:data-0:amount-1:name-§fCrystal de Glace:lore-§eItem:dropchance-01#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-02#####id-265:data-0:amount-2:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-005#####id-351:data-10:amount-2:name-§fPierre de Magma:lore-§eItem:dropchance-01#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-005'),
('§fEsprit Insolent§4 [Lvl 25]', 'id-133:data-0:amount-1:name-%u%EXP%u%1000:dropchance-100#####id-336:data-0:amount-1:name-§fBrique de l%c%entremonde:lore-§eItem:dropchance-002#####id-336:data-0:amount-1:name-§fBrique de l%c%entremonde:lore-§eItem:dropchance-002'),
('§fGardien des Abysses§4 [Lvl 26]', 'id-133:data-0:amount-1:name-%u%EXP%u%1200:dropchance-100#####id-336:data-0:amount-1:name-§fBrique de l%c%entremonde:lore-§eItem:dropchance-009'),
('§fGuerrier Loup§4 [Lvl 3]', 'id-133:data-0:amount-1:name-%u%EXP%u%10:dropchance-100#####id-80:data-0:amount-1:name-§fVisage gelé:lore-§eItem:dropchance-001#####id-264:data-0:amount-1:name-§fCrystal de Glace:lore-§eItem:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01'),
('§fGuerrier Loup§4 [Lvl 7]', 'id-133:data-0:amount-1:name-%u%EXP%u%55:dropchance-100#####id-80:data-0:amount-1:name-§fVisage gelé:lore-§eItem:dropchance-003#####id-264:data-0:amount-2:name-§fCrystal de Glace:lore-§eItem:dropchance-01#####id-264:data-0:amount-1:name-§fCrystal de Glace:lore-§eItem:dropchance-01#####id-264:data-0:amount-1:name-§fCrystal de Glace:lore-§eItem:dropchance-01#####id-371:data-0:amount-3:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-371:data-0:amount-4:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02'),
('§fInfécté§4 [Lvl 1]', 'id-133:data-0:amount-1:name-%u%EXP%u%5:dropchance-100#####id-299:data-0:amount-1:name-§fGilet troué:lore-§eItem:dropchance-001#####id-300:data-0:amount-1:name-§fVieu short:lore-§eItem:dropchance-001#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fInfécté§4 [Lvl 3]', 'id-133:data-0:amount-1:name-%u%EXP%u%20:dropchance-100#####id-299:data-0:amount-1:name-§fGilet troué:lore-§eItem:dropchance-001#####id-300:data-0:amount-1:name-§fVieu short:lore-§eItem:dropchance-001#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fInfécté§4 [Lvl 4]', 'id-133:data-0:amount-1:name-%u%EXP%u%55:dropchance-100#####id-300:data-0:amount-1:name-§fVieu short:lore-§eItem:dropchance-003#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01'),
('§fInfécté§4 [Lvl 5]', 'id-133:data-0:amount-1:name-%u%EXP%u%60:dropchance-100#####id-300:data-0:amount-1:name-§fVieu short:lore-§eItem:dropchance-004#####id-371:data-0:amount-5:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02'),
('§fJeune Loup§4 [Lvl 2]', 'id-2:data-0:amount-1:name-%u%EXP%u%10:dropchance-100#####id-370:data-0:amount-1:name-§fLarme de Loup:lore-§eItem:dropchance-005#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fJeune Sauvageon§4 [Lvl 1]', 'id-301:data-0:amount-1:name-§fSandale en bois:lore-§eItem:dropchance-001#####id-351:data-9:amount-1:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-1:data-0:amount-1:name-%u%EXP%u%1:dropchance-100'),
('§fJeune Venimeuse §4[Lvl 6]', 'id-133:data-0:amount-1:name-%u%EXP%u%70:dropchance-100#####id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-002#####id-375:data-0:amount-2:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-015#####id-375:data-0:amount-1:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-015#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05'),
('§fLoup Affamé§4 [Lvl 6]', 'id-133:data-0:amount-1:name-%u%EXP%u%70:dropchance-100#####id-318:data-0:amount-1:name-§fDent de loup fragile:lore-§eItem:dropchance-001#####id-370:data-0:amount-2:name-§fLarme de Loup:lore-§eItem:dropchance-01#####id-370:data-0:amount-2:name-§fLarme de Loup:lore-§eItem:dropchance-01#####id-370:data-0:amount-1:name-§fLarme de Loup:lore-§eItem:dropchance-01'),
('§fLoup Antique§4 [Lvl 33]', 'id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-02#####id-5:data-5:amount-1:name-%u%EXP%u%1800:dropchance-100#####id-266:data-0:amount-1:name-§6Pièce d%c%Or:lore-§eMoney:lore-§7Vaut%2% 4K Or:dropchance-002#####id-265:data-0:amount-10:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-020#####id-318:data-0:amount-1:name-§fDent de loup courante:lore-§eItem:dropchance-002#####id-318:data-0:amount-1:name-§fDent de loup fragile:lore-§eItem:dropchance-015'),
('§fLoup Blanc§4 [Lvl 15]', 'id-133:data-0:amount-1:name-%u%EXP%u%350:dropchance-100#####id-318:data-0:amount-1:name-§fDent de loup fragile:lore-§eItem:dropchance-003#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-005#####id-370:data-0:amount-1:name-§fLarme de Jormunld:lore-§eItem:dropchance-005#####id-371:data-0:amount-10:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-005'),
('§fLoup des Cavernes§4 [Lvl 25]', 'id-133:data-0:amount-1:name-%u%EXP%u%1000:dropchance-100#####id-318:data-0:amount-1:name-§fDent de loup fragile:lore-§eItem:dropchance-020#####id-318:data-0:amount-1:name-§fDent de loup courante:lore-§eItem:dropchance-001#####id-265:data-0:amount-5:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-02#####id-351:data-10:amount-2:name-§fPierre de Magma:lore-§eItem:dropchance-01#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-01'),
('§fLoup Enragé§4 [Lvl 10]', 'id-133:data-0:amount-1:name-%u%EXP%u%350:dropchance-100#####id-318:data-0:amount-1:name-§fDent de loup fragile:lore-§eItem:dropchance-002#####id-370:data-0:amount-2:name-§fLarme de Loup:lore-§eItem:dropchance-01#####id-370:data-0:amount-3:name-§fLarme de Loup:lore-§eItem:dropchance-01#####id-370:data-0:amount-1:name-§fLarme de Loup:lore-§eItem:dropchance-01#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05'),
('§fLoup§4 [Lvl 4]', 'id-318:data-0:amount-1:name-§fDent de loup fragile:lore-§eItem:dropchance-001#####id-370:data-0:amount-1:name-§fLarme de Loup:lore-§eItem:dropchance-01#####id-370:data-0:amount-2:name-§fLarme de Loup:lore-§eItem:dropchance-005#####id-133:data-0:amount-1:name-%u%EXP%u%10:dropchance-100#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fLouveteau§4 [Lvl 5]', 'id-133:data-0:amount-1:name-%u%EXP%u%41:dropchance-100#####id-370:data-0:amount-1:name-§fLarme de Loup:lore-§eItem:dropchance-01#####id-370:data-0:amount-1:name-§fLarme de Loup:lore-§eItem:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01'),
('§fLouve§4 [Lvl 18]', 'id-318:data-0:amount-1:name-§fDent de loup fragile:lore-§eItem:dropchance-006#####id-370:data-0:amount-1:name-§fLarme de Loup:lore-§eItem:dropchance-05#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-01#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-02#####id-5:data-0:amount-1:name-%u%EXP%u%350:dropchance-100'),
('§fMarcheur Blanc§4 [Lvl 15]', 'id-133:data-0:amount-1:name-%u%EXP%u%350:dropchance-100#####id-80:data-0:amount-1:name-§fVisage gelé:lore-§eItem:dropchance-003#####id-265:data-0:amount-1:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-01#####id-371:data-0:amount-10:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05'),
('§fMarcheur Blanc§4 [Lvl 9]', 'id-133:data-0:amount-1:name-%u%EXP%u%140:dropchance-100#####id-80:data-0:amount-1:name-§fVisage gelé:lore-§eItem:dropchance-002#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-100#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-050#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-01'),
('§fMouton de Thebes§4 [Lvl 2]', 'id-3:data-0:amount-1:name-%u%EXP%u%5:dropchance-100#####id-334:data-0:amount-1:name-§fPeau de bête décomposée:lore-§eItem:dropchance-004#####id-296:data-0:amount-1:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-1:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-1:name-§fBlé:lore-§eItem:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fNéphila Inaurata §4[Lvl 14]', 'id-133:data-0:amount-1:name-%u%EXP%u%350:dropchance-100#####id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-005'),
('§fNéphile Dorée §4[Lvl 12]', 'id-133:data-0:amount-1:name-%u%EXP%u%180:dropchance-100#####id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-004#####id-371:data-0:amount-5:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08#####id-375:data-0:amount-1:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-050#####id-375:data-0:amount-1:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-050'),
('§fNéphile Immature §4[Lvl 10]', 'id-133:data-0:amount-1:name-%u%EXP%u%230:dropchance-100#####id-375:data-0:amount-2:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-030#####id-375:data-0:amount-2:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-030#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08'),
('§fPorc Bamboula§4 [Lvl 2]', 'id-133:data-0:amount-1:name-%u%EXP%u%5:dropchance-100#####id-334:data-0:amount-1:name-§fPeau de bête décomposée:lore-§eItem:dropchance-004#####id-296:data-0:amount-2:name-§fBlé:lore-§eItem:dropchance-02#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fPorc de Savanne§4 [Lvl 3]', 'id-133:data-0:amount-1:name-%u%EXP%u%5:dropchance-100#####id-334:data-0:amount-1:name-§fPeau de bête décomposée:lore-§eItem:dropchance-004#####id-296:data-0:amount-2:name-§fBlé:lore-§eItem:dropchance-02#####id-296:data-0:amount-2:name-§fBlé:lore-§eItem:dropchance-02#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fPorc de Talus§4 [Lvl 4]', 'id-3:data-0:amount-1:name-%u%EXP%u%10:dropchance-100#####id-296:data-0:amount-3:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-1:name-§fBlé:lore-§eItem:dropchance-005#####id-334:data-0:amount-1:name-§fPeau de bête décomposée:lore-§eItem:dropchance-004#####id-296:data-0:amount-2:name-§fBlé:lore-§eItem:dropchance-02#####id-334:data-0:amount-1:name-§fPeau de bête décomposée:lore-§eItem:dropchance-004#####id-334:data-0:amount-2:name-§fPeau de bête décomposée:lore-§eItem:dropchance-004#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01'),
('§fPoule Malade§4 [Lvl 1]', 'id-3:data-0:amount-1:name-%u%EXP%u%3:dropchance-100#####id-296:data-0:amount-2:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-2:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-2:name-§fBlé:lore-§eItem:dropchance-005#####id-288:data-0:amount-2:name-§fPlume:lore-§eItem:dropchance-01#####id-288:data-0:amount-1:name-§fPlume:lore-§eItem:dropchance-01'),
('§fPoulet Moîne§4 [Lvl 1]', 'id-133:data-0:amount-1:name-%u%EXP%u%2:dropchance-100#####id-296:data-0:amount-2:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-2:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-5:name-§fBlé:lore-§eItem:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fPoule§4 [Lvl 1]', 'id-3:data-0:amount-1:name-%u%EXP%u%2:dropchance-100#####id-296:data-0:amount-2:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-1:name-§fBlé:lore-§eItem:dropchance-005#####id-288:data-0:amount-1:name-§fPlume:lore-§eItem:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-001'),
('§fRat Nordique§4 [Lvl 4]', 'id-3:data-0:amount-1:name-%u%EXP%u%6:dropchance-100#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fRat§4 [Lvl 2]', 'id-3:data-0:amount-1:name-%u%EXP%u%4:dropchance-100#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fSanglier des Plaines§4 [Lvl 35]', 'id-1:data-0:amount-1:name-%u%EXP%u%2000:dropchance-100#####id-266:data-0:amount-1:name-§6Pièce d%c%Or:lore-§eMoney:lore-§7Vaut%2% 4K Or:dropchance-010#####id-265:data-0:amount-5:name-§6Pièce d%c%Argent:lore-§eMoney:lore-§7Vaut%2% 64 Or:dropchance-05#####id-351:data-10:amount-3:name-§fPierre de Magma:lore-§eItem:dropchance-050#####id-351:data-10:amount-1:name-§fPierre de Magma:lore-§eItem:dropchance-050#####id-334:data-0:amount-1:name-§fPeau de bête standard:lore-§eItem:dropchance-050'),
('§fSauvageon Agressif§4 [Lvl 3]', 'id-133:data-0:amount-1:name-%u%EXP%u%25:dropchance-100#####id-301:data-0:amount-1:name-§fSandale en bois:lore-§eItem:dropchance-001#####id-351:data-9:amount-1:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-351:data-9:amount-3:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-351:data-9:amount-3:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-351:data-9:amount-1:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-351:data-9:amount-1:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01'),
('§fSauvageon Déchu§4 [Lvl 5]', 'id-133:data-0:amount-1:name-%u%EXP%u%70:dropchance-100#####id-301:data-0:amount-1:name-§fSandale en bois:lore-§eItem:dropchance-002#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01'),
('§fSauvageon Frondeur§4 [Lvl 2]', 'id-301:data-0:amount-1:name-§fSandale en bois:lore-§eItem:dropchance-001#####id-351:data-3:amount-1:name-§fProjectile de frondeur:lore-§eItem:dropchance-001#####id-351:data-9:amount-2:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-351:data-9:amount-3:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-351:data-9:amount-2:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-3:data-0:amount-1:name-%u%EXP%u%12:dropchance-100'),
('§fSauvageon Parjure§4 [Lvl 1]', 'id-133:data-0:amount-1:name-%u%EXP%u%2:dropchance-100#####id-301:data-0:amount-1:name-§fSandale en bois:lore-§eItem:dropchance-001#####id-351:data-9:amount-3:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-351:data-9:amount-1:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fSauvageonne Féconde§4 [Lvl 13]', 'id-133:data-0:amount-1:name-%u%EXP%u%200:dropchance-100#####id-301:data-0:amount-1:name-§fSandale en bois:lore-§eItem:dropchance-004#####id-351:data-9:amount-2:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-02#####id-351:data-9:amount-2:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-02#####id-351:data-9:amount-2:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-02#####id-351:data-9:amount-5:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-02#####id-351:data-9:amount-1:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-02#####id-371:data-0:amount-3:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01#####id-371:data-0:amount-3:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01'),
('§fSauvageonne§4 [Lvl 8]', 'id-133:data-0:amount-1:name-%u%EXP%u%115:dropchance-100#####id-301:data-0:amount-1:name-§fSandale en bois:lore-§eItem:dropchance-003#####id-351:data-9:amount-2:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-02#####id-351:data-9:amount-2:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-02#####id-351:data-9:amount-1:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-02#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02#####id-371:data-0:amount-3:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-02'),
('§fSauvageon§4 [Lvl 1]', 'id-301:data-0:amount-1:name-§fSandale en bois:lore-§eItem:dropchance-001#####id-351:data-9:amount-1:name-§fSacoche du Sauvageon:lore-§eItem:dropchance-007#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-1:data-0:amount-1:name-%u%EXP%u%1:dropchance-100'),
('§fSoldat des Ténèbres§4 [Lvl 28]', 'id-133:data-0:amount-1:name-%u%EXP%u%2000:dropchance-100#####id-348:data-0:amount-1:name-Poudre Temporelle:lore-§eItem:dropchance-002#####id-348:data-0:amount-1:name-Poudre Temporelle:lore-§eItem:dropchance-009'),
('§fSquelette Fragile§4 [Lvl 4]', 'id-133:data-0:amount-1:name-%u%EXP%u%20:dropchance-100#####id-300:data-0:amount-1:name-§fVieu short:lore-§eItem:dropchance-001#####id-337:data-0:amount-1:name-§fCrâne d%c%infecté:lore-§eItem:dropchance-001#####id-352:data-0:amount-1:name-§fOs brisé:lore-§eItem:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005'),
('§fSquelette Nordique§4 [Lvl 8]', 'id-133:data-0:amount-1:name-%u%EXP%u%110:dropchance-100#####id-337:data-0:amount-1:name-§fCrâne d%c%infecté:lore-§eItem:dropchance-002#####id-300:data-0:amount-1:name-§fVieu short:lore-§eItem:dropchance-002#####id-80:data-0:amount-1:name-§fVisage gelé:lore-§eItem:dropchance-002#####id-352:data-0:amount-2:name-§fOs brisé:lore-§eItem:dropchance-02#####id-352:data-0:amount-1:name-§fOs brisé:lore-§eItem:dropchance-02#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-100#####id-371:data-0:amount-2:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-033'),
('§fSquelette§4 [Lvl 5]', 'id-133:data-0:amount-1:name-%u%EXP%u%35:dropchance-100#####id-300:data-0:amount-1:name-§fVieu short:lore-§eItem:dropchance-001#####id-337:data-0:amount-1:name-§fCrâne d%c%infecté:lore-§eItem:dropchance-001#####id-352:data-0:amount-3:name-§fOs brisé:lore-§eItem:dropchance-01#####id-352:data-0:amount-1:name-§fOs brisé:lore-§eItem:dropchance-01#####id-352:data-0:amount-1:name-§fOs brisé:lore-§eItem:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01'),
('§fTégénaire Agressive §4[Lvl 4]', 'id-133:data-0:amount-1:name-%u%EXP%u%35:dropchance-100#####id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-001#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-01#####id-375:data-0:amount-1:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-01#####id-375:data-0:amount-2:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-01'),
('§fTégénaire de Foret §4[Lvl 5]', 'id-133:data-0:amount-1:name-%u%EXP%u%35:dropchance-100#####id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-001#####id-375:data-0:amount-3:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-01#####id-375:data-0:amount-1:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-01#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-05'),
('§fVache§4 [Lvl 3]', 'id-334:data-0:amount-1:name-§fPeau de bête décomposée:lore-§eItem:dropchance-004#####id-296:data-0:amount-1:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-1:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-1:name-§fBlé:lore-§eItem:dropchance-005#####id-296:data-0:amount-1:name-§fBlé:lore-§eItem:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-005#####id-3:data-0:amount-1:name-%u%EXP%u%7:dropchance-100'),
('§fVenimeuse à Crochets §4[Lvl 8]', 'id-133:data-0:amount-1:name-%u%EXP%u%115:dropchance-100#####id-351:data-0:amount-1:name-§fFaible venin:lore-§eItem:dropchance-002#####id-375:data-0:amount-4:name-§fOeuf d%c%arakne:lore-§eItem:dropchance-015#####id-371:data-0:amount-1:name-§6Pièce de Bronze:lore-§eMoney:lore-§7Vaut%2% 1 Or:dropchance-08');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment