Java Code Examples for net.minecraft.init.Items#LEATHER_BOOTS
The following examples show how to use
net.minecraft.init.Items#LEATHER_BOOTS .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: ToroQuest File: ShopkeeperTradesForWind.java License: GNU General Public License v3.0 | 5 votes |
private static ItemStack level2Boots() { ItemStack stack = new ItemStack(Items.LEATHER_BOOTS); stack.setStackDisplayName("Wind Boots II"); stack.addEnchantment(Enchantment.REGISTRY.getObjectById(2), 4); stack.addEnchantment(Enchantment.REGISTRY.getObjectById(0), 1); return stack; }
Example 2
Source Project: ToroQuest File: ShopkeeperTradesForWater.java License: GNU General Public License v3.0 | 5 votes |
private static ItemStack level2Boots() { ItemStack stack = new ItemStack(Items.LEATHER_BOOTS); stack.setStackDisplayName("Brizo Boots"); stack.addEnchantment(Enchantment.REGISTRY.getObjectById(8), 4); stack.addEnchantment(Enchantment.REGISTRY.getObjectById(0), 1); return stack; }
Example 3
Source Project: ToroQuest File: ShopkeeperTradesForWind.java License: GNU General Public License v3.0 | 4 votes |
private static ItemStack level1Boots() { ItemStack stack = new ItemStack(Items.LEATHER_BOOTS); stack.setStackDisplayName("Wind Boots I"); stack.addEnchantment(Enchantment.REGISTRY.getObjectById(2), 1); return stack; }
Example 4
Source Project: ToroQuest File: ShopkeeperTradesForWater.java License: GNU General Public License v3.0 | 4 votes |
private static ItemStack level1Boots() { ItemStack stack = new ItemStack(Items.LEATHER_BOOTS); stack.setStackDisplayName("Delphin Boots"); stack.addEnchantment(Enchantment.REGISTRY.getObjectById(8), 1); return stack; }