diff --git a/BR1710/scripts/Thaumcraft.zs b/BR1710/scripts/Thaumcraft.zs index 57ad40a..b01f47a 100644 --- a/BR1710/scripts/Thaumcraft.zs +++ b/BR1710/scripts/Thaumcraft.zs @@ -107,3 +107,28 @@ mods.thaumcraft.Arcane.addShaped( [null, null, null]] ); mods.thaumcraft.Research.refreshResearchRecipe("ICHORCLOTH_ARMOR"); + + +// Make Witching Gadgets wolven cloak harder to obtain (it provides speed+strength+resistance II, III then IV +// when being repeatedly hit making the player near invulnerable against groups of regular mobs) + +val baseCloak = ; +val voidIngot = ; +val wolfPelt = ; +val metSteelRing = ; +val strFlask = .withTag({brewKey: "strength"}); +val resFlask = .withTag({brewKey: "resistance"}); +val spdFlask = .withTag({brewKey: "speed"}); + +mods.thaumcraft.Arcane.removeRecipe(); +mods.thaumcraft.Arcane.addShaped( + "CLOAK_WOLF", , + "perditio 100, terra 75, ignis 50", + [[metSteelRing, voidIngot, metSteelRing], + [wolfPelt, baseCloak, wolfPelt], + [strFlask, resFlask, spdFlask]] +); +mods.thaumcraft.Research.refreshResearchRecipe("CLOAK_WOLF"); + + +