MMOItems

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.

entity:
  example_entity:
    allowed_tools:  # Custom items from MMOItems can be defined as allowed tools.
      - MMOITEMS_TYPE:MMOITEMS_ID;10  # Example of an MMOItems custom item as an allowed tool.
    drops:  # Custom items from MMOItems can be defined as drops.
      - MMOITEMS_TYPE:MMOITEMS_ID;1;0.5  # Example of an MMOItems custom item as a drop.

Last updated