55 lines
1.8 KiB
Java
55 lines
1.8 KiB
Java
package net.minecraft.item;
|
|
|
|
import net.minecraft.advancements.CriteriaTriggers;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.entity.player.EntityPlayerMP;
|
|
import net.minecraft.init.Blocks;
|
|
import net.minecraft.init.SoundEvents;
|
|
import net.minecraft.util.EnumActionResult;
|
|
import net.minecraft.util.EnumFacing;
|
|
import net.minecraft.util.EnumHand;
|
|
import net.minecraft.util.SoundCategory;
|
|
import net.minecraft.util.math.BlockPos;
|
|
import net.minecraft.world.World;
|
|
|
|
public class ItemFlintAndSteel extends Item
|
|
{
|
|
public ItemFlintAndSteel()
|
|
{
|
|
this.maxStackSize = 1;
|
|
this.setMaxDamage(64);
|
|
this.setCreativeTab(CreativeTabs.TOOLS);
|
|
}
|
|
|
|
/**
|
|
* Called when a Block is right-clicked with this Item
|
|
*/
|
|
public EnumActionResult onItemUse(EntityPlayer player, World worldIn, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ)
|
|
{
|
|
pos = pos.offset(facing);
|
|
ItemStack itemstack = player.getHeldItem(hand);
|
|
|
|
if (!player.canPlayerEdit(pos, facing, itemstack))
|
|
{
|
|
return EnumActionResult.FAIL;
|
|
}
|
|
else
|
|
{
|
|
if (worldIn.isAirBlock(pos))
|
|
{
|
|
worldIn.playSound(player, pos, SoundEvents.ITEM_FLINTANDSTEEL_USE, SoundCategory.BLOCKS, 1.0F, itemRand.nextFloat() * 0.4F + 0.8F);
|
|
worldIn.setBlockState(pos, Blocks.FIRE.getDefaultState(), 11);
|
|
}
|
|
|
|
if (player instanceof EntityPlayerMP)
|
|
{
|
|
CriteriaTriggers.PLACED_BLOCK.trigger((EntityPlayerMP)player, pos, itemstack);
|
|
}
|
|
|
|
itemstack.damageItem(1, player);
|
|
return EnumActionResult.SUCCESS;
|
|
}
|
|
}
|
|
} |