Add horse armor melting, bump version to 1.4
This commit is contained in:
parent
2e7a7d38bc
commit
0509f312b6
@ -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.
|
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||||
mod_license=MIT
|
mod_license=MIT
|
||||||
# The mod version. See https://semver.org/
|
# 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.
|
# 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.
|
# This should match the base package used for the mod sources.
|
||||||
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||||
|
@ -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
|
||||||
|
}
|
@ -82,6 +82,8 @@ public class SmelteryRecipeProvider extends RecipeProvider implements ISmelteryR
|
|||||||
.setDamagable(necromiumSizes)
|
.setDamagable(necromiumSizes)
|
||||||
.addByproduct(new FluidStack(TinkerFluids.moltenDiamond.get(), FluidValues.GEM))
|
.addByproduct(new FluidStack(TinkerFluids.moltenDiamond.get(), FluidValues.GEM))
|
||||||
.save(consumer, location(meltingFolder + "necromium/shovel"));
|
.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/";
|
String alloyFolder = "smeltery/alloys/";
|
||||||
AlloyRecipeBuilder.alloy(TinkeringAbnormally.moltenNecromium.get(), FluidValues.NUGGET)
|
AlloyRecipeBuilder.alloy(TinkeringAbnormally.moltenNecromium.get(), FluidValues.NUGGET)
|
||||||
|
Loading…
Reference in New Issue
Block a user