> For the complete documentation index, see [llms.txt](https://docs.creoii.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.creoii.dev/lucky-block/outcomes/item-outcome.md).

# Item Outcome

The item outcome spawns items on the ground.

```json
{
  "type": "lucky:item",
  "item": "minecraft:end_portal_frame",
  "count": {
    "type": "minecraft:uniform",
    "min_inclusive": 2,
    "max_inclusive": 6
  }
}
```

This outcome spawns between 2 and 6 End Portal Frame items on the ground.

```json
{
  "type": "lucky:item",
  "item": "minecraft:enchanted_book",
  "components": {
    "minecraft:stored_enchantments": {
      "levels": {
        "minecraft:protection": 1
      }
    }
  }
}
```

This outcome spawns an Enchanted Book with the Protection 1 Enchantment.
