2016-01-09 02:05:13 +00:00
|
|
|
package WayofTime.bloodmagic.item.soul;
|
|
|
|
|
|
|
|
import net.minecraft.client.resources.model.ModelResourceLocation;
|
2016-01-09 03:20:31 +00:00
|
|
|
import net.minecraft.enchantment.Enchantment;
|
|
|
|
import net.minecraft.enchantment.EnchantmentHelper;
|
2016-01-09 02:05:13 +00:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2016-01-09 03:20:31 +00:00
|
|
|
import net.minecraft.entity.projectile.EntityArrow;
|
|
|
|
import net.minecraft.init.Items;
|
|
|
|
import net.minecraft.item.Item;
|
2016-01-09 02:05:13 +00:00
|
|
|
import net.minecraft.item.ItemBow;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-01-09 03:20:31 +00:00
|
|
|
import net.minecraft.stats.StatList;
|
|
|
|
import net.minecraft.world.World;
|
2016-01-09 02:05:13 +00:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
|
|
import WayofTime.bloodmagic.BloodMagic;
|
|
|
|
import WayofTime.bloodmagic.api.Constants;
|
2016-01-09 15:47:36 +00:00
|
|
|
import WayofTime.bloodmagic.entity.projectile.EntitySentientArrow;
|
2016-01-09 02:05:13 +00:00
|
|
|
|
2016-01-09 15:47:36 +00:00
|
|
|
public class ItemSentientBow extends ItemBow
|
2016-01-09 02:05:13 +00:00
|
|
|
{
|
2016-01-09 15:47:36 +00:00
|
|
|
public ItemSentientBow()
|
2016-01-09 02:05:13 +00:00
|
|
|
{
|
|
|
|
super();
|
2016-01-09 15:47:36 +00:00
|
|
|
setUnlocalizedName(Constants.Mod.MODID + ".sentientBow");
|
2016-01-09 02:05:13 +00:00
|
|
|
this.setCreativeTab(BloodMagic.tabBloodMagic);
|
|
|
|
}
|
|
|
|
|
2016-01-09 03:20:31 +00:00
|
|
|
@Override
|
|
|
|
public void onPlayerStoppedUsing(ItemStack stack, World worldIn, EntityPlayer playerIn, int timeLeft)
|
|
|
|
{
|
|
|
|
boolean flag = playerIn.capabilities.isCreativeMode || EnchantmentHelper.getEnchantmentLevel(Enchantment.infinity.effectId, stack) > 0;
|
|
|
|
|
|
|
|
if (flag || playerIn.inventory.hasItem(Items.arrow))
|
|
|
|
{
|
|
|
|
int i = this.getMaxItemUseDuration(stack) - timeLeft;
|
|
|
|
net.minecraftforge.event.entity.player.ArrowLooseEvent event = new net.minecraftforge.event.entity.player.ArrowLooseEvent(playerIn, stack, i);
|
|
|
|
if (net.minecraftforge.common.MinecraftForge.EVENT_BUS.post(event))
|
|
|
|
return;
|
|
|
|
i = event.charge;
|
|
|
|
float f = (float) i / 20.0F;
|
|
|
|
f = (f * f + f * 2.0F) / 3.0F;
|
|
|
|
|
|
|
|
if ((double) f < 0.1D)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (f > 1.0F)
|
|
|
|
{
|
|
|
|
f = 1.0F;
|
|
|
|
}
|
|
|
|
|
2016-01-09 15:47:36 +00:00
|
|
|
EntityArrow entityarrow = new EntitySentientArrow(worldIn, playerIn, f * 2.0F, 0);
|
2016-01-09 03:20:31 +00:00
|
|
|
|
|
|
|
if (f == 1.0F)
|
|
|
|
{
|
|
|
|
entityarrow.setIsCritical(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
int j = EnchantmentHelper.getEnchantmentLevel(Enchantment.power.effectId, stack);
|
|
|
|
|
|
|
|
if (j > 0)
|
|
|
|
{
|
|
|
|
entityarrow.setDamage(entityarrow.getDamage() + (double) j * 0.5D + 0.5D);
|
|
|
|
}
|
|
|
|
|
|
|
|
int k = EnchantmentHelper.getEnchantmentLevel(Enchantment.punch.effectId, stack);
|
|
|
|
|
|
|
|
if (k > 0)
|
|
|
|
{
|
|
|
|
entityarrow.setKnockbackStrength(k);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (EnchantmentHelper.getEnchantmentLevel(Enchantment.flame.effectId, stack) > 0)
|
|
|
|
{
|
|
|
|
entityarrow.setFire(100);
|
|
|
|
}
|
|
|
|
|
|
|
|
stack.damageItem(1, playerIn);
|
|
|
|
worldIn.playSoundAtEntity(playerIn, "random.bow", 1.0F, 1.0F / (itemRand.nextFloat() * 0.4F + 1.2F) + f * 0.5F);
|
|
|
|
|
|
|
|
if (flag)
|
|
|
|
{
|
|
|
|
entityarrow.canBePickedUp = 2;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
playerIn.inventory.consumeInventoryItem(Items.arrow);
|
|
|
|
}
|
|
|
|
|
|
|
|
playerIn.triggerAchievement(StatList.objectUseStats[Item.getIdFromItem(this)]);
|
|
|
|
|
|
|
|
if (!worldIn.isRemote)
|
|
|
|
{
|
|
|
|
worldIn.spawnEntityInWorld(entityarrow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-09 02:05:13 +00:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public ModelResourceLocation getModel(ItemStack stack, EntityPlayer player, int useRemaining)
|
|
|
|
{
|
|
|
|
if (player.getItemInUse() == null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
int i = stack.getMaxItemUseDuration() - player.getItemInUseCount();
|
|
|
|
|
|
|
|
if (i >= 18)
|
|
|
|
{
|
2016-01-09 15:47:36 +00:00
|
|
|
return new ModelResourceLocation("bloodmagic:ItemSentientBow_pulling_2", "inventory");
|
2016-01-09 02:05:13 +00:00
|
|
|
} else if (i > 13)
|
|
|
|
{
|
2016-01-09 15:47:36 +00:00
|
|
|
return new ModelResourceLocation("bloodmagic:ItemSentientBow_pulling_1", "inventory");
|
2016-01-09 02:05:13 +00:00
|
|
|
} else if (i > 0)
|
|
|
|
{
|
2016-01-09 15:47:36 +00:00
|
|
|
return new ModelResourceLocation("bloodmagic:ItemSentientBow_pulling_0", "inventory");
|
2016-01-09 02:05:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|