Does Lilypad Of Fertility Work With Botany Pots Exclusive Repack Online
Here’s a comprehensive content piece you can use for a wiki, Reddit guide, mod documentation, or FAQ section.
5. Exceptions & Workarounds
D. Time Torches (Torchmaster Mod)
- Time torches accelerate tile entity ticks. Unlike the Lilypad, a time torch will speed up Botany Pots because it globally increases tick speed in a radius.
5.2 KubeJS / CraftTweaker
You can manually link them:
// KubeJS example (fictional but logically possible)
BlockEvents.broken('botanypots:botany_pot', event =>
let lilypadNear = event.block.findEntitiesWithin('reliquary:lilypad_of_fertility', 4);
if (lilypadNear.length > 0)
event.block.entity.data.raw.progress += 5; // manual boost
);
This is not native behavior.
1.2 Research Question
Does the Lilypad of Fertility reduce the growth time of a crop planted in a Botany Pot placed within its radius? does lilypad of fertility work with botany pots exclusive
3.2 Botany Pots
Botany Pots overrides randomTick() to do nothing. Growth is handled by BotanyPotBlockEntity.tick(): Here’s a comprehensive content piece you can use
if (this.progress >= this.getTotalGrowthTime())
this.harvest();
else
this.progress += this.getGrowthSpeed();
No public IGrowable interface is exposed to external acceleration mods. Time torches accelerate tile entity ticks
How it functions in the world:
- Place it on water. It must be on a water source block.
- Target limitation. It only applies random ticks to vanilla-style crops (Wheat, Carrots, Potatoes) and some modded crops that specifically extend the
ICropinterface orIGrowableinterface. - The "Random Tick" rule. The Lilypad essentially mimics the random ticks a crop receives when a chunk is loaded near a player, but at a much higher frequency.
Key takeaway: The Lilypad requires the target block to receive random ticks and to be a living crop block that changes state.