2012-12-17 21:21:53 +01:00
|
|
|
package com.pahimar.ee3.block;
|
|
|
|
|
2012-12-19 19:09:56 +01:00
|
|
|
import net.minecraft.block.BlockStationary;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
|
2012-12-17 21:21:53 +01:00
|
|
|
import com.pahimar.ee3.EquivalentExchange3;
|
|
|
|
import com.pahimar.ee3.lib.Strings;
|
2012-09-11 04:07:59 +02:00
|
|
|
|
2012-10-27 23:41:02 +02:00
|
|
|
/**
|
2013-03-08 19:40:59 +01:00
|
|
|
* Equivalent-Exchange-3
|
2012-10-27 23:41:02 +02:00
|
|
|
*
|
2013-03-08 19:40:59 +01:00
|
|
|
* BlockRedWaterStill
|
2012-10-27 23:41:02 +02:00
|
|
|
*
|
|
|
|
* @author pahimar
|
|
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
|
|
*
|
|
|
|
*/
|
2012-09-11 04:07:59 +02:00
|
|
|
public class BlockRedWaterStill extends BlockStationary {
|
|
|
|
|
2012-11-06 21:49:43 +01:00
|
|
|
protected BlockRedWaterStill(int id) {
|
2012-12-19 19:09:56 +01:00
|
|
|
|
2012-11-06 21:49:43 +01:00
|
|
|
super(id, Material.water);
|
2013-03-08 19:40:59 +01:00
|
|
|
blockHardness = 100F;
|
2012-09-11 04:07:59 +02:00
|
|
|
this.setLightOpacity(3);
|
2013-03-04 17:40:40 +01:00
|
|
|
this.setUnlocalizedName(Strings.RED_WATER_STILL_NAME);
|
2012-11-06 21:49:43 +01:00
|
|
|
this.setCreativeTab(EquivalentExchange3.tabsEE3);
|
|
|
|
this.disableStats();
|
2012-09-11 04:07:59 +02:00
|
|
|
}
|
|
|
|
}
|