/* * This file ("TheMiscBlocks.java") is part of the Actually Additions Mod for Minecraft. * It is created and owned by Ellpeck and distributed * under the Actually Additions License to be found at * http://ellpeck.de/actaddlicense/ * View the source code at https://github.com/Ellpeck/ActuallyAdditions * * © 2016 Ellpeck */ package de.ellpeck.actuallyadditions.mod.blocks.metalists; import net.minecraft.item.EnumRarity; public enum TheMiscBlocks{ QUARTZ_PILLAR("BlackQuartzPillar", EnumRarity.RARE), QUARTZ_CHISELED("BlackQuartzChiseled", EnumRarity.RARE), QUARTZ("BlackQuartz", EnumRarity.RARE), ORE_QUARTZ("OreBlackQuartz", EnumRarity.EPIC), WOOD_CASING("WoodCasing", EnumRarity.COMMON), CHARCOAL_BLOCK("Charcoal", EnumRarity.COMMON), ENDERPEARL_BLOCK("Enderpearl", EnumRarity.RARE), LAVA_FACTORY_CASE("LavaFactoryCase", EnumRarity.UNCOMMON), ENDER_CASING("EnderCasing", EnumRarity.EPIC), IRON_CASING("IronCasing", EnumRarity.RARE); public final String name; public final EnumRarity rarity; TheMiscBlocks(String name, EnumRarity rarity){ this.name = name; this.rarity = rarity; } }