Guest User

Untitled

a guest
Mar 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. #loader contenttweaker
  2. //#var
  3. import mods.contenttweaker.VanillaFactory;
  4. import mods.contenttweaker.Item;
  5.  
  6.  
  7. //#items
  8. var ultimatepickaxe = VanillaFactory.createItem("ultimate_pickaxe");
  9. ultimatepickaxe.maxStackSize = 1;
  10. ultimatepickaxe.register();
  11.  
  12. var ultimatesword = VanillaFactory.createItem("ultimate_sword");
  13. ultimatesword.maxStackSize = 1;
  14. ultimatesword.register();
  15.  
  16. var ultimateaxe = VanillaFactory.createItem("ultimate_axe");
  17. ultimateaxe.maxStackSize = 1;
  18. ultimateaxe.register();
  19.  
  20. var ultimatehelm = VanillaFactory.createItem("ultimate_helm");
  21. ultimatehelm.maxStackSize = 1;
  22. ultimatehelm.register();
  23.  
  24. var ultimateleggings = VanillaFactory.createItem("ultimate_leggings");
  25. ultimateleggings.maxStackSize = 1;
  26. ultimateleggings.register();
  27.  
  28. var ultimatechestplate = VanillaFactory.createItem("ultimate_chestplate");
  29. ultimatechestplate.maxStackSize = 1;
  30. ultimatechestplate.register();
  31.  
  32. var ultimateboots = VanillaFactory.createItem("ultimate_boots");
  33. ultimateboots.maxStackSize = 1;
  34. ultimateboots.register();
Add Comment
Please, Sign In to add comment