Java Code Examples for net.minecraft.init.Items#LEATHER_BOOTS

The following examples show how to use net.minecraft.init.Items#LEATHER_BOOTS . 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 File: ShopkeeperTradesForWind.java    From ToroQuest with GNU General Public License v3.0 5 votes vote down vote up
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 File: ShopkeeperTradesForWater.java    From ToroQuest with GNU General Public License v3.0 5 votes vote down vote up
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 File: ShopkeeperTradesForWind.java    From ToroQuest with GNU General Public License v3.0 4 votes vote down vote up
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 File: ShopkeeperTradesForWater.java    From ToroQuest with GNU General Public License v3.0 4 votes vote down vote up
private static ItemStack level1Boots() {
	ItemStack stack = new ItemStack(Items.LEATHER_BOOTS);
	stack.setStackDisplayName("Delphin Boots");
	stack.addEnchantment(Enchantment.REGISTRY.getObjectById(8), 1);
	return stack;
}