From 749fc270415ab643b3d5f3db9e93d42dc2c0bc6d Mon Sep 17 00:00:00 2001 From: ZHAY10086 Date: Thu, 19 Mar 2026 18:20:50 +0800 Subject: [PATCH] hotfix5 --- config/cellterminal_server.cfg | 5 ++- config/deepmobevolution/DataModels.json | 4 +-- .../mythic_processor_chemical_reactor.json | 4 +-- scripts/MythicProcessorCentrifuge.zs | 10 +++++- scripts/MythicProcessorTransfuser.zs | 33 ++++++++++++++++++- 5 files changed, 49 insertions(+), 7 deletions(-) diff --git a/config/cellterminal_server.cfg b/config/cellterminal_server.cfg index cb8de61c..ccdfa39a 100644 --- a/config/cellterminal_server.cfg +++ b/config/cellterminal_server.cfg @@ -47,6 +47,10 @@ integration { # Set to false to disable JEI integration. B:enableJEI=true + # Enable integration with MekanismEnergistics (gas cells and gas storage buses). + # Set to false to disable MekanismEnergistics-specific code. + B:enableMekanismEnergistics=true + # Enable integration with Storage Drawers. # Set to false to disable Storage Drawers-specific code. B:enableStorageDrawers=true @@ -140,4 +144,3 @@ tabs { B:terminalTabEnabled=true } - diff --git a/config/deepmobevolution/DataModels.json b/config/deepmobevolution/DataModels.json index 3f0e321d..5ce4ca46 100644 --- a/config/deepmobevolution/DataModels.json +++ b/config/deepmobevolution/DataModels.json @@ -157,8 +157,8 @@ }, { "id": "guardian", - "displayName": "守护者", - "displayNamePlural": "守护者", + "displayName": "守卫者", + "displayNamePlural": "守卫者", "livingMatter": "overworldian", "simulationRFCost": 1500, "craftingIngredients": [ diff --git a/config/modularmachinery/machinery/mythic_processor_chemical_reactor.json b/config/modularmachinery/machinery/mythic_processor_chemical_reactor.json index 9ff63c65..69e40779 100644 --- a/config/modularmachinery/machinery/mythic_processor_chemical_reactor.json +++ b/config/modularmachinery/machinery/mythic_processor_chemical_reactor.json @@ -11,13 +11,13 @@ "description": "x16骞惰", "modifiers": [{ "io": "output", - "target": "modularmachinery:item", + "target": "modularmachinery:fluid", "operation": 1, "multiplier": 16 }, { "io": "input", - "target": "modularmachinery:item", + "target": "modularmachinery:fluid", "operation": 1, "multiplier": 16 }] diff --git a/scripts/MythicProcessorCentrifuge.zs b/scripts/MythicProcessorCentrifuge.zs index e220a203..45217830 100644 --- a/scripts/MythicProcessorCentrifuge.zs +++ b/scripts/MythicProcessorCentrifuge.zs @@ -223,7 +223,15 @@ mythproccentsep127.addItemOutput(); mythproccentsep127.build(); - +val mythproccentsep128 = RecipeBuilder.newBuilder("mythproccentsep128","mythic_processor_centrifuge",2); +mythproccentsep128.addEnergyPerTickInput(70000); +mythproccentsep128.addItemInput(.withTag({Fluid: {FluidName: "aerotheum", Amount: 1000}})*10); +mythproccentsep128.addItemInput(); +mythproccentsep128.addItemOutput(.withTag({Fluid: {FluidName: "nitrogen", Amount: 1000}})*7); +mythproccentsep128.addItemOutput(.withTag({Fluid: {FluidName: "oxygen", Amount: 1000}})*2); +mythproccentsep128.addItemOutput(.withTag({Fluid: {FluidName: "noble_gas_mix", Amount: 1000}})*1); +mythproccentsep128.addItemOutput(.withTag({Fluid: {FluidName: "argon", Amount: 1000}})*1); +mythproccentsep128.build(); diff --git a/scripts/MythicProcessorTransfuser.zs b/scripts/MythicProcessorTransfuser.zs index 8da4534c..9f226814 100644 --- a/scripts/MythicProcessorTransfuser.zs +++ b/scripts/MythicProcessorTransfuser.zs @@ -1203,7 +1203,12 @@ mythinfus147.addItemInput(); mythinfus147.addItemOutput(.withTag({tank: {FluidName: "distillate_of_levity", Amount: 16000}})); mythinfus147.build(); - +val mythinfus148 = RecipeBuilder.newBuilder("mythinfus148","mythic_processor_infuser",2); +mythinfus148.addEnergyPerTickInput(1000000); +mythinfus148.addFluidInput(*1000); +mythinfus148.addItemInput(*1); +mythinfus148.addItemOutput(.withTag({Fluid: {FluidName: "aerotheum", Amount: 1000}})); +mythinfus148.build(); @@ -1670,7 +1675,33 @@ mythextrac64.addItemOutput(); mythextrac64.addFluidOutput(*16000); mythextrac64.build(); +val mythextrac65 = RecipeBuilder.newBuilder("mythextrac65","mythic_processor_infuser",2); +mythextrac65.addEnergyPerTickInput(1000000); +mythextrac65.addItemInput(.withTag({Fluid: {FluidName: "nitrogen", Amount: 1000}})); +mythextrac65.addItemOutput(); +mythextrac65.addFluidOutput(*1000); +mythextrac65.build(); +val mythextrac66 = RecipeBuilder.newBuilder("mythextrac66","mythic_processor_infuser",2); +mythextrac66.addEnergyPerTickInput(1000000); +mythextrac66.addItemInput(.withTag({Fluid: {FluidName: "oxygen", Amount: 1000}})); +mythextrac66.addItemOutput(); +mythextrac66.addFluidOutput(*1000); +mythextrac66.build(); + +val mythextrac67 = RecipeBuilder.newBuilder("mythextrac67","mythic_processor_infuser",2); +mythextrac67.addEnergyPerTickInput(1000000); +mythextrac67.addItemInput(.withTag({Fluid: {FluidName: "noble_gas_mix", Amount: 1000}})); +mythextrac67.addItemOutput(); +mythextrac67.addFluidOutput(*1000); +mythextrac67.build(); + +val mythextrac68 = RecipeBuilder.newBuilder("mythextrac68","mythic_processor_infuser",2); +mythextrac68.addEnergyPerTickInput(1000000); +mythextrac68.addItemInput(.withTag({Fluid: {FluidName: "argon", Amount: 1000}})); +mythextrac68.addItemOutput(); +mythextrac68.addFluidOutput(*1000); +mythextrac68.build();