Add horse armor melting, bump version to 1.4

This commit is contained in:
Jordy Goodridge 2024-06-04 17:41:55 -07:00
parent 2e7a7d38bc
commit 0509f312b6
3 changed files with 15 additions and 1 deletions

View File

@ -42,7 +42,7 @@ mod_name=Tinkering Abnormally
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=MIT
# The mod version. See https://semver.org/
mod_version=1.3
mod_version=1.4
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

View File

@ -0,0 +1,12 @@
{
"type": "tconstruct:melting",
"ingredient": {
"item": "caverns_and_chasms:silver_horse_armor"
},
"result": {
"amount": 630,
"fluid": "tconstruct:molten_silver"
},
"temperature": 790,
"time": 158
}

View File

@ -82,6 +82,8 @@ public class SmelteryRecipeProvider extends RecipeProvider implements ISmelteryR
.setDamagable(necromiumSizes)
.addByproduct(new FluidStack(TinkerFluids.moltenDiamond.get(), FluidValues.GEM))
.save(consumer, location(meltingFolder + "necromium/shovel"));
MeltingRecipeBuilder.melting(Ingredient.of(CCItems.SILVER_HORSE_ARMOR.get()), TinkerFluids.moltenSilver.get(), FluidValues.INGOT * 7)
.save(consumer, location(meltingFolder + "silver/horse_armor"));
String alloyFolder = "smeltery/alloys/";
AlloyRecipeBuilder.alloy(TinkeringAbnormally.moltenNecromium.get(), FluidValues.NUGGET)