Skip to content

Instantly share code, notes, and snippets.

@TheNimbleNinja
Created March 11, 2018 23:15
Show Gist options
  • Save TheNimbleNinja/20dc05740a35f3affb3d118069649a11 to your computer and use it in GitHub Desktop.
Save TheNimbleNinja/20dc05740a35f3affb3d118069649a11 to your computer and use it in GitHub Desktop.
#loader contenttweaker
//#var
import mods.contenttweaker.VanillaFactory;
import mods.contenttweaker.Item;
//#items
var ultimatepickaxe = VanillaFactory.createItem("ultimate_pickaxe");
ultimatepickaxe.maxStackSize = 1;
ultimatepickaxe.register();
var ultimatesword = VanillaFactory.createItem("ultimate_sword");
ultimatesword.maxStackSize = 1;
ultimatesword.register();
var ultimateaxe = VanillaFactory.createItem("ultimate_axe");
ultimateaxe.maxStackSize = 1;
ultimateaxe.register();
var ultimatehelm = VanillaFactory.createItem("ultimate_helm");
ultimatehelm.maxStackSize = 1;
ultimatehelm.register();
var ultimateleggings = VanillaFactory.createItem("ultimate_leggings");
ultimateleggings.maxStackSize = 1;
ultimateleggings.register();
var ultimatechestplate = VanillaFactory.createItem("ultimate_chestplate");
ultimatechestplate.maxStackSize = 1;
ultimatechestplate.register();
var ultimateboots = VanillaFactory.createItem("ultimate_boots");
ultimateboots.maxStackSize = 1;
ultimateboots.register();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment