ItemsAdder

ItemsAdder integration allows MMOBlock to support custom blocks and items from ItemsAdder. This enhances the visual and interactive elements of your server.

entity:
  example_entity:
    block:  # Custom blocks from ItemsAdder can be defined as block types.
      type: ITEMSADDER:CUSTOM_BLOCK  # Example of an ItemsAdder custom block.
    allowed_tools:  # Custom items from ItemsAdder can be defined as allowed tools.
      - ITEMSADDER:CUSTOM_TOOL;10  # Example of an ItemsAdder custom item as an allowed tool.
    drops:  # Custom items from ItemsAdder can be defined as drops.
      - ITEMSADDER:CUSTOM_ITEM;1;0.5  # Example of an ItemsAdder custom item as a drop.

Last updated