Advertisement
Guest User

FluidDenseWater.class

a guest
Dec 11th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. package com.mystic.dimensionatlantis.blocks.fluids;
  2.  
  3. import net.minecraft.util.ResourceLocation;
  4. import net.minecraftforge.fluids.Fluid;
  5.  
  6. public class FluidDenseWater extends Fluid{
  7.  
  8. public static final String name = "dense_water";
  9. public static final FluidDenseWater instance = new FluidDenseWater();
  10.  
  11. public FluidDenseWater()
  12. {
  13. super(name, new ResourceLocation("ocean:blocks/dense_water_still"), new ResourceLocation("ocean:blocks/dense_water_flowing"), new ResourceLocation("ocean:blocks/dense_water_overlay"));
  14. this.color = 0x6400A6;
  15. this.density = 1500;
  16. this.temperature = 270;
  17. }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement