This repository has been archived by the owner on May 25, 2024. It is now read-only.
forked from GlodBlock/GoodGenerator
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change the des text and setup the new machine
- Loading branch information
Showing
4 changed files
with
67 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
src/main/java/GoodGenerator/Blocks/TEs/MegaPlasmaTurbine.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
package GoodGenerator.Blocks.TEs; | ||
|
||
|
||
import com.github.bartimaeusnek.crossmod.tectech.TecTechEnabledMulti; | ||
import com.github.technus.tectech.mechanics.constructable.IConstructable; | ||
import com.github.technus.tectech.thing.metaTileEntity.hatch.GT_MetaTileEntity_Hatch_EnergyMulti; | ||
import com.github.technus.tectech.thing.metaTileEntity.hatch.GT_MetaTileEntity_Hatch_EnergyTunnel; | ||
import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch_Energy; | ||
import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_MultiBlockBase; | ||
import gregtech.common.tileentities.machines.multi.GT_MetaTileEntity_LargeTurbine_Plasma; | ||
import net.minecraft.item.ItemStack; | ||
|
||
import java.util.List; | ||
|
||
public class MegaPlasmaTurbine extends GT_MetaTileEntity_LargeTurbine_Plasma implements TecTechEnabledMulti, IConstructable { | ||
|
||
public MegaPlasmaTurbine(String name){super(name);} | ||
|
||
public MegaPlasmaTurbine(int id, String name, String nameRegional){ | ||
super(id,name,nameRegional); | ||
} | ||
|
||
@Override | ||
public void construct(ItemStack itemStack, boolean b) { | ||
|
||
} | ||
|
||
@Override | ||
public String[] getStructureDescription(ItemStack itemStack) { | ||
return new String[0]; | ||
} | ||
|
||
@Override | ||
public List<GT_MetaTileEntity_Hatch_Energy> getVanillaEnergyHatches() { | ||
return this.mEnergyHatches; | ||
} | ||
|
||
@Override | ||
public List<GT_MetaTileEntity_Hatch_EnergyTunnel> getTecTechEnergyTunnels() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public List<GT_MetaTileEntity_Hatch_EnergyMulti> getTecTechEnergyMultis() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public long[] getCurrentInfoData() { | ||
return new long[0]; | ||
} | ||
|
||
@Override | ||
public String[] getInfoDataArray(GT_MetaTileEntity_MultiBlockBase multiBlockBase) { | ||
return new String[0]; | ||
} | ||
|
||
@Override | ||
public boolean isMachineBlockUpdateRecursive() { | ||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters