Guest User

Untitled

a guest
Jan 23rd, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. // Created by Bryanturo 10/16/11 //
  2.  
  3. package net.minecraft.src;
  4.  
  5. public class mod_Demoncraft extends BaseMod
  6. {
  7. public mod_Demoncraft()
  8. {
  9. ModLoader.RegisterBlock(Demonore);
  10. ModLoader.AddName(Demonore, "Demon ore");
  11. Demonore.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/Demonore_texture.png");
  12.  
  13. }
  14.  
  15. public static final Block Demonore;
  16.  
  17. static
  18. {
  19. Demonore = (new Block (199, 0, Material.rock)).setHardness(1.5F).setStepSound(Block.soundGlassFootstep).setLightValue(1.0F).setBlockName("Demonore");
  20. }
  21.  
  22. public String Version()
  23. {
  24. return "1.8.1";
  25. }
  26. }
Add Comment
Please, Sign In to add comment