Setting item properties
Setting specific properties to items, such as its display name, lore, etc.
Chain creation
ItemStack item = new FluidItem(Material.DIAMOND_SWORD).setName("Ruby Sword")
.setLore("&6Made from the", "&6finest of rubies").setModel(1).build();Properties
item.setName(DISPLAY NAME)item.setLore(LORE...)item.setLore(INDEX, LORE)item.setLore(INDEX[], LORE[])item.addLore(LORE...)item.addLore(ALLOW DUPLICATES, LORE...)item.setModel(ID)Last updated