JustPaste.it
public ItemStack thorsAxe(){

ItemStack item = new ItemStack(Material.IRON_AXE);
item.addUnsafeEnchantment(Enchantment.LOYALTY, 1);
ItemMeta meta = item.getItemMeta();
ArrayList<String> lore = new ArrayList<String>();
meta.setUnbreakable(true);
meta.setDisplayName(ChatColor.AQUA + "" + ChatColor.BOLD + "Thor's Axe");
lore.add("");
lore.add(ChatColor.GOLD + "Lightning Strike" + ChatColor.YELLOW + " " + ChatColor.BOLD + "RIGHT CLICK");
lore.add(ChatColor.GRAY + "Summon a " + ChatColor.GREEN + "LIGHTNING " + ChatColor.GRAY + "that strikes whatever");
lore.add(ChatColor.GRAY + "block you're looking at");
meta.addItemFlags(ItemFlag.HIDE_ENCHANTS);
item.setItemMeta(meta);

return item;
}