Advertisement
circuitdh

Clorine.java

Jun 30th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 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 Clorine extends Fluid
  7. {
  8.     public static final String name = "Clorine";
  9.     public static final clorine instance = new Clorine();
  10.  
  11.     public Clorine()
  12.     {
  13.         super(name, new ResourceLocation("bleachcraft:blocks/clorine_still"), new ResourceLocation("bleachcraft:blocks/clorine_flow"));
  14.         density = -1000;
  15.         isGaseous = true;
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement