本文整理匯總了Java中net.minecraft.init.Blocks.WEB屬性的典型用法代碼示例。如果您正苦於以下問題:Java Blocks.WEB屬性的具體用法?Java Blocks.WEB怎麽用?Java Blocks.WEB使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類net.minecraft.init.Blocks
的用法示例。
在下文中一共展示了Blocks.WEB屬性的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: init
public static void init() {
Ingredient string = Ingredient.fromItem(Items.STRING);
web = new SpinningThreadRecipe(LibMod.MOD_ID, "spider_web", new ItemStack(Blocks.WEB), string, string, string);
// soulstring = new SpinningThreadRecipe(LibMod.MOD_ID, "soulstring", new ItemStack(ModItems.soulstring), string, string, Ingredient.fromStacks(new ItemStack(ModItems.misc, 1, 5)), Ingredient.fromStacks(new ItemStack(ModItems.flowers, 1, 1)));
registerAll();
}
示例2: getDestroySpeed
@Override
public float getDestroySpeed(ItemStack stack, IBlockState state) {
Block block = state.getBlock();
if (block == Blocks.WEB) {
return 15.0F;
} else {
Material material = state.getMaterial();
return material != Material.PLANTS && material != Material.VINE && material != Material.CORAL
&& material != Material.LEAVES && material != Material.GOURD ? 1.0F : 1.5F;
}
}
示例3: onBlockDestroyed
/**
* Called when a Block is destroyed using this Item. Return true to trigger the "Use Item" statistic.
*/
public boolean onBlockDestroyed(ItemStack stack, World worldIn, IBlockState state, BlockPos pos, EntityLivingBase entityLiving)
{
if (!worldIn.isRemote)
{
stack.damageItem(1, entityLiving);
}
Block block = state.getBlock();
return state.getMaterial() != Material.LEAVES && block != Blocks.WEB && block != Blocks.TALLGRASS && block != Blocks.VINE && block != Blocks.TRIPWIRE && block != Blocks.WOOL ? super.onBlockDestroyed(stack, worldIn, state, pos, entityLiving) : true;
}
示例4: getStrVsBlock
public float getStrVsBlock(ItemStack stack, IBlockState state)
{
Block block = state.getBlock();
if (block == Blocks.WEB)
{
return 15.0F;
}
else
{
Material material = state.getMaterial();
return material != Material.PLANTS && material != Material.VINE && material != Material.CORAL && material != Material.LEAVES && material != Material.GOURD ? 1.0F : 1.5F;
}
}
示例5: onBlockDestroyed
/**
* Called when a Block is destroyed using this Item. Return true to trigger the "Use Item" statistic.
*/
public boolean onBlockDestroyed(ItemStack stack, World worldIn, IBlockState state, BlockPos pos, EntityLivingBase entityLiving)
{
stack.damageItem(1, entityLiving);
Block block = state.getBlock();
return state.getMaterial() != Material.LEAVES && block != Blocks.WEB && block != Blocks.TALLGRASS && block != Blocks.VINE && block != Blocks.TRIPWIRE && block != Blocks.WOOL && !(state instanceof net.minecraftforge.common.IShearable) ? super.onBlockDestroyed(stack, worldIn, state, pos, entityLiving) : true;
}
示例6: canHarvestBlock
@Override
public boolean canHarvestBlock(IBlockState blockIn) {
return blockIn.getBlock() == Blocks.WEB;
}
示例7: canHarvestBlock
/**
* Check whether this Item can harvest the given Block
*/
public boolean canHarvestBlock(IBlockState blockIn)
{
Block block = blockIn.getBlock();
return block == Blocks.WEB || block == Blocks.REDSTONE_WIRE || block == Blocks.TRIPWIRE;
}
示例8: getStrVsBlock
public float getStrVsBlock(ItemStack stack, IBlockState state)
{
Block block = state.getBlock();
return block != Blocks.WEB && state.getMaterial() != Material.LEAVES ? (block == Blocks.WOOL ? 5.0F : super.getStrVsBlock(stack, state)) : 15.0F;
}
示例9: canHarvestBlock
/**
* Check whether this Item can harvest the given Block
*/
public boolean canHarvestBlock(IBlockState blockIn)
{
return blockIn.getBlock() == Blocks.WEB;
}