Level 30 enchantment table setup
- minecraft enchantment table bookshelf
- minecraft enchantment table bookshelf setup
- minecraft enchantment table bookshelf placement
- minecraft enchantment table bookshelf layout
Enchantment table recipe!
This article is about the mechanics of enchanting.
Basic mechanics[]
Whenever the player places an eligible item on the enchanting table, the enchantment levels available are randomly generated for each slot using the formula below.
The enchantment level is dependent upon the number of nearby bookshelves (capped at 15) and which slot position it is in.
How much bookshelves for max enchantment java
- Base enchantment level available (base) = (randomInt(1,8) + floor(b / 2) + randomInt(0,b)),
where b is the number of nearby bookshelves (maximum of 15) and x..y generates a uniformly distributed random integer between x and y, inclusive.
This is then modified according to the slot position:
- Top slot enchantment level = floor(max(base / 3, 1))
- Middle slot enchantment level = floor((base × 2) / 3 + 1)
- Bottom slot enchantment level = floor(max(base, b × 2))
where max(x, y) returns the greater of two values x and y.
| # of bookshelves | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Min level (in top slot) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2
|