blob: cc4c260a7a45429c262acd71e9f8a35ffdd6d453 (
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
|
package common.itemBlocks;
import java.util.List;
import common.blocks.Block_TFFTStorageFieldBlockT4;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
public class IB_TFFTStorageFieldBlockT4 extends ItemBlock {
public IB_TFFTStorageFieldBlockT4(Block block) {
super(block);
}
@SuppressWarnings({ "rawtypes", "unchecked" })
@Override
public void addInformation(ItemStack stack, EntityPlayer player, List lines, boolean advancedTooltips) {
lines.add("This is not a fluid tank");
lines.add("Capacity: " + Block_TFFTStorageFieldBlockT4.getCapacity() + "L");
lines.add("Power Draw: 4EU/t");
}
}
|