Search in sources :

Example 1 with OpticalMicroscopeLens

use of minechem.item.OpticalMicroscopeLens in project Minechem by iopleke.

the class MinechemItemsRegistration method init.

public static void init() {
    element = new ElementItem();
    GameRegistry.registerItem(element, Reference.ID + "Element");
    molecule = new MoleculeItem();
    GameRegistry.registerItem(molecule, Reference.ID + "Molecule");
    lens = new OpticalMicroscopeLens();
    concaveLens = new ItemStack(lens, 1, 0);
    convexLens = new ItemStack(lens, 1, 1);
    microscopeLens = new ItemStack(lens, 1, 2);
    projectorLens = new ItemStack(lens, 1, 3);
    GameRegistry.registerItem(lens, Reference.ID + "OpticalMicroscopeLens");
    atomicManipulator = new ItemAtomicManipulator();
    GameRegistry.registerItem(atomicManipulator, Reference.ID + "AtomicManipulator");
    blueprint = new ItemBlueprint();
    GameRegistry.registerItem(blueprint, Reference.ID + "Blueprint");
    journal = new ChemistJournalItem();
    GameRegistry.registerItem(journal, Reference.ID + "Journal");
    polytool = new PolytoolItem();
    GameRegistry.registerItem(polytool, Reference.ID + "Polytool");
    emptyTube = new ItemStack(MinechemItemsRegistration.element, 1, 0);
}
Also used : ElementItem(minechem.item.element.ElementItem) ItemBlueprint(minechem.item.blueprint.ItemBlueprint) OpticalMicroscopeLens(minechem.item.OpticalMicroscopeLens) ItemAtomicManipulator(minechem.item.ItemAtomicManipulator) MoleculeItem(minechem.item.molecule.MoleculeItem) ChemistJournalItem(minechem.item.chemistjournal.ChemistJournalItem) PolytoolItem(minechem.item.polytool.PolytoolItem) ItemStack(net.minecraft.item.ItemStack)

Aggregations

ItemAtomicManipulator (minechem.item.ItemAtomicManipulator)1 OpticalMicroscopeLens (minechem.item.OpticalMicroscopeLens)1 ItemBlueprint (minechem.item.blueprint.ItemBlueprint)1 ChemistJournalItem (minechem.item.chemistjournal.ChemistJournalItem)1 ElementItem (minechem.item.element.ElementItem)1 MoleculeItem (minechem.item.molecule.MoleculeItem)1 PolytoolItem (minechem.item.polytool.PolytoolItem)1 ItemStack (net.minecraft.item.ItemStack)1