Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #loader contenttweaker
- import mods.contenttweaker.VanillaFactory;
- import mods.contenttweaker.ItemFood;
- print("ContentTweaker – Loading Kvikk Lunsj items.zs");
- #mods.contenttweaker.VanillaFactory.createItemFood("kvikk_lunsj_piece", 3);
- var kvikkLunsjPiece = VanillaFactory.createItemFood("kvikk_lunsj_piece");
- kvikkLunsjPiece.maxStackSize = 64;
- kvikkLunsjPiece.healAmount = 3;
- kvikkLunsjPiece.saturation = 0.6;
- kvikkLunsjPiece.register();
- var kvikkLunsj = VanillaFactory.createItemFood("kvikk_lunsj");
- kvikkLunsj.maxStackSize = 64;
- kvikkLunsj.healAmount = 6;
- kvikkLunsj.saturation = 10;
- kvikkLunsj.register();
- var kvikkLunsjSixPack = VanillaFactory.createItemFood("kvikk_lunsj_6_pack");
- kvikkLunsjSixPack.maxStackSize = 64;
- kvikkLunsjSixPack.healAmount = 20;
- kvikkLunsjSixPack.saturation = 20;
- kvikkLunsjSixPack.register();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement