Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2015
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public static final class FluidPure
  2. extends Fluid
  3. {
  4. public static final String name = "purifying_fluid";
  5. public static final FluidPure instance = new FluidPure();
  6.  
  7. private FluidPure()
  8. {
  9. super(new ResourceLocation("blocks/water_still"), new ResourceLocation("blocks/water_flow"));
  10. setLuminosity(5);
  11. setRarity(EnumRarity.RARE);
  12. }
  13.  
  14. public int getColor()
  15. {
  16. return 2013252778;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement