Advertisement
ChickenNuggster

Untitled

Mar 27th, 2013
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. @Init
  2. public void load(FMLInitializationEvent event)
  3. {
  4. proxy.registerBlocks();
  5.  
  6. proxy.registerEntityEggs();
  7.  
  8. proxy.registerTiles();
  9.  
  10. proxy.registerRenderThings();
  11.  
  12. proxy.addEntityName();
  13.  
  14. proxy.addNames();
  15.  
  16. proxy.addRecipes();
  17.  
  18. Manual.setNewItemPage("Bottled Blood", "A bottle filled with the blood of a vampire. When drank it will apply special effects to the player.");
  19. Manual.setNewItemPage("Zirconia Pickaxe", "A pickaxe that is made from Zirconia ingots. " +"\r\n" + "It is stronger than iron but weaker than diamond.");
  20.  
  21. GameRegistry.registerWorldGenerator(new StructureGenerator());
  22. NetworkRegistry.instance().registerGuiHandler(this, guihandler);
  23.  
  24. EntityRegistry.registerModEntity(EntityVampire.class, "Vampire", 1, this, 80, 1, true);
  25. EntityRegistry.registerModEntity(EntityYeti.class, "Yeti", 2, this, 80, 1, true);
  26. EntityRegistry.registerModEntity(EntityGhost.class, "Ghost", 3, this, 80, 2, true);
  27. EntityRegistry.registerModEntity(EntityGhost_Pig.class, "Ghost Pig", 4, this, 80, 5, true);
  28. EntityRegistry.registerModEntity(EntityGhost_Sheep.class, "Ghost Sheep", 5, this, 80, 5, true);
  29. EntityRegistry.registerModEntity(EntityGhost_Chicken.class, "Ghost Chicken", 6, this, 80, 5, true);
  30. EntityRegistry.registerModEntity(EntityGhost_Cow.class, "Ghost Cow", 7, this, 80, 5, true);
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement