// priority 2

// Adding compatiblity between mods

ServerEvents.recipes((event) => {
    // Craft modded plates with Create
    event.recipes.create.pressing("thermal:steel_plate", "thermal:steel_ingot");
    event.recipes.create.pressing(
        "thermal:rose_gold_plate",
        "thermal:rose_gold_ingot"
    );
    event.recipes.create.pressing(
        "thermal:signalum_plate",
        "thermal:signalum_ingot"
    );
    event.recipes.create.pressing(
        "thermal:lumium_plate",
        "thermal:lumium_ingot"
    );
    event.recipes.create.pressing(
        "thermal:enderium_plate",
        "thermal:enderium_ingot"
    );
    event.recipes.create.pressing("thermal:lead_plate", "thermal:lead_ingot");
    event.recipes.create.pressing("thermal:tin_plate", "thermal:tin_ingot");
    event.recipes.create.pressing(
        "thermal:silver_plate",
        "thermal:silver_ingot"
    );
    event.recipes.create.pressing(
        "thermal:nickel_plate",
        "thermal:nickel_ingot"
    );
    event.recipes.create.pressing(
        "thermal:bronze_plate",
        "thermal:bronze_ingot"
    );
    event.recipes.create.pressing(
        "thermal:electrum_plate",
        "thermal:electrum_ingot"
    );
    event.recipes.create.pressing("thermal:invar_plate", "thermal:invar_ingot");
    event.recipes.create.pressing(
        "thermal:constantan_plate",
        "thermal:constantan_ingot"
    );
});