2014-01-17 19:12:49 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common;
|
|
|
|
|
|
|
|
import net.minecraftforge.fluids.Fluid;
|
|
|
|
|
2014-01-17 21:05:38 +00:00
|
|
|
public class LifeEssence extends Fluid {
|
2014-01-17 19:12:49 +00:00
|
|
|
public LifeEssence(String fluidName)
|
|
|
|
{
|
|
|
|
super(fluidName);
|
|
|
|
//setUnlocalizedName("lifeEssence");
|
|
|
|
//setBlockID(id);
|
|
|
|
this.setDensity(2000);
|
|
|
|
this.setViscosity(2000);
|
|
|
|
//this.setFlowingIcon(flowingIcon)
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getColor()
|
|
|
|
{
|
|
|
|
return 0xEEEEEE;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getLocalizedName()
|
|
|
|
{
|
|
|
|
return "Life Essence";
|
|
|
|
}
|
|
|
|
}
|