Skip to content

Commit

Permalink
Heavily nerf seed recipes
Browse files Browse the repository at this point in the history
As crafting stacked items is not possible from infusion, it's best to just nerf these recipes instead.
  • Loading branch information
IcarussOne committed Aug 13, 2024
1 parent 0d465eb commit 1aa9da4
Showing 1 changed file with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -747,36 +747,33 @@ private static void initInfusionRecipes() {

ThaumcraftApi.addInfusionCraftingRecipe(new ResourceLocation(ThaumicWonders.MODID, "shimmerleaf_seed"), new InfusionRecipe(
"TWOND_MYSTIC_GARDENING",
new ItemStack(ItemsTW.SHIMMERLEAF_SEED, 8),
new ItemStack(ItemsTW.SHIMMERLEAF_SEED, 1),
2,
new AspectList().add(Aspect.PLANT, 10).add(Aspect.LIFE, 10).add(Aspect.AURA, 5),
new AspectList().add(Aspect.PLANT, 5).add(Aspect.LIFE, 5).add(Aspect.AURA, 5),
new ItemStack(Items.WHEAT_SEEDS),
new Object[] {
new ItemStack(BlocksTC.shimmerleaf),
new ItemStack(ItemsTC.salisMundus)
}
));

ThaumcraftApi.addInfusionCraftingRecipe(new ResourceLocation(ThaumicWonders.MODID, "cinderpearl_seed"), new InfusionRecipe(
"TWOND_MYSTIC_GARDENING",
new ItemStack(ItemsTW.CINDERPEARL_SEED, 8),
new ItemStack(ItemsTW.CINDERPEARL_SEED, 1),
2,
new AspectList().add(Aspect.PLANT, 10).add(Aspect.LIFE, 10).add(Aspect.FIRE, 5),
new AspectList().add(Aspect.PLANT, 5).add(Aspect.LIFE, 5).add(Aspect.FIRE, 5),
new ItemStack(Items.WHEAT_SEEDS),
new Object[] {
new ItemStack(BlocksTC.cinderpearl),
new ItemStack(ItemsTC.salisMundus)
}
));

ThaumcraftApi.addInfusionCraftingRecipe(new ResourceLocation(ThaumicWonders.MODID, "vishroom_spore"), new InfusionRecipe(
"TWOND_MYSTIC_GARDENING",
new ItemStack(ItemsTW.VISHROOM_SPORE, 8),
new ItemStack(ItemsTW.VISHROOM_SPORE, 1),
2,
new AspectList().add(Aspect.PLANT, 10).add(Aspect.LIFE, 10).add(Aspect.MAGIC, 5),
new AspectList().add(Aspect.PLANT, 5).add(Aspect.LIFE, 5).add(Aspect.MAGIC, 5),
new ItemStack(Items.WHEAT_SEEDS),
new Object[] {
new ItemStack(BlocksTC.vishroom),
new ItemStack(ItemsTC.salisMundus)
}
));
Expand Down

0 comments on commit 1aa9da4

Please sign in to comment.