Craft

Criteria: Craft

Triggered when a player crafts a matching item. This supports vanilla crafting and MythicCrucible crafting events when Crucible is installed.

Attributes

Attribute Description Default
Item The crafted result item to match using MythicMobs item matcher syntax. Any
Result Alias for Item. Any
Items A list of result items to match. Any
Recipe The vanilla or Crucible recipe key to match. Supports namespace:key or just key. Any
Recipes A list of recipe keys to match. Any
RecipeKey Alias for Recipe. Any
RecipeKeys Alias for Recipes. Any
UseCraftAmount For Crucible crafting, whether to progress by the amount crafted in the batch. true
CraftAmountAsProgress Alias for UseCraftAmount. true
CountCrafts Alias for UseCraftAmount. true
Strict / Exact Requires stricter item data matching. false
VanillaOnly / Vanilla Restricts matching to vanilla item data. false
Inverted / Blacklist Progresses when the crafted item does not match the configured item list. false

Examples

SOME_ACHIEVEMENT:
  Criteria:
    CRAFT_DIAMOND_TOOLS:
      Type: Craft
      Items:
      - DIAMOND_PICKAXE
      - DIAMOND_AXE
      - DIAMOND_SHOVEL
SOME_CRUCIBLE_ACHIEVEMENT:
  Criteria:
    CRAFT_CUSTOM_RECIPE:
      Type: Craft
      Recipe: mythiccrucible:reinforced_workbench
      Result: ReinforcedWorkbench
      UseCraftAmount: true
Updated Aug 19, 2026