Skip to content

Instantly share code, notes, and snippets.

@TheNimbleNinja
Created March 11, 2018 19:26
Show Gist options
  • Save TheNimbleNinja/a85a07266050b8c15d2d7984bce7d80a to your computer and use it in GitHub Desktop.
Save TheNimbleNinja/a85a07266050b8c15d2d7984bce7d80a 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("ultimatepickaxe");
ultimatepickaxe.maxStackSize = 1;
ultimatepickaxe.contenttweaker.itemName = "ultimate pickaxe";
ultimatepickaxe.register();
var ultimatesword = VanillaFactory.createItem("ultimatesword");
ultimatesword.maxStackSize = 1;
ultimatesword.contenttweaker.itemName = "ultimate sword";
ultimatesword.register();
var ultimateaxe = VanillaFactory.createItem("ultimateaxe");
ultimateaxe.maxStackSize = 1;
ultimateaxe.contenttweaker.itemName = "ultimate axe";
ultimateaxe.register();
var ultimatehelm = VanillaFactory.createItem("ultimatehelm");
ultimatehelm.maxStackSize = 1;
ultimatehelm.contenttweaker.itemName = "ultimate helm";
ultimatehelm.register();
var ultimateleggings = VanillaFactory.createItem("ultimateleggings");
ultimateleggings.maxStackSize = 1;
ultimateleggings.contenttweaker.itemName = "ultimate leggings";
ultimateleggings.register();
var ultimatechestplate = VanillaFactory.createItem("ultimatechestplate");
ultimatechestplate.maxStackSize = 1;
ultimatechestplate.contenttweaker.itemName = "ultimate chestplate";
ultimatechestplate.register();
var ultimateboots = VanillaFactory.createItem("ultimateboots");
ultimateboots.maxStackSize = 1;
ultimateboots.contenttweaker.itemName = "ultimate boots";
ultimateboots.register();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment