Adding Lore Text with Colors to Your Items

What is the lore of your item?

Do your items have a backstory that the user should know? Want to give them a bit of personality? Here's how to give any Minecraft item custom, colorful lore text underneath their names!


The Code

/give @p minecraft:diamond_shovel[minecraft:custom_name=[{text:"Shovel of Doom", color:"#4444"}], lore=[{text:"Bringer of dirt", color:"#FFD700"}]]


How does it work?

  1. /give @p -> Gives the item to the nearest player.
  2. minecraft:diamond_shovel -> The item type that's being given.
  3. [...] -> The NBT data that will customize how the item will look.
  4. minecraft:custom_name=[{...}] -> JSON text that will give the custom name.
  5. "text":"Shovel of Doom" -> The item name.
  6. "color":"#4444" -> The color of the name (gray).
  7. lore=:[{...}] -> Adds lines of text under the item name.
  8. text:"Bringer of dirt" -> First lore line in gold.

QCC News Icon QCC News

Check out what's new with QuadCraftCode!