Package org.spout.vanilla.material.item.armor

Examples of org.spout.vanilla.material.item.armor.Armor


  public void testDamageModifier() {
    ItemStack test = new ItemStack(VanillaMaterials.DIAMOND_CHESTPLATE, 1);
    Enchantment.addEnchantment(test, VanillaEnchantments.PROTECTION, 4, false);
    assertTrue(Enchantment.hasEnchantment(test, VanillaEnchantments.PROTECTION));

    Armor armor = (Armor) test.getMaterial();
    assertTrue((int) Math.ceil(.04 * (armor.getBaseProtection() + armor.getProtection(test, new NullDamageCause(DamageType.CACTUS)))) == 1);
  }
View Full Code Here


      EntityInventory inv = getOwner().get(EntityInventory.class);
      ArmorInventory armorInv = inv.getArmor();
      // Check if this item is equipable armor and has more protection than the currently equipped item
      boolean equip = false;
      if (item.getItemStack().getMaterial() instanceof Armor) {
        Armor armor = (Armor) item.getItemStack().getMaterial();
        for (int i = 0; i < armorInv.size(); i++) {
          if (armorInv.canSet(i, item.getItemStack())) {
            ItemStack slot = armorInv.get(i);
            if (slot == null || (slot.getMaterial() instanceof Armor && ((Armor) slot.getMaterial()).getBaseProtection() < armor.getBaseProtection())) {
              getOwner().getNetwork().callProtocolEvent(new EntityCollectItemEvent(getOwner(), entity));
              if (slot != null) {
                Item.drop(getOwner().getPhysics().getPosition(), slot, Vector3f.ZERO);
              }
              armorInv.set(i, item.getItemStack(), true);
View Full Code Here

TOP

Related Classes of org.spout.vanilla.material.item.armor.Armor

Copyright © 2018 www.massapicom. 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.