> For the complete documentation index, see [llms.txt](https://alex-plugins.gitbook.io/nebula/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://alex-plugins.gitbook.io/nebula/items/item-drop/mob-drop.md).

# Mob drop

Mob drops is handled into the `drops.yml` file located in the `/plugins/Nebula/` folder.

To add an item drop for a mob, add one drop line under the root (the root property is the [entity name](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html)).

The drop line is made as follow :

\- "<mark style="color:blue;">**\<item\_type>**</mark>:<mark style="color:orange;">**\<item\_name>**</mark><mark style="color:yellow;">**\[level]**</mark>:<mark style="color:green;">**probability**</mark>"

The <mark style="color:blue;">**item type**</mark> could be `scroll`, `enchant_book`, `crystal`, `collector`, `powder`, `orb`&#x20;

The <mark style="color:orange;">**item name**</mark> is the name of the item (enchant name if enchant, scroll name if scroll etc..)

The <mark style="color:yellow;">**level**</mark> is a property only for enchantment books, it's the level of the book to be spawned

The <mark style="color:green;">**probability**</mark> is the probability to drop the item each time a mob is killed

### Example :

```
ZOMBIE:
  - "scroll:removal:20"
  - "enchant_book:axe_rider[4]:20"
  - "powder:miner:20"
```
