aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/goodgenerator/blocks/tileEntity/base/LargeFusionComputerPP.java
blob: 9583d30198f27c26986153be99e07364c57e100c (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
25
26
package goodgenerator.blocks.tileEntity.base;

import gregtech.api.logic.ProcessingLogic;

public abstract class LargeFusionComputerPP extends LargeFusionComputer {

    public LargeFusionComputerPP(String name) {
        super(name);
    }

    public LargeFusionComputerPP(int id, String name, String nameRegional) {
        super(id, name, nameRegional);
    }

    @Override
    protected ProcessingLogic createProcessingLogic() {
        return super.createProcessingLogic().setOverclock(2, 2);
    }

    @Override
    protected long getSingleHatchPower() {
        // Multiply by 8 so that we can have the original input power per hatch
        return super.getSingleHatchPower() * 8;
    }

}