本文整理匯總了Java中net.minecraft.init.Blocks.emerald_block方法的典型用法代碼示例。如果您正苦於以下問題:Java Blocks.emerald_block方法的具體用法?Java Blocks.emerald_block怎麽用?Java Blocks.emerald_block使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類net.minecraft.init.Blocks
的用法示例。
在下文中一共展示了Blocks.emerald_block方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: registerUpgrade
import net.minecraft.init.Blocks; //導入方法依賴的package包/類
private void registerUpgrade()
{
ItemStack[] recipe = new ItemStack[9];
// Top row
recipe[0] = new ItemStack(Blocks.quartz_block); // 0 1 2
recipe[1] = new ItemStack(Items.emerald); // - - -
//recipe[2] = null; // - - -
// Middle row
recipe[3] = new ItemStack(Blocks.emerald_block); // - - -
//recipe[4] = null; // 3 4 5
recipe[5] = new ItemStack(Items.emerald); // - - -
// Bottom row
recipe[6] = new ItemStack(this); // - - -
recipe[7] = new ItemStack(Blocks.emerald_block); // - - -
recipe[8] = new ItemStack(Blocks.quartz_block); // 6 7 8
GameRegistry.addRecipe(new Recipe_Weapon(recipe, new ItemStack(this), 1)); // Emerald Muzzle
}
示例2: canHarvestBlock
import net.minecraft.init.Blocks; //導入方法依賴的package包/類
/**
* Check whether this Item can harvest the given Block
*/
public boolean canHarvestBlock(Block blockIn)
{
return blockIn == Blocks.obsidian ? this.toolMaterial.getHarvestLevel() == 3 : (blockIn != Blocks.diamond_block && blockIn != Blocks.diamond_ore ? (blockIn != Blocks.emerald_ore && blockIn != Blocks.emerald_block ? (blockIn != Blocks.gold_block && blockIn != Blocks.gold_ore ? (blockIn != Blocks.iron_block && blockIn != Blocks.iron_ore ? (blockIn != Blocks.lapis_block && blockIn != Blocks.lapis_ore ? (blockIn != Blocks.redstone_ore && blockIn != Blocks.lit_redstone_ore ? (blockIn.getMaterial() == Material.rock ? true : (blockIn.getMaterial() == Material.iron ? true : blockIn.getMaterial() == Material.anvil)) : this.toolMaterial.getHarvestLevel() >= 2) : this.toolMaterial.getHarvestLevel() >= 1) : this.toolMaterial.getHarvestLevel() >= 1) : this.toolMaterial.getHarvestLevel() >= 2) : this.toolMaterial.getHarvestLevel() >= 2) : this.toolMaterial.getHarvestLevel() >= 2);
}