Advertisement
circuitdh

Clorine.java

Jul 7th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1. package net.bleachcraft.Fluids;
  2.  
  3. import net.minecraft.util.ResourceLocation;
  4. import net.minecraftforge.fluids.Fluid;
  5.  
  6. public class Chlorine extends Fluid
  7. {
  8.     public static final String name = "Chlorine";
  9.     public static final Chlorine instance = new Chlorine();
  10.  
  11.     public Chlorine()
  12.     {
  13.         super(name, new ResourceLocation("bleachcraft:blocks/chlorine_still"), new ResourceLocation("bleachcraft:blocks/chlorine_flow"));
  14.         density = -1000;
  15.         isGaseous = true;
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement