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


Java Blocks.POTATOES屬性代碼示例

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


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

示例1: readStructureFromNBT

protected void readStructureFromNBT(NBTTagCompound tagCompound, TemplateManager p_143011_2_)
{
    super.readStructureFromNBT(tagCompound, p_143011_2_);
    this.cropTypeA = Block.getBlockById(tagCompound.getInteger("CA"));
    this.cropTypeB = Block.getBlockById(tagCompound.getInteger("CB"));
    this.cropTypeC = Block.getBlockById(tagCompound.getInteger("CC"));
    this.cropTypeD = Block.getBlockById(tagCompound.getInteger("CD"));

    if (!(this.cropTypeA instanceof BlockCrops))
    {
        this.cropTypeA = Blocks.WHEAT;
    }

    if (!(this.cropTypeB instanceof BlockCrops))
    {
        this.cropTypeB = Blocks.CARROTS;
    }

    if (!(this.cropTypeC instanceof BlockCrops))
    {
        this.cropTypeC = Blocks.POTATOES;
    }

    if (!(this.cropTypeD instanceof BlockCrops))
    {
        this.cropTypeD = Blocks.BEETROOTS;
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:28,代碼來源:StructureVillagePieces.java

示例2: getRandomCropType

private Block getRandomCropType(Random rand)
{
    switch (rand.nextInt(10))
    {
        case 0:
        case 1:
            return Blocks.CARROTS;

        case 2:
        case 3:
            return Blocks.POTATOES;

        case 4:
            return Blocks.BEETROOTS;

        default:
            return Blocks.WHEAT;
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:19,代碼來源:StructureVillagePieces.java

示例3: readStructureFromNBT

/**
 * (abstract) Helper method to read subclass data from NBT
 */
protected void readStructureFromNBT(NBTTagCompound tagCompound)
{
    super.readStructureFromNBT(tagCompound);
    this.cropTypeA = Block.getBlockById(tagCompound.getInteger("CA"));
    this.cropTypeB = Block.getBlockById(tagCompound.getInteger("CB"));
    this.cropTypeC = Block.getBlockById(tagCompound.getInteger("CC"));
    this.cropTypeD = Block.getBlockById(tagCompound.getInteger("CD"));

    if (!(this.cropTypeA instanceof BlockCrops))
    {
        this.cropTypeA = Blocks.WHEAT;
    }

    if (!(this.cropTypeB instanceof BlockCrops))
    {
        this.cropTypeB = Blocks.CARROTS;
    }

    if (!(this.cropTypeC instanceof BlockCrops))
    {
        this.cropTypeC = Blocks.POTATOES;
    }

    if (!(this.cropTypeD instanceof BlockCrops))
    {
        this.cropTypeD = Blocks.BEETROOTS;
    }
}
 
開發者ID:F1r3w477,項目名稱:CustomWorldGen,代碼行數:31,代碼來源:StructureVillagePieces.java

示例4: getRandomCropType

private Block getRandomCropType(Random rand)
{
    switch (rand.nextInt(10))
    {
        case 0:
        case 1:
            return Blocks.CARROTS;
        case 2:
        case 3:
            return Blocks.POTATOES;
        case 4:
            return Blocks.BEETROOTS;
        default:
            return Blocks.WHEAT;
    }
}
 
開發者ID:F1r3w477,項目名稱:CustomWorldGen,代碼行數:16,代碼來源:StructureVillagePieces.java

示例5: getPlantType

@Override
public net.minecraftforge.common.EnumPlantType getPlantType(net.minecraft.world.IBlockAccess world, BlockPos pos)
{
    if (this == Blocks.WHEAT)          return net.minecraftforge.common.EnumPlantType.Crop;
    if (this == Blocks.CARROTS)        return net.minecraftforge.common.EnumPlantType.Crop;
    if (this == Blocks.POTATOES)       return net.minecraftforge.common.EnumPlantType.Crop;
    if (this == Blocks.MELON_STEM)     return net.minecraftforge.common.EnumPlantType.Crop;
    if (this == Blocks.PUMPKIN_STEM)   return net.minecraftforge.common.EnumPlantType.Crop;
    if (this == Blocks.DEADBUSH)       return net.minecraftforge.common.EnumPlantType.Desert;
    if (this == Blocks.WATERLILY)      return net.minecraftforge.common.EnumPlantType.Water;
    if (this == Blocks.RED_MUSHROOM)   return net.minecraftforge.common.EnumPlantType.Cave;
    if (this == Blocks.BROWN_MUSHROOM) return net.minecraftforge.common.EnumPlantType.Cave;
    if (this == Blocks.NETHER_WART)    return net.minecraftforge.common.EnumPlantType.Nether;
    if (this == Blocks.SAPLING)        return net.minecraftforge.common.EnumPlantType.Plains;
    if (this == Blocks.TALLGRASS)      return net.minecraftforge.common.EnumPlantType.Plains;
    if (this == Blocks.DOUBLE_PLANT)   return net.minecraftforge.common.EnumPlantType.Plains;
    if (this == Blocks.RED_FLOWER)     return net.minecraftforge.common.EnumPlantType.Plains;
    if (this == Blocks.YELLOW_FLOWER)  return net.minecraftforge.common.EnumPlantType.Plains;
    return net.minecraftforge.common.EnumPlantType.Plains;
}
 
開發者ID:F1r3w477,項目名稱:CustomWorldGen,代碼行數:20,代碼來源:BlockBush.java

示例6: isAssociatedBlock

@Override
public boolean isAssociatedBlock(Block other)
{
	return super.isAssociatedBlock(other) || other == Blocks.WHEAT || other == Blocks.CARROTS || other == Blocks.POTATOES || other == Blocks.BEETROOTS || other instanceof net.minecraft.block.BlockCrops;
}
 
開發者ID:V0idWa1k3r,項目名稱:ExPetrum,代碼行數:5,代碼來源:BlockCrop.java


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