Compare commits

...

3 commits

Author SHA1 Message Date
Timo Ley e4443b5bbd chore: bump version 2023-12-16 11:40:55 +01:00
Timo Ley f69d39039a feat: changes draconic injector recipe 2023-12-16 11:38:45 +01:00
Timo Ley 8f1ad1ccd2 feat: creative flight tweaks 2023-12-16 11:38:26 +01:00
4 changed files with 55 additions and 3 deletions

View file

@ -16,7 +16,7 @@ loom.platform=forge
yarn_mappings=1.18.2+build.4
# Mod Properties
mod_version=1.1.0
mod_version=1.2.0
maven_group=net.anvilcraft.ntx4core
archives_base_name=ntx4core
mod_id=ntx4core

View file

@ -84,6 +84,21 @@ public class InputReplacements implements IEventBusRegisterable {
ev.mapRecipes(new InputReplaceRecipeMapper().replace(
"thermal:machine_frame", "industrialforegoing:machine_frame_simple"
));
// Creative Flight tweaks
ev.mapRecipeID(
new Identifier("mekanism", "module_gravitational_modulating_unit"),
new InputReplaceRecipeMapper()
.replace("#forge:nether_stars", "projecte:swiftwolf_rending_gale")
.replace("mekanism:ultimate_induction_provider", "projecte:klein_star_omega")
);
ev.mapRecipeID(
new Identifier("assemblylinemachines", "crafting/mystium_flight_harness"),
new InputReplaceRecipeMapper()
.replace("minecraft:elytra", "projecte:swiftwolf_rending_gale")
.replace("minecraft:phantom_membrane", "projecte:klein_star_omega")
);
}
@Override

View file

@ -25,8 +25,8 @@ public class RecipeRemovals implements IEventBusRegisterable {
&& id.getPath().startsWith("inscriber");
});
ev.removeRecipeID(new Identifier("projecte", "red_matter_alt"));
ev.removeRecipeID(new Identifier("draconicevolution", "components/awakened_core")
);
ev.removeRecipeID(new Identifier("draconicevolution", "components/awakened_core"));
ev.removeRecipeID(new Identifier("draconicevolution", "awakened_crafting_injector"));
ev.removeRecipeID(new Identifier("electrodynamics", "ingotsteel_ingot_smelting"));
ev.removeRecipeID(new Identifier("beyond_earth", "steel_ingot_blasting"));
ev.removeRecipeID(new Identifier("enderrift", "rift_orb"));

View file

@ -0,0 +1,37 @@
{
"type": "draconicevolution:fusion_crafting",
"result": {
"item": "draconicevolution:awakened_crafting_injector"
},
"catalyst": {
"item": "draconicevolution:wyvern_crafting_injector"
},
"total_energy": 256000,
"tier": "WYVERN",
"ingredients": [
{
"tag": "forge:gems/diamond"
},
{
"tag": "forge:gems/diamond"
},
{
"item": "draconicevolution:wyvern_core"
},
{
"tag": "forge:storage_blocks/draconium_awakened"
},
{
"item": "draconicevolution:wyvern_core"
},
{
"tag": "forge:gems/diamond"
},
{
"tag": "forge:gems/diamond"
},
{
"item": "projecte:red_matter"
}
]
}