Guest User

Untitled

a guest
Oct 16th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. package net.minecraft.src;
  2. import java.util.Random;
  3. public class mod_Netherglow extends BaseMod {
  4. public static final Block Netherglow = new BlockNetherglow(127, 0).setHardness(3.0F).setResistance(40.0F).setLightValue(1.0F).setBlockName("Netherglow");
  5.  
  6. public mod_Netherglow() {
  7. ModLoader.RegisterBlock(Netherglow);
  8. Netherglow.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/mods/blocks/Netherglow.png");
  9. ModLoader.AddName(Netherglow, "Nether Glow");
  10. ModLoader.AddRecipe(new ItemStack(Netherglow, 1), new Object[] {"X",('X'), Block.sand});
  11.  
  12. }
  13.  
  14. public String Version() {
  15. return "Alpha V1";
  16. }
  17. }
Add Comment
Please, Sign In to add comment