// priority 0 // Altering recipes ServerEvents.recipes((event) => { // Remove recipes for TE coins, the mold that makes them, and the engine that destroys them event.remove({ id: "thermal:press_coin_die" }); event.remove({ id: "thermal:dynamo_numismatic" }); event.remove({ id: "thermal:tin_coin" }); event.remove({ id: "thermal:copper_coin" }); event.remove({ id: "thermal:bronze_coin" }); event.remove({ id: "thermal:iron_coin" }); event.remove({ id: "thermal:gold_coin" }); event.remove({ id: "thermal:invar_coin" }); event.remove({ id: "thermal:enderium_coin" }); event.remove({ id: "thermal:signalum_coin" }); event.remove({ id: "thermal:lumium_coin" }); event.remove({ id: "thermal:netherite_coin" }); event.remove({ id: "thermal:steel_coin" }); event.remove({ id: "thermal:rose_gold_coin" }); event.remove({ id: "thermal:lead_coin" }); event.remove({ id: "thermal:silver_coin" }); event.remove({ id: "thermal:nickel_coin" }); event.remove({ id: "thermal:electrum_coin" }); event.remove({ id: "thermal:constantan_coin" }); // Remove Recipes from Create Deco coins to avoid confusion event.remove({ output: "createdeco:brass_coin" }); event.remove({ output: "createdeco:brass_coinstack" }); event.remove({ output: "createdeco:cast_iron_coin" }); event.remove({ output: "createdeco:cast_iron_coinstack" }); event.remove({ output: "createdeco:copper_coin" }); event.remove({ output: "createdeco:copper_coinstack" }); event.remove({ output: "createdeco:gold_coin" }); event.remove({ output: "createdeco:gold_coinstack" }); event.remove({ output: "createdeco:iron_coin" }); event.remove({ output: "createdeco:iron_coinstack" }); event.remove({ output: "createdeco:netherite_coin" }); event.remove({ output: "createdeco:netherite_coinstack" }); event.remove({ output: "createdeco:zinc_coin" }); event.remove({ output: "createdeco:zinc_coinstack" }); });