Advanced Botany: Rebloom

Unveil the Power of the Sprites

File Details

advanced_botany_rebloom-1.1.1.jar

  • R
  • Jul 9, 2026
  • 1.41 MB
  • 23
  • 1.12.2
  • Forge

File Name

advanced_botany_rebloom-1.1.1.jar

Supported Versions

  • 1.12.2

Curse Maven Snippet

Forge

implementation fg.deobf("curse.maven:advanced-botany-rebloom-1598374:8397581")
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

  • Fixed some bugs on the server side…Maybe……
  • Fixed a bug that affected flight mechanics from other mods…
  • Added support for CraftTweaker.

// ===== addRecipe Examples =====

// 1 input
mods.advancedbotany.AdvancedPlate.addRecipe(<minecraft:diamond>, [<minecraft:coal>], 10000, 0x00FFFF);

// 2 inputs
mods.advancedbotany.AdvancedPlate.addRecipe(<minecraft:emerald>, [<minecraft:coal>, <minecraft:iron_ingot>], 15000, 0x00FF00);

// 3 inputs
mods.advancedbotany.AdvancedPlate.addRecipe(<minecraft:nether_star>, [<minecraft:coal>, <minecraft:iron_ingot>, <minecraft:gold_ingot>], 20000, 0xFF00FF);

// ===== The following methods should be tested individually; do not run them together with addRecipe =====

// removeRecipe — removes the recipe for the given output
mods.advancedbotany.AdvancedPlate.removeRecipe(<botania:manaresource:4>);

// removeAll — removes all recipes
// mods.advancedbotany.AdvancedPlate.removeAll();

// modifyMana — modifies the mana cost of the recipe for the given output
mods.advancedbotany.AdvancedPlate.modifyMana(<advanced_botany:itemabresource>, 50000000);

// modifyOutput — modifies the output item of a recipe
// mods.advancedbotany.AdvancedPlate.modifyOutput(<minecraft:diamond>, <minecraft:emerald>);

// modifyColor — modifies the color of a recipe
// mods.advancedbotany.AdvancedPlate.modifyColor(<minecraft:diamond>, 0xFF0000);

// ===== Ancient Alphirine Recipe Examples =====

// 1. addRecipe — adds a recipe (output, input, chance 0.0~1.0)
mods.advancedbotany.Alphirine.addRecipe(<minecraft:diamond>, <minecraft:coal>, 0.15);

// 2. removeRecipe — removes the recipe for the given output
// mods.advancedbotany.Alphirine.removeRecipe(<minecraft:diamond>);

// 3. removeAll — removes all recipes
// mods.advancedbotany.Alphirine.removeAll();

// 4. modifyChance — modifies the chance of the recipe for the given output
// mods.advancedbotany.Alphirine.modifyChance(<minecraft:diamond>, 0.5);

// 5. modifyOutput — modifies the output item of a recipe
// mods.advancedbotany.Alphirine.modifyOutput(<minecraft:diamond>, <minecraft:emerald>);

// 6. modifyInput — modifies the input item of a recipe
// mods.advancedbotany.Alphirine.modifyInput(<minecraft:diamond>, <minecraft:iron_ingot>);