Examples of Drop


Examples of us.deathmarine.diablodrops.items.Drop

      startList.add(tier.getColor() + "Tier: " + tier.getDisplayName());
    } else if (plugin.getConfig().getBoolean("Display.TierName", true)
        && tier.getColor().equals(ChatColor.MAGIC)) {
      startList.add(ChatColor.WHITE + "Tier: " + tier.getDisplayName());
    }
    ci = new Drop(mat, tier.getColor(), ChatColor.stripColor(name(mat)),
        damage, startList.toArray(new String[0]));
    if (tier.getColor().equals(ChatColor.MAGIC))
      return ci;
    ItemStack tool = new ItemStack(ci);
    List<Enchantment> eStack = Arrays.asList(Enchantment.values());
View Full Code Here

Examples of us.deathmarine.diablodrops.items.Drop

      startList.add(tier.getColor() + "Tier: " + tier.getDisplayName());
    } else if (plugin.getConfig().getBoolean("Display.TierName", true)
        && tier.getColor().equals(ChatColor.MAGIC)) {
      startList.add(ChatColor.WHITE + "Tier: " + tier.getDisplayName());
    }
    ci = new Drop(mat, tier.getColor(), ChatColor.stripColor(name(mat)),
        damage, startList.toArray(new String[0]));
    if (tier.getColor().equals(ChatColor.MAGIC))
      return ci;
    ItemStack tool = new ItemStack(ci);
    List<String> list = new ArrayList<String>();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.