當前位置: 首頁>>代碼示例>>Java>>正文


Java Blocks.WEB屬性代碼示例

本文整理匯總了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();
}
 
開發者ID:Um-Mitternacht,項目名稱:Bewitchment,代碼行數:7,代碼來源:ModSpinningThreadRecipes.java

示例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;
	}
}
 
開發者ID:the-realest-stu,項目名稱:Adventurers-Toolbox,代碼行數:12,代碼來源:ItemATDagger.java

示例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;
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:13,代碼來源:ItemShears.java

示例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;
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:14,代碼來源:ItemSword.java

示例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;
}
 
開發者ID:F1r3w477,項目名稱:CustomWorldGen,代碼行數:9,代碼來源:ItemShears.java

示例6: canHarvestBlock

@Override
public boolean canHarvestBlock(IBlockState blockIn) {
	return blockIn.getBlock() == Blocks.WEB;
}
 
開發者ID:the-realest-stu,項目名稱:Adventurers-Toolbox,代碼行數:4,代碼來源:ItemATDagger.java

示例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;
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:8,代碼來源:ItemShears.java

示例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;
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:5,代碼來源:ItemShears.java

示例9: canHarvestBlock

/**
 * Check whether this Item can harvest the given Block
 */
public boolean canHarvestBlock(IBlockState blockIn)
{
    return blockIn.getBlock() == Blocks.WEB;
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:7,代碼來源:ItemSword.java


注:本文中的net.minecraft.init.Blocks.WEB屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。