Package appeng.core.features

Examples of appeng.core.features.WrappedDamageItemDefinition


    // very important block!
    blocks.blockMultiPart = addFeature( BlockCableBus.class );

    blocks.blockCraftingUnit = addFeature( BlockCraftingUnit.class );
    blocks.blockCraftingAccelerator = new WrappedDamageItemDefinition( blocks.blockCraftingUnit, 1 );
    blocks.blockCraftingMonitor = addFeature( BlockCraftingMonitor.class );
    blocks.blockCraftingStorage1k = addFeature( BlockCraftingStorage.class );
    blocks.blockCraftingStorage4k = new WrappedDamageItemDefinition( blocks.blockCraftingStorage1k, 1 );
    blocks.blockCraftingStorage16k = new WrappedDamageItemDefinition( blocks.blockCraftingStorage1k, 2 );
    blocks.blockCraftingStorage64k = new WrappedDamageItemDefinition( blocks.blockCraftingStorage1k, 3 );
    blocks.blockMolecularAssembler = addFeature( BlockMolecularAssembler.class );

    blocks.blockQuartzOre = addFeature( OreQuartz.class );
    blocks.blockQuartzOreCharged = addFeature( OreQuartzCharged.class );
    blocks.blockMatrixFrame = addFeature( BlockMatrixFrame.class );
View Full Code Here

TOP

Related Classes of appeng.core.features.WrappedDamageItemDefinition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.