Place two sticky pistons facing each other, separated by a three-block gap.
The "secret" part is literal: The developers have hidden at least five distinct mobs behind piston-based puzzles. These mobs are not listed in the standard bestiary. They drop unique items (like Cogsteel Ingots or Redstone Hearts ) that cannot be obtained anywhere else.
You must collect three units each of Milk (from the Cow mob), Wool (from the Sheep mob), and Honeycomb (from the Queen Bee) to purchase her from the shop.
Before hunting the mobs, you must understand why pistons are the key. In Lovely Craft’s source logic, pistons create a unique "compression event." When a piston extends, it briefly creates a 0.5-tick window where the block space in front of it is neither air nor solid—a quantum state in block terms.
onPistonEvent(event) let block = event.getBlock(); if (block.hasTag("piston_secret") && canSpawnSecret(block)) let mobType = getRandomSecretMob(block.getFacing(), event.isExtending()); let mob = block.getWorld().spawnEntity(mobType, block.getPos().offset(event.getFacing())); mob.setCustomName(getMobName(mobType)); playSound("lovelycraft:piston_squeak", block.getPos()); scheduleCooldown(block, 6000); // 5 min cooldown in ticks
Hide your trigger mechanism inside a book, a flower pot, or an item frame.
Use nine pieces of paper (crafted from sugarcanes) and sell it to unlock the "Forest" location.