2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ItemKnife.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2015-08-20 18:34:32 +02:00
|
|
|
import com.google.common.collect.Multimap;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
2016-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2015-08-20 18:34:32 +02:00
|
|
|
import net.minecraft.entity.SharedMonsterAttributes;
|
|
|
|
import net.minecraft.entity.ai.attributes.AttributeModifier;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.inventory.EntityEquipmentSlot;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.EnumRarity;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class ItemKnife extends ItemBase{
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public ItemKnife(String name){
|
|
|
|
super(name);
|
2015-11-28 19:02:01 +01:00
|
|
|
this.setMaxDamage(100);
|
2015-02-17 16:15:16 +01:00
|
|
|
this.setMaxStackSize(1);
|
2015-02-09 17:25:05 +01:00
|
|
|
this.setContainerItem(this);
|
2016-02-02 07:25:26 +01:00
|
|
|
this.setNoRepair();
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public boolean getShareTag(){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2016-01-07 21:41:28 +01:00
|
|
|
return EnumRarity.EPIC;
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
2015-08-20 18:34:32 +02:00
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-08-20 18:34:32 +02:00
|
|
|
@Override
|
2017-07-28 03:17:50 +02:00
|
|
|
public Multimap<String, AttributeModifier> getAttributeModifiers(EntityEquipmentSlot slot, ItemStack stack){
|
|
|
|
Multimap<String, AttributeModifier> map = super.getAttributeModifiers(slot, stack);
|
2016-05-01 22:37:27 +02:00
|
|
|
if(slot == EntityEquipmentSlot.MAINHAND){
|
2016-11-26 21:32:27 +01:00
|
|
|
map.put(SharedMonsterAttributes.ATTACK_DAMAGE.getName(), new AttributeModifier(ATTACK_DAMAGE_MODIFIER, "Knife Modifier", 3, 0));
|
2016-05-01 22:37:27 +02:00
|
|
|
}
|
2015-08-20 18:34:32 +02:00
|
|
|
return map;
|
|
|
|
}
|
2015-10-03 10:19:40 +02:00
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public ItemStack getContainerItem(ItemStack stack){
|
2015-10-03 10:19:40 +02:00
|
|
|
ItemStack theStack = stack.copy();
|
|
|
|
theStack.setItemDamage(theStack.getItemDamage()+1);
|
2016-11-16 16:59:00 +01:00
|
|
|
return StackUtil.setStackSize(theStack, 1);
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|