Skip to content

Commit

Permalink
fix(recipes): ✏️Replace [Material Absorber] in [Elite Catalyst] recip…
Browse files Browse the repository at this point in the history
…e with ~x100 cheaper variant
  • Loading branch information
Krutoy242 committed Apr 14, 2024
1 parent e12f7c5 commit cf42db8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mods/extendedcrafting.zs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ craft.remake(<extendedcrafting:material:10>, ['pretty',
'▲ E ▲'], {
'': <ore:dustPsi>, // Psidust
'E': <extendedcrafting:material:16>, // Elite Component
'M': <rftoolsdim:material_absorber>.withTag({ meta: 0, absorbing: 0, block: 'minecraft:stone' }), // Material Absorber
'M': <rftoolsdim:fake_gravel>, // Material Absorber
});

# [Ultimate Component] from [Titanium Iridium Alloy Sheet][+5]
Expand Down
7 changes: 7 additions & 0 deletions scripts/mods/rftools.zs
Original file line number Diff line number Diff line change
Expand Up @@ -337,3 +337,10 @@ mods.mekanism.infuser.addRecipe('REDSTONE', 160, <rftoolscontrol:card_base>, <rf
// [CPU Core S1000] from [Rat Diamond][+1]
recipes.remove(<rftoolscontrol:cpu_core_1000>);
mods.mekanism.infuser.addRecipe('DIAMOND', 160, <rftoolscontrol:cpu_core_500>, <rftoolscontrol:cpu_core_1000>);

// Non-dimensional source of "levarG"
val MA = <rftoolsdim:material_absorber>.withTag({meta: 0, absorbing: 0, block: "minecraft:stone"});
val FG = <rftoolsdim:fake_gravel>;
scripts.processWork.workEx('SagMill', null, [MA], null, [FG * 64], null, [FG * 32, FG * 16, FG * 8], [0.5, 0.5, 0.5], { bonusType: 'MULTIPLY_OUTPUT' });
scripts.process.crush(MA, FG * 64, 'only: eu2Crusher', [FG * 32], [0.5]);
mods.astralsorcery.Grindstone.addRecipe(MA, FG * 64, 0.25);

0 comments on commit cf42db8

Please sign in to comment.