Plant Magic-MOT Tutorial [BOT] Botania Minecraft Game

This tutorial is from MC Encyclopedia (MCMOD.CN) using the CC By-NC-ND protocol.

Brewing part:

Add to:

 mods.botania.brew.addrecipe ([, , ], "Ticks) "); 

Remove:

 mods.botania.brew.removerecipe (product>); 

Elf Gate: Dark and Deep Elf Jiao Yi:

Add to:

 mods.botania.elventrade.addrecipe ([], []; 

example

 mods.botania.elventrade.addrecipe ([], []); 

Remove:

 mods.botania.elventrade.removerecipe (); 

example:

 mods.botania.elventrade.removerecipe (); 

Magic Pond:

Add to:

 mods.botania.manainfusion.addinfusion (, , required mana); 

example

 mods.botania.manainfusion.addinfusion (, , 1000); 

// Note the demon, that is, throw it directly into the magic pond

 mods.botania.manainfusion.addalchemy (, , required mana); 

example

 mods.botania.Manainfusion.addalchemy (*4, , 5000); 

// Alchemist catalysis, that is, the magic pond of the alchemy catalyst is added

 mods.botania.Manainfusion.addConjuration

example

 mods.botania.Manainfusion.addConjuration (*2, , 1000); 

// Copy alchemy, that is, the magic pond of the alchemy manufacturer is added

Remove:

 mods.botania.manAINFUSION.RMOVERECIPE (); 
Example

 mods.botania.Manainfusion.removerecipe ();

mods.botania.manainfusion.removerecipe (*2);

Ningjin Lan:

Add to:

 Mods.botania.oreChid.addore (, 5000); 

Remove:

 Mods.botania.oreChid.removeore ();

//example

mods.botania.oreChid.removeore ();

Hua Yaotai part:

// Except for the basic seeds, all items can form an effective formula (only in the original formula of plant magic) (only in the formula of plant magic) (wheat seeds cannot be used in the formula).

Add to:

 Mods.botania.apothecary.addrecipe ("Bubbell", [, , , * 1]);

mods.botania.apothecary.addrecipe (, [, , ]);

In addition, you can customize the synthesis of the flower pharmacy (only the original items in the original formula can be used)

 mods.botania.apothecary.addrecipe (, [, , , *1]);

mods.botania.apothecary.addrecipe (, [, , ]);

Remove:

 Mods.botania.apothecary.removerecipe ("Daybloom"); 

White Daisy:

Add to:

 Mods.botania.puredaisy.addrecipe (, ); Raw materials>, ); 

Remove:

 Mods.botania.puredaisy.removerecipe ()

mods.botania.puDaisy.removerecipe ();

Rune altar:

Add to:

 Mods.botania.runealTar.addRcipe (, [, ], 5);

mods.botania.runealtar.addrecipe (, [, ], required mana); // Note: a magic pond is 100WMANA

Remove:

 Mods.botania.runealtar.RMOVERECIPE (); 

Instruction support:

/MineTweaker Botania [Handler]-Outputs A List of All Botania Recipes/MineTweaker Botaniabrews OtaniaoreChid-Outputs A List of Keys for Botania Orent Weight Weight 

This tutorial comes from MOT official website.