Advertisement
DeleteMetaInf

script2

Aug 3rd, 2022
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. #loader contenttweaker
  2. import mods.contenttweaker.VanillaFactory;
  3. import mods.contenttweaker.ItemFood;
  4. print("ContentTweaker – Loading Kvikk Lunsj items.zs");
  5.  
  6. #mods.contenttweaker.VanillaFactory.createItemFood("kvikk_lunsj_piece", 3);
  7.  
  8. var kvikkLunsjPiece = VanillaFactory.createItemFood("kvikk_lunsj_piece");
  9. kvikkLunsjPiece.maxStackSize = 64;
  10. kvikkLunsjPiece.healAmount = 3;
  11. kvikkLunsjPiece.saturation = 0.6;
  12. kvikkLunsjPiece.register();
  13.  
  14. var kvikkLunsj = VanillaFactory.createItemFood("kvikk_lunsj");
  15. kvikkLunsj.maxStackSize = 64;
  16. kvikkLunsj.healAmount = 6;
  17. kvikkLunsj.saturation = 10;
  18. kvikkLunsj.register();
  19.  
  20. var kvikkLunsjSixPack = VanillaFactory.createItemFood("kvikk_lunsj_6_pack");
  21. kvikkLunsjSixPack.maxStackSize = 64;
  22. kvikkLunsjSixPack.healAmount = 20;
  23. kvikkLunsjSixPack.saturation = 20;
  24. kvikkLunsjSixPack.register();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement