Skip to content

Instantly share code, notes, and snippets.

@TheNimbleNinja
Created March 11, 2018 21:54
Show Gist options
  • Save TheNimbleNinja/1bc7ac256ded743150198502b4598ace to your computer and use it in GitHub Desktop.
Save TheNimbleNinja/1bc7ac256ded743150198502b4598ace to your computer and use it in GitHub Desktop.
//#var
#loader contenttweaker
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