Advertisement
DoomRater

Current ThaumcraftTweaks.zs

Jan 13th, 2021
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. import crafttweaker.item.IItemCondition;
  2.  
  3.  
  4. //add void seeds to the crimson cult drop list
  5. <entity:thaumcraft:cultistcleric>.addPlayerOnlyDrop(<thaumcraft:void_seed> % 5, 1, 1);
  6. <entity:thaumcraft:cultistknight>.addPlayerOnlyDrop(<thaumcraft:void_seed> % 5, 1, 1);
  7.  
  8. //Immersive Engineering doesn't know what Thuamic Additions is and doesn't add the plate recipes automatically
  9. recipes.addShapeless(<thaumadditions:mithrillium_plate>, [<thaumadditions:mithrillium_ingot>, <immersiveengineering:tool>]);
  10. recipes.addShapeless(<thaumadditions:adaminite_plate>, [<thaumadditions:adaminite_ingot>, <immersiveengineering:tool>]);
  11. recipes.addShapeless(<thaumadditions:mithminite_plate>, [<thaumadditions:mithminite_ingot>, <immersiveengineering:tool>]);
  12.  
  13. //Thaumic Wonders adds a stack to an altar which was never designed to hold more than one item at a time
  14. mods.thaumcraft.Infusion.removeRecipe(<thaumicwonders:vishroom_spore>);
  15. mods.thaumcraft.Infusion.registerRecipe("vishroom_spore", "TWOND_MYSTIC_GARDENING", <thaumicwonders:vishroom_spore>.withTag({display: {Lore:["handful"]}}), 5, [<aspect:herba> * 10, <aspect:ignis> * 10, <aspect:praecantatio> * 5], <minecraft:wheat_seeds>, [<thaumcraft:vishroom>, <thaumcraft:salis_mundus>]);
  16. recipes.addShapeless(<thaumicwonders:vishroom_spore> * 8, [<thaumicwonders:vishroom_spore>.withTag({display: {Lore:["handful"]}})]);
  17.  
  18. mods.thaumcraft.Infusion.removeRecipe(<thaumicwonders:shimmerleaf_seed>);
  19. mods.thaumcraft.Infusion.registerRecipe("shimmerleaf_seed", "TWOND_MYSTIC_GARDENING",<thaumicwonders:shimmerleaf_seed>.withTag({display: {Lore:["handful"]}}), 5, [<aspect:herba> * 10, <aspect:victus> * 10, <aspect:auram> * 5], <minecraft:wheat_seeds>, [<thaumcraft:shimmerleaf>, <thaumcraft:salis_mundus>]);
  20. recipes.addShapeless(<thaumicwonders:shimmerleaf_seed> * 8, [<thaumicwonders:shimmerleaf_seed>.withTag({display: {Lore:["handful"]}})]);
  21.  
  22. mods.thaumcraft.Infusion.removeRecipe(<thaumicwonders:cinderpearl_seed>);
  23. mods.thaumcraft.Infusion.registerRecipe("cinderpearl_seed", "TWOND_MYSTIC_GARDENING", <thaumicwonders:cinderpearl_seed>.withTag({display: {Lore:["handful"]}}), 5, [<aspect:herba> * 10, <aspect:victus> * 10, <aspect:auram> * 5], <minecraft:wheat_seeds>, [<thaumcraft:cinderpearl>, <thaumcraft:salis_mundus>]);
  24. recipes.addShapeless(<thaumicwonders:cinderpearl_seed> * 8, [<thaumicwonders:cinderpearl_seed>.withTag({display: {Lore:["handful"]}})]);
  25.  
  26. //Crimson Revelations adds a bunch of breakdown recipes using perditio, let's add some more
  27. mods.thaumcraft.Crucible.registerRecipe("wheat_to_flour","ENTROPIC_PROCESSING", <roots:flour>, <minecraft:wheat>, [<aspect:perditio>*25]);
  28. mods.thaumcraft.Crucible.registerRecipe("potato_to_flour","ENTROPIC_PROCESSING", <roots:flour>, <minecraft:potato>, [<aspect:perditio>*25]);
  29. mods.thaumcraft.Crucible.registerRecipe("starmetal_dust","ENTROPIC_PROCESSING", <astralsorcery:itemcraftingcomponent:2>, <astralsorcery:itemcraftingcomponent:1>, [<aspect:perditio>*25]);
  30.  
  31. //Fix Flux Rifts not being created with flux seeds in wuss mode
  32. mods.thaumcraft.Crucible.removeRecipe(<thaumicaugmentation:rift_seed:1>);
  33. mods.thaumcraft.Crucible.registerRecipe("thaumicaugmentation:flux_seed","RIFT_STUDIES", <thaumicaugmentation:rift_seed:0>.withTag({riftSize:10}), <thaumcraft:void_seed>, [<aspect:vitium>*100]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement