Drops

Drops in MMOBlock define what items or commands are executed when a custom entity is destroyed. These drops can include vanilla items, custom items from MMOItems, custom items from ItemsAdder, or commands to be executed.

drops:  # A list of items or commands to drop when the entity is destroyed. Each drop is defined by its type, amount, and chance.
  - example_item;1;0.5
  #- <item_id>;<total_drop>;<drop_chance>
  - command;give %player% diamond 1;1.0
  #- command;<command without "/">;<drop_chance>

Last updated