aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCyclotron.java
blob: 8c32c035c12496a803d5a6d7598cf27bb3784dc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package gtPlusPlus.xmod.gregtech.registration.gregtech;

import static gtPlusPlus.xmod.gregtech.registration.gregtech.MetaTileEntityIDs.COMET_Cyclotron;

import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.production.GregtechMetaTileEntity_Cyclotron;

public class GregtechCyclotron {

    public static void run() {
        Logger.INFO("Gregtech5u Content | Registering COMET Cyclotron.");
        run1();
    }

    private static void run1() {
        GregtechItemList.COMET_Cyclotron.set(
            new GregtechMetaTileEntity_Cyclotron(
                COMET_Cyclotron.ID,
                "cyclotron.tier.single",
                "COMET - Compact Cyclotron",
                6).getStackForm(1L));
    }
}