118 lines
3.8 KiB
Java
118 lines
3.8 KiB
Java
package mods.tinker.tconstruct.modifiers;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import mods.tinker.tconstruct.library.tools.ToolCore;
|
|
import mods.tinker.tconstruct.library.tools.ToolMod;
|
|
import mods.tinker.tconstruct.library.tools.Weapon;
|
|
import net.minecraft.enchantment.Enchantment;
|
|
import net.minecraft.enchantment.EnchantmentHelper;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.nbt.NBTTagList;
|
|
|
|
public class ModButtertouch extends ModBoolean
|
|
{
|
|
|
|
public ModButtertouch(ItemStack[] items, int effect)
|
|
{
|
|
super(items, effect, "Silk Touch", "\u00a7e", "Silky");
|
|
}
|
|
|
|
@Override
|
|
protected boolean canModify (ItemStack tool, ItemStack[] input)
|
|
{
|
|
ToolCore toolItem = (ToolCore) tool.getItem();
|
|
if (!validType(toolItem))
|
|
return false;
|
|
|
|
NBTTagCompound tags = tool.getTagCompound().getCompoundTag("InfiTool");
|
|
if (!tags.getBoolean("Lava") && !tags.hasKey("Lapis"))
|
|
{
|
|
return tags.getInteger("Modifiers") > 0 && !tags.getBoolean(key);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void modify (ItemStack[] input, ItemStack tool)
|
|
{
|
|
NBTTagCompound tags = tool.getTagCompound().getCompoundTag("InfiTool");
|
|
tags.setBoolean(key, true);
|
|
addEnchantment(tool, Enchantment.silkTouch, 1);
|
|
|
|
int modifiers = tags.getInteger("Modifiers");
|
|
modifiers -= 1;
|
|
tags.setInteger("Modifiers", modifiers);
|
|
|
|
int attack = tags.getInteger("Attack");
|
|
attack -= 3;
|
|
if (attack < 0)
|
|
attack = 0;
|
|
tags.setInteger("Attack", attack);
|
|
|
|
int miningSpeed = tags.getInteger("MiningSpeed");
|
|
miningSpeed -= 300;
|
|
if (miningSpeed < 0)
|
|
miningSpeed = 0;
|
|
tags.setInteger("MiningSpeed", miningSpeed);
|
|
|
|
if (tags.hasKey("MiningSpeed2"))
|
|
{
|
|
int miningSpeed2 = tags.getInteger("MiningSpeed2");
|
|
miningSpeed2 -= 300;
|
|
if (miningSpeed2 < 0)
|
|
miningSpeed2 = 0;
|
|
tags.setInteger("MiningSpeed2", miningSpeed2);
|
|
}
|
|
|
|
addToolTip(tool, color+tooltipName, color+key);
|
|
}
|
|
|
|
public void addEnchantment (ItemStack tool, Enchantment enchant, int level)
|
|
{
|
|
NBTTagList tags = new NBTTagList("ench");
|
|
Map enchantMap = EnchantmentHelper.getEnchantments(tool);
|
|
Iterator iterator = enchantMap.keySet().iterator();
|
|
int index;
|
|
int lvl;
|
|
boolean hasEnchant = false;
|
|
while (iterator.hasNext())
|
|
{
|
|
NBTTagCompound enchantTag = new NBTTagCompound();
|
|
index = ((Integer) iterator.next()).intValue();
|
|
lvl = (Integer) enchantMap.get(index);
|
|
if (index == enchant.effectId)
|
|
{
|
|
hasEnchant = true;
|
|
enchantTag.setShort("id", (short) index);
|
|
enchantTag.setShort("lvl", (short) ((byte) level));
|
|
tags.appendTag(enchantTag);
|
|
}
|
|
else
|
|
{
|
|
enchantTag.setShort("id", (short) index);
|
|
enchantTag.setShort("lvl", (short) ((byte) lvl));
|
|
tags.appendTag(enchantTag);
|
|
}
|
|
}
|
|
if (!hasEnchant)
|
|
{
|
|
NBTTagCompound enchantTag = new NBTTagCompound();
|
|
enchantTag.setShort("id", (short) enchant.effectId);
|
|
enchantTag.setShort("lvl", (short) ((byte) level));
|
|
tags.appendTag(enchantTag);
|
|
}
|
|
tool.stackTagCompound.setTag("ench", tags);
|
|
}
|
|
|
|
public boolean validType (ToolCore tool)
|
|
{
|
|
List list = Arrays.asList(tool.toolCategories());
|
|
return list.contains("weapon") || list.contains("harvest");
|
|
}
|
|
}
|