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


Java Blocks.deadbush方法代碼示例

本文整理匯總了Java中net.minecraft.init.Blocks.deadbush方法的典型用法代碼示例。如果您正苦於以下問題:Java Blocks.deadbush方法的具體用法?Java Blocks.deadbush怎麽用?Java Blocks.deadbush使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.minecraft.init.Blocks的用法示例。


在下文中一共展示了Blocks.deadbush方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: harvestEvent

import net.minecraft.init.Blocks; //導入方法依賴的package包/類
@SubscribeEvent
public void harvestEvent(BlockEvent.HarvestDropsEvent event) {
	if (EtFuturum.enableSilkTouchingMushrooms && event.isSilkTouching)
		if (event.block == Blocks.brown_mushroom_block) {
			event.drops.clear();
			event.drops.add(new ItemStack(ModBlocks.brown_mushroom_block));
		} else if (event.block == Blocks.red_mushroom_block) {
			event.drops.clear();
			event.drops.add(new ItemStack(ModBlocks.red_mushroom_block));
		}

	if (EtFuturum.enableSticksFromDeadBushes)
		if (event.block == Blocks.deadbush) {
			boolean isShears = event.harvester != null && event.harvester.getCurrentEquippedItem() != null && event.harvester.getCurrentEquippedItem().getItem() instanceof ItemShears;
			if (event.harvester == null || event.harvester.getCurrentEquippedItem() == null || !isShears)
				for (int i = 0; i < event.world.rand.nextInt(3); i++)
					event.drops.add(new ItemStack(Items.stick));
		}

	if (EtFuturum.enableShearableCobwebs)
		if (event.block == Blocks.web && event.harvester != null) {
			ItemStack stack = event.harvester.getCurrentEquippedItem();
			if (stack != null && stack.getItem() instanceof ItemShears) {
				event.drops.clear();
				event.drops.add(new ItemStack(Blocks.web));
			}
		}
}
 
開發者ID:jm-organization,項目名稱:connor41-etfuturum2,代碼行數:29,代碼來源:ServerEventHandler.java

示例2: canNotContain

import net.minecraft.init.Blocks; //導入方法依賴的package包/類
private boolean canNotContain(Block blockIn, int meta)
{
    return blockIn != Blocks.yellow_flower && blockIn != Blocks.red_flower && blockIn != Blocks.cactus && blockIn != Blocks.brown_mushroom && blockIn != Blocks.red_mushroom && blockIn != Blocks.sapling && blockIn != Blocks.deadbush ? blockIn == Blocks.tallgrass && meta == BlockTallGrass.EnumType.FERN.getMeta() : true;
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:5,代碼來源:BlockFlowerPot.java

示例3: createNewTileEntity

import net.minecraft.init.Blocks; //導入方法依賴的package包/類
/**
 * Returns a new instance of a block's tile entity class. Called on placing the block.
 */
public TileEntity createNewTileEntity(World worldIn, int meta)
{
    Block block = null;
    int i = 0;

    switch (meta)
    {
        case 1:
            block = Blocks.red_flower;
            i = BlockFlower.EnumFlowerType.POPPY.getMeta();
            break;

        case 2:
            block = Blocks.yellow_flower;
            break;

        case 3:
            block = Blocks.sapling;
            i = BlockPlanks.EnumType.OAK.getMetadata();
            break;

        case 4:
            block = Blocks.sapling;
            i = BlockPlanks.EnumType.SPRUCE.getMetadata();
            break;

        case 5:
            block = Blocks.sapling;
            i = BlockPlanks.EnumType.BIRCH.getMetadata();
            break;

        case 6:
            block = Blocks.sapling;
            i = BlockPlanks.EnumType.JUNGLE.getMetadata();
            break;

        case 7:
            block = Blocks.red_mushroom;
            break;

        case 8:
            block = Blocks.brown_mushroom;
            break;

        case 9:
            block = Blocks.cactus;
            break;

        case 10:
            block = Blocks.deadbush;
            break;

        case 11:
            block = Blocks.tallgrass;
            i = BlockTallGrass.EnumType.FERN.getMeta();
            break;

        case 12:
            block = Blocks.sapling;
            i = BlockPlanks.EnumType.ACACIA.getMetadata();
            break;

        case 13:
            block = Blocks.sapling;
            i = BlockPlanks.EnumType.DARK_OAK.getMetadata();
    }

    return new TileEntityFlowerPot(Item.getItemFromBlock(block), i);
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:73,代碼來源:BlockFlowerPot.java


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