Skip to content

Instantly share code, notes, and snippets.

@aidancbrady
Created February 29, 2020 22:07
Show Gist options
  • Save aidancbrady/5584282d188c6853fa2e9d55c3de6ec0 to your computer and use it in GitHub Desktop.
Save aidancbrady/5584282d188c6853fa2e9d55c3de6ec0 to your computer and use it in GitHub Desktop.
package mekanism.common.registries;
import mekanism.api.block.FactoryType;
import mekanism.common.MekanismLang;
import mekanism.common.config.MekanismConfig;
import mekanism.common.content.machines.Machine;
import mekanism.common.content.machines.Machine.MachineBuilder;
import mekanism.common.tile.TileEntityEnrichmentChamber;
public class MekanismMachines {
public static final Machine<TileEntityEnrichmentChamber> ENRICHMENT_CHAMBER = new MachineBuilder<TileEntityEnrichmentChamber>(MekanismTileEntityTypes.ENRICHMENT_CHAMBER,
MekanismContainerTypes.ENRICHMENT_CHAMBER, FactoryType.ENRICHING, MekanismLang.DESCRIPTION_ENRICHMENT_CHAMBER, MekanismSounds.ENRICHMENT_CHAMBER)
.withConfig(MekanismConfig.usage.enrichmentChamber, MekanismConfig.storage.enrichmentChamber)
.withFactoryHierarchy(MekanismBlocks.BASIC_ENRICHING_FACTORY, MekanismBlocks.ADVANCED_ENRICHING_FACTORY, MekanismBlocks.ELITE_ENRICHING_FACTORY, MekanismBlocks.ULTIMATE_ENRICHING_FACTORY)
.build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment