blob: 9d99db04d5064444c4dc36a35382bcc6f0c62884 (
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 itemBlocks;
import java.util.List;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
public class IB_TFFTMultiHatch extends ItemBlock {
public IB_TFFTMultiHatch(Block block) {
super(block);
}
@SuppressWarnings({ "rawtypes", "unchecked" })
@Override
public void addInformation(ItemStack stack, EntityPlayer player, List lines, boolean advancedTooltips) {
lines.add("Special hatch for the T.F.F.T");
lines.add("Allows for automated interaction with all stored fluids in a single place");
lines.add("Right-click with screwdriver to activate auto-output");
lines.add("Auto-output will try to output fluids into adjacent tanks at a rate of 1000L/s per fluid");
}
}
|