91 lines
3.7 KiB
Plaintext
91 lines
3.7 KiB
Plaintext
|
|
mods.jei.JEI.addDescription([
|
|
<gadothaumy:infusion_claw>],
|
|
[
|
|
"The infusion claw is a block that, when placed above a Runic Matrix, enables the automation of thaumcraft infusion recipes.",
|
|
"",
|
|
"If the right essentia and item ingredients are present, a redstone signal sent to the claw will start the infusion as if the Matrix had been clicked by a Gauntlet.",
|
|
"",
|
|
"Note that the infusion will still follow instability rules, as well as failure if the right essentia is not present."
|
|
]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# infusion claw
|
|
registerInfusionRecipeFromAddon(`${tcGado}:infusion_claw`, "INFUSION_CLAW",
|
|
<gadothaumy:infusion_claw>, 32,
|
|
[
|
|
<aspect:alienis> * 120, <aspect:machina> * 70, <aspect:ordo> * 70,
|
|
<aspect:praecantatio> * 60, <aspect:tenebrae> * 40
|
|
],
|
|
<thaumcraft:stabilizer>,
|
|
[
|
|
<thaumcraft:brain>, <thaumcraft:stone_arcane>,
|
|
<thaumadditions:adaminite_ingot>, <thaumcraft:stone_arcane>,
|
|
<thaumcraft:caster_basic>, <thaumcraft:stone_arcane>,
|
|
<thaumadditions:adaminite_ingot>, <thaumcraft:stone_arcane>
|
|
]
|
|
);
|
|
# KAMI armor
|
|
registerInfusionRecipeFromAddon(`${tcTinkerer}:kami_helm`, "TT_KAMIHELM",
|
|
<thaumictinkerer:kami_helm>, 32,
|
|
[
|
|
<aspect:aqua> * 150, <aspect:auram> * 125, <aspect:cognitio> * 125,
|
|
<aspect:victus> * 60, <aspect:lux> * 250, <aspect:praemunio> * 125
|
|
],
|
|
<thaumictinkerer:ichor_helm>,
|
|
[
|
|
<thaumadditions:mithrillium_ingot>, <thaumadditions:mithrillium_ingot>, <thaumictinkerer:kamiresource:2>,
|
|
<thaumictinkerer:kamiresource:2>, <minecraft:chorus_fruit_popped>, <minecraft:golden_helmet>,
|
|
<minecraft:potion>.withTag({Potion: "minecraft:night_vision"}), <thaumcraft:goggles>, <minecraft:ghast_tear>,
|
|
<minecraft:fish>, <minecraft:cake>, <minecraft:ender_eye>
|
|
]
|
|
);
|
|
registerInfusionRecipeFromAddon(`${tcTinkerer}:kami_chest`, "TT_KAMICHEST",
|
|
<thaumictinkerer:kami_chest>, 32,
|
|
[
|
|
<aspect:aer> * 150, <aspect:praemunio> * 125, <aspect:volatus> * 125,
|
|
<aspect:ordo> * 125, <aspect:lux> * 250, <aspect:alienis> * 60
|
|
],
|
|
<thaumictinkerer:ichor_chest>,
|
|
[
|
|
<thaumadditions:mithrillium_ingot>, <thaumadditions:mithrillium_ingot>, <thaumictinkerer:kamiresource:2>,
|
|
<thaumictinkerer:kamiresource:2>, <minecraft:chorus_fruit_popped>, <minecraft:golden_chestplate>,
|
|
<thaumcraft:cloud_ring>, <minecraft:elytra>, <minecraft:shield>,
|
|
<minecraft:feather>, <minecraft:ghast_tear>, <minecraft:arrow>
|
|
]
|
|
);
|
|
registerInfusionRecipeFromAddon(`${tcTinkerer}:kami_legs`, "TT_KAMILEGS",
|
|
<thaumictinkerer:kami_legs>, 32,
|
|
[
|
|
<aspect:aer> * 150, <aspect:praemunio> * 125, <aspect:volatus> * 125,
|
|
<aspect:ordo> * 125, <aspect:lux> * 250, <aspect:alienis> * 60
|
|
],
|
|
<thaumictinkerer:ichor_legs>,
|
|
[
|
|
<thaumadditions:mithrillium_ingot>, <thaumadditions:mithrillium_ingot>, <thaumictinkerer:kamiresource:2>,
|
|
<thaumictinkerer:kamiresource:2>, <minecraft:chorus_fruit_popped>, <minecraft:golden_leggings>,
|
|
<minecraft:potion>.withTag({Potion: "minecraft:fire_resistance"}), <thaumictinkerer:energetic_nitor>, <thaumcraft:lamp_arcane>,
|
|
<minecraft:lava_bucket>, <minecraft:fire_charge>, <minecraft:blaze_rod>
|
|
]
|
|
);
|
|
registerInfusionRecipeFromAddon(`${tcTinkerer}:kami_boots`, "TT_KAMIBOOTS",
|
|
<thaumictinkerer:kami_boots>, 32,
|
|
[
|
|
<aspect:terra> * 150, <aspect:praemunio> * 125, <aspect:instrumentum> * 125,
|
|
<aspect:motus> * 125, <aspect:lux> * 250, <aspect:herba> * 60,
|
|
<aspect:volatus> * 60
|
|
],
|
|
<thaumictinkerer:ichor_boots>,
|
|
[
|
|
<thaumadditions:mithrillium_ingot>, <thaumadditions:mithrillium_ingot>, <thaumictinkerer:kamiresource:2>,
|
|
<thaumictinkerer:kamiresource:2>, <minecraft:chorus_fruit_popped>, <minecraft:golden_boots>,
|
|
<minecraft:grass>, <minecraft:wheat_seeds>, <thaumcraft:lamp_growth>,
|
|
<thaumcraft:turret:2>, <minecraft:wool:0>, <minecraft:lead>
|
|
]
|
|
); |