feat: antimatter tweaks

This commit is contained in:
Timo Ley 2023-12-06 22:36:17 +01:00
parent 7741ec8df8
commit 6901608e66
10 changed files with 57 additions and 11 deletions

View file

@ -79,5 +79,16 @@ publishing {
}
}
repositories {}
repositories {
if (project.hasProperty("mvnURL")) {
maven {
credentials {
username findProperty("mvnUsername")
password findProperty("mvnPassword")
}
url = findProperty("mvnURL")
}
}
mavenLocal()
}
}

View file

@ -25,14 +25,14 @@ public class InputReplacements implements IEventBusRegisterable {
ev.mapRecipeID(
new Identifier("projecte", "relay_mk1"),
new InputReplaceRecipeMapper().replace(
"#forge:storage_blocks/diamond", "mekanism:pellet_antimatter"
"#forge:storage_blocks/diamond", "ftbic:antimatter"
)
);
ev.mapRecipeID(
new Identifier("projecte", "collector_mk1"),
new InputReplaceRecipeMapper().replace(
"#forge:storage_blocks/diamond", "mekanism:pellet_antimatter"
"#forge:storage_blocks/diamond", "ftbic:antimatter"
)
);
@ -57,6 +57,13 @@ public class InputReplacements implements IEventBusRegisterable {
)
);
ev.mapRecipeID(
new Identifier("ftbic", "shaped/antimatter_fabricator"),
new InputReplaceRecipeMapper().replace(
"minecraft:nether_star", "draconicevolution:awakened_core"
)
);
var philosopherStoneMapper
= new InputReplaceRecipeMapper()
.replace("#forge:gems/diamond", "ae2:singularity")

View file

@ -155,7 +155,7 @@ public class RecipeReplacements implements IEventBusRegisterable {
-> new ShapedRecipeBuilder(Ntx4Core.id("dark_matter"), r.getOutput())
.pattern("DFD", "FSF", "DFD")
.ingredient('F', "projecte:aeternalis_fuel")
.ingredient('S', "mekanism:pellet_antimatter")
.ingredient('S', "ftbic:antimatter")
.ingredient('D', "#forge:ingots/draconium")
.build()
);
@ -164,10 +164,11 @@ public class RecipeReplacements implements IEventBusRegisterable {
new Identifier("projecte", "red_matter"),
r
-> new ShapedRecipeBuilder(Ntx4Core.id("red_matter"), r.getOutput())
.pattern("CDC", "QSE", "CDC")
.pattern("CAC", "QSE", "CDC")
.ingredient('D', "projecte:dark_matter")
.ingredient('Q', "assemblylinemachines:quark_matter")
.ingredient('E', "dmlreforged:pristine_matter_dragon")
.ingredient('A', "ftbic:antimatter")
.ingredient('S', "ae2:singularity")
.ingredient('C', "powah:crystal_nitro")
.build()

View file

@ -7,6 +7,6 @@
},
"output": {
"gas": "mekanism:antimatter",
"amount": 1200
"amount": 12
}
}

View file

@ -7,6 +7,6 @@
},
"output": {
"gas": "mekanism:antimatter",
"amount": 400
"amount": 4
}
}

View file

@ -7,6 +7,6 @@
},
"output": {
"gas": "mekanism:antimatter",
"amount": 10
"amount": 50
}
}

View file

@ -0,0 +1,16 @@
{
"type": "mekanism:nucleosynthesizing",
"itemInput": {
"ingredient": {
"item": "ae2:matter_ball"
}
},
"gasInput": {
"amount": 50,
"gas": "mekanism:antimatter"
},
"output": {
"item": "ftbic:antimatter"
},
"duration": 400
}

View file

@ -14,7 +14,7 @@
"item": "powah:crystal_nitro"
},
{
"item": "mekanism:pellet_antimatter"
"item": "ftbic:antimatter"
},
{
"item": "fluxnetworks:flux_dust"

View file

@ -2,11 +2,11 @@
"type": "mekanism:oxidizing",
"input": {
"ingredient": {
"item": "nuclearscience:cellantimattersmall"
"tag": "forge:pellets/antimatter"
}
},
"output": {
"gas": "mekanism:antimatter",
"amount": 50
"amount": 10
}
}

View file

@ -0,0 +1,11 @@
{
"type": "mekanism:crystallizing",
"chemicalType": "gas",
"input": {
"amount": 10,
"gas": "mekanism:antimatter"
},
"output": {
"item": "mekanism:pellet_antimatter"
}
}