Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. import java.util.List;
  2. import java.util.Map;
  3.  
  4. public class mod_Staff extends BaseMod
  5. {
  6. public static dv staff = new dv(804).a(208);
  7. public static dv orb = new dv(810).a(209);
  8. public static dv magic = new dv(803).a(207);
  9. public void AddRecipes(el recipes)
  10. {
  11. recipes.a(new fn(staff, 1), new Object[] { " X ", " # ", " # ",
  12. Character.valueOf('X'), orb, Character.valueOf('#'), dv.B });
  13. recipes.a(new fn( orb, 1), new Object[] { "#X#", "#X#", "#X#",
  14. Character.valueOf('#'), magic, Character.valueOf('X'), nl.M });
  15.  
  16. }
  17. public int AddSmelting(int id) {
  18. if (id==10) return 803;
  19. else return -1;
  20. }
  21.  
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement