Skip to content

Commit

Permalink
feat(recipes): ✏️add unbreakable [Proven Frame] recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Krutoy242 committed Jun 11, 2024
1 parent 1c7cd72 commit ed0e87c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions scripts/mods/forestry.zs
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,24 @@ craft.remake(<forestry:ambrosia>, [
// [Impregnated Stick]*16 from [Proven Frame]
scripts.process.sawWood(<forestry:frame_proven>, <forestry:oak_stick> * 3);

// Unbreakable recipe
// [Proven Frame] from [Proven Frame][+7]
mods.thaumcraft.Infusion.registerRecipe(
"frame_proven", # Name
"INFUSION", # Research
<forestry:frame_proven>.withTag({ench: [{}], enchantmentColor: 16579587, Unbreakable: 1 as byte}), # Output
3, # Instability
[<aspect:aer> * 40, <aspect:desiderium> * 40, <aspect:sonus> * 40],
<forestry:frame_proven>, # Central Item
Grid(['pretty',
'',
'‚ ‚',
''], {
'': <ore:dustMana>, // Mana Dust
'': <ore:nuggetMithrillium>, // Mithrillium Nugget
'': <ore:ingotGlitch>, // Glitch Infused Ingot
}).spiral(1));

<forestry:wax_cast>.maxDamage = 32;

// [Advanced Analyzer] from [Analyzer][+2]
Expand Down

0 comments on commit ed0e87c

Please sign in to comment.