Attuning Bowl | |
---|---|
Statistics | |
Rarity color | Common |
Stackable | No |
Version added | 2.2 |
ID | aoa3:attuning_bowl |
The Attuning Bowl is a tool used to harvest Pixons.
Obtaining[ | ]
Crafting[ | ]
Item | Ingredients | Recipe |
---|---|---|
Attuning Bowl | 7 forge:gems/amethyst (Tag) + 1 forge:ingots/gold (Tag) |
|
Usage[ | ]
Harvesting Pixons[ | ]
Holding down use will have the player hold out the Attuning Bowl. Standing next to a Pixon with the bowl out will siphon energy from the Pixon, weakening it while giving Imbuing experience and the Pixon's respective Energy Stone or Power Stone.
When the player holds out the Attuning Bowl next to a Pixon, the chance to get an Energy or Power Stone is determined by this formula rolled every tick: random.nextFloat() < magnitude / 250f
, where random.nextFloat()
represents a random number between 0 and 1. If the nextFloat becomes a smaller value than the value on the right, the player gains a Stone and the Pixon's magntitude decreases by 0.5. This means that Pixons will usually drop Energy or Power Stones faster at higher magnitudes.
The radius of the Pixon the player must be within to start harvesting ranges from 2.05-3.25 blocks, depending on the magnitude. This is determined by this formula: 2 + magnitude * 0.05 blocks
|