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;
|
2021-05-04 19:50:50 +02:00
|
|
|
import net.minecraft.entity.ai.attributes.Attribute;
|
2015-08-20 18:34:32 +02:00
|
|
|
import net.minecraft.entity.ai.attributes.AttributeModifier;
|
2021-05-04 19:50:50 +02:00
|
|
|
import net.minecraft.entity.ai.attributes.Attributes;
|
|
|
|
import net.minecraft.inventory.EquipmentSlotType;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class ItemKnife extends ItemBase {
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2021-03-01 21:23:52 +01:00
|
|
|
public ItemKnife() {
|
2021-08-22 17:09:06 +02:00
|
|
|
super(ActuallyItems.defaultNonStacking().defaultDurability(100).setNoRepair());
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
|
|
|
|
|
2021-05-04 19:50:50 +02:00
|
|
|
// @Override
|
|
|
|
// public boolean getShareTag() {
|
|
|
|
// return true;
|
|
|
|
// }
|
|
|
|
|
2015-08-20 18:34:32 +02:00
|
|
|
|
|
|
|
@Override
|
2021-05-04 19:50:50 +02:00
|
|
|
public Multimap<Attribute, AttributeModifier> getAttributeModifiers(EquipmentSlotType slot, ItemStack stack) {
|
|
|
|
Multimap<Attribute, AttributeModifier> map = super.getAttributeModifiers(slot, stack);
|
|
|
|
if (slot == EquipmentSlotType.MAINHAND) {
|
|
|
|
// TODO: [port] validate
|
|
|
|
map.put(Attributes.ATTACK_DAMAGE, new AttributeModifier("Knife Modifier", 3, AttributeModifier.Operation.ADDITION));
|
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
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public ItemStack getContainerItem(ItemStack stack) {
|
2015-10-03 10:19:40 +02:00
|
|
|
ItemStack theStack = stack.copy();
|
2021-08-22 17:09:06 +02:00
|
|
|
theStack.setDamageValue(theStack.getDamageValue() + 1);
|
2018-06-23 01:39:30 +02:00
|
|
|
return theStack;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|