Skip to content

Commit

Permalink
fix(recipes): ✏️[Electric Arc Furnace recipe] add alloy recipes
Browse files Browse the repository at this point in the history
[Block of Manyullyn][Block of Constantan][Block of Bronze]
  • Loading branch information
Krutoy242 committed Apr 14, 2024
1 parent 5acf471 commit e410fcf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/mods/tconstruct/tconstruct.zs
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,9 @@ scripts.process.alloy([
// Blood Magic Tcon Integration adds many slate - cast recipes
mods.tconstruct.Casting.removeTableRecipe(<tconstruct:cast_custom:3>);

// Manyullin block alt
scripts.process.alloy([<ore:blockCobalt>, <ore:blockArdite>], <tconstruct:metal:2>, 'only: AdvRockArc');

for castFluid in [
<fluid:alubrass> * 144,
<fluid:gold> * 288,
Expand Down
4 changes: 4 additions & 0 deletions scripts/mods/thermalfoundation.zs
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ for output, input in {
if(isNull(output) || isNull(input)) continue;
furnace.remove(output, input);
}

// Faster AdvRockArc recipes
scripts.process.alloy([<ore:blockCopper>, <ore:blockNickel>], <thermalfoundation:storage_alloy:4> * 2, 'only: AdvRockArc');
scripts.process.alloy([<ore:blockCopper> * 3, <ore:blockTin>], <thermalfoundation:storage_alloy:3> * 4, 'only: AdvRockArc');

0 comments on commit e410fcf

Please sign in to comment.