🥰 Compatibility

With CraftEngine's recipes, you can use items from other plugins - but you'll need to configure them properly. First, add the supported plugins to this section in config.yml:

# config.yml
recipe:
  ingredient-sources:
    - MythicMobs

Alright, let me walk you through a concrete example to show how you can reference external stuff.

Recipe Result

items: 
  mythicmobs:kingscrown:
    material: golden_helmet
    data:
      external:
        plugin: MythicMobs
        id: KingsCrown
recipes:
  mythicmobs:kingscrown:
    type: shaped
    pattern:
      - AAA
      - A A
    ingredients:
      A: default:topaz
    result:
      id: mythicmobs:kingscrown
      count: 1

Recipe Ingredient

items:
  mythicmobs:kingscrown:
    material: golden_helmet
    data:
      external:
        plugin: MythicMobs
        id: KingsCrown
recipes:
  default:bench:
    type: shaped
    pattern:
      - A A
      - A A
    ingredients:
      A: mythicmobs:kingscrown
    result:
      id: default:bench
      count: 1

Last updated