Skip to content

Commit

Permalink
fix(recipes): ✏️Botania Rods make significantly cheaper
Browse files Browse the repository at this point in the history
Those rods provided nice utility, but they are available too late in progression. Now players would be able to use them even before they can make runes.

Changed recipes for:
[<botania:cobblerod>][<botania:dirtrod>][<botania:diviningrod>][<botania:firerod>][<botania:gravityrod>][<botania:missilerod>][<botania:smeltrod>][<botania:terraformrod>][<botania:tornadorod>][<botania:waterrod>][<botania:skydirtrod>]

https://i.imgur.com/LKaJfMS.png
  • Loading branch information
Krutoy242 committed May 11, 2024
1 parent 2ac8360 commit 4dae18f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions scripts/mods/botania.zs
Original file line number Diff line number Diff line change
Expand Up @@ -424,4 +424,16 @@ craft.remake(<botania:exchangerod>, ['pretty',
'F': <ore:runeFireB>, // Rune of Fire
'T': <ore:livingwoodTwig>, // Livingwood Twig
});

recipes.removeByRecipeName('botania:cobblerod'); recipes.addShaped(<botania:cobblerod>, [[null, null, <ore:cobblestone>], [null, <ore:livingwoodTwig>, null], [<ore:livingwoodTwig>, null, null]]);
recipes.removeByRecipeName('botania:dirtrod'); recipes.addShaped(<botania:dirtrod>, [[null, <minecraft:dirt>], [<ore:livingwoodTwig>, null]]);
recipes.removeByRecipeName('botania:diviningrod'); recipes.addShaped(<botania:diviningrod>, [[null, <ore:livingwoodTwig>, <ore:gemDiamondRat>], [null, <ore:livingwoodTwig>, <ore:livingwoodTwig>], [<ore:livingwoodTwig>, null, null]]);
recipes.removeByRecipeName('botania:firerod'); recipes.addShaped(<botania:firerod>, [[null, <minecraft:blaze_powder>], [<ore:livingwoodTwig>, null]]);
recipes.removeByRecipeName('botania:gravityrod'); recipes.addShaped(<botania:gravityrod>, [[null, <ore:dreamwoodTwig>, null], [null, <ore:cropWheat>, <ore:dreamwoodTwig>], [<ore:dreamwoodTwig>, null, null]]);
recipes.removeByRecipeName('botania:missilerod'); recipes.addShaped(<botania:missilerod>, [[null, <ore:elvenDragonstone>, <ore:elvenDragonstone>], [null, <ore:dreamwoodTwig>, <ore:elvenDragonstone>], [<ore:dreamwoodTwig>, null, null]]);
recipes.removeByRecipeName('botania:smeltrod'); recipes.addShaped(<botania:smeltrod>, [[null, <minecraft:blaze_rod>, null], [null, <ore:livingwoodTwig>, <minecraft:blaze_rod>], [<ore:livingwoodTwig>, null, null]]);
recipes.removeByRecipeName('botania:terraformrod'); recipes.addShaped(<botania:terraformrod>, [[null, null, <ore:ingotTerrasteel>], [null, <botania:dirtrod>, null], [<botania:grassseeds>, null, null]]);
recipes.removeByRecipeName('botania:tornadorod'); recipes.addShaped(<botania:tornadorod>, [[null, <ore:feather>], [<ore:livingwoodTwig>, null]]);
recipes.removeByRecipeName('botania:waterrod'); recipes.addShaped(<botania:waterrod>, [[null, <minecraft:potion>.withTag({Potion: 'minecraft:water'})], [<ore:livingwoodTwig>, null]]);
recipes.removeByRecipeName('botania:skydirtrod'); recipes.addShapeless(<botania:skydirtrod>, [<botania:dirtrod>, <ore:elvenPixieDust>]);
// ////////////////////////////////////////////////////////////////

0 comments on commit 4dae18f

Please sign in to comment.