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

The following examples show how to use net.minecraft.init.Items#STONE_SWORD . 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: EntityFallenKnight.java    From EnderZoo with Creative Commons Zero v1.0 Universal 6 votes vote down vote up
private ItemStack getSwordForLevel(int swordLevel) {
  ////have a better chance of not getting a wooden or stone sword
  if(swordLevel < 2) {
    swordLevel += rand.nextInt(isHardDifficulty() ? 3 : 2);
    swordLevel = Math.min(swordLevel, 2);
  }
  switch (swordLevel) {
  case 0:
    return new ItemStack(Items.WOODEN_SWORD);
  case 1:
    return new ItemStack(Items.STONE_SWORD);
  case 2:
    return new ItemStack(Items.IRON_SWORD);
  case 4:
    return new ItemStack(Items.DIAMOND_SWORD);
  }
  return new ItemStack(Items.IRON_SWORD);
}
 
Example 2
Source File: ItemWeapon.java    From minecraft-roguelike with GNU General Public License v3.0 5 votes vote down vote up
private static ItemStack getSwordByQuality(Quality quality){
	switch (quality) {
	case DIAMOND: return new ItemStack(Items.DIAMOND_SWORD);
	case GOLD: return new ItemStack(Items.GOLDEN_SWORD);
	case IRON: return new ItemStack(Items.IRON_SWORD);
	case STONE: return new ItemStack(Items.STONE_SWORD);
	default: return new ItemStack(Items.WOODEN_SWORD);
	}
}