Minecraft Wiki
Register
Advertisement
For the feature in Minecraft Dungeons, see MCD:Difficulty.
This article is about the gameplay mechanic. For the command, see Commands/difficulty.
Skeleton Golden

Mobs in full armor are a common sight in higher difficulty levels.

Difficulty is an option in Minecraft that has a direct impact on the ease of gameplay, allowing the game's challenges to be tailored to the player's skill level.

World settings[]

DifficultyButton
Difficulty

The difficulty button in the options menu.

There are four difficulty levels in the game: Peaceful, Easy, Normal and Hard. These can be changed when creating a world, in the settings, as well as with the /difficulty command.

While the difficulty settings modify the challenge in Survival mode, they also affect hostile mobs in Creative mode the same as in Survival; for example:[verify]

  • Hostile Overworld mobs cannot spawn naturally in Creative Peaceful.
  • Zombies have the same difficulty-dependent chances as in Survival to convert villagers into zombie villagers (0% in Creative Easy, 50% in Creative Normal, 100% in Creative Hard).
  • Hostile mobs killed by mob grinders in farms drop higher-value items in Creative Hard.

Survival mode is affected by difficulty as described in the sections below.

Peaceful[]

No hostile mobs can spawn naturally, except for shulkers, hoglins, zoglins, piglin brutes, evokers[Bedrock Edition only], vindicators[Bedrock Edition only], and the ender dragon. Llamas are the only mob that are able to do damage in this difficulty. No spiders, cave spiders, zombified piglins or endermenneutral rather than hostile mobs – can spawn naturally. When any of these mobs attempt to spawn (whether naturally, through monster spawners, spawn eggs, or commands), they are removed from the game instantaneously. When the difficulty is switched from any other setting to Peaceful, all mobs that are not allowed to spawn on Peaceful are removed from the world. Players regain health rapidly over time. Despite this, it is still possible to die if damage is received quickly enough. TNT deals no direct damage to the player, but it does give knockback still, meaning a player can be killed by it if it launches them too far upward. The hunger bar never depletes; in Java Edition, players therefore cannot eat anything except golden apples, chorus fruits, milk buckets, honey and suspicious stew, unless the player switched to Peaceful when their hunger bar was below the maximum. Players can eat normally in Bedrock Edition. Additionally, if the hunger bar is below the maximum, it regenerates quickly.

End portals cannot be activated by the player in Peaceful difficulty, because it is impossible to acquire the twelve eyes of ender necessary to activate an end portal by killing endermen.[note 1] However, it is possible for an end portal to be activated by naturally generating with an eye of ender already embedded within all 12 end portal frames. For any given end portal, there is only a 1 in a trillion chance of this happening.[note 2] However, because of the huge number of possible seeds, over 8 million seeds are known to generate such end portals. [1]

Also, not all advancements / achievements can be completed in Peaceful difficulty.

Easy[]

Hostile mobs spawn, but they deal 12 of the damage they would on Normal difficulty plus 1♥. The hunger bar can deplete, damaging the player until 10♥♥♥♥♥ remain if it drains completely. Cave spiders and bees cannot poison players on Easy difficulty, and the wither does not cause the Wither effect, although wither skeletons do. Lightning sets only the struck block on fire, not surrounding blocks. Zombies do not break down doors, and do not turn villagers into zombie villagers. Zombies and skeletons don't wear full sets of armor. Hostile mobs like zombies, skeletons, spiders, husks and strays deal about 1♥ or 2♥ damage.

Normal[]

Hostile mobs spawn and deal standard damage, about 2♥ or 3♥♥. The hunger bar can deplete, damaging the player until 1♥ remains if it drains completely. Zombies do not break down doors, but villagers killed by zombies have a 50% chance of turning into zombie villagers. Zombies and skeletons rarely wear sets of enchanted armor. Vindicators can break doors.

Hard[]

Hostile mobs deal approximately 112 times the damage they would deal on Normal difficulty, and in some cases drop higher-value items when killed. The hunger bar can deplete, not only damaging but also killing the player if it drains completely. Zombies can break through wooden doors and can spawn reinforcements when attacked. Spiders can spawn with a beneficial status effect (speed, strength, regeneration, and invisibility), with these effects having a nearly infinite duration in Java Edition. Villagers killed by zombies always turn into zombie villagers. Pillagers spawn near the player, with their attacks dealing 4♥♥ damage. In Bedrock Edition, if the world type is infinite, they deal 5♥♥♥ damage.

Hardcore mode[]

Hardcore Heart

Icon for Java Edition Hardcore mode.

Main article: Hardcore

In Java Edition, at the world creation screen, selecting Hardcore from among the game mode options causes the player to spawn in Hard difficulty, does not allow it to be changed, and allows the player only one life. In a single player world, a player who dies can choose to respawn in Spectator mode or return to the title screen. In multiplayer, upon death, the player's game mode is automatically set to Spectator mode.

The only way to change the difficulty of Hardcore is to use the Open to LAN feature in the pause menu to enable commands, or to use an .NBT editor on the world's .NBT file.

This difficulty is currently not available in Realms.

Moon phase[]

The phase of the moon has effects on the spawning of slimes in swamp biomes, and contributes to the calculation of regional difficulty. The fuller the moon is, the greater the effect.

The moon does not actually have to be in the sky for this effect to take place, since the moon exists in daytime and across dimensions.

Moon phase Value Percentage
Full 1.0 100%
Gibbous 0.75 75%
Quarter 0.5 50%
Crescent 0.25 25%
New 0.0 0%

Regional difficulty[]

Local Difficulty Debug

Regional difficulty values shown on the debug screen

Regional difficulty or local difficulty is a value between 0.00 and 6.75 that the game calculates by considering not just the world difficulty setting, but also the inhabited time of a chunk, the total daytime in the world, and the phase of the moon. This value is shown on the debug screen as the first value listed after the heading "Local Difficulty". This value determines several aspects of the difficulty of gameplay (see below).

The inhabited time of a chunk increases for each tick a player spends with the chunk loaded. This is a cumulative measure of time—if 50 players spend a single hour in a chunk, it counts the same as if one player spent 50 hours there. The effect of inhabited time on regional difficulty is capped at 50 hours.

The total daytime in the world is the value from /time query daytime added to the "Day" on the F3 debug screen converted to ticks, i.e. daytime + (dayNumber * 24,000). This is not the same as the actual playtime in the world (the value from /time query gametime). It affects the regional difficulty after the first 3 in-game days, and has no additional effect after 63 in-game days.

In pseudocode, the calculation of regional difficulty is:

# DaytimeFactor, ChunkFactor, and RegionalDifficulty are floating-point variables
# MoonPhase is as in the table above.

if (difficulty is Peaceful) return 0

if (TotalDaytime > 63 in-game days) DaytimeFactor = 0.25
else if (TotalDaytime < 3 in-game days) DaytimeFactor = 0 
else DaytimeFactor = (TotalDaytimeInTicks − 72,000) / 5,760,000

if (ChunkInhabitedTime > 50 hours) ChunkFactor = 1
else ChunkFactor = ChunkInhabitedTimeInTicks / 3,600,000

if (difficulty is Normal or Easy) multiply ChunkFactor by 0.75

if (MoonPhase ÷ 4 > DaytimeFactor) add DaytimeFactor to ChunkFactor
else add (MoonPhase ÷ 4) to ChunkFactor

if (difficulty is Easy) multiply ChunkFactor by 0.5

RegionalDifficulty = 0.75 + DaytimeFactor + ChunkFactor

if (difficulty is Normal) multiply RegionalDifficulty by 2
if (difficulty is Hard) multiply RegionalDifficulty by 3

return RegionalDifficulty

The raw regional difficulty therefore is always 0.0 on Peaceful and ranges from 0.75 to 1.5 on Easy, 1.5 to 4.0 on Normal, and 2.25 to 6.75 on Hard.

Clamped regional difficulty[]

Regional difficulty to Clamped regional difficulty

How clamped regional difficulty relates to regional difficulty

The clamped regional difficulty (also known as special multiplier) also is a value between 0.00 and 1.00 based on regional difficulty. This value is shown on the debug screen as the second value listed after the heading "Local Difficulty". This is yet another value that affects the difficulty of gameplay (see below).

The regional difficulty value is clamped as follows:

if (RegionalDifficulty < 2.0) value = 0.0;
else if (RegionalDifficulty > 4.0) value = 1.0;
else value = (RegionalDifficulty − 2.0) / 2.0;

Thus, on Easy, where regional difficulty is never higher than 1.5, the clamped value is always zero.

On Normal, the effects reach the maximum after 63 in-game days (1512000 game ticks) in a fully-inhabited chunk on a full moon; and on Hard after 63 in-game days the effects reach the maximum in chunks inhabited 4 16 hours during a full moon and remain at maximum in chunks inhabited over 16 23 hours.[verify]

Effects[]

Mob damage[]

The damage mobs deal to players is affected by the difficulty of the game. The below values represent the amount of damage taken per hit.

  • This applies only to mobs attacking the player. Mobs attacking other mobs always deal the 'Normal' damage listed, regardless of difficulty.
  • Values for the creeper and ghast assume the player is directly adjacent to the explosion.
  • The damage of slimes and magma cubes depends on their size. Tiny-sized slimes, while hostile, are unable to do damage directly.
  • Mobs deal no damage to players on peaceful.
Mob Difficulty Status effect(s)ㅤㅤㅤㅤㅤㅤㅤ[edit]
Easy Normal Hard
Bee 2♥ 2♥ 3♥♥ Poison for 10 seconds on Normal difficulty and for 18 seconds on Hard difficulty
Blaze (melee) 4♥♥ 6♥♥♥ 9♥♥♥♥♥ No
Blaze fireball 9♥♥♥♥♥ + fire for 5 seconds No
Cave Spider 2♥ 2♥ 3♥♥ Poison for 7 seconds on Normal difficulty and for 15 seconds on Hard difficulty
Chicken Jockey 2.5♥ × 1.25 3♥♥ 4.5♥ × 2.25 No
Creeper explosion (normal) 22.5♥ × 11.25 43♥ × 21.5 64.5♥ × 32.25 When exploding: No

If having a potion effect when exploding, it leaves an effect cloud with the effect, like a lingering potion.

Creeper explosion (charged) 43.5♥ × 21.75 85♥ × 42.5 127.5♥ × 63.75
Dolphin 2.5♥ × 1.25 3♥♥ 4.5♥ × 2.25 No
Drowned No
Drowned trident (Ranged) 8♥♥♥♥ No
Drowned trident (Melee)‌[BE only] 5♥♥♥ 9♥♥♥♥♥ 12♥ × 6 No
Elder Guardian (Laser) 5♥♥♥ 8♥♥♥♥ 12♥ × 6 Inflicts Mining Fatigue III for 5 minutes on nearby players
Elder Guardian (Spikes) 2♥ 3♥♥
Elder Guardian Ghost (Spikes) 2♥ 3♥♥ No
Ender Dragon (Melee) 6♥♥♥ 10♥♥♥♥♥ 15♥ × 7.5 No
Ender Dragon (Wings) 3♥♥ 5♥♥♥ 7♥♥♥♥ No
Ender Dragon (Breath) 3♥♥ per second Area effect cloud of Instant Damage
Ender Dragon Dragon Fireball 6♥♥♥ per second
Enderman 4.5♥ × 2.25 7♥♥♥♥ 10.5♥ × 5.25 No
Endermite 2♥ 3♥♥ No
Evoker fangs 6♥♥♥ No
Ghast fireball (Impact) 6♥♥♥ No
Ghast fireball (Explosion) 7♥♥♥♥ 12♥ × 6 22.5♥ × 11.25 No
Giant 26♥ × 13 50♥ × 25 75♥ × 37.5 No
Goat 1♥ 2♥ 3♥♥ No
Guardian (Laser) 4♥♥ 6♥♥♥ 9♥♥♥♥♥ No
Guardian (Spikes) 2♥ 3♥♥ No
Hoglin[JE only] 2.5♥ × 1.25 to 5♥♥♥ 3♥♥ to 8♥♥♥♥ 4.5♥ × 2.25 to 12♥ × 6 No
Hoglin (baby)‌[JE only] 0.5♥ × 0.25 0.75♥ × 0.375 No
Hoglin[BE only] 3♥♥ 6♥♥♥ 9♥♥♥♥♥ No
Husk 2.5♥ × 1.25 3♥♥ 4.5♥ × 2.25 Hunger when attacking any mob for 7 × floor of RD seconds
Illusioner arrow 2♥ to 5♥♥♥ 3♥♥ to 5♥♥♥ Throws Blindness spells on the player, if regional difficulty is 2 or greater
Iron Golem 4.75♥ × 2.375 to 11.75♥ × 5.875 7.5♥ × 3.75 to 21.5♥ × 10.75 11.25♥ × 5.625 to 32.25♥ × 16.125 No
The Killer Bunny 5♥♥♥ 8♥♥♥♥ 12♥ × 6 No
Llama spit 1♥ No
Magma Cube (big) 4♥♥ 6♥♥♥ 9♥♥♥♥♥ No
Magma Cube (medium) 3♥♥ 4♥♥ 6♥♥♥ No
Magma Cube (small) 2.5♥ × 1.25 3♥♥ 4.5♥ × 2.25 No
Panda 4♥♥ 6♥♥♥ 9♥♥♥♥♥ No
Phantom[JE only] 2♥ 3♥♥ No
Phantom[BE only] 4♥♥ 6♥♥♥ 9♥♥♥♥♥ No
Piglin arrow[JE only] 3♥♥ to 4♥♥ 4♥♥ No
Piglin arrow[BE only] 1♥ - 5♥♥♥ No
Piglin (Melee with Sword)‌[JE only] 5♥♥♥ 8♥♥♥♥ 12♥ × 6 No
Piglin (Melee without Sword)‌[JE only] 3.5♥ × 1.75 5♥♥♥ 7.5♥ × 3.75 No
Piglin[BE only] 5♥♥♥ 9♥♥♥♥♥ 13♥ × 6.5 No
Piglin Brute 7.5♥ × 3.75 13♥ × 6.5 19.5♥ × 9.75 No
Pillager arrow 3♥♥ to 4♥♥ 4♥♥ No
Polar Bear 4♥♥ 6♥♥♥ 9♥♥♥♥♥ No
Pufferfish 2♥ 3♥♥ Poison for 5 seconds
Ravager (Melee) 7♥♥♥♥ 12♥ × 6 18♥ × 9 No
Ravager (Roar) 4♥♥ 6♥♥♥ 9♥♥♥♥♥ No
Shulker bullet 4♥♥ Levitation for 10 seconds
Silverfish 1♥ No
Skeleton arrow[JE only] 2♥ to 4♥♥ 3♥♥ to 4♥♥ 4♥♥ to 5♥♥♥ No
Skeleton arrow[BE only] 1♥ to 4♥♥, varies with proximity 1♥ to 5♥♥♥, varies with proximity No
Skeleton (melee) 2♥ 3♥♥ No
Skeleton Horseman arrow[JE only] Varies with skeleton bow enchantment No
Skeleton Horseman arrow[BE only] Varies with skeleton bow enchantment No
Slime (big) 3♥♥ 4♥♥ 6♥♥♥ No
Slime (medium) 2♥ 3♥♥ No
Slime (small) 0♥ No
Spider 2♥ 3♥♥ No, but can spawn with effects
Spider Jockey (spider) 2♥ 3♥♥ No, but can spawn with effects
Spider Jockey arrow[JE only] 3♥♥ to 5♥♥♥ No
Spider Jockey arrow[BE only] Damage varies with proximity No
Stray arrow[JE only] 3♥♥ to 5♥♥♥ Slowness for 30 seconds when their tipped arrow hits any mob (including another stray)
Stray arrow[BE only] Damage varies with proximity
Stray (melee) 2♥ 3♥♥ No
Trader Llama spit 1♥ No
Vex 5.5♥ × 2.75 9♥♥♥♥♥ 13.5♥ × 6.75 No
Vindicator 7.5♥ × 3.75 13♥ × 6.5 19.5♥ × 9.75 No
Warden (Melee) 16♥ × 8 30♥ × 15 45♥ × 22.5 No
Warden (Ranged) 6♥♥♥ 10♥♥♥♥♥ 15♥ × 7.5 No
Witch Deals damage by throwing potions Throws splash potions of Poison, Instant Damage, Slowness, and Weakness
Wither Skeleton 5♥♥♥ 8♥♥♥♥ 12♥ × 6 Wither for 10 seconds
Wither (birth explosion) 35.5♥ × 17.75 69♥ × 34.5 103.5♥ × 51.75 No
Wither Skull 8♥♥♥♥ 8♥♥♥♥ Wither II for 10 seconds on Normal difficulty and 40 seconds on Hard difficulty
Wither (dash attack)
[BE only]
15♥ × 7.5 No
Wolf (hostile) 3♥♥ 4♥♥ 6♥♥♥ No
Wolf (tamed) 4♥♥ No
Zoglin 2.5♥ × 1.25 to 5♥♥♥ 3♥♥ to 8♥♥♥♥ 4.5♥ × 2.25 to 12♥ × 6 No
Zoglin (baby) 0.5♥ × 0.25 0.75♥ × 0.375 No
Zombie 2.5♥ × 1.25 3♥♥ 4.5♥ × 2.25 No
Zombified Piglin 5♥♥♥ 8♥♥♥♥ 12♥ × 6 No
Zombie Villager 2.5♥ × 1.25 3♥♥ 4.5♥ × 2.25 No

Other effects[]

Attribute Notes Condition
World difficulty Regional difficulty (RD) Clamped regional difficulty (CRD) Moon phase only
♥ Mobs and explosions do higher damage to players. Peaceful: No damage
Easy: 12 of Normal damage + 1 (never higher than Normal damage)
Hard: 1 12 times Normal damage
Yes No No No
Guardians (both types) have higher laser magic damage. Hard: + 2♥, added before calculating the difficulty-scaled mob damage Yes No No No
Starvation more harshly affects health. Easy/Normal/Hard: starvation brings health down to 10/1/0 HP Yes No No No
Mobs that spawn with armor are more likely to have more armor. Easy & Normal: 75%/56%/42% of having 2/3/4 pieces;
Hard: 90%/81%/73% of having 2/3/4 pieces
Yes No No No
Zombies are more likely to spawn with weapons. 1% on Easy and Normal,
5% on Hard
Yes No No No
Zombies are able to spawn reinforcements. Hard only Yes No No No
Zombies are more likely to be able to break wooden doors. A zombie having the ability to break a door: (10×CRD)%
The door actually breaking: Hard only
Yes No Yes No
Villagers killed by zombies have a greater chance of becoming zombie villagers. 0% on Easy,
50% on Normal,
100% on Hard
Yes No No No
Zombified piglins spawn from nether portals in the Overworld more often. 12000 per block tick on Easy,
11000 on Normal,
32000 on Hard
Yes No No No
A skeleton or stray does not wait as long between bow & arrow attacks. Easy/Normal: 2s cooldown
Hard: 1s
Yes No No No
A skeleton or stray is more accurate in ranged attacks with its bow. Easy/Normal/Hard "inaccuracy" value is 10/6/2 Yes No No No
Damage from arrows slightly increases. Easy/Normal/Hard damage bonus = +0.11 / +0.22 / +0.33 Yes No No No
Phantoms spawn more frequently. A spawn attempt succeeds if the local difficulty is greater than a random value between 0.0 and 3.0. No Yes No No
Phantoms spawn in larger groups. Easy: 1-2
Normal: 1-3
Hard: 1-4
Yes No No No
Spiders can naturally spawn with status effects. Hard
(10×CRD)%
Yes No Yes No
The Poison effect given by a cave spider lasts longer. Normal/Hard: 7s/15s Yes No No No
The Poison effect given by a bee lasts longer. Normal/Hard: 10s/18s Yes No No No
The Wither effect given by a wither skull lasts longer. Normal/Hard: 10s/40s Yes No No No
A wither shoots wither skulls when idle. Normal/Hard only Yes No No No
A wither spawns 3–4 wither skeletons when brought below half health.‌[Bedrock Edition only] Normal/Hard only Yes No No No
Lightning can cause fires in the surrounding blocks, not just the block struck. Normal/Hard only Yes No No No
Fire lingers for a bit longer. The raw encouragement value of blocks surrounding fire gets a bonus of (Easy/Normal/Hard) +47 / +54 / +61, before being adjusted for fire age, humidity and rain. Yes No No No
Mobs are more willing to take fall damage when pursuing a target.[note 3] Easy: 33% + 8♥♥♥♥
Normal: 33% + 4♥♥
Hard: 33%
Yes No No No
Lightning strikes are more likely to spawn a skeleton trap horse. Chance = (RD)%
(0.75–1.5% on Easy, 1.5–4% on Normal, 2.25–6.75% on Hard)
No Yes No No
Burning zombies are more likely to set their target on fire, and the burn duration is longer. Chance = (30×RD)%
Burn time = 2 × RD seconds
No Yes No No
The Hunger effect caught from being attacked by a husk lasts longer. Effect time = 7 × RD seconds No Yes No No
Illusioners can cast blindness. If RD > 2. No Yes No No
Skeletons can shoot flaming arrows. If RD > 3. No Yes No No
Skeletons and zombies are more likely to have the ability to pick up dropped items. Having the ability: (55×CRD)% No No Yes No
Zombies are more likely to have a greater follow distance. if (random # in range 0–1.5) × CRD is greater than 1, that becomes a bonus multiplier on the follow distance. No No Yes No
Zombies are more likely to be "leader zombies" (gaining a bonus to max HP, a bonus to the chance to spawn reinforcements, and the ability to break doors). Any given zombie being a "leader": (5×CRD)% No No Yes No
Mobs are more likely to spawn with armor. Chance of getting any armor at all: (15×CRD)% No No Yes No
Mobs that spawn with weapons are more likely to have enchantments. Chance for the main hand item = (25×CRD)% No No Yes No
Mobs that spawn with armor are more likely to have enchantments. Chance per armor item = (50×CRD)% No No Yes No
Mobs that spawn with enchanted equipment have higher levels of enchantments. Level = 5 + randInt(0,18)×CRDwhere randInt(0,18) is a random integer between 0 and 17. No No Yes No
Slimes are more likely to be bigger. Small: ((33×(1-CRD)/2)+16.5)%
Medium: 33%
Big: ((33×(1+CRD)/2)+16.5)%
in other words:
Small/Medium/Big: 17%–33% / 33% / 33%–50%
No No Yes No
Slimes are more likely to spawn in swamp biomes. See above No No No Yes
Raid has more waves Easy: 3 waves

Normal: 5 waves
Hard: 7 waves

Yes No No No
Illager patrol size RD + 1 illagers (rounded up) No Yes No No
Illager patrol can spawn vindicator‌[Bedrock Edition only] Easy and Normal: 100% pillager

Hard : 80% pillager, 20% vindicator

Yes No No No
Illager patrol can spawn on any light level‌[Bedrock Edition only] Easy: Light level 0-7

Normal and Hard: Any light level

Yes No No No
Vindicator and Pillager spawn from raids having higher chance to drop special loot.‌[Bedrock Edition only] Normal: 65% chance

Hard: 80% chance

Yes No No No
Vindicator are able to break down Wooden Door Peaceful and Easy: unable to break door

Normal and Hard: can break door

Yes No No No

Video[]

History[]

Java Edition Classic
May 21, 2009Difficulty modes were mentioned on of which were: "Walk in the Park" being the easiest, "Easy" which was added, and "Armageddon" being very hard even with 32 people.
June 14, 2009Notch discussed how his vision for Survival mode would incorporate the concept of difficulty: "When generating a new level or loading a creative mode level, you also select a difficulty. Difficulty levels will probably vary from 'challenging' to 'impossible', since I want the game to be difficult. If it's not fun to always be challenged, I'll add easier difficulties."
Java Edition Indev
0.31
{{Extension DPL}}<ul><li>[[Medicine|Medicine]]<br/>{{Redirect|Elixir", "Antidote", "Eye Drops", and "Tonic|s=1|the brewable items|Potion}}
{{Education feature}}
{{Exclusive|bedrock|education}}
{{Item
| image = <gallery>
Antidote.png | Antidote
Elixir.png | Elixir
Eye Drops.png | Eye Drops
Tonic.png | Tonic
</gallery>
| renewable = Yes
| stackable = No
}}
A '''medicine''' is a type of [[potion]] that cures the specified [[effect]] instead of applying it.

== Obtaining ==

=== Brewing ===
Cures are brewed from awkward potions using different [[element]]s.{{only|bedrock|education}} These drinks remove the specified effect when drank, and cannot be modified into splash, lingering, extended or enhanced versions.

{| class="wikitable" style="text-align: center;" data-description="Remedies"
! Potion
! Reagent, base
! Effect
! Notes
|-
! {{Inventory slot|Antidote}}<br>Antidote
| {{Brewing Stand
 |Input= Silver
 |Output2= Awkward Potion
 }}
| Cures [[Poison]]
| Silver detects poison {{w|Silver#Symbolic role|in folklore}}, and possesses anti-microbial properties.
|-
! {{Inventory slot|Elixir}}<br>Elixir
| {{Brewing Stand
 |Input= Cobalt
 |Output2= Awkward Potion
 }}
| Cures [[Weakness]]
|
|-
! {{Inventory slot|Eye Drops}}<br>Eye Drops
| {{Brewing Stand
 |Input= Calcium
 |Output2= Awkward Potion
 }}
| Cures [[Blindness]]
|
|-
! {{Inventory slot|Tonic}}<br>Tonic
| {{Brewing Stand
 |Input= Bismuth
 |Output2= Awkward Potion
 }}
| Cures [[Nausea]]
| In real life, {{w|bismuth subsalicylate}} is used as a nausea treatment.
|}

== Usage ==

Each type of medicine has an associated effect that it can cure (see {{slink||Brewing}} for details). Players can drink the medicine only if they have the corresponding effect. Drinking the medicine eliminates the effect. Although medicine does not resemble [[potion]]s, the player still gets the [[glass bottle]] back.

== Sounds ==
{{Sound table
|type=bedrock
|sound=Drink.ogg
|source=player
|description=When a player drinks medicine
|id=random.drink
|foot=1}}

== Data values ==
=== ID ===
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|generatetranslationkeys=y
|displayname=Medicine
|spritetype=item
|nameid=medicine
|id=599
|form=item
|notshowbeitemforms=y
|translationkey=item.medicine.poison.name,item.medicine.weakness.name,item.medicine.blindness.name,item.medicine.nausea.name
|foot=1}}

== History ==

{{History|bedrock}}
{{History||1.4.0|snap=beta 1.2.20.1|[[File:Antidote BE1.png|32px]] [[File:Elixir BE1.png|32px]] [[File:Eye Drops BE1.png|32px]] [[File:Tonic BE1.png|32px]] Added medicines.}}

{{History|education}}
{{History||1.0.27|[[File:Antidote BE1.png|32px]] [[File:Elixir BE1.png|32px]] [[File:Eye Drops BE1.png|32px]] [[File:Tonic BE1.png|32px]] Added medicines.}}
{{History|foot}}

== Issues ==

{{issue list|Cures|Medicine}}

== See also ==

* [[Potion]]
* [[Splash Potion]]
* [[Lingering Potion]]

{{Items}}
{{Education Edition}}

[[Category:Non-renewable resources]]
[[Category:Education Edition items]]

[[de:Medizin]]
[[it:Medicinale]]
[[ja:治療薬]]
[[lzh:藥]]
[[pl:Leki]]
[[pt:Remédio]]
[[zh:药物]]</li><li>[[Name Tag|Name Tag]]<br/>{{about|the item that gives names to mobs|the nameplate above a player's head|Player#Username}}
{{Item
| image = Name Tag.png
| renewable = Yes
| stackable = Yes (64)
}}
A '''name tag''' is an [[item]] used to name [[mob]]s in the world and prevent them from despawning naturally.

== Obtaining ==

=== Chest loot ===

{{LootChestItem|name-tag}}

=== Fishing ===

Name tags can be caught from [[fishing]] as part of the treasure category with a {{frac|1|6}} chance after the 5% chance of being a treasure catch. The chance of catching treasure increases with the [[Luck of the Sea]] enchantment.

=== Trading ===

Master-level librarian [[villagers]] offer to sell a name tag for 20 [[emerald]]s as one of their available trades.

== Usage ==

To use a name tag, it must first be renamed with an [[anvil]], costing 1 [[experience]] level. 

If it is not renamed, it has no effect when used on a mob. After the name tag is renamed, the player can {{control|use}} it on a mob to give it the name given to the name tag from the anvil. Mobs and name tags can be renamed any number of times. Name tags with the same name are stackable. 

Once a mob is named, it keeps its name, and the name tag is consumed.

When a mob is named, it is excluded from the mob cap count.

Effects on various mobs:
* A named [[silverfish]] that goes into a block appears to lose its name because it is replaced by a newly generated unnamed silverfish when the block is broken.
* A baby (animal or villager) keeps its name when becoming an adult.
** A named [[villager]] keeps its name when transformed into a [[Zombie Villager|zombie villager]].
** A named zombie villager keeps its name when cured.
* [[Wandering Trader|Wandering trader]]s still despawn even if they are named, or in a [[minecart]] or [[boat]].
* A named [[wither]]'s boss bar displays its name instead of "Wither".
* Naming an [[ender dragon]] with commands also displays the name in the boss bar.

=== Limitations ===

Any mob can be named except for the [[ender dragon]] and [[player]]s.

A name tag can rename an [[armor stand]], though it does not show the nameplate above its head until <code>CustomNameVisible:1b</code> is set as an extra step.

{{control|Using|use}} a name tag on a villager renames the villager instead of opening the trading interface. A saddled pig is renamed instead of being ridden. Using a name tag on any other mob that can be interacted with performs the {{control|use}} action instead of being named. These mobs can be renamed if the player uses the name tag while crouching or standing in a [[nether portal]] because the portal suppresses the {{control|use}} action.

Once a name tag is used on a mob, it is impossible to remove the name of that mob without the use of commands or external modifications.

=== Behavior ===

Renamed mobs have their name displayed over their head in the same fashion as a mob named through a renamed [[spawn egg]]. Their names can be seen only if they are aimed at from four or fewer blocks away.

Mobs that are named using the name tag never despawn in the world, similar to tamed mobs.<ref>{{tweet|dinnerbone|327485109940916226}}</ref> The exceptions are [[wandering trader]]s or if the mob is hostile and the difficulty is switched to "[[Peaceful]]", causing any hostile mobs or any named hostile mobs to despawn immediately. 

If a renamed mob kills a player, the custom name is used in the death message in place of the mob type name. For instance, if a vindicator named "Johnny" kills a player, the death message is "Player was slain by Johnny". 

A renamed [[wither]] also has a renamed health bar, and the boss bar doesn't regenerate{{verify}}.

=== Easter eggs ===

* Any mob that receives the name "[[Easter eggs#Upside-down mobs|Dinnerbone]]" or "[[Easter eggs#Upside-down mobs|Grumm]]" is rendered upside down. This even includes the player in early versions of Bedrock Edition if the username is set to either of these and you are not signed into Xbox Live.
* Naming a [[sheep]] "[[Easter eggs#Jeb sheep|jeb_]]" causes its wool to fade between the dye colors, producing a rainbow effect. The [[wool]] that drops when the sheep is [[shear]]ed or killed is the original color of the sheep before the sheep was named.
* Naming a [[rabbit]] "[[Rabbit#Toast|Toast]]" causes it to have a special memorial skin of user xyzen420's girlfriend's [http://www.reddit.com/r/minecraftsuggestions/comments/27hjog/to_themogminer_my_bunny_is_missing_please_help_me/ missing rabbit].
* Naming a [[vindicator]] "Johnny" causes it to be aggressive and attack all [[mob]]s including the wither (except [[ghast]]s and other [[illager]]s). The hostility even extends to [[Ravager|ravagers]] in [[Java Edition|''Java Edition'']], as the "Johnny" vindicator can also attack the ravager while it's riding it.

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Name Tag
|spritetype=item
|nameid=name_tag
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Name Tag
|spritetype=item
|nameid=name_tag
|id=548
|form=item
|foot=1}}

== History ==

{{History|java}}
{{History||1.6.1|snap=13w16b|[[File:Name Tag JE1 BE1.png|32px]] Added name tags. They can now be found in [[dungeon]] [[chest]]s.}}
{{History|||snap=13w25a|A [[mob]] named "Dinnerbone" or "Grumm" now renders upside down.}}
{{History||1.7.2|snap=13w36a|Name tags can now rarely be acquired by [[fishing]], making them [[renewable resource|renewable]].}}
{{History||1.7.4|snap=13w48b|A sheep named "jeb_" now fades between the [[dye]] colors.}}
{{History||1.8|snap=14w02a|Name tags can now be [[trading|bought]] from librarian [[villager]]s, at 20–22 [[emerald]]s for 1 name tag.}}
{{History|||snap=14w27a|[[Rabbit]]s have been added and naming one "Toast" gives it a special memorial skin.}}
{{History||1.9|snap=15w44a|Added name tags to [[mineshaft]] [[chest]]s.
|The average yield of name tags in [[dungeon]] chests has been decreased.}}
{{History||1.11|snap=16w39a|Name tags can now be found in the new [[woodland mansion]] chests.
|Added [[vindicator]]s, which attack almost all mobs if named "Johnny".}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 421.}}
{{History||1.14|snap=18w43a|[[File:Name Tag JE2 BE2.png|32px]] The texture of name tags has been changed.}}
{{History||1.19|snap=Deep Dark Experimental Snapshot 1|Name tags now generate in [[ancient city]] chests.}}

{{History|pocket alpha}}
{{History||v0.15.0|snap=build 1|[[File:Name Tag JE1 BE1.png|32px]]  Added name tags, and a new "Name" Interact button.
|A [[mob]] named "Dinnerbone" or "Grumm" renders upside down.
|A [[sheep]] named "jeb_" fades between the [[dye]] colors.
|Naming a [[rabbit]] "Toast" gives it a special memorial skin.}}
{{History|pocket}}
{{History||1.0.4|snap=alpha 1.0.4.0|Name tags can now be [[trading|bought]] from librarian [[villager]]s for 20-22 [[emerald]]s as their last tier trade.}}
{{History||1.1.0|snap=alpha 1.1.0.0|Naming a [[vindicator]] "Johnny" now makes it hostile to any [[mob]], except other [[illager]]s.
|Name tags can now be found in [[woodland mansion]]s.}}
{{History|bedrock}}
{{History||1.4.0|snap=beta 1.2.14.2|Name tags can now be found in buried treasure [[chest]]s.}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Name Tag JE2 BE2.png|32px]] The texture of name tags has been changed.}}
{{History||1.11.0|snap=beta 1.11.0.4|Name tags [[trading|sold]] by librarian [[villager]]s now cost 20 [[emerald]]s.}}

{{History|console}}
{{History||xbox=TU19|xbone=CU7|ps=1.12|wiiu=Patch 1|[[File:Name Tag JE1 BE1.png|32px]] Added name tags.}}
{{History|PS4}}
{{History||1.90|[[File:Name Tag JE2 BE2.png|32px]] The texture of name tags has been changed.}}

{{History|3ds}}
{{History||0.1.0|[[File:Name Tag JE1 BE1.png|32px]] Added name tags.}}
{{History|foot}}

== Issues ==
{{issue list}}

== Trivia ==
* Name tags were added at the request of [https://www.youtube.com/user/paulsoaresjr/ Paulsoaresjr].<ref>{{tweet|paulsoaresjr|326865482839883777}}</ref><ref>{{tweet|Dinnerbone|326812168630722561}}</ref>
* A stack of up to 64 name tags can be renamed at once. The cost is 1 [[experience]] level per stack, regardless of how many name tags were stacked.
* To name a [[mob]] “Name Tag” the player must give the name tag a random name, then rename it back to “Name Tag”.
* A [[villager]] with a name tag turned into a [[zombie villager]] by a [[zombie]] with a name tag does not despawn, but a villager with a name tag turned into a zombie by a zombie without a name tag does despawn.
* It is impossible to have a rainbow [[sheep]] upside-down, because it is impossible for it to be named “Jeb_” and “Dinnerbone” at the same time.

== Gallery ==
<gallery>
NameTag2.png|To use a name tag, the [[player]] must first rename it using an [[anvil]].
NameTag1.png|A [[wolf]] that has been renamed using a name tag.
RenamedCreeper.png|A [[creeper]] renamed using the name tag.
RenamedWither.png|A [[Wither Boss|wither]] renamed using a name tag. The custom name takes place of "Wither" over the [[health bar]] as well.
YoYo.png|How to use "Grumm" and "Dinnerbone" name tag [[easter egg]] and [[lead]] to make another animal Yo-yo.
Grumm Horse.png|A [[horse]] using the "Grumm" or "Dinnerbone" easter egg to be rendered upside-down.
MineshaftNameTag.png|Name Tag found in a mineshaft chest.
Pocket Edition Name Tag.jpg|First image of a name tag in bedrock edition.
</gallery>

== See also ==
* [[Spawn Egg]]

== References ==
{{reflist}}

== External Links ==
*[https://www.minecraft.net/en-us/article/taking-inventory--name-tag Taking Inventory: Name Tag] – Minecraft.net on March 15, 2019

{{items}}

[[de:Namensschild]]
[[es:Etiqueta]]
[[fr:Étiquette]]
[[it:Targhetta]]
[[ja:名札]]
[[ko:이름표]]
[[nl:Naamkaartje]]
[[pl:Znacznik]]
[[pt:Etiqueta]]
[[ru:Бирка]]
[[zh:命名牌]]
[[Category:Renewable resources]]</li></ul>
20100205Added the option to change difficulty to Peaceful, Easy, Normal, or Hard.
Java Edition Alpha
October 22, 2010Notch tweets stating that he is "changing 'difficulty' to 'realism'". Lowest setting = Creative. Highest setting = starve". This was never implemented; however, a "Hardcore" mode was added along with a Creative gamemode.
Java Edition
1.0.0
{{Extension DPL}}<ul><li>[[Spider Eye|Spider Eye]]<br/>{{Item
| title = Spider Eye
| image = Spider Eye.png
| renewable = Yes
| heals = {{Hunger|2}}
|effects={{EffectLink|Poison}} (0:05)
| stackable = Yes (64)
}}
A '''spider eye''' is a poisonous [[food]] and [[brewing]] item.

== Obtaining ==

=== Mob loot ===

==== Spiders ====
[[Spider]]s and [[cave spider]]s have a {{frac|1|3}} chance of dropping a [[spider eye]] when killed by a player or tamed wolf, but not when killed by environmental damage (such as falling). The maximum amount of spider eyes is increased by 1 per level of [[Looting]]. The chance of a spider '''not''' dropping any spider eyes can be found using the formula <code>2 / (Looting Level + 3)</code>. For example, Looting III gives a {{frac|1|3}} chance of not dropping any spider eyes. All other amounts have an equal chance of occurring.

==== Witches ====

[[Witch]]es have a chance of dropping 0–6 spider eyes upon death. This is increased by 3 per level of [[Looting]], for a maximum of 0-15 spider eyes.

=== Chest loot ===

{{LootChestItem|spider-eye}}

== Usage ==

=== Food ===
When [[Food|eaten]], a spider eye restores {{hunger|2}} [[Hunger|hunger points]] and 3.2 [[Hunger#Mechanics|saturation points]], giving a nourishment value of 1.6. It also applies a [[Poison]] [[effect]] lasting 5 seconds to the player, causing {{hp|4|poisoned=1}} damage, which reduces hunger/saturation by 6 points.

=== Crafting ingredient ===

{{crafting usage}}

=== Brewing ingredient ===

{{brewing
  |showname=1
  |head=1
  |Spider Eye
  |Mundane Potion
  |base=Water Bottle
}}
{{brewing
  |foot=1
  |Spider Eye
  |Potion of Poison
}}

==Sounds==
{{Sound table/Entity/Food}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Spider Eye
|spritetype=item
|nameid=spider_eye
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Spider Eye
|spritetype=item
|nameid=spider_eye
|id=278
|form=item
|foot=1}}

== Advancements ==
{{load advancements|Husbandry;A Balanced Diet}}

== Video ==

<div style="text-align:center">{{yt|-PD-wX07TCg}}</div>

== History ==

{{History|java}}
{{History||1.0.0|snap=Beta 1.9 Prerelease 2|[[File:Spider Eye JE1 BE1.png|32px]] Added spider eyes. 
|Spider eyes can be used to craft [[fermented spider eye]]s.}}
{{History|||snap=Beta 1.9 Prerelease 3|Spider eyes can now be [[brewing|brewed]] in a [[water bottle]] to create a [[Mundane Potion]], or in an [[Awkward Potion]] to create a [[Potion of Poison]].}}
{{History||1.4.2|snap=12w38b|Spider eyes can now be dropped by [[witch]]es.}}
{{History||1.9|snap=15w44a|Spider eyes can now be found in [[desert pyramid|desert temple]] [[chest]]s.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 375.}}
{{History||1.14|snap=18w43a|[[File:Spider Eye JE2 BE2.png|32px]] The texture of spider eyes has been changed.}}

{{History|pocket alpha}}
{{History||v0.12.1|snap=build 1|[[File:Spider Eye JE1 BE1.png|32px]] Added spider eyes.|Spider eyes can be used to craft [[fermented spider eye]]s and for [[brewing]].}}
{{History||v0.13.0|snap=build 1|Spider eyes can now be found in [[desert pyramid|desert temple]] [[chest]]s.}}
{{History||v0.14.0|snap=build 1|Spider eyes can now dropped by [[witch]]es.}}
{{History|bedrock}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Spider Eye JE2 BE2.png|32px]] The texture of spider eyes has been changed.}}

{{History|console}}
{{History||xbox=TU7|xbone=CU1|ps=1.0|wiiu=Patch 1|[[File:Spider Eye JE1 BE1.png|32px]] Added spider eyes.}}	
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|[[File:Spider Eye JE2 BE2.png|32px]] The texture of spider eyes has been changed.}}

{{History|New 3DS}}
{{History||0.1.0|[[File:Spider Eye JE1 BE1.png|32px]] Added spider eyes.}}
{{History|foot}}

== Issues ==

{{issue list}}

== References ==

{{reflist}} 


{{items}}



[[cs:Pavoučí oko]]
[[de:Spinnenauge]]
[[es:Ojo de araña]]
[[fr:Œil d'araignée]]
[[hu:Pókszem]]
[[it:Occhio di ragno]]
[[ja:クモの目]]
[[ko:거미 눈]]
[[nl:Spinnenoog]]
[[pl:Oko pająka]]
[[pt:Olho de aranha]]
[[ru:Паучий глаз]]
[[zh:蜘蛛眼]]
[[Category:Food]]
[[Category:Renewable resources]]
[[Category:Brewing recipe]]</li><li>[[End Crystal|End Crystal]]<br/>{{ItemEntity
|image=End Crystal.gif
|imagesize=150px
|invimage=End Crystal
|renewable=Yes
|stackable=Yes (64)
|rarity=Rare
|drops=None
|size=
Height: 2 Blocks<br>Width: 2 Blocks
}}
An '''end crystal''' is an [[entity]] that can be [[Crafting|crafted]] or found on [[the End]]'s main island, where it heals the [[Ender Dragon|ender dragon]]. It can only be placed on [[obsidian]] or [[bedrock]] and [[Explosion|explodes]] instantly when attacked or damaged in most ways.

== Spawning ==

=== Natural generation ===

An end crystal is found atop each [[obsidian pillar]] on the central island of the End, each on top of a piece of [[bedrock]]. There are 10 end crystals in total, of which two are protected in "cages" of [[iron bars]]. All end crystals respawn one after another as the respawning process of the [[ender dragon]] starts.

== Obtaining ==

=== Crafting ===

{{Crafting
  |A1=Glass
  |B1=Glass
  |C1=Glass
  |A2=Glass
  |B2=Eye of Ender
  |C2=Glass
  |A3=Glass
  |B3=Ghast Tear
  |C3=Glass
  |Output= End Crystal
  |type= Decoration block
}}

== Usage ==

=== Healing the ender dragon ===

Their primary purpose is to recharge the health of the ender dragon, who gains a charge from the nearest crystal within a cuboid extending 32 blocks from the dragon in all directions. The dragon is healed {{hp|1}} each half-second. If multiple ender dragons are spawned, an end crystal can affect multiple dragons at the same time. The healing beam is neither obstructed nor is its power diminished by entities or blocks.

=== Respawning the ender dragon ===
[[File:End Crystals on the Exit portal.png|right|thumb|How to arrange end crystals on the exit portal to respawn the ender dragon.]]

As items, end crystals may be placed on bedrock and [[obsidian]], if the two blocks above the bedrock or obsidian block are air or replaceable blocks and no other entities intersect the area. When an end crystal is placed in [[the End]], a [[fire]] block is created at the end crystal location. If four are placed on the end [[exit portal]], one on each of the flat sides, the crystals respawn the original end crystals on the obsidian pillars, as well as resurrect the dragon itself, before exploding. The top of each pillar also explodes, destroying any player-placed blocks. This happens even if TNT explosions are turned off in settings.

If the exit portal is ever broken for any reason, end crystals can still be placed on obsidian blocks with the same location as the exit portal.

=== Explosions ===

End crystals explode when attacked or damaged in most ways, even by attacks that normally do zero damage. They are not affected by exploding fireworks, and if damaged by an explosion, they disappear instead of exploding.{{Only|Java}}<ref>{{bug|MC-118429||End crystals don't explode when destroyed by nearby explosions}}</ref> The end crystal's [[explosion]] has an [[Explosion#Explosion strength|explosion strength]] of 6, the same as a [[charged creeper]]. The end crystal's fire often remains after the crystal explodes. Any ender dragon charging from the crystal when it is destroyed takes {{hp|10}} damage.

{{IN|java}}, an end crystal's explosion can be [[blocking|blocked]] by a [[shield]].

Although an ender dragon damages most blocks and entities in its path, it cannot destroy end crystals simply by going near them.

Placing [[water]] on the end crystal will neutralize the blast effect, but not the [[damage]] or knockback.

End crystals with obsidian or bedrock below them will not damage blocks below them when they explode.

{{IN|bedrock}}, having the game rule {{cd|mobGriefing}} to {{cd|false}} will prevent the End Crystal from destroying any blocks. While {{in|java}} the same game rule will not prevent the End Crystal from destroying any blocks.

=== Beams ===
The end crystal naturally shoots a beam at the ender dragon and heals it when the dragon is within range. This beam can be manually created using the command {{cmd|data merge entity @e[type{{=}}end_crystal,limit{{=}}1] {BeamTarget:{X:0, Y:0, Z:0<nowiki>}}}}. The beam can be pointed in any direction, allowing it to mark locations or objects.

=== Properties ===
[[File:End Crystal (Slateless).gif|thumb|A base-less end crystal.]]  

End crystals are of two kinds: the ones with a base beneath them are created either by game mechanism or by the {{cmd|summon}} command; while the base-less ones are created by players by manually placing the crystal items on top of [[obsidian]] or [[bedrock]].

The base appears to be made of bedrock, with a crystal hovering over it. While in the End, a crystal continually generates fire at its current position, one block above the base (directly on top of the block the base is embedded in), replacing any other block at that location. This fire is capable of spreading.

The end crystal entity is not solid and can be walked through freely. End crystals can be pushed by [[piston]]s, but they explode if moved while on fire. Because fire is checked only when an entity moves, end crystals do not normally take damage from their own fire unless moved.

== Sounds ==
{{edition|java}}:
{{Sound table
|sound=Explosion1.ogg
|sound2=Explosion2.ogg
|sound3=Explosion3.ogg
|sound4=Explosion4.ogg
|subtitle=Explosion
|source=block
|description=When an end crystal explodes
|id=entity.generic.explode
|translationkey=subtitles.entity.generic.explode
|volume=4.0
|pitch=0.56-0.84
|distance=16
|foot=1}}

{{edition|bedrock}}:
{{Sound table
|type=bedrock
|sound=Explosion1.ogg
|sound2=Explosion2.ogg
|sound3=Explosion3.ogg
|sound4=Explosion4.ogg
|source=block
|description=When an end crystal explodes
|id=random.explode
|volume=4.0
|pitch=1.0
|foot=1}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|firstcolumnname=Item
|showforms=y
|generatetranslationkeys=y
|displayname=End Crystal
|spritetype=item
|nameid=end_crystal
|form=item
|foot=1}}
{{ID table
|edition=java
|firstcolumnname=Entity
|generatetranslationkeys=y
|displayname=End Crystal
|spritetype=entity
|nameid=end_crystal
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|firstcolumnname=Item
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=End Crystal
|spritetype=item
|nameid=end_crystal
|id=637
|form=item
|foot=1}} 
{{ID table
|edition=bedrock
|firstcolumnname=Entity
|shownumericids=y
|generatetranslationkeys=y
|displayname=End Crystal
|spritetype=entity
|nameid=ender_crystal
|id=71
|foot=1}}

=== Entity data ===

End crystals have entity data that define various properties of the entity.

{{el|java}}:
{{main|Entity format}}
{{/ED}}

{{el|bedrock}}:
: See [[Bedrock Edition level format/Entity format]].

== Achievements ==
{{load achievements|The End... Again...}}

== Advancements ==
{{load advancements|The End... Again...}}

== History ==
[[File:End Crystal 19w38a.gif|thumb|Java Edition 19w38a]]
{{History|java}}
{{History||1.0.0|snap=Beta 1.9 Prerelease 6|[[File:End Crystal JE1 BE1.png|32px]] Added ender crystals.}}
{{History||1.2.1|snap=12w04a|Previously, ender crystals could be spawned using [[spawn egg]]s with ID 200 (in a [[server]], these were created using {{cmd|give 383 1 200}}). The spawned crystal would be positioned where a natural crystal would be if there was a bedrock block at the location. It was still possible until 1.9 to obtain an end crystal spawn egg, but it would not spawn anything.}}
{{History||1.7.2|snap=13w36a|Ender crystals can now be spawned with the {{cmd|summon}} command.}}
{{History||1.8|snap=14w06a|Ender crystals now generate one [[block]] lower. The fire they generate destroys the [[bedrock]] block that is supposed to be underneath (see {{bug|MC-47526}}).}}
{{History||1.9|snap=15w31a|Ender crystals generate at the correct Y-level again.}}
{{History|||snap=15w33c|Respawning the ender dragon now also respawns the ender crystals on the obsidian pillars.
|Ender crystals now have a compound BeamTarget tag that hold the X, Y, Z block location the beam points to.}}
{{History|||snap=15w44a|"Ender crystals" have been renamed to "end crystals".
|[[File:End Crystal (item) JE1 BE1.png|32px]] End crystals can now be obtained as an item.
|End crystals now drop from [[skeleton trap]] horses and can be placed only on [[obsidian]] or bedrock. Placing several of them atop the end exit portal respawns the ender dragon.}}
{{History|||snap=15w44b|End crystals are no longer dropped by [[skeleton horse]]s.
|Added crafting recipe for end crystals, making end crystals [[renewable]].}}
{{History|||snap=15w49a|End crystals now require [[air]]/replaceable [[block]]s and lack of [[entity|entities]] for placement.}}
{{History|||snap=15w51a|End crystals can no longer be placed in [[Adventure mode]].}}
{{History||1.11|snap=16w32a|The entity ID has been changed from <code>EnderCrystal</code> to <code>ender_crystal</code>.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 426.}}
{{History|||snap=18w20b|Renamed to "End Crystal".}}
{{History|||snap=pre5|Entity ID has been changed to <code>end_crystal</code>.}}
{{History||1.14|snap=18w43a|[[File:End Crystal JE2.png|32px]][[File:End Crystal (item) JE2 BE2.png|32px]] The textures of end crystals and the end crystal [[item]] have been changed.}}
{{History||1.19.3|snap=22w43a|End crystal explosions can now be [[blocking|blocked]] by [[shield]]s.<ref>{{bug|MC-188247|||Fixed}}</ref>}}

{{History|pocket}}
{{History||1.0.0|snap=alpha 0.17.0.1|[[File:End Crystal JE1 BE1.png|32px]][[File:End Crystal (item) JE1 BE1.png|32px]] Added end crystals.}}
{{History|bedrock}}
{{History||1.6.0|snap=?|[[File:End Crystal BE2.png|32px]] [[File:End Crystal BE2.gif|32px]] The model of the end crystals has been changed. It has now two cubes instead of three.}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:End Crystal BE3.png|32px]][[File:End Crystal (item) JE2 BE2.png|32px]] The textures of end crystals and the end crystal item have been changed.}}
{{History||1.17.10|snap=beta 1.17.10.20|[[File:End Crystal JE2.png|32px]] The model of the end crystals has been changed to have three cubes again, and to match ''Java Edition''.}}
{{History||1.19.70|snap=beta 1.19.70.20|Increased end crystal collision box size to match ''Java Edition''.|End crystals with obsidian or bedrock below them now will not damage blocks below them when they explode.}}

{{History|console}}
{{History||xbox=TU9|xbone=CU1|ps=1.0|wiiu=Patch 1|[[File:End Crystal JE1 BE1.png|32px]] Added ender crystals.}}
{{History||xbox=TU31|xbone=CU19|ps=1.22|wiiu=Patch 3|Ender crystals now generate one block lower. The fire they generate destroys the [[bedrock]] block that is supposed to be underneath.}}
{{History||xbox=TU46|xbone=CU36|ps=1.38|wiiu=Patch 15|"Ender crystals" have been renamed to "end crystals".
|[[File:End Crystal (item) JE1 BE1.png|32px]] End crystals can now be obtained as an [[item]]. 
|End crystals now drop from [[skeleton trap]] horses and can be placed only on [[obsidian]] or bedrock. Placing several of them atop the [[end portal|end exit portal]] respawns the ender dragon.
|Added a crafting recipe for end crystals.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:End Crystal JE2.png|32px]][[File:End Crystal (item) JE2 BE2.png|32px]] The textures of end crystals and the end crystal item have been changed.}}

{{History|new 3ds}}
{{History||1.7.10|[[File:End Crystal JE1 BE1.png|32px]][[File:End Crystal (item) JE1 BE1.png|32px]] Added end crystals.}}
{{History|foot}}

== Issues ==
{{issue list}}

== Trivia ==
* According to [[Jens Bergensten|Jeb]], the reason behind the current crafting recipe using glass as opposed to [[Chorus Fruit|chorus fruit]] or any materials introduced in [[Java Edition 1.9|1.9]] is as a means for players to craft end crystals in older worlds that the dragon has already been killed in.<ref>{{tweet|jeb_|667000226524372992|The problem is that you need to be able to craft the crystals on worlds in which the dragon has been destroyed already|November 18, 2015}}</ref>
* A historical rendition of the [[beacon]] block featured an animated entity within it, which resembled a yellow miniaturized end crystal. The bedrock platform of the end crystal entity would also render below the beacon, though this would normally be hidden within the block below.
* Using a [[piston]] to push an end crystal's fire into an end portal block deletes the end portal block. However, natural portal blocks regenerate if the end crystal is moved.

== Gallery ==
<gallery>
End Crystal Usage.png|Using end crystals to respawn the ender dragon.
Crystal Link.png|An ender dragon being hit with the "healing beam" of an end crystal.
Ender Crystal.png|An end crystal.
EnderCrystalOverworld.png|An end crystal in the Overworld spawned using {{cmd|summon}} {{code|end_crystal}}.
Ender Dragon Revival.png|End crystals respawning the ender dragon.
CagedEnderCrystal.png|A caged end crystal.
Respawn ender dragon.png|A [[player]] trying to respawn the ender dragon.
End Crystal (item).gif|An animation of the item of the end crystal.
</gallery>

== References ==
{{reflist}}

{{Entities}}
{{Items}}

[[de:Enderkristall]]
[[el:Κρύσταλλος του Ender]]
[[es:Cristal del End]]
[[fr:Cristal de l'End]]
[[ja:エンドクリスタル]]
[[ko:엔드 수정]]
[[nl:Endkristal]]
[[pl:Kryształ Endu]]
[[pt:Cristal do End]]
[[ru:Кристалл Края]]
[[th:คริสตัลเอนด์]]
[[uk:Кристал Енду]]
[[zh:末影水晶]]</li></ul></nowiki>
Beta 1.9 Prerelease 2Hardcore mode added.
1.6.1
{{Extension DPL}}<ul><li>[[Black Dye|Black Dye]]<br/>{{Item
| image = Black Dye.png
| renewable = Yes
| stackable = Yes (64)
}}

'''Black dye''' is a [[Dye#Primary|primary color dye]] similar to an [[ink sac]].

== Obtaining ==

=== Trading ===
[[Wandering trader]]s have a chance to [[trading|trade]] 3 black dyes for 1 [[emerald]].{{only|java}}

=== Crafting ===
{{Crafting
  |head=1
  |showname=0
  |Ink Sac
  |Output=Black Dye
  |type=Material
}}
{{Crafting
  |Wither Rose
  |Output=Black Dye
  |type=Material
  |foot=1
}}

== Usage  ==

{{dye usage}}

=== Crafting ingredient ===

{{crafting usage|ignore=Banner|continue=1}}
{{banner crafting usage}}

=== Loom ingredient ===
{{Banner loom usage|Black Dye}}

=== Trading ===

Apprentice-level Shepherd villagers have a 20%{{only|bedrock}} or {{frac|2|7}}{{only|java}} chance to buy 12 black dye for an emerald.

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Black Dye
|spritetype=item
|nameid=black_dye
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|showaliasids=y
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Black Dye
|spritetype=item
|nameid=black_dye
|aliasid=dye / 16
|id=395
|form=item
|translationkey=item.dye.black_new.name
|foot=1}}

== History ==

{{History|java}}
{{History||1.14|snap=18w43a|[[File:Black Dye JE1 BE1.png|32px]] Added black dye.}}
{{History|||snap=18w44a|Black dyes now can changed the text color on the [[sign]]s to black.}}
{{History|||snap=19w05a|Added the [[wandering trader]], which sell black dyes.}}
{{History|||snap=19w11a|Black dyes can now be [[trading|bought]] by shepherd villagers.}}
{{History||1.15|snap=Pre-release 1|Black dye can now be used to craft [[prismarine|dark prismarine]], just like [[Bedrock Edition]].}}
{{History||1.17|snap=20w45a|Black dyes can now used to craft newly added [[black candle]]s.}}
{{History|||snap=21w19a|Black dyes can no longer used to craft black candles.}}
{{History|||snap=Pre-release 1|Black dyes can once again used to craft black candles.}}
{{History||1.20<br>(Experimental)|link=1.19.3|snap=22w42a|Black dyes now can change the text color on [[hanging sign]]s to black.}}

{{History|bedrock}}
{{History||1.8.0|snap=beta 1.8.0.10|[[File:Black Dye JE1 BE1.png|32px]] Added black dye.}}
{{History||1.11.0|snap=beta 1.11.0.4|Black dye can now be [[trading|sold]] to shepherd [[villager]]s.}}
{{history||1.13.0|snap=beta 1.13.0.9|Black dye can now be [[crafting|crafted]] from [[flower|wither roses]].}}
{{History||1.16.100|snap=beta 1.16.100.56|The ID of black dye has been changed from <code>dye/16</code> to <code>black_dye</code>.}}

{{History|ps4}}
{{History||1.83|[[File:Black Dye JE1 BE1.png|32px]] Added black dye.}}
{{History|foot}}

== Issues ==

{{issue list}}

{{Items}}

[[Category:Dyes]]
[[Category:Renewable resources]]

[[de:Schwarzer Farbstoff]]
[[es:Tinte negro]]
[[fr:Teinture noire]]
[[ja:黒色の染料]]
[[ko:검은색 염료]]
[[pl:Czarny barwnik]]
[[pt:Corante preto]]
[[th:สีย้อมสีดำ]]
[[zh:黑色染料]]</li><li>[[Firework Rocket|Firework Rocket]]<br/>{{redirect|Firework}}
{{ItemEntity
|image=Firework Rocket.png
|renewable='''Trail Effect''':No<br>'''All Others''':Yes
|stackable=Yes (64)‎
|size=Height: 0.25 Blocks<br>Width: 0.25 Blocks
|networkid=76
}}
A '''firework rocket''' is an [[item]] (and [[entity]]) used for creating decorative explosions, boosting when flying with [[elytra]], and loading into a [[crossbow]] as ammunition.

== Obtaining  ==

Fireworks can be obtained by crafting. {{IN|java}}, a firework with no explosion effect is available on the [[Creative]] inventory and can be crafted as shown below. {{IN|bedrock}}, fireworks with the different base colors or no explosion are available in the Creative inventory.

=== Crafting ===

{{Crafting
|head=1
|showname=0
|showdescription=1
|Paper
|; ; Gunpowder
|; Gunpowder; Gunpowder
|Gunpowder
|Output=Firework Rocket,3
|description=When crafted this way (without a firework star), the rocket does not have explosion effects. The value of gunpowder affects the [[Firework Rocket#Duration and direction|flight duration]].
|type=Miscellaneous
}}
{{Crafting
|Any Firework Star
|Paper
|; ; Gunpowder
|; Gunpowder; Gunpowder
|Gunpowder
|Output= Firework Rocket,3
|description=Adding more gunpowder increases the duration of the rocket. Up to three gunpowder can be used. Up to five firework stars can also be used with three gunpowder. Up to seven firework stars can be used by using firework stars instead of additional gunpowder. All firework stars explode almost simultaneously when the rocket detonates.
|type=Miscellaneous
|foot=1
}}

== Usage ==

=== Launching fireworks ===
To launch a firework rocket, {{control|use}} its item on a block. They can also be launched from [[dispenser]]s and [[crossbow]]s. If shot from a [[Multishot]] [[crossbow]], then 3 rockets fire with the same effects.

=== Elytra ===
{{control|Using}} a firework rocket while flying with [[elytra]] propels the player in the direction they are facing. The duration of the speed boost depends on the flight duration of the rocket. If the rocket is equipped with a firework star of any kind, the player takes damage when it explodes.

=== Crossbow ===
A firework rocket can be used as ammunition for [[crossbow]]s, although it deals [[damage]] only if it has an [[explosion]] effect. A higher flight duration gives the firework rocket a longer range, and more damage is added per firework star. The [[Piercing]] enchantment has no effect on firework rockets shot from a crossbow.

{{IN|java}}, if a firework rocket shot from a [[crossbow]] hits an [[entity]], the rocket instantly [[explosion|explodes]], no matter the flight duration. Attempting to do this {{in|bedrock}}, however, results in the firework passing through the entity,<ref>[[bugtracker:MCPE-52675|MCPE-52675]]</ref> so the [[player]] must plan where to aim.

== Behavior ==
{{see also|Firework Star#Effects}}

Once launched, fireworks fly out vertically, with random horizontal offset up to 5 blocks. {{IN|bedrock|java}}, fireworks can fly in any of the 6 directions a dispenser can point. After [[#Duration and direction|some time]], the firework explodes into a colorful explosion based on the effects of the [[firework star]]s added upon crafting, or no explosion if no firework star was used. If multiple firework stars were added to the rocket upon crafting, they all explode simultaneously.

The explosion of a firework rocket deals damage to mobs and players that are within 5 blocks and not obstructed by [[solid block]]s. The maximum damage of a rocket with one firework star is {{hp|7}}, with the damage decreasing with distance. Each additional firework star on the rocket adds {{hp|2}} points of damage, for a maximum damage of {{hp|19}} with 7 stars. Using commands to add additional firework stars results in more damage. The damage dealt is unaffected by any other ingredients used. The explosion does not destroy end crystals nor damage the Ender dragon, but does destroy armor stands.

There is a delay between the detonation and the player hearing the sound, emulating real fireworks, but this sound travels much more slowly than in the real world.<ref>{{Tweet|jeb|277075644804907009|However, no sound effects for fireworks yet... but everything's implemented, so they can be added without doing a new snapshot|December 7, 2012}}</ref><ref>{{Tweet|jeb|277075517226762242|Haha, @igblan , the speed of sound is 40 m/s, because the realistic speed of ~340 m/s didn't work well in Minecraft scale|December 7, 2012}}</ref> {{IN|java}}, the explosion of a firework can be seen 64 blocks away, regardless of its height. {{IN|bedrock}}, the explosion can be seen from your render distance.

If the explosion exceeds the (unmodded) [[particle]] limit of 16,384, the oldest particles are removed before displaying new ones, resulting in severely diminished firework quality / duration. At most a firework should have 3 trail stars, more than that could waste diamonds, firework stars, and other fireworks. Particle counts per star are:

{| class="wikitable" data-description="Particle counts per firework star"
|-
! Ball Type !! Plain !! Trail
|-
| Small || 98 || ~1300
|-
| Large || 387 || 4000+
|-
| Star || 122 || ~1600
|-
| Creeper || 266 || ~3500
|-
| Burst || 72 || ~930
|}

Twinkle effect adds 2 particles to the count.

Like most other entities, they can be moved by [[water]] and [[explosion]]s, and teleported via [[portal]]s. They also cannot move through solid surfaced blocks, upon hitting one, they either move to a side or explode based on the duration. If a firework explodes under a block, its explosion is flattened.

=== Duration and direction ===

Fireworks travel different heights based on the amount of gunpowder added. The number is displayed as a tag on the item's tooltip with the description of "Flight Duration".

The height it rises is between 8 and 20 blocks with 1 gunpowder, 18 to 34 blocks with 2 gunpowder, and 32 to 52 blocks with 3 gunpowder. 
(Note: Using command blocks, firework rockets with higher durations go higher and keep accelerating with virtually no terminal velocity. If the duration is long enough, the firework rocket could reach heights of over 1,000,000 blocks and speeds of over 10,000 m/s in a matter of minutes. Such fireworks with significant X and Z motions speed up sideways exponentially and reach outside the world boundary in a matter of seconds.{{only|java}})

When spawned, <!-- server-side --> fireworks have a vertical speed of .05 and a random small X and Z speed (random value near zero with a standard deviation of .001).  Each firework also determines its lifetime in ticks by 10 × (number of gunpowder + 1) + random value from 0 to 5 + random value from 0 to 6, after which it explodes.  Each tick, the firework accelerates horizontally by multiplying its X and Z velocities by 1.15, and vertically by adding a constant factor of .04.

Fireworks can be made to travel different directions by being dispensed or launched under flowing water. The firework's direction combines with the flow of the water to go diagonally.

Firework rockets without firework stars shot from a crossbow upon hitting terrain elements will traverse along until stopped by a ledge or into unobstructed terrains again continuing its original flight path. Ledges as tall as one pixel high (e.g. from [[Dirt Path|Dirt Paths]] to [[Grass Block|Grass Blocks]]) will also block the firework. They will still vanish if they hit entities early amidst their flight.

==Village Raids==
After successfully defending a village from a [[Raid]] the villagers may celebrate by setting off firework rockets.

==Boosting elytra==
Fireworks can be used to boost [[elytra]] when in flight. Normally, elytra can glide for a short distance, but with the use of fireworks, the player can fly a long distance, gain speed, and take off from the ground. 

Simply using the firework rocket with elytra spread boosts the player in the direction the player faces. It can leave behind a trail sometimes.

Although fireworks with firework stars can be used, the player takes blast damage if they use it in flight. 

There are four types of rockets, with three types of flight duration. Higher flight durations mean longer boosts. {{IN|bedrock}}, the fireworks obtained from the Creative menu have a flight duration of 1, while {{in|java}}, the fireworks obtained in the Creative menu have a flight duration of 1, 2, or 3.

==Sounds ==
{{Edition|Java}}:<br>
Firework rockets use the Friendly Creatures sound category for entity-dependent sound events.
{{Sound table
|sound=Firework blast.ogg
|subtitle=Firework blasts
|source=ambient
|description=When a non-large firework rocket explodes within a 16-block radius of the player
|id=entity.firework_rocket.blast
|translationkey=subtitles.entity.firework_rocket.blast
|volume=20.0
|pitch=0.95-1.05
|distance=16}}
{{Sound table
|sound=Firework blast far.ogg
|subtitle=Firework blasts
|source=ambient
|description=When a non-large firework rocket explodes greater than 16 blocks away from the player
|id=entity.firework_rocket.blast_far
|translationkey=subtitles.entity.firework_rocket.blast
|volume=20.0
|pitch=0.95-1.05
|distance=16}}
{{Sound table
|sound=Firework large blast.ogg
|subtitle=Firework blasts
|source=ambient
|description=When a large firework rocket explodes within a 16-block radius of the player
|id=entity.firework_rocket.large_blast
|translationkey=subtitles.entity.firework_rocket.blast
|volume=20.0
|pitch=0.95-1.05
|distance=16}}
{{Sound table
|sound=Firework large blast far.ogg
|subtitle=Firework blasts
|source=ambient
|description=When a large firework rocket explodes greater than 16 blocks away from the player
|id=entity.firework_rocket.large_blast_far
|translationkey=subtitles.entity.firework_rocket.blast
|volume=20.0
|pitch=0.95-1.05
|distance=16}}
{{Sound table
|sound=Firework twinkle.ogg
|subtitle=Firework twinkles
|source=ambient
|description=When a twinkle firework rocket explodes within a 16-block radius of the player
|id=entity.firework_rocket.twinkle
|translationkey=subtitles.entity.firework_rocket.twinkle
|volume=20.0
|pitch=0.9-1.05
|distance=16}}
{{Sound table
|sound=Firework twinkle far.ogg
|subtitle=Firework twinkles
|source=ambient
|description=When a twinkle firework rocket explodes greater than 16 blocks away from the player
|id=entity.firework_rocket.twinkle_far
|translationkey=subtitles.entity.firework_rocket.twinkle
|volume=20.0
|pitch=0.9-1.05
|distance=16}}
{{Sound table
|sound=Firework launch.ogg
|subtitle=Firework launches
|source=ambient
|description=When a dispenser shoots, a player uses, or a crossbow fires a firework rocket
|id=entity.firework_rocket.launch
|translationkey=subtitles.entity.firework_rocket.launch
|volume=3.0
|pitch=1.0
|distance=16}}
{{Sound table
|sound=Bow shoot.ogg
|subtitle=Firework launches
|source=neutral
|description=When a dispenser fires a firework rocket
|id=entity.firework_rocket.shoot
|translationkey=subtitles.entity.firework_rocket.launch
|volume=1.0
|pitch=1.2
|distance=16
|foot=1}}

{{Edition|Bedrock}}:
{{Sound table
|type=bedrock
|sound=Firework blast.ogg
|source=ambient
|description=When a non-large firework rocket explodes
|id=firework.blast
|volume=1.0
|pitch=1.0}}
{{Sound table
|sound=Firework large blast.ogg
|source=ambient
|description=When a large firework rocket explodes
|id=firework.large_blast
|volume=1.0
|pitch=1.0}}
{{Sound table
|sound=Firework twinkle.ogg
|source=ambient
|description=When a twinkle firework rocket explodes
|id=firework.twinkle
|volume=1.0
|pitch=1.0}}
{{Sound table
|sound=Firework launch.ogg
|source=ambient
|description=When a dispenser shoots, a player uses, or a crossbow fires a firework rocket
|id=firework.launch
|volume=1.0
|pitch=1.0}}
{{Sound table
|sound=Bow shoot.ogg
|source=ambient
|description=''Unused sound event''
|id=firework.shoot
|volume=1.0
|pitch=1.0
|foot=1}}

==Data values==
===ID===
{{edition|java}}:
{{ID table
|edition=java
|firstcolumnname=Item
|showforms=y
|generatetranslationkeys=y
|displayname=Firework Rocket
|spritetype=item
|nameid=firework_rocket
|form=item
|foot=1}}
{{ID table
|edition=java
|firstcolumnname=Entity
|generatetranslationkeys=y
|displayname=Firework Rocket
|spritetype=entity
|nameid=firework_rocket
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|firstcolumnname=Item
|showaliasids=y
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Firework Rocket
|spritetype=item
|nameid=firework_rocket
|aliasid=fireworks
|id=519
|form=item
|translationkey=item.fireworks.name
|foot=1}} 
{{ID table
|edition=bedrock
|firstcolumnname=Entity
|shownumericids=y
|generatetranslationkeys=y
|displayname=Firework Rocket
|spritetype=entity
|nameid=fireworks_rocket
|id=72
|foot=1}}

===Item data===

{{el|java}}:
{{main|Player.dat format}}
<div class="treeview">
* {{nbt|compound|tag}}: The item's '''tag''' tag.
{{:Player.dat_format/Firework Rockets}}
</div>

{{el|bedrock}}:
: See [[Bedrock Edition level format/Item format]].

===Entity data===

{{el|java}}:
{{main|Entity format}}
{{/ED}}

{{el|bedrock}}:
:See [[Bedrock Edition level format/Entity format]].

==Advancements ==
{{load advancements|Bullseye;Ol' Betsy}}

==History==

{{History|java}}
{{History||November 24, 2012|link=none|[[Jeb]] stated that there may be fireworks in ''Minecraft'' at the ''Future Updates with the Minecraft PC Team'' panel at [[MINECON 2012]].}}
{{History||December 5, 2012|link={{tweet|jeb|276367442362630144}}|Jeb released the first image of fireworks, along with the information that colors, fade, height, effects and shapes are [[crafting|craftable]].}}
{{History||December 7, 2012|link=https://twitter.com/jeb_/status/277075087503536128|Jeb mentions that fireworks should probably scare [[wolves]] and potentially have other effects on mobs.}}
{{History||1.4.6|snap=12w49a|[[File:Firework Rocket JE1 BE1.png|32px]] Added firework rockets.
|Firework rockets cannot be obtained within the [[Creative inventory]].}}
{{History|||snap=12w50a|Added [[sound]] and more effects to firework rockets.}}
{{History||1.10|snap=16w20a|The firework rocket [[crafting]] recipe now produces 3 rockets, rather than 1.}}
{{History||1.11|snap=16w32a|The entity ID has been changed from <code>FireworksRocketEntity</code> to <code>fireworks_rocket</code>.}}
{{History||1.11.1|snap=16w50a|Firework rockets can now cause [[damage]] to [[entity|entities]] that are within their [[explosion]] radius.
|Firework rockets can now boost [[player]]s while flying with [[elytra]].}}
{{History||1.13|snap=17w47a|The ID has been changed from <code>fireworks</code> to <code>firework_rocket</code>.
|The fade effects on fireworks can now be added by combining the firework star with [[dye]]s.
|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 401.}}
{{History||1.13|snap=?|Firework rockets are now available in the [[Creative]] [[Inventory]]. However, it does not show a flight duration}}
{{History|||snap=pre5|The [[entity]] ID of firework rockets has been changed to <code>firework_rocket</code>.}}
{{History||1.14|snap=18w43a|Fireworks can now be shot from [[crossbow]]s.
|[[File:Firework Rocket JE2 BE2.png|32px]] The texture of firework rockets has been changed.}}
{{History||1.15|snap=19w36a|Firework rockets dispensed from a [[dispenser]] now travel in the direction they were fired.}}
{{History||1.17|snap=20w45a|Simple firework rockets with one gunpowder can now be crafted using the [[recipe book]].}}
{{History||1.19.3|snap=22w45a|All three flight durations of firework rockets are now available in the Creative inventory.<ref>{{bug
|MC-194390||A firework rocket from the creative inventory doesn't show a flight duration|Fixed}}</ref>}}


{{History|bedrock}}
{{History||1.2.0|snap=beta 1.2.0.2|[[File:Firework Rocket JE1 BE1.png|32px]] Added firework rockets. 
|Firework rockets are available in the Creative inventory in 17 variants, sixteen colors in small ball duration 1, plus one additional preset with only duration 1.{{verify|type=update|Is this the right snapshot?}}{{info needed}}}}
{{History||1.8.0|snap=beta 1.8.0.10|Firework rockets can now be held in the off-hand and be shot from [[crossbow]]s.}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Firework Rocket JE2 BE2.png|32px]] The texture of firework rockets has been changed.}}
{{History||1.16.100|snap=beta 1.16.100.56|The ID of firework rockets has been changed from <code>fireworks</code> to <code>firework_rocket</code>.}}

{{History|console}}
{{History||xbox=TU19|xbone=CU7|ps=1.12|wiiu=Patch 1|switch=1.0.1|[[File:Firework Rocket JE1 BE1.png|32px]] Added firework rockets.
|Firework rockets are available in five types in the Creative inventory. The presets are as follows:
* Duration 1, small ball, light blue, twinkle
* Duration 2, creeper shaped, green
* Duration 2, burst, red, fade to orange
* Duration 3, burst, magenta, fade to blue, twinkle
* Duration 2, star shaped, yellow, fade to orange, trail}}
{{History||xbox=TU46|xbone=CU36|ps=1.38|wiiu=Patch 15|The crafting interface has been updated to allow crafting [[firework star]]s and fireworks.}}
{{History||xbox=TU53|xbone=CU43|ps=1.49|wiiu=Patch 23|switch=1.0.3|Firework rockets can now boost [[player]]s while flying with [[elytra]].}}
{{History||xbox=TU53|xbone=CU43|ps=1.49|wiiu=Patch 23|switch=1.0.3|Firework rockets now [[damage]] players if there is a [[firework star]] applicated to the firework rocket.}}
{{History||xbox=TU56|xbone=CU47|ps=1.55|wiiu=Patch 26|switch=1.0.6|Firework rockets now produce 3 rockets upon [[crafting]] them instead of 1.}}
{{History||xbox=TU60|xbone=CU51|ps=1.64|wiiu=Patch 30|switch=1.0.11|Added new firework rocket models.}}
{{History|PS4}}
{{History||1.90|[[File:Firework Rocket JE2 BE2.png|32px]] The texture of firework rockets has been changed.}}
{{History|foot}}

==Issues==

{{issue list}}

== Trivia==
* Launching a rocket by hand on a wooden [[pressure plate]] activates it. The same doesn't hold for stone pressure plates, or for a [[dispenser]] placing a rocket onto a wooden pressure plate.
* New Year's Eve is what inspired [[Jeb]] to add fireworks.<ref>{{tweet|jeb|277080498814189568|@SPvs_TheWorld New Year's Eve|December 7, 2012}}</ref>
*If the player shoots a firework into a [[Nether portal]], it explodes in [[the Nether]].
*There are around 2×10{{^|136}} distinct fireworks.

==Gallery==

<gallery>
File:Firework jeb twitter.jpg|[[Jeb]]'s first image of Fireworks, also showing that they can be shot from dispensers.
File:1.4.6 release image.png|1.4.6 Release image.
File:Flatexplosion.png|An example of a flattened firework explosion.
File:Creeper firework.png|Creeper face shaped firework.
</gallery>

==References==

{{Reflist}}

{{Items}}
{{Entities}}

[[cs:Rachejtle]]
[[de:Feuerwerksrakete]]
[[es:Cohete de fuegos artificiales]]
[[fr:Feu d'artifice]]
[[hu:Tűzijáték rakéta]]
[[ja:ロケット花火]]
[[ko:폭죽 로켓]]
[[nl:Vuurpijl]]
[[pl:Fajerwerk]]
[[pt:Fogo de artifício]]
[[ru:Пиротехническая ракета]]
[[th:ดอกไม้ไฟ]]
[[zh:烟花火箭]]
[[Category:Renewable resources]]</li></ul>
13w16aRegional difficulty added.
1.8
{{Extension DPL}}<ul><li>[[Cooked Rabbit|Cooked Rabbit]]<br/>{{Item
| title = Cooked Rabbit
| image = Cooked Rabbit.png
| heals = {{hunger|5}}
| renewable = Yes
| stackable = Yes (64)
}}

'''Cooked rabbit''' is a [[food]] item that can be eaten by the [[player]].

== Obtaining ==

=== Mob loot ===

{{IN|Bedrock}}, adult [[rabbit]]s drop 0–1 cooked rabbit if killed while on fire. The maximum amount is increased by 1 per level of [[Looting]], for a maximum of 0–4 with Looting III.

{{IN|Java}}, adult [[rabbit]]s drop 1 cooked rabbit if killed while on fire. The maximum amount is increased by 1 per level of [[Looting]], for a maximum of 1–4 with Looting III.

=== Cooking ===

Cooked rabbit can be obtained by cooking [[raw rabbit]] in a [[furnace]], [[smoker]], or [[campfire]].
{{Smelting
  |showname=1
  |Raw Rabbit
  |Cooked Rabbit
  |0,35
}}

=== Villagers ===
{{IN|java}}, butcher villagers may give players with the [[Hero of the Village]] effect cooked rabbit.

{{IN|bedrock}}, apprentice-level butcher villagers have 25% chance to sell 5 cooked rabbit for an emerald.

== Usage ==

=== Food ===

To eat a cooked rabbit, press and hold {{control|use}} while it is selected in the [[hotbar]]. Eating one restores {{hunger|5}} [[hunger]] and 6 hunger [[Hunger#Mechanics|saturation]].

=== Crafting ingredient ===
Cooked rabbit can be used to craft rabbit stew.

{{crafting usage}}

=== Wolves ===

Cooked rabbit can be used to [[breed]] and heal tamed [[wolves]], lead them around, and make baby tamed wolves grow up faster by 10% of the remaining time.

==Sounds==
{{Sound table/Entity/Food}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Cooked Rabbit
|spritetype=item
|nameid=cooked_rabbit
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Cooked Rabbit
|spritetype=item
|nameid=cooked_rabbit
|id=289
|form=item
|foot=1}}

== Achievements ==

{{load achievements|Rabbit Season}}

== Advancements ==
{{load advancements|Husbandry;A Balanced Diet}}

== History ==

{{History|java}}
{{History||1.8|snap=June 30, 2014|slink=https://twitter.com/TheMogMiner/status/483636993780232192|[[Ryan Holtz]] tweeted images of cooked rabbits and some other new [[item]]s.}}
{{History|||snap=14w27a|[[File:Cooked Rabbit JE1.png|32px]] Added cooked rabbit. It is used to craft [[rabbit stew]].}}
{{History|||snap=14w33b|[[File:Cooked Rabbit JE2 BE1.png|32px]] The texture of cooked rabbit has been changed. The new texture was created by [[wikipedia:Reddit|Reddit]] user [http://www.reddit.com/u/zeldahuman zeldahuman].<ref>{{reddit|2bjzes/a_reminder_of_the_blocks_and_items_added_in_18_so|cj69zie|context=3}}</ref><ref>{{reddit|2c5f35/minecraft_snapshot_14w31a_has_been_released|cjct7gb}}</ref>}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 412.}}
{{History||1.14|snap=18w43a|[[File:Cooked Rabbit JE3 BE2.png|32px]] The texture of cooked rabbit has been changed.}}
{{History|||snap=19w13a|Butcher [[villager]]s now give cooked rabbit to players under the [[Hero of the Village]] effect.}}
{{History||1.19.3|snap=22w42a|Rabbits now always drop at least 1 coooked rabbit when killed while on fire.}}

{{History|pocket alpha}}
{{History||v0.13.0|snap=build 1|[[File:Cooked Rabbit JE2 BE1.png|32px]] Added cooked rabbit.}}
{{History|bedrock}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Cooked Rabbit JE3 BE2.png|32px]] The texture of cooked rabbit has been changed.}}
{{History||1.11.0|snap=beta 1.11.0.4|Cooked rabbit can now be [[trading|bought]] from butcher [[villager]]s.}}
{{History||1.12.0|snap=beta 1.12.0.3|The [[trading]] price of cooked rabbit has been lowered to one [[emerald]].}}

{{History|console}}
{{History||xbox=TU31|xbone=CU19|ps=1.22|wiiu=Patch 3|[[File:Cooked Rabbit JE2 BE1.png|32px]] Added cooked rabbit.}}
{{History|PS4}}
{{History||1.90|[[File:Cooked Rabbit JE3 BE2.png|32px]] The texture of cooked rabbit has been changed.}}

{{History|new 3ds}}
{{History||0.1.0|[[File:Cooked Rabbit JE2 BE1.png|32px]] Added cooked rabbit.}}
{{History|foot}}

== Issues ==

{{issue list}}

== Gallery ==
<gallery>
File:Rabbit Items 2 Ryan Holtz.png|First image of the item by [[Ryan Holtz]].
</gallery>

== References ==
{{reflist}}

{{items}}

[[Category:Food]]
[[Category:Renewable resources]]

[[de:Gebratenes Kaninchen]]
[[es:Conejo asado]]
[[it:Coniglio cotto]]
[[fr:Lapin cuit]]
[[ja:焼き兎肉]]
[[ko:익힌 토끼고기]]
[[nl:Gebraden konijnenvlees]]
[[pl:Pieczony królik]]
[[pt:Coelho assado]]
[[ru:Жареная крольчатина]]
[[zh:熟兔肉]]</li><li>[[Torchflower Seeds|Torchflower Seeds]]<br/>{{wip}}
{{Block
| image = <gallery>
Torchflower Age 0.png| Age 0
Torchflower Age 1.png| Age 1
Torchflower Age 2.png| Age 2
</gallery>
| image2 = Torchflower Seeds JE1.png
| transparent = Yes
| light = No
| tool = N/A
| renewable = Yes
| stackable = Yes (64)
| rarity = Common
|flammable=No
|lavasusceptible=No
}}

'''Torchflower seeds''' are seeds that have a chance to be dropped by [[Sniffer|sniffers]] when they finish digging.

== Obtaining ==
[[Sniffer]]s will occasionally bury their nose in the ground and start digging. Once the sniffer has finished digging, one torchflower seed will have a chance to be dropped on the floor as an item.

Sniffers can only dig for torchflower seeds in the following blocks:
*{{BlockLink|Dirt}}
*{{BlockLink|Grass Block}}
*{{BlockLink|Podzol}}
*{{BlockLink|Coarse Dirt}}
*{{BlockLink|Rooted Dirt}}
*{{BlockLink|Moss Block}}
*{{BlockLink|Mud}}
*{{BlockLink|Muddy Mangrove Roots}}
They cannot dig for torchflower seeds on [[mycelium]], which is intended.<ref>{{bug|MC-260259||Sniffers cannot dig nor find seeds on mycelium|WAI}}</ref>

== Usage ==
=== Crop ===
{{main|Tutorials/Crop farming|title1=Crop farming}}

Torchflower seeds can be {{control|placed}} on [[farmland]], where they grow through three stages. Breaking the torchflower crop before it matures drops the seed, while breaking the final stage produces one [[torchflower]] and does not yield the seed.

Crops break if pushed by a [[piston]] or if their supporting farmland breaks or turns to dirt (i.e. by being trampled), dropping their usual drops.

Farmer [[villager]]s can plant torchflower seeds, but cannot harvest them after they have fully grown.<ref>{{bug|MC-263382|||WAI}}</ref>

=== Feeding ===
Torchflower seeds can be used to breed [[sniffer]]s and [[chicken]]s and reduce the remaining growth duration of snifflets and chicks by 10%. Also, if some torchflower seeds were fed to an injured sniffer, it will heal it by {{hp|2}} health points.

=== Taming ===
Torchflower seeds can be used to tame [[parrot]]s.

=== Composting ===
Placing torchflower seeds into a [[composter]] has a 30% chance of raising the compost level by 1.

== Sounds ==
{{Sound table/Block/Crop}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showblocktags=y
|showitemtags=y
|showforms=y
|generatetranslationkeys=y
|displayname=Torchflower Crop
|spritetype=block
|nameid=torchflower_crop
|form=block
|blocktags=bee_growables, crops}}
{{ID table
|displayname=Torchflower Seeds
|spritetype=item
|nameid=torchflower_seeds
|form=item
|itemtags=villager_plantable_seeds
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|generatetranslationkeys=y
|displayname=Torchflower Crop
|spritetype=block
|nameid=torchflower_crop
|id=-567
|form=block
|translationkey=-}}
{{ID table
|displayname=Torchflower Seeds
|spritetype=item
|nameid=torchflower_seeds
|id=296
|form=item
|foot=1}}

=== Block states ===
{{see also|Block states}}

{{/BS}}

== Achievements ==
{{Load achievements|Planting The Past}}

== Advancements ==
{{load advancements|A Seedy Place;Planting The Past;Little Sniffs}}

== History ==
{{History|java}}
{{History||1.20<br>(Experimental)|link=1.19.4|snap=23w07a|[[File:Torchflower Seeds JE1.png|32px]] Added torchflower seeds behind the [[Java Edition 1.20|Update 1.20 experimental datapack]].}}
{{History|||snap=1.19.4 Pre-release 1|Torchflower seeds can now be used to breed [[chicken]]s and tame [[parrot]]s.<ref>{{bug|MC-260035|||Fixed}}</ref>|Torchflower seeds are now next to other seeds in the [[Creative inventory]].|Placing torchflower seeds in farmland now gives the player the "A Seedy Place" [[advancement]].}}
{{History||1.20|snap=23w12a|[[Sniffer]]s can now be obtained in Survival, making torchflower seeds [[renewable]].|Torchflower seeds are now available without using the "Update 1.20" experimental datapack.}}
{{History|||snap=23w14a|Torchflower seeds can now be picked up by farmer [[villager]]s.|[[Sniffer]]s can now be tempted with torchflower seeds.}}
{{History|||snap=23w16a|[[Villager]]s can now plant torchflower seeds.}}
{{History|||snap=23w17a|The player now get the [[advancement]] "Little sniffs" when they feed a [[snifflet]] using torchflower seeds, "Planting the past" when they plant torchflower seeds on [[farmland]].}}

{{History|bedrock}}
{{History||Sniffer<br>(Experimental)|link=Bedrock Edition 1.19.70|snap=beta 1.19.70.23|[[File:Torchflower Seeds JE1.png|32px]] Added torchflower seeds behind the "[[Bedrock Edition 1.20.0|Sniffer]]" [[experimental]] toggle.}}
{{History||1.20.0|snap=beta 1.20.0.20|Torchflower seeds are now available without using the "Sniffer" experimental toggle.}}
{{History|foot}}

== Issues ==
{{issue list}}

== Trivia ==
* The final growth stage of the torchflower crop uses the same ID as the actual torchflower. This causes some side effects, such as the plant becoming offset and randomly jumping to the side.<ref>{{bug|MC-260472|resolution=wai}}</ref>
 
== Gallery ==
<gallery>
Torchflower Seeds stages.png|All the growth stages of torchflower seeds.
</gallery>

== Notes ==
{{notelist}}

== References ==
{{reflist}}

{{Blocks|upcoming}}
{{Items}}
[[Category:Plants]]
[[Category:Non-solid blocks]]

[[de:Fackelliliensamen]]
[[es:Semillas de plantorcha]]
[[ja:トーチフラワーの種]]
[[pt:Sementes de plantocha]]
[[zh:火把莲种子]]</li></ul>
14w02aDifficulty is now saved per-world, instead of globally; difficulty can no longer be changed from the title screen.
Difficulty defaults to Normal instead of Easy.
Difficulty can now be locked.
Added /difficulty.
1.16
{{Extension DPL}}<ul><li>[[Axe|Axe]]<br/>{{For}}
{{Item
| image = <gallery>
Wooden Axe.png | Wooden
Stone Axe.png | Stone
Iron Axe.png | Iron
Golden Axe.png | Golden
Diamond Axe.png | Diamond
Netherite Axe.png | Netherite
</gallery>
| rarity = Common
| renewable = 
* '''Netherite''': No 
* '''Others''': Yes
| durability = 
'''Bedrock Edition'''
* Golden: 33
* Wooden: 60 
* Stone: 132
* Iron: 251
* Diamond: 1562
* Netherite: 2032
'''Java Edition'''
* Golden: 32
* Wooden: 59
* Stone: 131
* Iron: 250
* Diamond: 1561
* Netherite: 2031
| stackable = No
}}

An '''axe''' is a [[tool]] used to hasten the [[breaking]] of [[wood]]-based or other tough organic [[block]]s, strip or scrape certain blocks, or as a melee [[weapon]] that can disable [[Shield|shields]] it hits.

==Obtaining==
===Crafting===
{{Crafting
  |head=1
  |showname=0
  |showdescription=1
  |name=[[Axe]]
  |A1={Any Planks}; Iron Ingot; Gold Ingot; Diamond
  |B1={Any Planks}; Iron Ingot; Gold Ingot; Diamond
  |A2={Any Planks}; Iron Ingot; Gold Ingot; Diamond
  |B2=Stick
  |B3=Stick
  |Output= Wooden Axe; Iron Axe; Golden Axe; Diamond Axe
  |type= Tool
}}
{{Crafting
  |name=[[Stone Axe]]
  |A1=Any stone-tier block |B1=Any stone-tier block
  |A2=Any stone-tier block |B2=Stick
  |B3=Stick
  |Output=Stone Axe
  |type=Tool
  |description=Can use cobblestone and its other variants interchangeably.
}}
{{Crafting
  |foot=1
  |ignoreusage=1
  |name=[[Axe]]
  |ingredients=Damaged Matching [[Axe]]
  |Damaged Wooden Axe; Damaged Stone Axe; Damaged Iron Axe; Damaged Golden Axe; Damaged Diamond Axe; Damaged Netherite Axe
  |Damaged Wooden Axe; Damaged Stone Axe; Damaged Iron Axe; Damaged Golden Axe; Damaged Diamond Axe; Damaged Netherite Axe
  |Output=Wooden Axe; Stone Axe; Iron Axe; Golden Axe; Diamond Axe; Netherite Axe
  |description= The durability of the two axes is added together, plus an extra 5% durability.
  |type= Tool
}}

=== Upgrading ===
{{Smithing
|head=1
|Netherite Upgrade
|Diamond Axe
|Netherite Ingot
|Netherite Axe
|tail=1
}}

===Repairing===

====Grinding====
{{Grinding
|showdescription=1
|ingredients= 2× Damaged [[Wooden Axe]] or 2× Damaged [[Stone Axe]] or 2× Damaged [[Iron Axe]] or 2× Damaged [[Golden Axe]] or 2× Damaged [[Diamond Axe]] or 2× Damaged [[Netherite Axe]]
|Damaged Wooden Axe; Damaged Stone Axe; Damaged Iron Axe; Damaged Golden Axe; Damaged Diamond Axe; Damaged Netherite Axe
|Damaged Wooden Axe; Damaged Stone Axe; Damaged Iron Axe; Damaged Golden Axe; Damaged Diamond Axe; Damaged Netherite Axe
|Wooden Axe; Stone Axe; Iron Axe; Golden Axe; Diamond Axe; Netherite Axe
|description=The durability of the two axes is added together, plus an extra 5% of max durability.
}}

====[[Anvil mechanics#Unit repair|Unit repair]]====
An axe can be repaired in an [[anvil]] by adding units of the [[tiers|tier]]'s repair material, with each repair material restoring 25% of the axe's maximum durability, rounded down.

===Mob loot===

==== Equipment ====
{{Main|Drops#Equipped items}}

A [[vindicator]] spawns with an iron axe and has an 8.5% chance (9.5% with Looting I, 10.5% with Looting II, and 11.5% with Looting III) of dropping it upon death by the player. It is usually heavily damaged and is sometimes enchanted.

A [[piglin brute]] spawns with a golden axe and has an 8.5% chance (9.5% with Looting I, 10.5% with Looting II, and 11.5% with Looting III) of dropping it upon death by the player. Also, {{in|java}}, [[Zombified Piglin|zombified piglins]] can drop their golden axe (with the same chance as piglin brute drop) if they have been zombified from a [[Piglin Brute|piglin brute.]]

====Raids====
{{IN|be}}, [[Vindicator]] and [[pillager]]s that spawn in raids have a 4.1% chance (5.12% on hard) to drop a badly-damaged iron axe, which is sometimes enchanted with a random enchantment. A vindicator can drop 2 iron axes, one from natural equipment and one from raid drops.

===Trading===
Novice-level [[Trading#Toolsmith|Toolsmith]] [[villager]]s have a 25% chance to sell a stone axe for one [[emerald]], journeyman-level Toolsmith villagers have a 25% chance to sell an enchanted iron axe for eight emeralds, and expert-level Toolsmith villagers have a 50% chance to sell an enchanted diamond axe for 13 emeralds.{{only|bedrock}}

Novice-level [[Trading#Toolsmith 2|Toolsmith]] villagers have a 40% chance to sell a stone axe for one emerald, journeyman-level Toolsmith villagers have a 40% chance to sell an enchanted iron axe for 7-22 emeralds, and expert-level Toolsmith villagers have a 66.67% chance to sell an enchanted diamond axe for 18-35 emeralds.{{only|java}}

Novice-level [[Trading#Weaponsmith|Weaponsmith]] [[villager]]s sell an iron axe for 3 emeralds as one of their trades, and master-level Weaponsmith villagers sell an enchanted diamond axe for 12 emeralds.{{only|bedrock}}

Novice-level [[Trading#Weaponsmith 2|Weaponsmith]] villagers have a 66.67% chance to sell an iron axe for 3 emeralds. Master-level Weaponsmith villagers always offer to sell an enchanted diamond axe for 18-35 emeralds.{{only|java}}

The enchantments are the same as the ones obtained from an [[enchantment table]] at levels 5–19.

=== Villager gifts ===
[[Trading#Toolsmith 2|Toolsmith]] [[villagers]] occasionally throw stone axes at players with the [[Hero of the Village]] status effect.{{only|java}}

[[Trading#Weaponsmith 2|Weaponsmith]] [[villagers]] occasionally throw either stone, gold, or iron axes at players with the [[Hero of the Village]] status effect.{{only|java}}

===Structure loot===
{{IN|JE}}, a sealed room in [[woodland mansion]]s can appear that has a chest always containing an [[Efficiency]] I iron axe.
{{LootChestItem|wooden-axe,stone-axe,random-enchanted-golden-axe,damaged-random-enchanted-netherite-axe,iron-axe}}

==Usage==

===Chopping===
An axe is used to break [[logs]], blocks derived from wood and some other blocks faster than by using other tools. An axe uses 1 durability to break 1 block. For blocks that break instantly, it uses 0 durability.

====Durability====
Each tier of axe has a different durability:
{| class="wikitable sortable"
! Material
! [[Durability]]
|-
| {{itemLink|Wooden Axe|Wood|link=Axe}}
| 59
|-
| {{itemLink|Stone Axe|Stone|link=Axe}}
| 131
|-
| {{itemLink|Iron Axe|Iron|link=Axe}}
| 250
|-
| {{itemLink|Diamond Axe|Diamond|link=Axe}}
| 1561
|-
| {{itemLink|Golden Axe|Golden|link=Axe}}
| 32
|-
| {{itemLink|Netherite Axe|Netherite|link=Axe}}
| 2031
|}

====Speed====
The following table summarizes the speed at which axes of different qualities perform.
{{breaking row|Wooden Trapdoors|link=Trapdoor|sort=1|simple=1}}
{{breaking row|Wooden Doors|item=1|link=Door|sprite=oak-door}}
{{breaking row|Barrel}}
{{breaking row|Cartography Table}}
{{breaking row|Chest}}
{{breaking row|Trapped Chest}}
{{breaking row|Crafting Table}}
{{breaking row|Fletching Table}}
{{breaking row|Lectern}}
{{breaking row|Loom}}
{{breaking row|Smithing Table}}
{{breaking row|Bamboo Mosaic}}
{{breaking row|Block of Bamboo}}
{{breaking row|Campfire}}
{{breaking row|Fences}}
{{breaking row|Fence Gates}}
{{breaking row|Jukebox}}
{{breaking row|Logs}}
{{breaking row|Planks}}
{{breaking row|Wooden Slabs|link=Slabs|sprite=all-wooden-slabs}}
{{breaking row|Wooden Stairs|link=Stairs|sprite=all-wooden-stairs}}
{{breaking row|Bookshelf}}
{{breaking row|Chiseled Bookshelf}}
{{breaking row|Banners}}
{{breaking row|Jack o'Lantern}}
{{breaking row|Melon}}
{{breaking row|Pumpkin}}
{{breaking row|Sign|sprite=oak-sign}}
{{breaking row|Hanging Sign|sprite=hanging-oak-sign}}
{{breaking row|Note Block}}
{{breaking row|Mangrove Roots}}
{{breaking row|Wooden Pressure Plate|sprite=oak-pressure-plate}}
{{breaking row|Beehive}}
{{breaking row|Ladder}}
{{breaking row|Bee Nest|drop=0}}
{{breaking row|Composter}}
{{breaking row|Bamboo}}
{{breaking row|sprite=red-bed|Bed}}
{{breaking row|Cocoa}}
{{breaking row|Daylight Detector}}
{{breaking row|Mushroom Block|sprite=mushroom-blocks}}
{{breaking row|Vines|drop=0|foot=1}}

=== Stripping ===
{{control|Using}} an axe on a [[log]], [[wood]] block, [[block of bamboo]]\, or [[block of copper]] causes it to become a [[stripped log]], [[stripped wood]] block, [[block of stripped bamboo]], or removes one layer of oxidization or wax, respectively. This consumes one point of durability from the axe.

===Weapon===
An axe loses 2 points of durability when used as a weapon. 

==== Bedrock Edition ====
{{IN|bedrock}}, axes always attack instantly and deal {{hp|1}} less damage than a [[sword]] of the same quality but it lowers the durability of armor and shields faster than any other tool in-game.
{| class="wikitable" style="text-align:center" data-description="Bedrock damage"
! Material !! Damage
|-
| {{ItemSprite|Wooden Axe}} Wooden || rowspan="2" |{{hp|4}}
|-
| {{ItemSprite|Golden Axe}} Golden
|-
| {{ItemSprite|Stone Axe}} Stone ||{{hp|5}}
|-
| {{ItemSprite|Iron Axe}} Iron ||{{hp|6}}
|-
| {{ItemSprite|Diamond Axe}} Diamond ||{{hp|7}}
|-
| {{ItemSprite|Netherite Axe}} Netherite ||{{hp|8}}
|}

====Java Edition====

Attacking a [[shield]] user with an axe should have a chance to disable the use of the shield for 5 seconds, but currently this always disables a shield.<ref>{{bug|MC-197537}}</ref> The base chance is 25%, plus 5 percentage points per level of [[Efficiency]] on the axe, plus 75 percentage points if attacking while sprinting. [[Vindicator]]s, [[piglin brute]]s, or other [[mob]]s with commands always disable the player's shield. Damage done when using an axe as a weapon is more than that of a [[sword]] of the same tier, though they take longer than a sword to [[Damage#Attack cooldown|recover]], resulting in lower <abbr title="Damage/Second">DPS</abbr> (with the exception of [[gold]]en axes). The damage dealt and cooldown time depends on the type:

{| class="wikitable" style="text-align:center" data-description="Attack damage"
! Material
! {{ItemSprite|Wooden Axe|text=Wooden}}
! {{ItemSprite|Golden Axe|text=Gold}}
! {{ItemSprite|Stone Axe|text=Stone}}
! {{ItemSprite|Iron Axe|text=Iron}}
! {{ItemSprite|Diamond Axe|text=Diamond}}
! {{ItemSprite|Netherite Axe|text=Netherite}}
|-
! Attack Damage
| {{hp|7}}
| {{hp|7}}
| {{hp|9}}
| {{hp|9}}
| {{hp|9}}
| {{hp|10}}
|-
! Attack Speed
| 0.8
| 1.0
| 0.8
| 0.9
| 1.0
| 1.0
|-
! Recovery time
| {{convert|1.25|sec|tick|sep=}}
| {{convert|1|sec|tick|sep=}}
| {{convert|1.25|sec|tick|sep=}}
| {{convert|1.11|sec|tick|sep=}}
| {{convert|1|sec|tick|sep=}}
| {{convert|1|sec|tick|sep=}}
|-
! <abbr title="Damage/Second">DPS</abbr>
| 5.6
| 7.0
| 7.2
| 8.1
| 9.0
| 10.0
|-
! Lifetime damage inflicted<ref group="note">The formula to find the total lifetime damage is <code>ceil(''durability'' ÷ 2) × ''damage per hit''</code>. The durability is halved then ceiled because axes take double durability when used as a weapon, and the last 1 durability can also deal damage. The formula also ignores enchantments and critical hits, and assumes each attack is performed at maximum charge.</ref>
| {{hp|210}}
| {{hp|112}}
| {{hp|594}}
| {{hp|1125}}
| {{hp|7029}}
| {{hp|10160}}
|}
{{notelist}}

=== Enchantments ===
An axe can receive the following enchantments:
{| class="wikitable col-2-center col-3-right"
|+
!Name
!Max Level
![[Enchanting|Method]]
|-
|[[Fortune]]<ref group=note name=exc>Silk Touch and Fortune are mutually exclusive.</ref>
|III
|{{Inventory slot|Enchanting Table}}{{Inventory slot|Anvil}}
|-
|[[Silk Touch]]<ref group=note name=exc/>
|I
|{{Inventory slot|Enchanting Table}}{{Inventory slot|Anvil}}
|-
|[[Efficiency]]
|V
|{{Inventory slot|Enchanting Table}}{{Inventory slot|Anvil}}
|-
|[[Unbreaking]]
|III
|{{Inventory slot|Enchanting Table}}{{Inventory slot|Anvil}}
|-
|[[Sharpness]]<ref group="note" name="exc2">Sharpness, Smite, Bane of Arthropods, and Cleaving{{upcoming|java Combat Tests}} are mutually exclusive.</ref>
|V
|{{Inventory slot|Anvil}}
|-
|[[Smite]]<ref group="note" name=exc2/>
|V
|{{Inventory slot|Anvil}}
|-
|[[Bane of Arthropods]]<ref group="note" name=exc2/>
|V
|{{Inventory slot|Anvil}}
|-
|[[Fire Aspect]]{{upcoming|java Combat Tests}}<ref group="note" name="sword">Fire Aspect, Looting, Knockback, and Sweeping Edge currently exist, but they can be used only for [[sword]]s.</ref>
|II
|{{Inventory slot|Anvil}}
|-
|[[Looting]]{{upcoming|java Combat Tests}}<ref group="note" name="sword" />
|III
|{{Inventory slot|Anvil}}
|-
|[[Knockback]]{{upcoming|java Combat Tests}}<ref group="note" name="sword" />
|II
|{{Inventory slot|Anvil}}
|-
|[[Cleaving]]{{upcoming|java Combat Tests}}<ref group="note" name="exc2" />
|III
|{{Inventory slot|Enchanting Table}}{{Inventory slot|Anvil}}
|-
|[[Sweeping Edge]]{{upcoming|java Combat Tests}}<ref group="note" name="sword" />
|III
|{{Inventory slot|Enchanting Table}}{{Inventory slot|Anvil}}
|-
|[[Mending]]
|I
|{{Inventory slot|Anvil}}
|-
|[[Curse of Vanishing]]
|I
|{{Inventory slot|Anvil}}
|}

{{notelist}}

=== Fuel===
Wooden axes can be used as a fuel in [[furnace]]s, smelting 1 item per axe.

===Smelting ingredient===
{{Smelting|showname=1|Iron Axe;Golden Axe|Iron Nugget;Gold Nugget|0,1}}

===Piglins===
{{EntityLink|Piglin|Piglins}} are attracted to golden axes and run toward any golden axes on the ground, and inspect it for 6 to 8 seconds before putting it in their inventory.

== Sounds ==
{{el|je}}:
{{Sound table
|sound=Axe strip1.ogg
|sound2=Axe strip2.ogg
|sound3=Axe strip3.ogg
|sound4=Axe strip4.ogg
|subtitle=Axe strips
|source=block
|description=When an axe strips a log or wood block
|id=item.axe.strip
|translationkey=subtitles.item.axe.strip
|volume=0.9
|pitch=1.0/0.85
|distance=16}}
{{Sound table
|sound=wax_off1.ogg
|sound2=wax_off2.ogg
|sound3=wax_off3.ogg
|subtitle=Wax off
|source=block
|description=When an axe unwaxes a [[block of copper]]
|id=item.axe.wax_off
|translationkey=subtitles.item.axe.wax_off
|volume=1.0
|pitch=0.9/1.1/1.0
|distance=16}}
{{Sound table
|sound=scrape1.ogg
|sound2=scrape2.ogg
|sound3=scrape3.ogg
|subtitle=Axe scrapes
|source=block
|description=When an axe deoxidizes a block of copper
|id=item.axe.scrape
|translationkey=subtitles.item.axe.scrape
|volume=1.0
|pitch=1.0/0.9/1.1
|distance=16}}
{{Sound table
|sound=Random break.ogg
|subtitle=Item breaks
|source=player
|description=When an axe's durability is exhausted
|id=entity.item.break
|translationkey=subtitles.entity.item.break
|volume=0.8
|pitch=0.8-1.2
|distance=16
|foot=1}}

{{el|be}}:
{{Sound table
|type=bedrock
|sound=Wood hit1.ogg
|sound2=Wood hit2.ogg
|sound3=Wood hit3.ogg
|sound4=Wood hit4.ogg
|sound5=Wood hit5.ogg
|sound6=Wood hit6.ogg
|source=block
|description=When an axe strips a log or wood block <ref group=sound name=stripsoundbug>{{Bug|MCPE-106552}}</ref>
|id=use.wood
|volume=1.0
|pitch=0.8}}
{{Sound table
|sound=Stem step1.ogg
|sound2=Stem step2.ogg
|sound3=Stem step3.ogg
|sound4=Stem step4.ogg
|sound5=Stem step5.ogg
|sound6=Stem step6.ogg
|source=block
|description=When an axe strips a stem or hyphae block <ref group=sound name=stripsoundbug/>
|id=use.stem
|volume=1.0
|pitch=0.8}}
{{Sound table
|sound=Bamboo wood step1.ogg
|sound2=Bamboo wood step2.ogg
|sound3=Bamboo wood step3.ogg
|sound4=Bamboo wood step4.ogg
|sound5=Bamboo wood step5.ogg
|sound6=Bamboo wood step6.ogg
|source=player
|description=When an axe strips a [[block of bamboo]] <ref group=sound name=stripsoundbug/>
|id=step.bamboo_wood
|volume=1.0
|pitch=0.8}}
{{Sound table
|sound=Cherry wood step1.ogg
|sound2=Cherry wood step2.ogg
|sound3=Cherry wood step3.ogg
|sound4=Cherry wood step4.ogg
|sound5=Cherry wood step5.ogg
|sound6=Cherry wood step6.ogg
|source=player
|description=When an axe strips a cherry log or cherry wood block <ref group=sound name=stripsoundbug/>
|id=step.cherry_wood
|volume=1.0
|pitch=0.8}}
{{Sound table
|sound=wax_off1.ogg
|sound2=wax_off2.ogg
|sound3=wax_off3.ogg
|source=neutral
|description=When an axe unwaxes or deoxidizes a block of copper {{More info|Is use.copper used as well?}}
|id=copper.wax.off
|volume=1.0
|pitch=0.8-1.2}}
{{Sound table
|sound=Random break.ogg
|source=player
|description=When an axe's durability is exhausted
|id=random.break
|volume=1.0
|pitch=0.9
|foot=1}}

==Data values==
===ID===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Wooden Axe
|spritetype=item
|nameid=wooden_axe
|form=item}}
{{ID table
|displayname=Stone Axe
|spritetype=item
|nameid=stone_axe
|form=item}}
{{ID table
|displayname=Iron Axe
|spritetype=item
|nameid=iron_axe
|form=item}}
{{ID table
|displayname=Diamond Axe
|spritetype=item
|nameid=diamond_axe
|form=item}}
{{ID table
|displayname=Golden Axe
|spritetype=item
|nameid=golden_axe
|form=item}}
{{ID table
|displayname=Netherite Axe
|spritetype=item
|nameid=netherite_axe
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Wooden Axe
|spritetype=item
|nameid=wooden_axe
|id=311
|form=item}}
{{ID table
|displayname=Stone Axe
|spritetype=item
|nameid=stone_axe
|id=315
|form=item}}
{{ID table
|displayname=Iron Axe
|spritetype=item
|nameid=iron_axe
|id=298
|form=item}}
{{ID table
|displayname=Diamond Axe
|spritetype=item
|nameid=diamond_axe
|id=319
|form=item}}
{{ID table
|displayname=Golden Axe
|spritetype=item
|nameid=golden_axe
|id=325
|form=item}}
{{ID table
|displayname=Netherite Axe
|spritetype=item
|nameid=netherite_axe
|id=607
|form=item
|foot=1}}

==Achievements==
{{load achievements|MOAR Tools ;Oooh, shiny!}}

==Advancements ==
{{load advancements|Oh Shiny;Wax off}}

==History==
{{History|java indev}}
{{History||0.31|snap=20100110|[[File:Iron Axe JE1.png|32px]] Added iron axes.
|An axe is used to gather [[log|wood]] 400% faster than by hand.
|When starting in a new world, the [[player]] is given one of each [[tools|tool]].}}
{{History|||snap=20100122|[[File:Iron Axe JE2.png|32px]] The texture of axes has been changed. Half of the axe head has been removed.}}
{{History|||snap=20100124|[[File:Iron Axe JE3.png|32px]] The texture of axes has been changed again. The other axe head is now used instead.
|A complete toolset is no longer given to the [[player]] on starting a new world. Instead, there are multiple [[chest]]s in the later called "[[Indev House]]" containing a stack of most accessible [[blocks]]/[[items]] including [[tools]].}}
{{History|||snap=20100128|[[File:Wooden Axe JE1 BE1.png|32px]] [[File:Stone Axe JE1 BE1.png|32px]] [[File:Diamond Axe JE1 BE1.png|32px]] [[Tools]] now have tiers. Wooden, stone, and diamond axes have been added.
|[[File:Iron Axe JE4 BE1.png|32px]] The texture of iron axes has been changed.
|An axe held by the player is now rendered to appear more 3D.
|They cannot be crafted yet, but have been added to the item chest in the Indev house.}}
{{History|||snap=20100129|Wooden, stone, iron, and diamond axes can now be [[craft]]ed.}}
{{History|||snap=20100130|[[File:Golden Axe JE1.png|32px]] Axes can now be made out of gold.}}
{{History|||snap=20100201-1|[[Tools]] now take [[damage]] when being used. Better tools now last longer.}}
{{History||20100206|[[File:Golden Axe JE2 BE1.png|32px]] The texture of golden axes has been changed.}}
{{History|java beta}}
{{History||1.2|Gold [[tools]], including axes, now remove [[block]]s faster than diamond tools.}}
{{History|java}}
{{History||1.2.4|snap=release|[[Spruce planks]], [[birch planks]], and [[jungle planks]] can now be used to craft wooden axes.}}
{{History||1.3.1|snap=12w16a|Wooden and stone axes are now found in the new [[bonus chest]]s.}}
{{History|||snap=12w18a|Wooden axes can now be used as [[fuel]] in a [[furnace]].}}
{{History|||snap=12w21a|Blacksmith [[villager]]s now [[trading|sell]] 1 diamond axe for 9–11 [[emerald]]s, and 1 iron axe for 6–7 emeralds.}}
{{History||1.6.1|snap=13w21a|Instead of replacing the barehanded [[damage]] ({{hp|1}}), axes now add their damage onto the barehanded damage, which results in all axes doing {{hp|1}} more damage than before.}}
{{History||1.7.2|snap=1.7.1|[[Acacia planks]] and [[dark oak planks]] can now be used to craft wooden axes.}}
{{History||1.8|snap=14w02a|Weapon smith villagers now sell 1 [[enchanting|enchanted]] diamond axe for 9–12 emeralds, and 1 iron axe for 6–8 emeralds. Unenchanted diamond axes are no longer sold.}}
{{History||1.9|snap=15w34a|Axes now use the attack speed combat mechanic meter. The time it takes for the meter to fill up for an axe is 1.2 seconds.}}
{{History|||snap=15w34b|Axes now have an attack speed of 0.8, taking about 1.25 seconds to fill the attack meter.}}
{{History|||snap=15w34c|Axes do {{hp|4}} more [[damage]] than previously.
|Axes now have an attack speed of 0.85.
|Axes can now temporarily disable [[shield]] use.}}
{{History|||snap=15w35a|The [[damage]] of axes has been reduced by {{hp|1}}.
|The speed of axes has been increased to 0.9.}}
{{History|||snap=15w37a|Stone and diamond axes now both do {{hp|9}} damage, instead of the previous {{hp|8}} and {{hp|10}} respectively.
|Axes now have attack speed based on the tier, with wooden and stone having a speed of 0.8, iron having a speed of 0.9, and diamond and gold having a speed of 1.}}
{{History|||snap=15w43a|Stone axes may now be found in [[igloo]] basement chests.}}
{{History|||snap=15w44a|The average yield of stone and wooden axes from [[bonus chest]]s has been decreased.}}
{{History||1.11.1|snap=16w50a|Golden and iron axes now [[smelting|smelt]] down into one of their respective [[nugget]]s.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], these [[item]]s' numeral IDs were 271, 275, 258, 279 and 286.}}
{{History||1.13|snap=18w07a|{{control|Using}} an axe on a block of [[wood]] or [[log]] now turns it into a stripped block of wood or log.}}
{{History|||snap=18w09a|Stone axes now can generate in the [[chest]]s of [[underwater ruins]].}}
{{History|||snap=pre2|{{control|Using}} an axe on a bark now turns it into a stripped bark.}}
{{History||1.14|snap=18w43a|[[File:Wooden Axe JE2 BE2.png|32px]] [[File:Stone Axe JE2 BE2.png|32px]] [[File:Iron Axe JE5 BE2.png|32px]] [[File:Golden Axe JE3 BE2.png|32px]] [[File:Diamond Axe JE2 BE2.png|32px]] The textures of all axes have been changed.}}
{{History|||snap=19w11a|Toolsmith villagers now sell stone axes, as well as enchanted iron and diamond axes.}}
{{History|||snap=19w13a|Toolsmith villagers now give stone axes to players under the [[Hero of the Village]] effect.
|Weaponsmith villagers now give stone, golden and iron axes to players under the [[Hero of the Village]] effect.}}
{{History||1.16|snap=20w06a|[[File:Netherite Axe JE1.png|32px]] Added netherite axes.
|Netherite axes are obtained by combining one diamond axe and one netherite ingot in a crafting table.
|[[Crimson planks]] and [[warped planks]] can now be used to craft wooden axes.}}
{{History|||snap=20w09a|[[File:Diamond Axe JE3 BE3.png|32px]] The texture of diamond axes has been changed.}}
{{History|||snap=20w10a|[[File:Netherite Axe JE2.png|32px]] The texture of netherite axes has been changed.
|Netherite axes can no longer be crafted.
|Netherite axes are now obtained by combining one diamond axe and one netherite ingot in a smithing table.}}
{{History|||snap=20w15a|Stone axes can now be crafted using [[blackstone]].}}
{{History|||snap=20w16a|Golden axes now generate randomly enchanted in [[ruined portal]] chests.}} 
{{History||1.16.2|snap=20w30a|Enchanted golden axes can now be found in [[bastion remnant]] chests.}}
{{History||1.17|snap=21w08a|Stone axes can now be crafted using [[cobbled deepslate]].}}
{{History|||snap=21w11a|Axes can now be used to scrape wax and oxidation off [[copper block]]s.}}
{{History||1.19|snap=22w11a|[[Mangrove planks]] can now be used to craft wooden axes.}}
{{History||1.20 (Experimental)|link=1.19.3|snap=22w42a|Added [[block of bamboo]], which when used with an axe gives a block of stripped bamboo.}}
{{History||1.20<br>(Experimental)|link=1.19.4|snap=23w04a|Upgrading diamond axes to netherite axes now requires the netherite upgrade [[smithing template]].}}
{{History||1.20|snap=23w12a|Iron axes can now be found in [[suspicious gravel]] and [[suspicious sand]] in cold and warm [[ocean ruins]].}}

{{History|upcoming java}}
{{History||Combat Tests|snap=1.14.3 - Combat Test|The attack speed for all axes has been increased to 2.
|All axes now deal {{hp|1}} more [[damage]] than their sword counterparts.}}
{{History|||snap=Combat Test 3|The [[Cleaving|Chopping]] enchantment has been added for axes, which adds 1 damage and 0.5 seconds (10 [[game tick]]s) of [[shield]] stunning per level and is mutually exclusive with [[Sharpness]].
|Axes now always disable shields for {{convert|1.6|seconds|ticks}}, instead of having a 25% to disable them for 5 seconds (100 game ticks).
|Axes now take 1 damage when attacking instead of 2.
|The [[Sweeping Edge]] enchantment can now be applied to axes.}}
{{History|||snap=Combat Test 4|[[Knockback]], [[Looting]], and [[Fire Aspect]] enchantments can now be applied to axes.}}

{{History|pocket alpha}}
{{History||v0.2.0|[[File:Stone Axe JE1 BE1.png|32px]] Added stone axes.}}
{{History||v0.3.0|[[File:Wooden Axe JE1 BE1.png|32px]] Added wooden axes.
|Survival players no longer start with an infinite durability stone axe in the inventory.}}
{{History||v0.3.2|[[File:Iron Axe JE4 BE1.png|32px]] [[File:Golden Axe JE2 BE1.png|32px]] [[File:Diamond Axe JE1 BE1.png|32px]] Added iron, golden and diamond axes.}}
{{History||v0.4.0|Removed stone axes from the creative inventory.}}
{{History||v0.11.0|snap=build 11|All axes are now available in the [[creative]] [[inventory]].}}
{{History|||snap=build 12|All axes have been removed from creative.}}
{{History|||snap=build 13|All axes have been re-added to creative mode.}}
{{History||v0.12.1|snap=build 1|Instead of replacing the barehanded [[damage]] ({{hp|1}}), axes now add their damage onto the barehanded damage, which results in all axes doing {{hp|1}} more damage than before.}}
{{History|pocket}}
{{History||1.0.0|snap=alpha 0.17.0.1|Stone axes now can be found inside [[igloo]] basement [[chest]]s.}}
{{History||1.0.4|snap=alpha 1.0.4.0|Weaponsmith [[villager]]s now [[trading|sell]] iron axes for 6-8 [[emerald]]s as part of their first tier [[trading|trades]] and [[enchanting|enchanted]] diamond axes for 9-12 emeralds as part of their third tier trades.}}
{{History||1.1.0|snap=alpha 1.1.0.0|Iron and golden axes are now [[smelting|smeltable]].
|Iron axes with the [[Efficiency]] I enchantment can now be found inside [[chest]]s in [[woodland mansion]]s.
|Added [[vindicator]]s, who rarely [[drops|drop]] iron axes.}}
{{History|bedrock}}
{{History||1.2.0|snap=beta 1.2.0.2|Wooden and stone axes can now be found in [[bonus chest]]s.}}
{{History||1.4.0|snap=beta 1.2.13.8|Using an axe on a [[log]] now turns it into a stripped log.}}
{{History|||snap=beta 1.2.20.1|Stone axes can now be found inside [[underwater ruins]] chests.}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Wooden Axe JE2 BE2.png|32px]] [[File:Stone Axe JE2 BE2.png|32px]] [[File:Iron Axe JE5 BE2.png|32px]] [[File:Golden Axe JE3 BE2.png|32px]] [[File:Diamond Axe JE2 BE2.png|32px]] The textures of all axes have been changed.}}
{{History||1.11.0|snap=beta 1.11.0.4|[[Vindicator]]s and [[pillager]]s that spawn in [[raid]]s can now [[drops|drop]] an iron axe.
|[[Trading]] has been changed, weaponsmith [[villager]]s now [[trading|sell]] iron axes for 3 [[emerald]]s and [[enchanting|enchanted]] diamond axes for 12 emeralds as part of their fourth tier [[trading|trades]].
|Stone axes, enchanted iron axes, and diamond axes can now be [[trading|bought]] from toolsmith villagers.}}
{{History||1.16.0|snap=beta 1.16.0.51|[[File:Netherite Axe BE1.png|32px]] Added netherite axes.|Netherite axes are obtained by combining one diamond axe and one netherite ingot in a crafting table.
|[[File:Diamond Axe JE3 BE3.png|32px]] The texture of diamond axes has been changed.}}
{{History|||snap=beta 1.16.0.57|Netherite axes can no longer be crafted.
|Netherite axes are now obtained by combining one diamond axe and one netherite ingot in a smithing table.
|Stone axes can now be crafted using blackstone.
|Golden axes now generate randomly enchanted in [[ruined portal]] chests.
|Netherite axes now generate randomly enchanted in [[bastion remnant]] chests.}}
{{History||1.16.20|snap=beta 1.16.20.50|Added [[piglin brute]]s, who rarely drop golden axes.}}
{{History||1.16.100|snap=beta 1.16.100.54|Piglin brutes no longer spawn with enchanted axes.}}
{{History|||snap=beta 1.16.100.55|Zombified piglins that are converted from piglin brutes now keep their golden axes.}}
{{History||1.16.220|snap=beta 1.16.220.52|Axes can now be used to scrape wax off copper blocks.}}
{{History||1.18.30|snap=beta 1.18.30.26|Axes can now temporarily disable [[shield]] use. This is not mentioned in the official changelog.<ref>{{tweet|kingbdogz|1504505321884196872|We missed a change in recent changelogs for the Bedrock beta that you may like - we have now made a parity fix that makes shields get disabled for 5 seconds when attacked by an Axe-wielding mob or player. We will make sure to list this properly in the next beta :)|March 17, 2022}}</ref>
}}

{{History|console}}
{{History||xbox=TU1|xbone=CU1|ps=1.00|wiiu=Patch 1|switch=1.0.1|[[File:Wooden Axe JE1 BE1.png|32px]] [[File:Stone Axe JE1 BE1.png|32px]] [[File:Iron Axe JE4 BE1.png|32px]] [[File:Golden Axe JE2 BE1.png|32px]] [[File:Diamond Axe JE1 BE1.png|32px]] Added axes (all five types).}}
{{History||xbox=TU53|xbone=CU43|ps=1.49|wiiu=Patch 23|switch=1.0.3|Iron and golden axes are now [[smelting|smeltable]].}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Wooden Axe JE2 BE2.png|32px]] [[File:Stone Axe JE2 BE2.png|32px]] [[File:Iron Axe JE5 BE2.png|32px]] [[File:Golden Axe JE3 BE2.png|32px]] [[File:Diamond Axe JE2 BE2.png|32px]] The textures of all axes have been changed.}}

{{History|New Nintendo 3DS Edition}}
{{History||0.1.0|[[File:Wooden Axe JE1 BE1.png|32px]] [[File:Stone Axe JE1 BE1.png|32px]] [[File:Iron Axe JE4 BE1.png|32px]] [[File:Golden Axe JE2 BE1.png|32px]] [[File:Diamond Axe JE1 BE1.png|32px]] Added axes.}}
{{History|foot}}

==Issues==
{{issue list}}

==Trivia==
*Before [[Java Edition 1.13]], in the language files, axes were referred to as Hatchets.<ref name="1.8 lang">''1.8/assets/minecraft/lang/en_US.lang'', line 915: '''item.hatchetIron.name= Iron Axe'''</ref>
*Weaponsmith villagers gifting stone, iron and golden axes is a reference to the story ''[[wikipedia:The Honest Woodcutter|The Honest Woodcutter]]'', where a woodcutter dropped his axe into a river, and is successively provided a silver and a golden axe by the river god.{{cn}}

== Gallery ==
<gallery>
Stone Axe SDGP.png|Stone axe in the [[Super Duper Graphics Pack]].
</gallery>
=== Enchanted axes ===
<gallery>
Enchanted Wooden Axe.gif
Enchanted Stone Axe.gif
Enchanted Iron Axe.gif
Enchanted Golden Axe.gif
Enchanted Diamond Axe.gif
Enchanted Netherite Axe.gif
</gallery>

==See also==
*{{ItemLink|Pickaxe}}

==References==
{{Reflist}}

== External Links ==
*[https://www.minecraft.net/en-us/article/taking-inventory--axe Taking Inventory: Axe] – Minecraft.net on February 6, 2020

{{items}}

[[Category:Combat]]

[[cs:Sekera]]
[[de:Axt]]
[[es:Hacha]]
[[fr:Hache]]
[[hu:Balta]]
[[ja:斧]]
[[ko:도끼]]
[[nl:Bijl]]
[[pl:Siekiera]]
[[pt:Machado]]
[[ru:Топор]]
[[th:ขวาน]]
[[uk:Сокира]]
[[zh:斧]]</li><li>[[Smithing Template|Smithing Template]]<br/>{{for|the block|Smithing Table}}
{{Item
| title = Smithing Template
| image = <gallery>
Netherite Upgrade Smithing Template.png | Netherite Upgrade
Sentry Armor Trim Smithing Template.png | Armor Trim
</gallery>
| rarity = Rare
| renewable = No<!--Smithing templates are not renewable because diamonds, their only other method of creation, are not renewable.-->
| stackable = Yes (64)
}}
'''Smithing templates''' are items used in [[Smithing Table|smithing tables]] to alter [[Tool|tools]] and [[armor]]. They are consumed when used, but can be [[Crafting|duplicated]] using an existing template, its material and [[Diamond|diamonds]].

The sixteen '''armor trim smithing templates''' are found in a variety of [[Generated structures|structures]], and are used to apply various decorative trims (dependent on the variant) to armor using certain minerals for different colors.

'''Netherite upgrade smithing templates''' are required to upgrade diamond equipment with a [[Netherite Ingot|netherite ingot]]. They are only found in [[Bastion Remnant|bastion remnants]], but are guaranteed only in [[:en:Bastion_Remnant#Treasure_room|treasure rooms]].

== Obtaining ==
Smithing templates can be found in various [[Generated structures|structures]] and can be duplicated by using seven diamonds and a block based on what the template is.

=== Crafting ===
{{Crafting
|A1=Diamond |B1=Matching Smithing Template                                                                                                                           |C1=Diamond
|A2=Diamond |B2=Netherrack;Cobblestone;Sandstone;End Stone;Terracotta;Terracotta;Netherrack;Cobblestone;Terracotta;Cobbled Deepslate;Blackstone;Purpur Block;Prismarine;Cobblestone;Cobbled Deepslate;Terracotta;Mossy Cobblestone |C2=Diamond
|A3=Diamond |B3=Diamond                                                                                                                                              |C3=Diamond
|Output=Matching Smithing Template,2
}}

{| class="article-table"
|+ Duplication 
! Item !! Material
|-
| {{ItemSprite|netherite-upgrade|text=Netherite Upgrade}} || {{BlockSprite|Netherrack|text=Netherrack}}
|-
| {{ItemSprite|sentry-armor-trim|text=Sentry Armor Trim}} || {{BlockSprite|Cobblestone|text=Cobblestone}}
|-
| {{ItemSprite|vex-armor-trim|text=Vex Armor Trim}} || {{BlockSprite|Cobblestone|text=Cobblestone}}
|-
| {{ItemSprite|wild-armor-trim|text=Wild Armor Trim}} || {{BlockSprite|Mossy Cobblestone|text=Mossy Cobblestone}}
|-
| {{ItemSprite|coast-armor-trim|text=Coast Armor Trim}} || {{BlockSprite|Cobblestone|text=Cobblestone}}
|-
| {{ItemSprite|dune-armor-trim|text=Dune Armor Trim}} || {{BlockSprite|Sandstone|text=Sandstone}}
|-
| {{ItemSprite|wayfinder-armor-trim|text=Wayfinder Armor Trim}} || {{BlockSprite|Terracotta|text=Terracotta}}
|-
| {{ItemSprite|raiser-armor-trim|text=Raiser Armor Trim}} || {{BlockSprite|Terracotta|text=Terracotta}}
|-
| {{ItemSprite|shaper-armor-trim|text=Shaper Armor Trim}} || {{BlockSprite|Terracotta|text=Terracotta}}
|-
| {{ItemSprite|host-armor-trim|text=Host Armor Trim}} || {{BlockSprite|Terracotta|text=Terracotta}}
|-
| {{ItemSprite|ward-armor-trim|text=Ward Armor Trim}} || {{BlockSprite|Cobbled Deepslate|text=Cobbled Deepslate}}
|-
| {{ItemSprite|silence-armor-trim|text=Silence Armor Trim}} || {{BlockSprite|Cobbled Deepslate|text=Cobbled Deepslate}}
|-
| {{ItemSprite|tide-armor-trim|text=Tide Armor Trim}} || {{BlockSprite|Prismarine|text=Prismarine}}
|-
| {{ItemSprite|snout-armor-trim|text=Snout Armor Trim}} || {{BlockSprite|Blackstone|text=Blackstone}}
|-
| {{ItemSprite|rib-armor-trim|text=Rib Armor Trim}} || {{BlockSprite|Netherrack|text=Netherrack}}
|-
| {{ItemSprite|eye-armor-trim|text=Eye Armor Trim}} || {{BlockSprite|End Stone|text=End Stone}}
|-
| {{ItemSprite|spire-armor-trim|text=Spire Armor Trim}} || {{BlockSprite|Purpur Block|text=Purpur Block}}
|}

{{IN|bedrock}}, spire, tide, and dune armor trims can be duplicated with more blocks than {{in|java}}. In addition to the normal blocks, Tide armor trims can be duplicated using Prismarine Bricks or Dark Prismarine, dune armor trims can be duplicated with smooth sandstone, cut sandstone, or chiseled sandstone, and spire armor trims can be duplicated with purpur pillars.<ref>{{bug|MCPE-172711||Tide, Spire, and Dune Armor Trims can be crafted from more blocks than in Java Edition}}</ref>

=== Mob loot ===
[[Elder guardian]]s have a 20% chance to drop 1 tide armor trim upon death. [[Looting]] doesn't affect this percentage, and the elder guardian doesn't need to be killed by a player in order for the trim to drop and can be duplicated with [[prismarine]].

=== Chest loot ===
{{#invoke:LootChest|base3|netherite-upgrade-smithing-template,sentry-armor-trim-smithing-template,vex-armor-trim-smithing-template,wild-armor-trim-smithing-template,coast-armor-trim-smithing-template,dune-armor-trim-smithing-template,ward-armor-trim-smithing-template,silence-armor-trim-smithing-template,snout-armor-trim-smithing-template,rib-armor-trim-smithing-template,eye-armor-trim-smithing-template,spire-armor-trim-smithing-template}}
Note: In Woodland Mansions, only chests with random loot have the chance to contain the Vex Smithing Template, chests in the "Allium room", "Sapling farm", "Tree-chopping room" and "Fake End portal room" always generate with the same, room specific, loot.

=== Suspicious block loot ===
Items can only be extracted from [[Suspicious Block|suspicious blocks]] using a [[brush]].{{#invoke:LootChest|base3|wayfinder-armor-trim-smithing-template,raiser-armor-trim-smithing-template,shaper-armor-trim-smithing-template,host-armor-trim-smithing-template}}

== Usage ==
=== Crafting ingredient ===
{{Crafting
|A1=Diamond |B1=Matching Smithing Template                                                                                                                           |C1=Diamond
|A2=Diamond |B2=Netherrack;Cobblestone;Sandstone;End Stone;Terracotta;Terracotta;Netherrack;Cobblestone;Terracotta;Cobbled Deepslate;Blackstone;Purpur Block;Prismarine;Cobblestone;Cobbled Deepslate;Terracotta;Mossy Cobblestone |C2=Diamond
|A3=Diamond |B3=Diamond                                                                                                                                              |C3=Diamond
|Output=Matching Smithing Template,2
}}

=== Smithing ingredient ===
Smithing templates are used at a [[smithing table]]. Netherite upgrade smithing templates are used to upgrade diamond gear into netherite gear by using a netherite upgrade, a piece of diamond gear, and a [[netherite ingot]]. 

{{Smithing
|head=1
|ingredients=Netherite Upgrade +<br>Any Diamond Gear +<br>[[Netherite Ingot]]
|Netherite Upgrade
|Diamond Helmet; Diamond Chestplate; Diamond Leggings; Diamond Boots; Diamond Sword; Diamond Pickaxe; Diamond Axe; Diamond Shovel
|Netherite Ingot
|Netherite Helmet; Netherite Chestplate; Netherite Leggings; Netherite Boots; Netherite Sword; Netherite Pickaxe; Netherite Axe; Netherite Shovel
|tail=1
}}

{{FakeImage|{{Animate|Iron_Armor_with_Iron_Shaper_Trim.png; Golden_Armor_with_Golden_Shaper_Trim.png; Diamond_Armor_with_Diamond_Shaper_Trim.png; Netherite_Armor_with_Netherite_Shaper_Trim.png|180px}}|If the armor material and the trimming material are the same, the color palette used for the armor trim is darker.}}
Armor trim smithing templates are used to customize an armor piece's appearance by using a smithing template, an armor piece, and an ingot or crystal ([[emerald]], [[redstone dust]], [[lapis lazuli]], [[amethyst shard]], [[nether quartz]], [[netherite ingot]], [[diamond]], [[gold ingot]], [[iron ingot]], or [[copper ingot]]). Including all dyed leather armor colors and regular armor, there are ≈3.679x10<sup>9</sup> different possible armor pieces<!--5713438 leather colors, plus the 4 other armor materials = 5713442. 5713442 * 161 (the 160 trim combos (16 trims, 10 materials) + untrimmed) = 919864162. 919864162 * 4 (helmet, chestplate, leggings, boots) = 3679456648 ≈ 3.679x10^9-->, and 7.16x10<sup>35</sup> <!--919864162 + 1 (no armor in that slot) = 919864163. 919864163^4 = 715969952015045562662444917041515536 ≈ 7.16x10^35 total possible armor combinations-->total possible armor combinations excluding enchantments and the player not wearing armor.

Already trimmed armor can be trimmed again by applying another template on it; the old trim pattern is overwritten in the process.<ref>{{bug|MC-262538||When combining armor trims the new trim deletes the old one|WAI}}</ref> Therefore, one piece of armor cannot possess multiple trims at the same time.

Most armor trims cover a small portion of the armor piece's surface with the trim material, except for the silence armor trim, which allows the trim material to cover a majority of the armor piece's surface.

All of the trims are purely decorative, and don't impact gameplay or strength(without the use of mods or plugins) of the armor they are applied to in any way. [[Piglin]]s do not pick up any gold-trimmed armor pieces, and they are not pacified by players wearing even a full set of gold-trimmed armor (unless, of course, the armor pieces in question are themselves golden), and netherite-trimmed armor pieces can still be burned by [[fire]].

{{Smithing
|head=1
|ingredients=Any Armor Trim +<br>Any Armor Piece +<br>Any Ingot/Crystal
|Any Armor Trim Smithing Template
|Iron Helmet; Netherite Chestplate;Golden Leggings;Diamond Boots
|Amethyst Shard; Copper Ingot; Diamond; Emerald; Gold Ingot; Iron Ingot; Lapis Lazuli; Nether Quartz; Netherite Ingot; Redstone Dust; Diamond; Emerald
|Amethyst Trim Iron Helmet; Copper Trim Netherite Chestplate; Diamond Trim Golden Leggings; Emerald Trim Diamond Boots; Gold Trim Iron Helmet; Iron Trim Netherite Chestplate; Lapis Trim Golden Leggings; Quartz Trim Diamond Boots; Netherite Trim Iron Helmet; Redstone Trim Netherite Chestplate; Diamond Trim Golden Leggings; Emerald Trim Diamond Boots
|tail=1
}}

;List of color palettes for all materials
*{{ItemSprite|emerald         }} - {{TrimPalette| emerald         }}
*{{ItemSprite|redstone dust   }} - {{TrimPalette| redstone dust   }}
*{{ItemSprite|lapis lazuli    }} - {{TrimPalette| lapis lazuli    }}
*{{ItemSprite|amethyst shard  }} - {{TrimPalette| amethyst shard  }}
*{{ItemSprite|nether quartz   }} - {{TrimPalette| nether quartz   }}
*{{ItemSprite|netherite ingot }} - {{TrimPalette| netherite ingot }} (Darker: {{TrimPalette| netherite ingot |darker=1}})
*{{ItemSprite|diamond         }} - {{TrimPalette| diamond         }} (Darker: {{TrimPalette| diamond         |darker=1}})
*{{ItemSprite|gold ingot      }} - {{TrimPalette| gold ingot      }} (Darker: {{TrimPalette| gold ingot      |darker=1}})
*{{ItemSprite|iron ingot      }} - {{TrimPalette| iron ingot      }} (Darker: {{TrimPalette| iron ingot      |darker=1}})
*{{ItemSprite|copper ingot    }} - {{TrimPalette| copper ingot    }}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|firstcolumnname=Smithing Template
|showforms=y
|generatetranslationkeys=y
|displayname=Netherite Upgrade
|spritename=netherite-upgrade-smithing-template
|spritetype=item
|nameid=netherite_upgrade_smithing_template
|form=item}}
{{ID table
|displayname=Sentry Armor Trim
|spritename=sentry-armor-trim-smithing-template
|spritetype=item
|nameid=sentry_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Vex Armor Trim
|spritename=vex-armor-trim-smithing-template
|spritetype=item
|nameid=vex_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Wild Armor Trim
|spritename=wild-armor-trim-smithing-template
|spritetype=item
|nameid=wild_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Coast Armor Trim
|spritename=coast-armor-trim-smithing-template
|spritetype=item
|nameid=coast_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Dune Armor Trim
|spritename=dune-armor-trim-smithing-template
|spritetype=item
|nameid=dune_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Wayfinder Armor Trim
|spritename=wayfinder-armor-trim-smithing-template
|spritetype=item
|nameid=wayfinder_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Raiser Armor Trim
|spritename=raiser-armor-trim-smithing-template
|spritetype=item
|nameid=raiser_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Shaper Armor Trim
|spritename=shaper-armor-trim-smithing-template
|spritetype=item
|nameid=shaper_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Host Armor Trim
|spritename=host-armor-trim-smithing-template
|spritetype=item
|nameid=host_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Ward Armor Trim
|spritename=ward-armor-trim-smithing-template
|spritetype=item
|nameid=ward_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Silence Armor Trim
|spritename=silence-armor-trim-smithing-template
|spritetype=item
|nameid=silence_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Tide Armor Trim
|spritename=tide-armor-trim-smithing-template
|spritetype=item
|nameid=tide_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Snout Armor Trim
|spritename=snout-armor-trim-smithing-template
|spritetype=item
|nameid=snout_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Rib Armor Trim
|spritename=rib-armor-trim-smithing-template
|spritetype=item
|nameid=rib_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Eye Armor Trim
|spritename=eye-armor-trim-smithing-template
|spritetype=item
|nameid=eye_armor_trim_smithing_template
|form=item}}
{{ID table
|displayname=Spire Armor Trim
|spritename=spire-armor-trim-smithing-template
|spritetype=item
|nameid=spire_armor_trim_smithing_template
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|firstcolumnname=Smithing Template
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Netherite Upgrade
|spritename=netherite-upgrade-smithing-template
|spritetype=item
|nameid=netherite_upgrade_smithing_template
|id=685
|form=item
|translationkey=item.smithing_template.name, upgrade.netherite_upgrade.name}}
{{ID table
|displayname=Sentry Armor Trim
|spritename=sentry-armor-trim-smithing-template
|spritetype=item
|nameid=sentry_armor_trim_smithing_template
|id=686
|form=item
|translationkey=item.smithing_template.name, trim_pattern.sentry.name}}
{{ID table
|displayname=Vex Armor Trim
|spritename=vex-armor-trim-smithing-template
|spritetype=item
|nameid=vex_armor_trim_smithing_template
|id=692
|form=item
|translationkey=item.smithing_template.name, trim_pattern.vex.name}}
{{ID table
|displayname=Wild Armor Trim
|spritename=wild-armor-trim-smithing-template
|spritetype=item
|nameid=wild_armor_trim_smithing_template
|id=689
|form=item
|translationkey=item.smithing_template.name, trim_pattern.wild.name}}
{{ID table
|displayname=Coast Armor Trim
|spritename=coast-armor-trim-smithing-template
|spritetype=item
|nameid=coast_armor_trim_smithing_template
|id=688
|form=item
|translationkey=item.smithing_template.name, trim_pattern.coast.name}}
{{ID table
|displayname=Dune Armor Trim
|spritename=dune-armor-trim-smithing-template
|spritetype=item
|nameid=dune_armor_trim_smithing_template
|id=687
|form=item
|translationkey=item.smithing_template.name, trim_pattern.dune.name}}
{{ID table
|displayname=Wayfinder Armor Trim
|spritename=wayfinder-armor-trim-smithing-template
|spritetype=item
|nameid=wayfinder_armor_trim_smithing_template
|id=698
|form=item
|translationkey=item.smithing_template.name, trim_pattern.wayfinder.name}}
{{ID table
|displayname=Raiser Armor Trim
|spritename=raiser-armor-trim-smithing-template
|spritetype=item
|nameid=raiser_armor_trim_smithing_template
|id=699
|form=item
|translationkey=item.smithing_template.name, trim_pattern.raiser.name}}
{{ID table
|displayname=Shaper Armor Trim
|spritename=shaper-armor-trim-smithing-template
|spritetype=item
|nameid=shaper_armor_trim_smithing_template
|id=700
|form=item
|translationkey=item.smithing_template.name, trim_pattern.shaper.name}}
{{ID table
|displayname=Host Armor Trim
|spritename=host-armor-trim-smithing-template
|spritetype=item
|nameid=host_armor_trim_smithing_template
|id=701
|form=item
|translationkey=item.smithing_template.name, trim_pattern.host.name}}
{{ID table
|displayname=Ward Armor Trim
|spritename=ward-armor-trim-smithing-template
|spritetype=item
|nameid=ward_armor_trim_smithing_template
|id=690
|form=item
|translationkey=item.smithing_template.name, trim_pattern.ward.name}}
{{ID table
|displayname=Silence Armor Trim
|spritename=silence-armor-trim-smithing-template
|spritetype=item
|nameid=silence_armor_trim_smithing_template
|id=697
|form=item
|translationkey=item.smithing_template.name, trim_pattern.silence.name}}
{{ID table
|displayname=Tide Armor Trim
|spritename=tide-armor-trim-smithing-template
|spritetype=item
|nameid=tide_armor_trim_smithing_template
|id=693
|form=item
|translationkey=item.smithing_template.name, trim_pattern.tide.name}}
{{ID table
|displayname=Snout Armor Trim
|spritename=snout-armor-trim-smithing-template
|spritetype=item
|nameid=snout_armor_trim_smithing_template
|id=694
|form=item
|translationkey=item.smithing_template.name, trim_pattern.snout.name}}
{{ID table
|displayname=Rib Armor Trim
|spritename=rib-armor-trim-smithing-template
|spritetype=item
|nameid=rib_armor_trim_smithing_template
|id=695
|form=item
|translationkey=item.smithing_template.name, trim_pattern.rib.name}}
{{ID table
|displayname=Eye Armor Trim
|spritename=eye-armor-trim-smithing-template
|spritetype=item
|nameid=eye_armor_trim_smithing_template
|id=691
|form=item
|translationkey=item.smithing_template.name, trim_pattern.eye.name}}
{{ID table
|displayname=Spire Armor Trim
|spritename=spire-armor-trim-smithing-template
|spritetype=item
|nameid=spire_armor_trim_smithing_template
|id=696
|form=item
|translationkey=item.smithing_template.name, trim_pattern.spire.name
|foot=1}}

== Achievements ==
{{load achievements|Smithing with style}}

== Advancements ==
{{load advancements|Crafting a New Look;Smithing with Style}}

== Video ==
{{yt|klP9SrJFDU8}}

== History ==
{{History|java}}
{{History||1.20<br>(Experimental)|link=1.19.4|snap=23w04a|[[File:Netherite Upgrade Smithing Template JE1 BE1.png|32px]] [[File:Sentry Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Vex Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Wild Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Coast Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Dune Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Ward Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Tide Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Snout Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Rib Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Eye Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Spire Armor Trim Smithing Template JE1 BE1.png|32px]] Added smithing templates behind the "Update 1.20" experimental datapack.}}
{{History|||snap=23w05a|Smithing templates can be used to trim leather armor.
|Gold, iron, diamond, and netherite armor can be trimmed with their respective material.
|The dune, coast, wild, and sentry armor trims now always generate two templates in a chest when found.
|Increased the chances for all smithing templates that generate in chest loot to spawn:
*Netherite upgrade chance to find increased from 3.2% to 10%.
*Coast chance to find increased from 11.1% to 16.7%.
*Dune chance to find increased from 11.1% to 14.3%.
*Eye chance to find increased from 4.7% to 10% in alter chests, and to 100% in library chests.
*Rib chance to find increased from 4.7% to 6.7%.
*Sentry chance to find increased from 20% to 25%.
*Snout chance to find increased from 4.7% to 8.3%.
*Spire chance to find increased from 4.7% to 6.7%.
*Vex chance to find increased from 4.7% to 50%.
*Ward chance to find increased from 4.7% to 5%.
*Wild chance to find increased from 20% to 33%.}}
{{History||1.20|snap=23w12a|Smithing templates are now available without using the "Update 1.20" experimental datapack.|[[File:Wayfinder Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Raiser Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Shaper Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Host Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Silence Armor Trim Smithing Template JE1 BE1.png|32px]] Added wayfinder, raiser, shaper, host, and silence armor trim smithing templates.
|[[File:Sentry Armor Trim Smithing Template JE2 BE2.png|32px]] [[File:Dune Armor Trim Smithing Template JE2 BE2.png|32px]] Changed the textures of the sentry and dune armor trim smithing templates.
|The pattern textures of dune and sentry armor trims are changed from [[File:Armor Trim Dune (sample model) JE1 BE1.png|24px]] [[File:Armor Trim Sentry (sample model) JE1 BE1.png|24px]] to [[File:Armor Trim Dune (sample model) JE2 BE2.png|24px]] [[File:Armor Trim Sentry (sample model) JE2 BE2.png|24px]].<br>
Those previous patterns were left with different names: dune was renamed sentry and sentry was renamed shaper.}}
{{History|||snap=23w16a|Wayfinder, raiser, shaper, and host armor trim no longer generates in [[suspicious sand]] in [[trail ruins]].|Due to the split of the archaeological loot tables for the suspicious gravel within the [[trail ruins]]; wayfinder, raiser, shaper, and host armor trim now are in the rare loot.}}
{{History|||snap=23w17a|The probability of the wayfinder, raiser, shaper, and host armor trim to generate in [[suspicious gravel]] in [[trail ruins]] has been changed from 1/11 to 1/12.|The player now get the [[advancement]] "Crafting a new look" when they craft a trimmed armor at a [[smithing table]] using a smithing template, "Smithing with style" when they apply these smithing templates at least once on their armor: Spire, Snout, Rib, Ward, Silence, Vex, Tide, and Wayfinder.}}

{{History|bedrock}}
{{History||Next Major Update<br>(Experimental)|link=Bedrock Edition 1.19.80|snap=beta 1.19.80.21|[[File:Netherite Upgrade Smithing Template JE1 BE1.png|32px]] [[File:Sentry Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Vex Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Wild Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Coast Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Dune Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Ward Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Tide Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Snout Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Rib Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Eye Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Spire Armor Trim Smithing Template JE1 BE1.png|32px]] Added smithing templates behind the "[[Bedrock Edition 1.20.0|Next Major Update]]" [[experimental]] toggle.}}
{{History|||snap=beta 1.19.80.22|[[File:Wayfinder Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Raiser Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Shaper Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Host Armor Trim Smithing Template JE1 BE1.png|32px]] [[File:Silence Armor Trim Smithing Template JE1 BE1.png|32px]] Added wayfinder, raiser, shaper, host, and silence armor trim smithing templates.
|[[File:Sentry Armor Trim Smithing Template JE2 BE2.png|32px]] [[File:Dune Armor Trim Smithing Template JE2 BE2.png|32px]] Changed the textures of the sentry and dune armor trim smithing templates.
|The pattern textures of dune and sentry armor trims are changed from [[File:Armor Trim Dune (sample model) JE1 BE1.png|24px]] [[File:Armor Trim Sentry (sample model) JE1 BE1.png|24px]] to [[File:Armor Trim Dune (sample model) JE2 BE2.png|24px]] [[File:Armor Trim Sentry (sample model) JE2 BE2.png|24px]].<br>
Those previous patterns were left with different names: dune was renamed sentry and sentry was renamed shaper.}}
{{History||1.20.0|snap=beta 1.20.0.21|Smithing templates are now available without using the "Next Major Update" experimental toggle.}}
{{History|foot}}

== Issues ==
{{Issue list}}

== Trivia ==
* Smithing templates were named "Smithing Blueprints" in the prototype but was changed because the word "blueprint" sounded modern and technical.<ref>{{ytl|klP9SrJFDU8|Minecraft 1.20: Armor Trims - What Do They Mean?|Minecraft|May 4, 2023|t=98}}</ref>
* When Mojang developer Gnembon was working on armor trims, he accidentally messed up their rendering, making them jet through the player's body in a weird fashion, similar to what appears in {{w|Salvador Dalí}}'s paintings where a hand might poke through a forehead.<ref>{{ytl|ghQODkq4ITI|Mojang Dev Comes To Hermitcraft! (Mojang Developer Gnembom Interview)|GoodVodsWithScar|June 23, 2023|t=1980}}</ref>
* Some of the armor trims feature patterns based on a [[mob]] or [[block]] that is found in the same [[Generated structures|structure]] as the corresponding smithing template.<ref name=":0">"Some of the armor trims reflect the place where you found the template, for example bastions contain a piglin-inspired trim."-[[Sofia Dankis]]-{{Mcnet|armor-trims-coming-minecraft-1-20|Armor Trims Coming to Minecraft 1.20|January 24, 2023}}</ref>
** The spire armor trim resembles a [[shulker]].
** The vex armor trim resembles an [[evoker]]. As an item in the [[inventory]], it resembles the wing or the vein texture of a [[vex]].
** The wild armor trim has moss growing on 3 of its corners.
** The coast armor trim appears to have barnacles attached to it.
** The ward armor trim, as an item in the inventory, resembles the faces inside a [[warden]]'s chest.
** The silence armor trim appears to have sculk creeping onto / infecting it.
** The tide armor trim resembles [[Prismarine|prismarine bricks]].
** The snout armor trim resembles a [[piglin]]<ref name=":0" />.
** The rib armor trim resembles a [[wither skeleton]].
** The eye armor trim resembles an [[eye of ender]]. There are also two eyes on the head part of the armor trim that resemble those of an [[enderman]].
* ''Netherite upgrade smithing template'' (35 characters with "_" and 32 characters without "_") and ''sentry armor trim smithing template'' (35 characters with "_" and 31 characters without "_") are the current longest name for item ID, while ''[[polished blackstone pressure plate]]'' and ''[[cracked polished blackstone bricks]]'' have 34 characters with "_" and 31 characters without "_".
* The silence armor trim is the rarest trim, due to being found in ancient cities in the deep dark, and having only a 1.2% chance to be per chest.
* When [[lapis lazuli]] is used as trim material, it is called "Lapis" instead of its full name "Lapis Lazuli"; this is the only instance of the abbreviation "Lapis" being used in-game.<ref>{{bug|MC-262486|||WAI}}</ref>

== Gallery ==
=== Sprites ===
<gallery>
Netherite Upgrade Smithing Template.png|Netherite Upgrade
Sentry Armor Trim Smithing Template.png|Sentry Armor Trim
Vex Armor Trim Smithing Template.png|Vex Armor Trim
Wild Armor Trim Smithing Template.png|Wild Armor Trim
Coast Armor Trim Smithing Template.png|Coast Armor Trim
Dune Armor Trim Smithing Template.png|Dune Armor Trim
Wayfinder Armor Trim Smithing Template.png|Wayfinder Armor Trim
Raiser Armor Trim Smithing Template.png|Raiser Armor Trim
Shaper Armor Trim Smithing Template.png|Shaper Armor Trim
Host Armor Trim Smithing Template.png|Host Armor Trim
Ward Armor Trim Smithing Template.png|Ward Armor Trim
Silence Armor Trim Smithing Template.png|Silence Armor Trim
Tide Armor Trim Smithing Template.png|Tide Armor Trim
Snout Armor Trim Smithing Template.png|Snout Armor Trim
Rib Armor Trim Smithing Template.png|Rib Armor Trim
Eye Armor Trim Smithing Template.png|Eye Armor Trim
Spire Armor Trim Smithing Template.png|Spire Armor Trim
</gallery>

=== Armor trim patterns ===
<gallery>
Armor Trim Sentry (sample model).png|Sentry Armor Trim
Armor Trim Vex (sample model).png|Vex Armor Trim
Armor Trim Wild (sample model).png|Wild Armor Trim
Armor Trim Coast (sample model).png|Coast Armor Trim
Armor Trim Dune (sample model).png|Dune Armor Trim
Armor Trim Wayfinder (sample model).png|Wayfinder Armor Trim
Armor Trim Raiser (sample model).png|Raiser Armor Trim
Armor Trim Shaper (sample model).png|Shaper Armor Trim
Armor Trim Host (sample model).png|Host Armor Trim
Armor Trim Ward (sample model).png|Ward Armor Trim
Armor Trim Silence (sample model).png|Silence Armor Trim
Armor Trim Tide (sample model).png|Tide Armor Trim
Armor Trim Snout (sample model).png|Snout Armor Trim
Armor Trim Rib (sample model).png|Rib Armor Trim
Armor Trim Eye (sample model).png|Eye Armor Trim
Armor Trim Spire (sample model).png|Spire Armor Trim
</gallery>

=== Official Artwork ===
<gallery>
T&T Thumbnail.jpg|[[Sunny]] wearing amethyst armor trims.
Warden Chasing Alex with Silence Trim Pixel Art.png|A [[warden]] chasing Alex holding the silence armor trim.
Alex Trimming Armor in Smithing Table Pixel Art.png|Alex adding the silence armor trim and amethyst on iron armor.
Alex Wearing Iron Armor with Amethyst Pixel Art.jpg|Alex wearing the trimmed iron armor.
File:Live2023-01.jpeg|Noor working on trimmed iron armor.
</gallery>

=== Screenshots ===
<gallery>
Kingbdogz Armor Trim 1.jpg|Redstone trims on diamond armor.
Kingbdogz Armor Trim 2.jpg|Gold trims on netherite armor.
Too Many Trims.jpg|A large amount of armor trims.
Kingbdogz Armor Trim 3.jpg|Gold on netherite.
Kingbdogz Armor Trim 4.jpg|Diamond on diamond.
New Armor Trims in 23W12A.jpg|<ref>{{Tweet|kingbdogz|1638580472962850831|new trims got the drip The new "Silence" armor trim to the left is now the hardest trim to get, with only a 1% chance per chest to spawn in Ancient Cities. Definitely gonna be a challenge to get!|March 22, 2023}}</ref>
Emerald Armor.png|Emerald on gold.
Xilefian Armor Trims 1.png|[[Xilefian]] showing how armor trims work.
Xilefian Armor Trims 2.png|[[Xilefian]] showing how armor trims work.
Xilefian Armor Trims 3.png|[[Xilefian]] showing how armor trims work.
Armor Trims On Netherite Armors.png|A display of all eleven (before [[Java Edition 23w12a]]) armor trims and ten colors on netherite armors.
Armor Trim Showcase.png|A display of all eleven (before [[Java Edition 23w12a]]) armor trims, on netherite armor using emerald as the trim material.
Armor Trim Colors.png|A display of all ten armor trim colors, using the ward trim on a netherite helmet.
Silence Armor Trim on All Armors.png|A display of all ten colors of the silence armor trim on all armors.
Image 2023-06-07 154100087.png|A screenshot of every armor trim in every color(besides quartz) on leather armor.
Armor Trim Friends.jpg|Official screenshot of [[Alex]] and [[Zuri]] wearing armor trims.
LadyAgnes Armor Trims.jpg|Copper trims on netherite armor.
Trim Lineup.jpg
Fancy Delta.jpg|[[Kai]] wearing trimmed armor in a [[Basalt Delta]].
Trims & Pots.jpg
Noor Gold Armor Trim .jpeg
Noor Diamond Armor Trim.jpeg
Noor Netherite Armor Trim.jpeg
Noor Iron Armor Trim.jpeg
</gallery>

== References ==
{{Reflist}}

{{Items}}

[[Category:Bedrock Edition]]
[[Category:Non-renewable resources]]

[[de:Schmiedevorlage]]
[[es:Molde de herrería]]
[[fr:Modèle de forge]]
[[ja:鍛冶型]]
[[pl:Szablon kowalski]]
[[pt:Molde de ferraria]]
[[ru:Кузнечный шаблон]]
[[uk:Ковальський шаблон]]
[[zh:锻造模板]]</li></ul>
20w17aDifficulty can now be chosen on world creation.
Pocket Edition Alpha
v0.4.0
{{Extension DPL}}<ul><li>[[Netherite Scrap|Netherite Scrap]]<br/>{{About|the unrefined material|the refined item|Netherite Ingot|other uses|Netherite}}
{{Item
| title = Netherite Scrap
| image = Netherite Scrap.png
| rarity = Common
| renewable = No
| stackable = Yes (64)
}}

'''Netherite scrap''' is a material [[smelt]]ed from [[ancient debris]], which is found in [[the Nether]]. It is used solely for crafting [[Netherite Ingot|netherite ingots]]. Like all netherite-related items, it is not flammable.

== Obtaining ==

=== Smelting ===
{{Smelting
|Ancient Debris
|Netherite Scrap
|2
}}

=== Chest loot ===
{{LootChestItem|netherite-scrap}}

== Usage ==
=== Crafting ingredient ===
{{Crafting usage}}

== Data values ==

=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Netherite Scrap
|spritetype=item
|nameid=netherite_scrap
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Netherite Scrap
|spritetype=item
|nameid=netherite_scrap
|id=613
|form=item
|foot=1}}

== History ==
{{History|java}}
{{History||1.16|snap=20w06a|[[File:Netherite Scrap JE1.png|32px]] Added netherite scrap.}}
{{History|||snap=20w10a|[[File:Netherite Scrap JE2 BE1.png|32px]] The texture of netherite scrap has been changed.}}
{{History|||snap=20w16a|Netherite scraps now generate in [[bastion remnant]] chests.}}
{{History||1.16.2|snap=20w30a|The chance of finding netherite scraps in bastion remnant chests has been increased.}}

{{History|bedrock}}
{{History||1.16.0|snap=beta 1.16.0.51|[[File:Netherite Scrap JE2 BE1.png|32px]] Added netherite scrap.}}
{{History|||snap=beta 1.16.0.57|Netherite scraps now generate in [[bastion remnants]] chests.}}
{{History|foot}}

== Issues ==
{{Issue list}}

== External Links ==
*[https://www.minecraft.net/en-us/article/taking-inventory--netherite-scrap Taking Inventory: Netherite Scrap] – Minecraft.net on March 25, 2021

{{Items}}

[[Category:Non-renewable resources]]

[[de:Netheritplatten]]
[[fr:Fragments de Netherite]]
[[it:Frammento di netherite]]
[[ja:ネザライトの欠片]]
[[ko:네더라이트 파편]]
[[pl:Odłamek netherytu]]
[[pt:Fragmentos de netherita]]
[[ru:Незеритовый скрап]]
[[th:เศษเนเธอไรต์]]
[[uk:Незеритовий уламок]]
[[zh:下界合金碎片]]</li><li>[[Cake|Cake]]<br/>{{Distinguish|Pumpkin Pie}}
{{Block
| title = Cake
| image = <gallery>
Cake.png|0 bites
Cake (1 bite).png|1 bite
Cake (2 bites).png|2 bites
Cake (3 bites).png|3 bites
Cake (4 bites).png|4 bites
Cake (5 bites).png|5 bites
Cake (6 bites).png|6 bites
</gallery>
|image2 = <gallery>
Cake with Candle.png|Unlit
Candle Cake (lit).png|Lit
</gallery>
| extratext = [[#Gallery|View all renders]]
| transparent = Yes
| light = '''Candle Cake''': Yes (3) when lit<br>'''Cake''': No
| tool = any
| renewable = Yes
| stackable = Yes (64){{only|bedrock|short=1}}<br>No{{only|java|short=1}}
| flammable = No
| lavasusceptible = No
}}

'''Cake''' is a [[food]] and a block that can be eaten by the player.

A '''cake with candle''' is a light-producing variation created when a [[candle]] is used on an uneaten cake.

== Obtaining ==

=== Breaking ===

Once the cake is placed, it cannot be recollected even with the use of [[Silk Touch]]. Candle cakes always drop their respective [[candle]] when broken.
{{breaking row|horizontal=1|Cake|drop=0}}

=== Chest loot ===
{{LootChestItem|cake}}

=== Crafting ===

{{Crafting
|A1=Milk Bucket
|B1=Milk Bucket
|C1=Milk Bucket
|A2=Sugar
|B2=Egg
|C2=Sugar
|A3=Wheat
|B3=Wheat
|C3=Wheat
|Output=Cake
|type=Foodstuff
|showdescription=1
|description= Empty [[bucket]]s remain in the crafting grid after crafting the cake.
}}

=== Trading ===

Expert-level farmer [[villager]]s can [[trading|sell]] cake for a single [[emerald]] each. The chance is {{frac|2|7}} {{in|je}}.

== Usage ==

{{see also|Tutorials/Hunger management}}

Unlike most [[food]], the cake cannot be eaten as an [[item]] in the hotbar. Before being eaten, it must first be placed on top of a solid [[block]]. Placing the cake on a slab also works, as the slab acts like a solid block. The cake instead floats half a block on top of the slab.

Each cake has seven "slices"; each use consumes one slice progressing inward from the west. A single slice restores {{hunger|2}} hunger and 0.4 hunger [[Hunger#Mechanics|saturation]]. Eating all seven slices of a cake restores {{hunger|14}} hunger and 2.8 hunger saturation.

Since eating a cake comes with no animation, the cake can be eaten at a rate of one slice per [[tick]]. Multiple [[player]]s can eat from the same cake at the same time. {{IN|java}}, eating cake makes no [[sound]], unlike other foods.

As a [[redstone]] component, when connected to a [[comparator]], a whole cake emits a signal strength of 14. The signal strength decreases two units with each slice.

Cake destroys [[Entity#Falling Blocks|falling blocks]] if placed under them, similar to a [[torch]].

=== Pandas ===
Some [[panda]]s move toward a dropped cake to pick up and eat it. Some may not, depending on the cake's location. 

=== Composting ===
Placing a cake into a [[composter]] raises the compost level by 1.

=== Piston interactivity ===
A cake is broken when pushed by a [[piston]], and it drops nothing.

=== Cakes with candles ===
[[File:Cake with Candle.png|thumb|upright|A cake with candle created by placing a candle on an uneaten cake.]]
{{control|Using}} a [[candle]] on an uneaten cake creates a candle cake of that color (including uncolored). Eating the cake causes the candle to drop. 

{{control|Using}} [[flint and steel]], [[fire charge]], or any flaming projectile on an unlit candle cake lights its candle. Lit candle cakes emit light level of 3. Clicking on the lit candle (but not the cake) extinguishes it.

== Sounds ==
=== Generic ===
{{Sound table/Block/Wool}}

=== Unique ===
{{edition|java}}:
{{Sound table
|sound=Cake add_candle1.ogg
|sound2=Cake add_candle2.ogg
|sound3=Cake add_candle3.ogg
|subtitle=Cake squishes
|source=Blocks
|description=When a [[candle]] is placed on a cake
|id=block.cake.add_candle
|translationkey=subtitles.block.cake.add_candle
|volume=1.0
|pitch=1.0
|distance=16
|foot=1}}

{{edition|bedrock}}:
{{Sound table
|type=bedrock
|sound=Cake add_candle1.ogg
|sound2=Cake add_candle2.ogg
|sound3=Cake add_candle3.ogg
|source=block
|description=When a candle is placed on a cake
|id=cake.add_candle
|volume=1.0
|pitch=1.0}}
{{Sound table
|sound=Burp.ogg
|source=player
|description=After a player eats a cake
|id=random.burp
|volume=0.5
|pitch=0.9-1.0
|foot=1}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showblocktags=y
|showforms=y
|generatetranslationkeys=y
|displayname=Cake
|spritetype=block
|nameid=cake}}
{{ID table
|displayname=Cake with Candle
|spritename=candle-cake
|spritetype=block
|nameid=candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with White Candle
|spritename=white-candle-cake
|spritetype=block
|nameid=white_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Orange Candle
|spritename=orange-candle-cake
|spritetype=block
|nameid=orange_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Magenta Candle
|spritename=magenta-candle-cake
|spritetype=block
|nameid=magenta_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Light Blue Candle
|spritename=light-blue-candle-cake
|spritetype=block
|nameid=light_blue_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Yellow Candle
|spritename=yellow-candle-cake
|spritetype=block
|nameid=yellow_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Lime Candle
|spritename=lime-candle-cake
|spritetype=block
|nameid=lime_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Pink Candle
|spritename=pink-candle-cake
|spritetype=block
|nameid=pink_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Gray Candle
|spritename=gray-candle-cake
|spritetype=block
|nameid=gray_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Light Gray Candle
|spritename=light-gray-candle-cake
|spritetype=block
|nameid=light_gray_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Cyan Candle
|spritename=cyan-candle-cake
|spritetype=block
|nameid=cyan_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Purple Candle
|spritename=purple-candle-cake
|spritetype=block
|nameid=purple_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Blue Candle
|spritename=blue-candle-cake
|spritetype=block
|nameid=blue_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Brown Candle
|spritename=brown-candle-cake
|spritetype=block
|nameid=brown_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Green Candle
|spritename=green-candle-cake
|spritetype=block
|nameid=green_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Red Candle
|spritename=red-candle-cake
|spritetype=block
|nameid=red_candle_cake
|blocktags=candle_cakes
|form=block}}
{{ID table
|displayname=Cake with Black Candle
|spritename=black-candle-cake
|spritetype=block
|nameid=black_candle_cake
|blocktags=candle_cakes
|form=block
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|firstcolumnname=Cake
|shownumericids=y
|showforms=y
|generatetranslationkeys=y
|displayname=Block
|spritename=cake
|spritetype=block
|nameid=cake
|id=92
|form=block
|itemform=item.cake}}
{{ID table
|displayname=Item
|spritename=cake
|spritetype=item
|nameid=cake
|id=417
|form=item}}
{{ID table
|displayname=Cake with Candle
|spritename=candle-cake
|spritetype=block
|nameid=candle_cake
|blocktags=candle_cakes
|form=block
|id=684}}
{{ID table
|displayname=Cake with White Candle
|spritename=white-candle-cake
|spritetype=block
|nameid=white_candle_cake
|blocktags=candle_cakes
|form=block
|id=685}}
{{ID table
|displayname=Cake with Orange Candle
|spritename=orange-candle-cake
|spritetype=block
|nameid=orange_candle_cake
|blocktags=candle_cakes
|form=block
|id=686}}
{{ID table
|displayname=Cake with Magenta Candle
|spritename=magenta-candle-cake
|spritetype=block
|nameid=magenta_candle_cake
|blocktags=candle_cakes
|form=block
|id=687}}
{{ID table
|displayname=Cake with Light Blue Candle
|spritename=light-blue-candle-cake
|spritetype=block
|nameid=light_blue_candle_cake
|blocktags=candle_cakes
|form=block
|id=688}}
{{ID table
|displayname=Cake with Yellow Candle
|spritename=yellow-candle-cake
|spritetype=block
|nameid=yellow_candle_cake
|blocktags=candle_cakes
|form=block
|id=689}}
{{ID table
|displayname=Cake with Lime Candle
|spritename=lime-candle-cake
|spritetype=block
|nameid=lime_candle_cake
|blocktags=candle_cakes
|form=block
|id=690}}
{{ID table
|displayname=Cake with Pink Candle
|spritename=pink-candle-cake
|spritetype=block
|nameid=pink_candle_cake
|blocktags=candle_cakes
|form=block
|id=691}}
{{ID table
|displayname=Cake with Gray Candle
|spritename=gray-candle-cake
|spritetype=block
|nameid=gray_candle_cake
|blocktags=candle_cakes
|form=block
|id=692}}
{{ID table
|displayname=Cake with Light Gray Candle
|spritename=light-gray-candle-cake
|spritetype=block
|nameid=light_gray_candle_cake
|blocktags=candle_cakes
|form=block
|id=693}}
{{ID table
|displayname=Cake with Cyan Candle
|spritename=cyan-candle-cake
|spritetype=block
|nameid=cyan_candle_cake
|blocktags=candle_cakes
|form=block
|id=694}}
{{ID table
|displayname=Cake with Purple Candle
|spritename=purple-candle-cake
|spritetype=block
|nameid=purple_candle_cake
|blocktags=candle_cakes
|form=block
|id=695}}
{{ID table
|displayname=Cake with Blue Candle
|spritename=blue-candle-cake
|spritetype=block
|nameid=blue_candle_cake
|blocktags=candle_cakes
|form=block
|id=696}}
{{ID table
|displayname=Cake with Brown Candle
|spritename=brown-candle-cake
|spritetype=block
|nameid=brown_candle_cake
|blocktags=candle_cakes
|form=block
|id=697}}
{{ID table
|displayname=Cake with Green Candle
|spritename=green-candle-cake
|spritetype=block
|nameid=green_candle_cake
|blocktags=candle_cakes
|form=block
|id=698}}
{{ID table
|displayname=Cake with Red Candle
|spritename=red-candle-cake
|spritetype=block
|nameid=red_candle_cake
|blocktags=candle_cakes
|form=block
|id=699}}
{{ID table
|displayname=Cake with Black Candle
|spritename=black-candle-cake
|spritetype=block
|nameid=black_candle_cake
|blocktags=candle_cakes
|form=block
|id=700
|foot=1}}

=== Block states ===
{{see also|Block states}}
{{/BS}}

== Achievements ==
{{load achievements|The Lie;Birthday Song}}

== Advancements ==
{{load advancements|Birthday Song}}

== History ==
{{info needed section|{{bug|MC-45375}}}}
{{History|java beta}}
{{History||November 23, 2010|link={{tweet|notch|7118994444124160}}|[[Notch]] stated if ''Minecraft'' won the [[2010 Indie of the Year Awards]], he would add cake to ''Minecraft''.}}
{{History||1.2|[[File:Cake JE1.png|32px]] [[File:Cake (1 bite) JE1.png|32px]] [[File:Cake (2 bites) JE1.png|32px]] [[File:Cake (3 bites) JE1.png|32px]] [[File:Cake (4 bites) JE1.png|32px]] [[File:Cake (5 bites) JE1.png|32px]]<br>[[File:Cake (item) JE1 BE1.png|32px]] Since ''Minecraft'' won the title, cake has been added.
|Cake heals {{hp|18}}.
|[[File:Cake (6 bites) JE1.png|32px]] [[File:Cake (7 bites) JE1.png|32px]] Cakes with six and seven bites exist, but are not accessible.
|[[File:Cake (8 bites) JE1.png|32px]] [[File:Cake (9 bites) JE1.png|32px]] [[File:Cake (10 bites) JE1.png|32px]] [[File:Cake (11 bites) JE1.png|32px]] [[File:Cake (12 bites) JE1.png|32px]] [[File:Cake (13 bites) JE1.png|32px]] [[File:Cake (14 bites) JE1.png|32px]] [[File:Cake (15 bites) JE1.png|32px]]<br>[[File:Cake (8 bites) JE1 (facing NWU).png|32px]] [[File:Cake (9 bites) JE1 (facing NWU).png|32px]] [[File:Cake (10 bites) JE1 (facing NWU).png|32px]] [[File:Cake (11 bites) JE1 (facing NWU).png|32px]] [[File:Cake (12 bites) JE1 (facing NWU).png|32px]] [[File:Cake (13 bites) JE1 (facing NWU).png|32px]] [[File:Cake (14 bites) JE1 (facing NWU).png|32px]] [[File:Cake (15 bites) JE1 (facing NWU).png|32px]]<br>Cakes with eight through fifteen bites also exist. These have a glitched appearance, with misaligned cake textures as well as the block [[placeholder texture]] on the bottom (as the texture next to the bottom of the cake on [[terrain.png]], which it overflows to, is itself a placeholder).}}
{{History||1.5|[[Achievements/Java Edition|Achievements]] have been added, including "The Lie", which is rewarded when the [[player]] crafts a cake.}}
{{History||1.7|[[File:Cake (8 bites) JE2 (facing NWU).png|32px]] [[File:Cake (9 bites) JE2 (facing NWU).png|32px]] [[File:Cake (10 bites) JE2 (facing NWU).png|32px]] [[File:Cake (11 bites) JE2 (facing NWU).png|32px]] [[File:Cake (12 bites) JE2 (facing NWU).png|32px]] [[File:Cake (13 bites) JE2 (facing NWU).png|32px]] [[File:Cake (14 bites) JE2 (facing NWU).png|32px]] [[File:Cake (15 bites) JE2 (facing NWU).png|32px]]<br>The cake side texture shown from underneath has flipped to the other side.}}
{{History||1.8|snap=Pre-release|Cake now restores {{hunger|12}}.
|[[File:Cake (8 bites) JE3.png|32px]] [[File:Cake (9 bites) JE3.png|32px]] [[File:Cake (10 bites) JE3.png|32px]] [[File:Cake (11 bites) JE3.png|32px]] [[File:Cake (12 bites) JE3.png|32px]] [[File:Cake (13 bites) JE3.png|32px]] [[File:Cake (14 bites) JE3.png|32px]] [[File:Cake (15 bites) JE3.png|32px]]<br>Cakes with data 8 through 15 now use the red mushroom block texture with the addition of the red [[mushroom block]].
|Dropped cake items{{info needed|the proper item form, or the unobtainable one?}} no longer appear larger than normal blocks.}}
{{History|||snap=?|Cake is available both in item and block forms in the creative inventory.}}
{{History|java}}
{{History||1.0.0|snap=?|Cake blocks have been removed from creative.}}
{{History||1.2.1|snap=?|When cake is crafted, the empty [[bucket]]s are now moved to the [[player]]'s [[inventory]], rather than staying in the [[crafting]] grid.}}
{{History||1.5|snap=13w02a|[[File:Cake JE2.png|32px]] [[File:Cake (1 bite) JE2.png|32px]] [[File:Cake (2 bites) JE2.png|32px]] [[File:Cake (3 bites) JE2.png|32px]] [[File:Cake (4 bites) JE2.png|32px]] [[File:Cake (5 bites) JE2.png|32px]] [[File:Cake (6 bites) JE2.png|32px]] Cakes now use the inside texture for all orthogonal faces.
|[[File:Cake (8 bites) JE4.png|32px]] [[File:Cake (9 bites) JE4.png|32px]] [[File:Cake (10 bites) JE4.png|32px]] [[File:Cake (11 bites) JE4.png|32px]] [[File:Cake (12 bites) JE4.png|32px]] [[File:Cake (13 bites) JE4.png|32px]] [[File:Cake (14 bites) JE4.png|32px]] [[File:Cake (15 bites) JE4.png|32px]]<br>[[File:Cake (8 bites) JE4 (facing NWU).png|32px]] [[File:Cake (9 bites) JE4 (facing NWU).png|32px]] [[File:Cake (10 bites) JE4 (facing NWU).png|32px]] [[File:Cake (11 bites) JE4 (facing NWU).png|32px]] [[File:Cake (12 bites) JE4 (facing NWU).png|32px]] [[File:Cake (13 bites) JE4 (facing NWU).png|32px]] [[File:Cake (14 bites) JE4 (facing NWU).png|32px]] [[File:Cake (15 bites) JE4 (facing NWU).png|32px]]<br>With the advent of major changes in texture storage and architecture, overeaten cakes now display other parts of cakes as well as part of a crop texture.
|From this version up until 14w08a, overeaten cakes start to draw from the textures next to them on the [[texture atlas]], in much the same way they previously did with terrain.png. However, as texture atlases are unstable and textures tend to change positions as new blocks and textures are added, overeaten cakes change the texture they draw from every time new textures are added, which includes when textures added by [[mods]].}}
{{History|||snap=13w03a|[[File:Cake JE3 BE1.png|32px]] [[File:Cake (1 bite) JE3 BE1.png|32px]] [[File:Cake (2 bites) JE3 BE1.png|32px]] [[File:Cake (3 bites) JE3 BE1.png|32px]] [[File:Cake (4 bites) JE3 BE1.png|32px]] [[File:Cake (5 bites) JE3 BE1.png|32px]] Cakes now use the outside side texture for the sides again.<ref>{{bug|MC-7119}}</ref>
|[[File:Cake (8 bites) JE5.png|32px]] [[File:Cake (9 bites) JE5.png|32px]] [[File:Cake (10 bites) JE5.png|32px]] [[File:Cake (11 bites) JE5.png|32px]] [[File:Cake (12 bites) JE5.png|32px]] [[File:Cake (13 bites) JE5.png|32px]] [[File:Cake (14 bites) JE5.png|32px]] [[File:Cake (15 bites) JE5.png|32px]]<br>[[File:Cake (8 bites) JE5 (facing NWU).png|32px]] [[File:Cake (9 bites) JE5 (facing NWU).png|32px]] [[File:Cake (10 bites) JE5 (facing NWU).png|32px]] [[File:Cake (11 bites) JE5 (facing NWU).png|32px]] [[File:Cake (12 bites) JE5 (facing NWU).png|32px]] [[File:Cake (13 bites) JE5 (facing NWU).png|32px]] [[File:Cake (14 bites) JE5 (facing NWU).png|32px]] [[File:Cake (15 bites) JE5 (facing NWU).png|32px]]<br>Overeaten cakes now display a different part of the cake texture than before.}}
{{History|||snap=13w09a|[[File:Cake (8 bites) JE6.png|32px]] [[File:Cake (9 bites) JE6.png|32px]] [[File:Cake (10 bites) JE6.png|32px]] [[File:Cake (11 bites) JE6.png|32px]] [[File:Cake (12 bites) JE6.png|32px]] [[File:Cake (13 bites) JE6.png|32px]] [[File:Cake (14 bites) JE6.png|32px]] [[File:Cake (15 bites) JE6.png|32px]]<br>[[File:Cake (8 bites) JE6 (facing NWU).png|32px]] [[File:Cake (9 bites) JE6 (facing NWU).png|32px]] [[File:Cake (10 bites) JE6 (facing NWU).png|32px]] [[File:Cake (11 bites) JE6 (facing NWU).png|32px]] [[File:Cake (12 bites) JE6 (facing NWU).png|32px]] [[File:Cake (13 bites) JE6 (facing NWU).png|32px]] [[File:Cake (14 bites) JE6 (facing NWU).png|32px]] [[File:Cake (15 bites) JE6 (facing NWU).png|32px]]<br>Overeaten cakes now display a crop texture on the side.}}
{{History||1.6.1|snap=13w17a|[[File:Cake (8 bites) JE7.png|32px]] [[File:Cake (9 bites) JE7.png|32px]] [[File:Cake (10 bites) JE7.png|32px]] [[File:Cake (11 bites) JE7.png|32px]] [[File:Cake (12 bites) JE7.png|32px]] [[File:Cake (13 bites) JE7.png|32px]] [[File:Cake (14 bites) JE7.png|32px]] [[File:Cake (15 bites) JE7.png|32px]]<br>[[File:Cake (8 bites) JE7 (facing NWU).png|32px]] [[File:Cake (9 bites) JE7 (facing NWU).png|32px]] [[File:Cake (10 bites) JE7 (facing NWU).png|32px]] [[File:Cake (11 bites) JE7 (facing NWU).png|32px]] [[File:Cake (12 bites) JE7 (facing NWU).png|32px]] [[File:Cake (13 bites) JE7 (facing NWU).png|32px]] [[File:Cake (14 bites) JE7 (facing NWU).png|32px]] [[File:Cake (15 bites) JE7 (facing NWU).png|32px]]<br>Overeaten cakes now display a part of the powered [[redstone comparator]] texture.}}
{{History|||snap=13w18a|[[File:Cake (8 bites) JE8.png|32px]] [[File:Cake (9 bites) JE8.png|32px]] [[File:Cake (10 bites) JE8.png|32px]] [[File:Cake (11 bites) JE8.png|32px]] [[File:Cake (12 bites) JE8.png|32px]] [[File:Cake (13 bites) JE8.png|32px]] [[File:Cake (14 bites) JE8.png|32px]] [[File:Cake (15 bites) JE8.png|32px]]<br>[[File:Cake (8 bites) JE8 (facing NWU).png|32px]] [[File:Cake (9 bites) JE8 (facing NWU).png|32px]] [[File:Cake (10 bites) JE8 (facing NWU).png|32px]] [[File:Cake (11 bites) JE8 (facing NWU).png|32px]] [[File:Cake (12 bites) JE8 (facing NWU).png|32px]] [[File:Cake (13 bites) JE8 (facing NWU).png|32px]] [[File:Cake (14 bites) JE8 (facing NWU).png|32px]] [[File:Cake (15 bites) JE8 (facing NWU).png|32px]]<br>Overeaten cakes now display the [[carrots]] texture. The inside underside also uses the feet of the [[cauldron]].}}
{{History||1.7.2|snap=13w41a|[[File:Cake (8 bites) JE9.png|32px]] [[File:Cake (9 bites) JE9.png|32px]] [[File:Cake (10 bites) JE9.png|32px]] [[File:Cake (11 bites) JE9.png|32px]] [[File:Cake (12 bites) JE9.png|32px]] [[File:Cake (13 bites) JE9.png|32px]] [[File:Cake (14 bites) JE9.png|32px]] [[File:Cake (15 bites) JE9.png|32px]]<br>[[File:Cake (8 bites) JE9 (facing NWU).png|32px]] [[File:Cake (9 bites) JE9 (facing NWU).png|32px]] [[File:Cake (10 bites) JE9 (facing NWU).png|32px]] [[File:Cake (11 bites) JE9 (facing NWU).png|32px]] [[File:Cake (12 bites) JE9 (facing NWU).png|32px]] [[File:Cake (13 bites) JE9 (facing NWU).png|32px]] [[File:Cake (14 bites) JE9 (facing NWU).png|32px]] [[File:Cake (15 bites) JE9 (facing NWU).png|32px]]<br>Overeaten cakes now display a part of the block breaking texture, and the texture of the [[block of diamond]] inside.}}
{{History||1.8|snap=14w02a|Farmer [[villager]]s now [[trading|sell]] 1 cake for 1 [[emerald]].}}
{{History|||snap=14w10a|[[File:Missing Model JE2.png|32px]] Cakes with data values 7 and above now [[Missing model|have no model]].}}
{{History|||snap=14w28a|Cake slices available when eating cakes have been increased from 6 to 7, allowing the 6-bites cake to be obtained legitimately.
|Cake now emits a [[redstone comparator|comparator]] signal.
|When cake is crafted, empty [[bucket]]s now stay in the [[crafting table]].}}
{{History||1.9|snap=15w37a|Cake can no longer be eaten in survival with the primary attack (left-click).}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this block's numeral ID was 92, and the item's 354.}}
{{History||1.14|snap=18w43a|[[File:Cake JE4.png|32px]] [[File:Cake (1 bite) JE4.png|32px]] [[File:Cake (2 bites) JE4.png|32px]] [[File:Cake (3 bites) JE4.png|32px]] [[File:Cake (4 bites) JE4.png|32px]] [[File:Cake (5 bites) JE4.png|32px]] [[File:Cake (6 bites) JE4.png|32px]]<br>[[File:Cake (item) JE2 BE2.png|32px]] The texture of cake has been changed.
|Cakes can now be eaten by [[panda]]s when they are thrown to them.}}
{{History|||snap=19w03a|Placing a cake into the new [[composter]] now raises the compost level by 1.}}
{{History|||snap=19w08a|[[File:Cake (item) JE3 BE3.png|32px]] The texture of cake [[item]]s have been changed, this time to have a large cherry in the middle to match its block counterpart.}}
{{History||May 17–20, 2019|link=none|[[File:10 years cake render.png|32px]] Cakes now display a "10" above them, textured with [[white concrete]], to celebrate the 10 year anniversary of the first public version of ''Minecraft'' ([[0.0.11a]]) being released.}}
{{History||1.17|snap=20w45a|[[File:Cake with Candle JE1.png|32px]] [[File:Cake with White Candle JE1.png|32px]] [[File:Cake with Light Gray Candle JE1.png|32px]] [[File:Cake with Gray Candle JE1.png|32px]] [[File:Cake with Black Candle JE1.png|32px]] [[File:Cake with Brown Candle JE1.png|32px]] [[File:Cake with Red Candle JE1.png|32px]] [[File:Cake with Orange Candle JE1.png|32px]] [[File:Cake with Yellow Candle JE1.png|32px]] [[File:Cake with Lime Candle JE1.png|32px]] [[File:Cake with Green Candle JE1.png|32px]] [[File:Cake with Cyan Candle JE1.png|32px]] [[File:Cake with Light Blue Candle JE1.png|32px]] [[File:Cake with Blue Candle JE1.png|32px]] [[File:Cake with Purple Candle JE1.png|32px]] [[File:Cake with Magenta Candle JE1.png|32px]] [[File:Cake with Pink Candle JE1.png|32px]] [[File:Candle Cake (lit) JE1.png|32px]] [[File:White Candle Cake (lit) JE1.png|32px]] [[File:Light Gray Candle Cake (lit) JE1.png|32px]] [[File:Gray Candle Cake (lit) JE1.png|32px]] [[File:Black Candle Cake (lit) JE1.png|32px]] [[File:Brown Candle Cake (lit) JE1.png|32px]] [[File:Red Candle Cake (lit) JE1.png|32px]] [[File:Orange Candle Cake (lit) JE1.png|32px]] [[File:Yellow Candle Cake (lit) JE1.png|32px]] [[File:Lime Candle Cake (lit) JE1.png|32px]] [[File:Green Candle Cake (lit) JE1.png|32px]] [[File:Cyan Candle Cake (lit) JE1.png|32px]] [[File:Light Blue Candle Cake (lit) JE1.png|32px]] [[File:Blue Candle Cake (lit) JE1.png|32px]] [[File:Purple Candle Cake (lit) JE1.png|32px]] [[File:Magenta Candle Cake (lit) JE1.png|32px]] [[File:Pink Candle Cake (lit) JE1.png|32px]] Added candle cakes.}}
{{History||1.17|snap=21w19a|The name of "Candle Cake" has been changed to "Cake with Candle".}}
{{History||1.17|snap=Pre-release 3|[[File:Candle Cake (lit) JE2.png|32px]] [[File:White Candle Cake (lit) JE2.png|32px]] [[File:Light Gray Candle Cake (lit) JE2.png|32px]] [[File:Gray Candle Cake (lit) JE2.png|32px]] [[File:Black Candle Cake (lit) JE2.png|32px]] [[File:Brown Candle Cake (lit) JE2.png|32px]] [[File:Red Candle Cake (lit) JE2.png|32px]] [[File:Orange Candle Cake (lit) JE2.png|32px]][[File:Yellow Candle Cake (lit) JE2.png|32px]] [[File:Lime Candle Cake (lit) JE2.png|32px]] [[File:Green Candle Cake (lit) JE2.png|32px]] [[File:Cyan Candle Cake (lit) JE2.png|32px]]  [[File:Light Blue Candle Cake (lit) JE2.png|32px]] [[File:Blue Candle Cake (lit) JE2.png|32px]] [[File:Purple Candle Cake (lit) JE2.png|32px]] [[File:Magenta Candle Cake (lit) JE2.png|32px]] [[File:Pink Candle Cake (lit) JE2.png|32px]] Changed lit cake with candle textures.}}

{{History|pocket alpha}}
{{History||v0.7.0|[[File:Cake JE3 BE1.png|32px]] [[File:Cake (1 bite) JE3 BE1.png|32px]] [[File:Cake (2 bites) JE3 BE1.png|32px]] [[File:Cake (3 bites) JE3 BE1.png|32px]] [[File:Cake (4 bites) JE3 BE1.png|32px]] [[File:Cake (5 bites) JE3 BE1.png|32px]] [[File:Cake (6 bites) JE3 BE1.png|32px]]<br>[[File:Cake (item) JE1 BE1.png|32px]] Added cake.
|Cake restores {{hp|18}}.}}
{{History||v0.12.1|snap=build 1|Cake now restore {{hunger|12}}.}}
{{History||v0.14.0|snap=build 1|Cake can now be used to emit a [[redstone comparator|comparator]] signal.}}
{{History||v0.15.0|snap=?|Cake currently does not show its inside texture on two or more bites.}}
{{History|pocket}}
{{History||1.0.4|snap=alpha 1.0.4.0|Farmer villagers now [[trading|sell]] cake for one [[emerald]].}}
{{History|bedrock}}
{{History||unknown|Cake is now stackable.}}
{{History||1.4.0|snap=beta 1.2.14.2|Cake can now be found inside [[buried treasure]] [[chest]]s.}}
{{History||1.8.0|snap=beta 1.8.0.8|Cake, as a dropped [[item]], can now be eaten by [[panda]]s.}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Cake BE2.png|32px]] [[File:Cake (1 bite) BE2.png|32px]] [[File:Cake (2 bites) BE2.png|32px]] [[File:Cake (3 bites) BE2.png|32px]] [[File:Cake (4 bites) BE2.png|32px]] [[File:Cake (5 bites) BE2.png|32px]] [[File:Cake (6 bites) BE2.png|32px]] <br>[[File:Cake (item) JE2 BE2.png|32px]] The texture of cake has been changed.}}
{{History||1.11.0|snap=beta 1.11.0.1|Cake can now be used to fill up [[composter]]s.}}
{{History|||snap=beta 1.11.0.4|Cake [[trading|sold]] by farmers now has a 50% chance to cost 8 [[emerald]]s.}}
{{History|||snap=beta 1.11.0.5|[[File:Cake (item) JE3 BE3.png|32px]] The texture of cake [[item]]s has been changed, once again.}}
{{History|||snap=beta 1.11.0.7|Cake [[trading|trades]] from farmer [[villager]]s have been reverted.}}
{{History||1.16.0|snap=beta 1.15.0.53|Cake now shows its inside texture on two or more bites.}}
{{History||1.17.10|snap=beta 1.17.10.22|[[File:Cake with Candle JE1.png|32px]] [[File:Cake with White Candle JE1.png|32px]] [[File:Cake with Light Gray Candle JE1.png|32px]] [[File:Cake with Gray Candle JE1.png|32px]] [[File:Cake with Black Candle JE1.png|32px]] [[File:Cake with Brown Candle JE1.png|32px]] [[File:Cake with Red Candle JE1.png|32px]] [[File:Cake with Orange Candle JE1.png|32px]] [[File:Cake with Yellow Candle JE1.png|32px]] [[File:Cake with Lime Candle JE1.png|32px]] [[File:Cake with Green Candle JE1.png|32px]] [[File:Cake with Cyan Candle JE1.png|32px]] [[File:Cake with Light Blue Candle JE1.png|32px]] [[File:Cake with Blue Candle JE1.png|32px]] [[File:Cake with Purple Candle JE1.png|32px]] [[File:Cake with Magenta Candle JE1.png|32px]] [[File:Cake with Pink Candle JE1.png|32px]] [[File:Candle Cake (lit) JE2.png|32px]] [[File: White Candle Cake (lit) JE2.png|32px]] [[File:Light Gray Candle Cake (lit) JE2.png|32px]] [[File:Gray Candle Cake (lit) JE2.png|32px]] [[File:Black Candle Cake (lit) JE2.png|32px]] [[File:Brown Candle Cake (lit) JE2.png|32px]] [[File:Red Candle Cake (lit) JE2.png|32px]] [[File:Orange Candle Cake (lit) JE2.png|32px]] [[File:Yellow Candle Cake (lit) JE2.png|32px]] [[File:Lime Candle Cake (lit) JE2.png|32px]] [[File:Green Candle Cake (lit) JE2.png|32px]] [[File:Cyan Candle Cake (lit) JE2.png|32px]] [[File:Light Blue Candle Cake (lit) JE2.png|32px]] [[File:Blue Candle Cake (lit) JE2.png|32px]] [[File:Purple Candle Cake (lit) JE2.png|32px]] [[File:Magenta Candle Cake (lit) JE2.png|32px]] [[File:Pink Candle Cake (lit) JE2.png|32px]] Added candle cakes.}}

{{History|console}}
{{History||xbox=TU1|xbone=CU1|ps=1.0|wiiu=Patch 1|switch=1.0.1|[[File:Cake JE3 BE1.png|32px]] [[File:Cake (1 bite) JE3 BE1.png|32px]] [[File:Cake (2 bites) JE3 BE1.png|32px]] [[File:Cake (3 bites) JE3 BE1.png|32px]] [[File:Cake (4 bites) JE3 BE1.png|32px]] [[File:Cake (5 bites) JE3 BE1.png|32px]] [[File:Cake (6 bites) JE3 BE1.png|32px]]<br>[[File:Cake (item) JE1 BE1.png|32px]] Added cake.}}
{{History||xbox=TU6|Cake has been made stackable, as a then-version exclusive.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Cake JE4.png|32px]] [[File:Cake (1 bite) JE4.png|32px]] [[File:Cake (2 bites) JE4.png|32px]] [[File:Cake (3 bites) JE4.png|32px]] [[File:Cake (4 bites) JE4.png|32px]] [[File:Cake (5 bites) JE4.png|32px]] [[File:Cake (6 bites) JE4.png|32px]]{{verify|Are these the textures/models used?}}<br>[[File:Cake (item) JE2 BE2.png|32px]] The single, lone texture of cake has been changed.}}

{{History|new 3ds}}
{{History||0.1.0|[[File:Cake JE3 BE1.png|32px]] [[File:Cake (1 bite) JE3 BE1.png|32px]] [[File:Cake (2 bites) JE3 BE1.png|32px]] [[File:Cake (3 bites) JE3 BE1.png|32px]] [[File:Cake (4 bites) JE3 BE1.png|32px]] [[File:Cake (5 bites) JE3 BE1.png|32px]] [[File:Cake (6 bites) JE3 BE1.png|32px]]<br>[[File:Cake (item) JE1 BE1.png|32px]] Added cake.}}
{{History|foot}}

=== Cake "item" ===
{{:Technical blocks/Cake}}

== Issues ==

{{issue list}}

== Trivia ==

=== Interaction ===

* Because cake is only {{frac|7|8}} blocks wide, it is possible to stand on the edge of a [[block]] beneath a cake.
* It is possible to place cake on top of another cake by placing a cake on the ground, then placing another cake on the side of a block above and to the side of the first cake, similar to placing [[torch]]es on a [[chest]]. Eating the lower cake causes the upper cake to disappear, as does mining out the block of cake it is sitting on.
* It is also possible to place any block on top of cakes (including another cake) by [[sneaking]] and placing the block on top of a cake.
* [[Mob]]s on top of cakes rotate while attempting to move, a pathfinding oversight shared with [[fence]]s.
* If cake is placed in a hole one block deep, players can get across the hole without jumping, although a player standing on the cake must jump to get out of the hole.
* Cake can be used to create a functioning staircase, by placing a cake on each level of a 1 block by 1 block incline. This would be one of the most labor-intensive staircases available, given the requirements to craft a cake, compared to any other method of creating a staircase. This staircase is also extremely overpowered when combined with a horse being one of the fastest forms of travel.
*At some point, it was possible to push cakes into the void using pistons.<ref>https://www.youtube.com/watch?v=GxniEMGBXC4&t=340s</ref>

=== Miscellaneous ===
[[File:IOTY.png|thumb|100px|The 2010 Indie of the Year Awards logo.]]
* Cake was added to ''[[Minecraft]]'' following the ModDB [[2010 Indie of the Year Awards]]. [[Notch]] agreed to add cake to ''Minecraft'' if it won, which led to a campaign called "The Quest For Cake". ''Minecraft'' won 3 of the 7 awards, including the "Indie of the Year" award.
* Placing a cake makes the same sound as placing [[wool]].
* The player can place cake on top of a [[bed]], and while [[sleeping]], the cake shows on the player's screen as if it were on top of their head.
* The name of the achievement for crafting a cake is a reference to the internet meme "The Cake is a Lie", which originated from [[wikipedia:Valve Corporation|Valve Software's]] game, ''[[wikipedia:Portal (video game)#Plot|Portal]]''.
* On May 17, 2019, for the [https://www.minecraft.net/en-us/10th-anniversary 10th anniversary] of ''Minecraft'', the cake [[model]] was changed to display a "10" above it, made of [[white concrete]].
* Unlike most foods, cakes don't count towards the advancement "[[A Balanced Diet]]" {{in|java}}.<ref>{{bug|MC-117561}}</ref>

== Gallery ==
=== Renders ===
{{hidden begin}}
<div style="clear: both"></div>
<gallery>
Cake.png
Cake (1 bite).png
Cake (2 bites).png
Cake (3 bites).png
Cake (4 bites).png
Cake (5 bites).png
Cake (6 bites).png
</gallery>
<gallery>
Cake with Candle.png
Cake with White Candle.png
Cake with Light Gray Candle.png
Cake with Gray Candle.png
Cake with Black Candle.png
Cake with Brown Candle.png
Cake with Red Candle.png
Cake with Orange Candle.png
Cake with Yellow Candle.png
Cake with Lime Candle.png
Cake with Green Candle.png
Cake with Cyan Candle.png
Cake with Light Blue Candle.png
Cake with Blue Candle.png
Cake with Purple Candle.png
Cake with Magenta Candle.png
Cake with Pink Candle.png
</gallery>
<gallery>
Candle Cake (lit).png
White Candle Cake (lit).png
Light Gray Candle Cake (lit).png
Gray Candle Cake (lit).png
Black Candle Cake (lit).png
Brown Candle Cake (lit).png
Red Candle Cake (lit).png
Orange Candle Cake (lit).png
Yellow Candle Cake (lit).png
Lime Candle Cake (lit).png
Green Candle Cake (lit).png
Cyan Candle Cake (lit).png
Light Blue Candle Cake (lit).png
Blue Candle Cake (lit).png
Purple Candle Cake (lit).png
Magenta Candle Cake (lit).png
Pink Candle Cake (lit).png
</gallery>
{{hidden end}}
=== In-game ===
<gallery>
Cakes stacked.png|A cake placed on top of another.
Cakeeating.png|The sizes of cake when eaten.
10 Years Cake.jpg|The 10-years cake [[model]] placed in the world.
</gallery>

== References ==
{{Reflist}}

{{Blocks|Utility}}
{{Items}}

[[Category:Food]]
[[Category:Utility blocks]]
[[Category:Manufactured blocks]]

[[cs:Dort]]
[[de:Kuchen]]
[[es:Tarta]]
[[fr:Gâteau]]
[[hu:Torta]]
[[it:Torta]]
[[ja:ケーキ]]
[[ko:케이크]]
[[nl:Taart]]
[[pl:Ciasto]]
[[pt:Bolo]]
[[ru:Торт]]
[[th:เค้ก]]
[[tr:Pasta]]
[[uk:Торт]]
[[zh:蛋糕]]</li></ul>
Added Peaceful difficulty.
v0.12.1
{{Extension DPL}}<ul><li>[[Bamboo|Bamboo]]<br/>{{for|the plant feature|Bamboo (feature)}}
{{Distinguish|text = [[Sugar Cane]], which was colloquially known as Bamboo}}
{{Block
| image = <gallery>
Leafless Bamboo.png|Leafless
Small Leaves Bamboo.png|Small
Big Leaves Bamboo.png|Big
Leafless Old Bamboo.png|Leafless Old
Small Leaves Old Bamboo.png|Small Old
Big Leaves Old Bamboo.png|Big Old
</gallery>
| image2 = Bamboo Shoot.png<!--different infobox for this later down the line, like with pistons?-->
| image3 = Bamboo (item) JE1 BE1.png
| transparent = Yes
| light = No
| tool = Sword
| tool2 = Axe
| renewable = Yes
| stackable = Yes (64)
| flammable = '''Bamboo''': Yes (60)<br>'''Shoot''': No
| lavasusceptible = Yes
}}
'''Bamboo''' is a versatile, fast-growing, [[Bone Meal|bonemealable]] [[plant]] found primarily in [[jungle]]s, which is used for [[crafting]] (particularly [[scaffolding]] and [[Block of Bamboo|bamboo wood]]), [[smelting]] and [[breeding]] [[Panda|pandas]]. 

A '''bamboo shoot''' is the initial non-solid sapling form of planted bamboo.

== Obtaining ==
Bamboo shoots cannot be obtained through vanilla means. {{IN|bedrock}}, they can be obtained through [[add-on]]s or inventory editing. {{IN|java}}, they are completely unobtainable.

=== Breaking ===
Bamboo can be mined with any [[tool]], but a [[sword]] breaks the block [[instant mining|instantly]], even with [[Mining Fatigue]]. Flowing [[water]] also breaks bamboo shoots, but not mature bamboo stalks.

{{breaking row|Bamboo|Sword|sword=1|horizontal=1}}
{{notelist}}
=== Natural generation ===
Bamboo generates in widely scattered single shoots within [[jungle]] [[biome]]s. Bamboo generates much more densely in the [[bamboo jungle|bamboo variant]]s of jungles, covering large areas of the landscape. Bamboo does ''not'' generate in [[sparse jungle]]s.<ref>{{bug|MC-156638|||WAI}}</ref>

=== Mob loot ===
{{IN|java}}, a [[panda]] drops 1 bamboo when killed. [[Looting]] does not affect the drop rate.<ref>{{bug|MC-160006}}</ref>

{{IN|bedrock}}, a panda drops 0-2 bamboo when killed. Looting increases the drop by 1 per level.

=== Fishing ===
Bamboo can be found while [[fishing]] in [[jungle]] [[biome]]s as a junk [[item]].

=== Chest loot ===
{{LootChestItem|bamboo}}

== Usage ==
When broken, any bamboo [[block]] placed or grown above it is also broken. A bamboo block drops itself as an [[item]] if a [[piston]] pushes it or moves a block into its space. When bamboo is first placed as a shoot it's not solid and can be destroyed by water flowing into it. After growing at least one block taller it becomes solid and can't be destroyed by water. To transform a bamboo shoot into a solid bamboo block place another bamboo on top of it.

Unlike most plants, bamboo cannot be [[Composter#Composting|composted]].<ref>{{bug|MC-142452|||WAI}}</ref>

=== Farming ===
Bamboo can be planted on [[moss block]]s{{only|java|short=1}}, [[grass block]]s, [[dirt]], [[coarse dirt]], [[rooted dirt]], [[gravel]], [[mycelium]], [[podzol]], [[sand]], [[red sand]], [[suspicious sand]], [[suspicious gravel]], [[mud]], bamboo shoot, or on itself. At default random tick speed (3), each plant grows on average every {{convert|4096|ticks|seconds}}. When [[bone meal]] is {{control|used}} on it, it grows by 1–2 [[blocks]]. Bamboo can grow up to 12–16 blocks tall. The top of a bamboo plant requires a [[light]] level of 9 or above to grow.

Because bamboo breaks in almost the same way as [[sugar cane]]s, [[Tutorials/Sugar cane farming|a sugar cane farm]] can be easily adapted to this use. While water is not needed with such a farm, some spacing is recommended if the harvest is done manually as mature stalks are solid.

=== Pandas ===
Bamboo [[item]]s are eaten by [[panda]]s and can be used to speed up the growth of baby pandas. Bamboo can also be used to breed pandas when at least 8 [[block]]s of bamboo are within 5 blocks of the pandas, making the panda the only animal in the game to have extra breeding requirements. At this point, the [[player]] can feed them bamboo and they [[breeding|mate]] to have a baby.

=== Fuel ===
Bamboo can be used as fuel for [[smelting]]. Each bamboo item smelts 0.25 [[item]]s. Crafting two bamboo into a [[stick]] and using that as fuel is equivalent, smelting 0.5 items. 

Bamboo can be crafted into other items to increase its fuel efficiency.
* By crafting 9 bamboo into 2 [[bamboo planks]], 3 items can be smelted instead of 2.25, a 33.3% increase in efficiency.
** {{IN|bedrock}}, the fuel efficiency can be further doubled by crafting the bamboo planks into twice the amount of [[slab]]s.<ref>{{bug|MCPE-94368||Wooden slabs last for the same amount of time as planks in a furnace}}</ref>
* {{IN|java}}, by crafting 14 bamboo into 3 [[ladder]]s, 4.5 items can be smelted instead of 3.5, a 28.6% increase in efficiency.

=== Flower pots ===
Bamboo can be placed in a [[flower pot]], where it retains the design it has in its item form.

=== Crafting ingredient ===
{{crafting usage}}

== Appearance ==
[[File:Bamboo stages.png|thumb|The different stages of bamboo growth.]]

The appearance of bamboo changes as it grows. When first placed, it takes the form of a small shoot, which has no [[hitbox]]. When it grows one [[block]] taller it grows to 2 pixels in length and width and the top block has leaves coming off it. At 3 blocks, the top 2 blocks have leaves and at 4 blocks the bamboo expands to 3×3 pixels. At 5 blocks tall, the top 3 blocks have leaves on them. As the bamboo grows, the leaves move up and stay at the top 3 blocks. Destroying a block of bamboo does not change the appearance of the blocks below it. Bamboo is oriented at a random position in the block that it is in.

== Sounds ==
=== Bamboo ===
{{Sound table/Block/Bamboo}}

=== Bamboo Shoot ===
{{Sound table/Block/Bamboo shoot}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showblocktags=y
|showforms=y
|generatetranslationkeys=y
|displayname=Bamboo
|spritetype=block
|nameid=bamboo
|blocktags=bamboo_plantable_on}}
{{ID table
|displayname=Bamboo Shoot
|spritetype=block
|nameid=bamboo_sapling
|blocktags=bamboo_plantable_on
|form=block
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|generatetranslationkeys=y
|displayname=Bamboo
|spritetype=block
|nameid=bamboo
|id=418}}
{{ID table
|displayname=Bamboo Sapling
|spritetype=block
|nameid=bamboo_sapling
|id=419
|form=block
|translationkey=-
|foot=1}}

=== Block states ===
{{see also|Block states}}

{{/BS}}

== Achievements ==
{{load achievements|Zoologist}}

== History ==
{{History||September 29, 2018|link={{tweet|minecraft|1046096508570009602}}|Bamboo is announced at [[MINECON Earth 2018]].}}
{{History|java}}
{{History||1.14|snap=18w43a|[[File:Leafless Bamboo JE1 BE2.png|32px]] [[File:Small Leaves Bamboo JE1 BE2.png|32px]] [[File:Big Leaves Bamboo JE1 BE2.png|32px]] [[File:Leafless Old Bamboo JE1 BE2.png|32px]] [[File:Small Leaves Old Bamboo JE1 BE2.png|32px]] [[File:Big Leaves Old Bamboo JE1 BE2.png|32px]] [[File:Bamboo Shoot JE1 BE1.png|32px]] Added bamboo.
|[[File:Bamboo (item) JE1 BE1.png|32px]] Bamboo as an [[item]] can be [[drops|dropped]] by bamboo and planted to grow bamboo.
|Added [[bamboo jungle]]s, where bamboo naturally generates.}}
{{History||1.16|snap=20w06a|"Bamboo Sapling" has been renamed to "Bamboo Shoot".}}
{{History|||snap=20w13a|Bamboo has been moved from the Miscellaneous tab to the Decoration Blocks tab in the [[Creative inventory]].<ref name="misc decoration">https://bugs.mojang.com/browse/MC-174434</ref>}}
{{History||1.17|snap=21w13a|Bamboo can now be planted on rooted dirt.}}
{{History|||snap=21w16a|Bamboo can now be planted on moss blocks.}}
{{History||1.18|snap=21w39a|Bamboo no longer generates underground.<ref>{{bug|MC-145376}}</ref><ref>{{bug|MC-214894}}</ref>}}
{{History||1.19|snap=22w15a|Bamboo can now be planted on mud.}}
{{History||1.20<br>(Experimental)|link=1.19.3|snap=22w42a|Bamboo can now be used to craft [[bamboo planks]].}}
{{History|||snap=22w45a|Bamboo can no longer be used to craft bamboo planks.|Bamboo can now be used to craft a [[block of bamboo]].}}
{{History||1.20<br>(Experimental)|link=1.19.4|snap=23w07a|Bamboo can now be planted on [[suspicious sand]].}}
{{History||1.20|snap=23w14a|Bamboo can now be planted on [[suspicious gravel]].}}

{{History|bedrock}}
{{History||1.8.0|snap=beta 1.8.0.8|[[File:Leafless Bamboo BE1.png|32px]] [[File:Small Leaves Bamboo BE1.png|32px]] [[File:Big Leaves Bamboo BE1.png|32px]] [[File:Leafless Old Bamboo BE1.png|32px]] [[File:Small Leaves Old Bamboo BE1.png|32px]] [[File:Big Leaves Old Bamboo BE1.png|32px]] [[File:Bamboo Shoot JE1 BE1.png|32px]] Added bamboo.
|[[File:Bamboo (item) JE1 BE1.png|32px]] Bamboo as an [[item]] can be [[drops|dropped]] by bamboo and planted to grow bamboo.}}
{{History||1.9.0|snap=beta 1.9.0.0|Bamboo can now generate in [[jungle]] [[biome]]s in single shoots.
|Added [[bamboo jungle]]s, where bamboo naturally generates.}}
{{History||1.12.0|snap=beta 1.12.0.3|[[File:Leafless Bamboo JE1 BE2.png|32px]] [[File:Small Leaves Bamboo JE1 BE2.png|32px]] [[File:Big Leaves Bamboo JE1 BE2.png|32px]] [[File:Leafless Old Bamboo JE1 BE2.png|32px]] [[File:Small Leaves Old Bamboo JE1 BE2.png|32px]] [[File:Big Leaves Old Bamboo JE1 BE2.png|32px]] The bamboo texture brightness has been updated to match {{el|je}}.<ref>{{bug|MCPE-42635}}</ref>}}
{{History||1.17.30|snap=beta 1.17.20.20|Swords now break bamboo instantly to match ''Java Edition''.<ref>{{bug|MCPE-64013}}</ref>}}
{{History||1.20.0|link=Bedrock Edition 1.20.0|snap=beta 1.19.50.21|Bamboo can now be used to craft [[bamboo planks]].}}
{{History|||snap=beta 1.19.60.20|Bamboo can no longer be used to craft bamboo planks.|Bamboo can now be used to craft a [[block of bamboo]].}}

{{History|console}}
{{History||xbox=none|xbone=none|ps=1.83|wiiu=none|switch=none|[[File:Leafless Bamboo JE1 BE2.png|32px]] [[File:Small Leaves Bamboo JE1 BE2.png|32px]] [[File:Big Leaves Bamboo JE1 BE2.png|32px]] [[File:Leafless Old Bamboo JE1 BE2.png|32px]] [[File:Small Leaves Old Bamboo JE1 BE2.png|32px]] [[File:Big Leaves Old Bamboo JE1 BE2.png|32px]] [[File:Bamboo Shoot JE1 BE1.png|32px]] Added bamboo.
|[[File:Bamboo (item) JE1 BE1.png|32px]] Bamboo as an [[item]] can be [[drops|dropped]] by bamboo and planted to grow bamboo.}}
{{History|foot}}

=== Bamboo shoot "item" ===
{{:Technical blocks/Bamboo Shoot}}

== Issues ==
{{Issue list}}

== Trivia ==
* Because bamboo grows quickly (on average 1 growth per 200 seconds), just 500 plants in an automatic farm produce more [[item]]s than a [[hopper]] can collect (2.5 items per second). A single hopper can move only enough items to keep 6.25 [[furnace]]s running.
* Bamboo is the fastest-growing plant in ''[[Minecraft]]'', which reflects its status as the fastest-growing plant known in real life.
* While bamboo cannot be composted in ''Minecraft'', it can be composted in real life.

== Gallery ==
<gallery>
File:PandaMinecon.png|The first image featuring bamboo, from [[MINECON Earth 2018]].
File:PandasEatingMinecon.jpg|A group of [[Panda|pandas]] eating bamboo, shown at [[MINECON Earth 2018]].
File:Growing bamboo BE.png|Planted bamboo growing.
File:Bamboo in tree.png|A bamboo shoot growing through a [[tree]].
File:Bamboo Jungle.png|Bamboo seen in a [[jungle]] [[biome]] variant.
File:Bamboo Jungle in Amplified world.png|Bamboo Jungle in an [[Amplified]] world in 1.19-rc2.
File:Naturalbamboo.png|Multiple naturally generated bamboo stems growing by a river.
File:Tall Bamboo.png|Grown Bamboo with three parts
File:Zuri Chopping Bamboo Pixel Art.png|[[Zuri]] chopping down bamboo for a baby panda.
File:Bamboo Wallpaper.png|Smartphone wallpaper of the aforementioned artwork, showing more of the treetops and bamboo.
File:Panda Packaging.jpg|Packing for the ''Diamond Level Panda'', modeled after bamboo.
</gallery>

==References==
{{Reflist}}

{{Blocks|vegetation}}

{{Items}}

[[Category:Plants]]
[[Category:Food]]
[[Category:Natural blocks]]
[[Category:Non-solid blocks]]
[[Category:Flammable blocks]]

[[cs:Bambus]]
[[de:Bambus]]
[[es:Bambú]]
[[fr:Bambou]]
[[it:Bambù]]
[[ja:竹]]
[[ko:대나무]]
[[pl:Bambus]]
[[pt:Bambu]]
[[ru:Бамбук]]
[[th:ไม้ไผ่]]
[[zh:竹子]]</li><li>[[Spawn Egg|Spawn Egg]]<br/>{{distinguish|Egg|Frogspawn|Dragon Egg|Sniffer Egg|Turtle Egg}}
{{Item
| image = Spawn Egg.png
| extratext = View [[#Gallery|all renders]]
| stackable = Yes (64), the same type of spawn egg only
| renewable = No
}}
{{Many images}}
A '''spawn egg'''<ref group=fn>Known as '''''<Mob>'' Spawn Egg''' {{in|java}} and '''Spawn ''<Mob>''''' {{in|bedrock}}, where ''<Mob>'' is the name of the mob it spawns.</ref> is an [[item]] used to spawn [[mobs]] directly.

== Obtaining ==
Spawn eggs can be obtained only in [[Creative]] mode or using [[commands]]. In Creative mode, the [[player]] can press {{control|pick block}} on an existing mob to obtain their respective egg. Spawn eggs are also available in the Creative inventory. There are 77 spawn eggs {{in|bedrock}} and 75 spawn eggs {{in|java}}.

== Usage ==

A spawn egg is used by pressing {{control|use}} on any surface (top, bottom, or side) with the egg. When used on a top surface, the egg's [[mob]] appears with its feet immediately adjacent to the surface, and its ambient sound is played.

Spawn eggs are not thrown (unlike normal [[egg]]s); the player must be within normal range of the block to use the spawn egg. Ocelot and all monster mobs (except [[shulker]]s, [[piglin]]s, [[hoglin]]s; and in Bedrock Edition, also include [[vindicator]]s, [[evoker]]s, [[zoglin]]s, [[piglin brute]]s) spawned while on Peaceful difficulty get created and immediately deleted from the world.

The surfaces of blocks are prioritized for spawning; if none are within reach, mobs can also be spawned in [[water]].

=== Dispensers ===
A spawn egg fired from a [[dispenser]] spawns the [[mob]] directly in front of the dispenser. The spawn egg is consumed when fired.

=== Baby mobs ===
If the [[player]] {{control|uses}} a spawn egg on the type of [[mob]] it spawns, and that mob has a baby form, the egg spawns a baby version of the mob. In mobs that can breed, the baby is created by breeding the clicked mob to itself. For instance, using a sheep spawn egg on a [[sheep]] makes a baby sheep with the same wool color.{{only|java}}

Other mobs such as [[evoker]]s, [[vindicator]]s, [[vex]]es, [[piglin brute]]s, [[ravager]]s, [[phantom]]s, [[skeleton]]s, [[pillager]]s, [[creeper]]s and [[wither skeleton]]s do not have a baby variant, so the egg still spawns an adult.

=== Monster spawners ===
All spawn eggs can also be {{Control|used}} on a [[monster spawner]] to change the [[mob]] the monster spawner spawns. {{IN|bedrock}}, spawn eggs for any of the fish mobs spawn them only if the monster spawner is waterlogged.

=== Renaming ===
A spawn egg can be renamed on an [[anvil]], and when used it spawns a [[mob]] with that name appearing over its head. The name can be seen only by aiming at the mob from four or fewer blocks away. This name also appears in [[death messages]] from the mob killing a [[player]]. If the player renames a spawn egg by the names described below, the mob appears described below. If the player renames a [[rabbit]] spawn egg "Toast", the secret skin of the rabbit appears when the egg is used. Naming a spawn egg "Dinnerbone" or "Grumm" causes the mob to appear upside down and show the given name above it. Renaming a [[vindicator]] "Johnny" causes it to act hostile to all mobs except for other illagers. Renaming a [[sheep]] "jeb_" makes the sheep's wool color cycle in a rainbow loop. This doesn't change the color of the wool the sheep drops. Renaming a spawn egg of a [[Hostile mob|hostile mob]] with an [[anvil]] and then spawning the hostile mob with the renamed spawn egg does not prevent the hostile mob from despawning, unlike using a [[Name Tag|name tag]] on the mob.

=== Survival mode ===
Mobs can be spawned with spawn eggs in [[Survival]] mode, but spawn eggs are [[Content inaccessible in Survival|not obtainable in Survival]] without cheats; they can be obtained only using the Creative menu or commands. Unlike in creative, spawn eggs are consumed when used in survival.

== List of spawn eggs ==
There is a spawn egg for almost every mob in the game; exceptions are listed below this table.
{| class="wikitable" data-description="Spawn eggs and availability"
! Egg
! Spawns
! Notes
|-
! colspan="4"| Hostile and neutral mobs
|-
| align="center"| {{InvSprite|Bee Spawn Egg}}
| {{EntityLink|Bee}}
| Bees have 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Blaze Spawn Egg}}
| {{EntityLink|Blaze}}
| 
|-
|align="center"| {{InvSprite|Bogged Spawn Egg}}
| {{EntityLink|Bogged}}
| 
|-
|align="center"| {{InvSprite|Cave Spider Spawn Egg}}
| {{EntityLink|Cave Spider}}
| Cave spiders have a 1% chance of spawning a {{EntityLink|Cave Spider Jockey}}. {{only|bedrock}}
|-
|align="center"| {{InvSprite|Creeper Spawn Egg}}
| {{EntityLink|Creeper}}
| Creepers can never spawn [[Creeper#Charged creeper|charged]].
|-
|align="center"| {{InvSprite|Dolphin Spawn Egg}}
| {{EntityLink|Dolphin}} 
| {{IN|bedrock}}, dolphins have 10% chance of spawning as a baby.
|-
|align="center" |{{InvSprite|Drowned Spawn Egg}}
| {{EntityLink|Drowned}}
| Drowned can spawn holding [[trident]]s, [[fishing rod]]s, or [[nautilus shell]]s. Drowned have 5% chance of spawning as a baby.<ref name="LazilyCodedSpawnEggs">{{bug|MC-167377}}</ref>
|-
|align="center"| {{InvSprite|Elder Guardian Spawn Egg}}
| {{EntityLink|Elder Guardian}}
| 
|-
|align="center"| {{InvSprite|Ender Dragon Spawn Egg}}
| {{EntityLink|Ender Dragon}}
| Only accessible via commands to prevent accidental destruction of player builds.
|-
|align="center"| {{InvSprite|Enderman Spawn Egg}}
| {{EntityLink|Enderman}}
| Endermen spawn neutral and not holding a block.
|-
|align="center"| {{InvSprite|Endermite Spawn Egg}}
| {{EntityLink|Endermite}}
|
|-
|align="center"| {{InvSprite|Evoker Spawn Egg}}
| {{EntityLink|Evoker}}
| 
|-
|align="center"| {{InvSprite|Ghast Spawn Egg}}
| {{EntityLink|Ghast}}
|
|-
|align="center"| {{InvSprite|Goat Spawn Egg}}
| {{EntityLink|Goat}}
|Goats spawn with two horns and have a 5% chance spawning as a baby, and a 2% chance of spawning as a screaming goat.
|-
|align="center"| {{InvSprite|Guardian Spawn Egg}}
| {{EntityLink|Guardian}}
|
|-
|align="center"| {{InvSprite|Hoglin Spawn Egg}}
| {{EntityLink|Hoglin}}
| Hoglins have 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Husk Spawn Egg}}
| {{EntityLink|Husk}}
| Husks have a 5% chance of spawning as a baby. Baby husks have a 5%{{only|java|short=1}} or 15%{{only|bedrock|short=1}} chance of spawning as a {{EntityLink|Chicken Husk Jockey|Chicken Jockey}}. There is also a chance of them holding [[Zombie#Armed zombies|tools, weapons or armor]]. Baby variants are randomly spawned.<ref name="LazilyCodedSpawnEggs"/>
|-
|align="center"| {{InvSprite|Iron Golem Spawn Egg}}
| {{EntityLink|Iron Golem}}
|These golems are neutral like the [[village]] golems.
|-
|align="center"| {{InvSprite|Llama Spawn Egg}}
| {{EntityLink|Llama}}
| Llamas spawn untamed and have a 10% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Magma Cube Spawn Egg}}
| {{EntityLink|Magma Cube}}
| Magma cubes spawn with a random size.
|-
|align="center"| {{InvSprite|Panda Spawn Egg}}
| {{EntityLink|Panda}}
| Pandas spawn with a random personality and have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Phantom Spawn Egg}}
| {{EntityLink|Phantom}}
|
|-
|align="center"| {{InvSprite|Piglin Spawn Egg}}
| {{EntityLink|Piglin}}
| Piglins have a 25%{{only|Java|short=1}} or 5%{{only|bedrock|short=1}} chance of spawning as a baby. They may also spawn with an [[enchanted]] [[crossbow]] or [[golden sword]] and [[golden armor]].
|-
|align="center"| {{InvSprite|Piglin Brute Spawn Egg}}
| {{EntityLink|Piglin Brute}}
| Piglin brutes never spawn with armor.
|-
|align="center"| {{InvSprite|Pillager Spawn Egg}}
| {{EntityLink|Pillager}}
| Pillagers have a chance of spawning with an [[enchanted]] [[crossbow]].
|-
|align="center"| {{InvSprite|Polar Bear Spawn Egg}}
| {{EntityLink|Polar Bear}}
| Polar bears have a 10% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Ravager Spawn Egg}}
| {{EntityLink|Ravager}}
| Ravagers never spawn being ridden by [[illager]]s.
|-
|align="center"| {{InvSprite|Shulker Spawn Egg}}
| {{EntityLink|Shulker}}
| Shulkers spawn undyed. Their orientation is also dependent on where the shulker is placed.
|-
|align="center"| {{InvSprite|Silverfish Spawn Egg}}
| {{EntityLink|Silverfish}}
| 
|-
|align="center"| {{InvSprite|Skeleton Spawn Egg}}
| {{EntityLink|Skeleton}}
|[[Skeleton]] eggs used in the [[Overworld]] and [[the End]] always spawn regular [[skeleton]]s.<br>{{IN|bedrock}}, eggs used in [[the Nether]] have an 80% chance to spawn [[wither skeleton]]s.<br>{{IN|bedrock}}, eggs used in [[Snowy Tundra]], [[Ice Spikes]], [[Snowy Mountains]], [[Frozen River]], [[Frozen Ocean]], [[Deep Frozen Ocean]] and [[Legacy Frozen Ocean]] [[biome]]s have an 80% chance to spawn [[stray]]s, if spawned with a clear view of the sky. They may also spawn with an [[enchanted]] [[bow]] and [[armor]].
|-
|align="center"| {{InvSprite|Slime Spawn Egg}}
| {{EntityLink|Slime}}
| Slimes spawn with a random size.
|-
|align="center"| {{InvSprite|Spider Spawn Egg}}
| {{EntityLink|Spider}}
| Spiders have a 1% chance to spawn a {{EntityLink|Spider Jockey}}.
|-
|align="center"| {{InvSprite|Stray Spawn Egg}}
| {{EntityLink|Stray}}
| Strays may spawn with an [[enchanted]] [[bow]] and [[armor]].
|-
|align="center"| {{InvSprite|Trader Llama Spawn Egg}}
| {{EntityLink|Trader Llama}}
|
|-
|align="center"| {{InvSprite|Vex Spawn Egg}}
| {{EntityLink|Vex}}
| 
|-
|align="center"| {{InvSprite|Vindicator Spawn Egg}}
| {{EntityLink|Vindicator}}
| Vindicators never spawn as captains.{{only|bedrock}} They may spawn with an [[enchanted]] [[axe]].
|-
|align="center"| {{InvSprite|Warden Spawn Egg}}
| {{EntityLink|Warden}}
| 
|-
|align="center"| {{InvSprite|Witch Spawn Egg}}
| {{EntityLink|Witch}}
|
|-
|align="center"| {{InvSprite|Wither Spawn Egg}}
| {{EntityLink|Wither}}
| Only accessible via commands to prevent accidental destruction of player builds.
|-
|align="center"| {{InvSprite|Wither Skeleton Spawn Egg}}
| {{EntityLink|Wither Skeleton}}
| 
|-
|align="center"| {{InvSprite|Wolf Spawn Egg}}
| {{EntityLink|Wolf}}
| Wolves spawn untamed and neutral. Wolves have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Zoglin Spawn Egg}}
| {{EntityLink|Zoglin}}
|
|-
|align="center"| {{InvSprite|Zombie Spawn Egg}}
| {{EntityLink|Zombie}}
| Zombies do not spawn as [[zombie villager]]s, but they have a 5% chance of spawning as a baby.<ref name="LazilyCodedSpawnEggs"/> There is also a chance of them holding [[Zombie#Geared zombies|tools, weapons or armor]]. A baby zombie has a 5%{{only|java|short=1}} or 15%{{only|bedrock}} chance of spawning as a {{EntityLink|Chicken Jockey}}.
|-
|align="center"| {{InvSprite|Zombie Villager Spawn Egg}}
| {{EntityLink|Zombie Villager}}
| Zombie villagers' professions are randomized.{{only|Java}} Their outfit depends on the biome, and they have a 5% chance of spawning as a baby.<ref name="LazilyCodedSpawnEggs"/> A baby zombie villager has a 5%{{only|java|short=1}} or 15%{{only|bedrock}} chance of spawning as a {{EntityLink|Chicken Zombie Villager Jockey|Chicken Jockey}}.
{{IN|bedrock}}, they never spawn with equipment.
|-
|align="center"| {{InvSprite|Zombified Piglin Spawn Egg}}
| {{EntityLink|Zombified Piglin}}
| Zombified piglins spawn neutral and have a 5% chance of spawning as a baby.<ref name="LazilyCodedSpawnEggs"/> A baby zombified piglin has a 5% chance of spawning as a {{EntityLink|Chicken Zombified Piglin Jockey|Chicken Jockey}}.{{only|java|short=1}} They may also spawn with an [[enchanted]] [[sword]].
|-
!colspan="4"| Passive mobs
|-
|align="center"| {{InvSprite|Spawn Agent}}
| {{EntityLink|Agent}}
|
|-
|align="center"| {{InvSprite|Allay Spawn Egg}}
| {{EntityLink|Allay}}
| 
|-
|align="center"| {{InvSprite|Axolotl Spawn Egg}}
| {{EntityLink|Axolotl}}
|Axolotls' skins are randomized and have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Bat Spawn Egg}}
| {{EntityLink|Bat}}
| If the player is far enough away when using the spawn egg on the bottom of an opaque block, the bat hangs upside down from it.
|-
|align="center"| {{InvSprite|Camel Spawn Egg}}
| {{EntityLink|Camel}}
| 
|-
|align="center"| {{InvSprite|Cat Spawn Egg}}
| {{EntityLink|Cat}}
| Cats' skins are randomized and always spawn stray cats. Cats have a 25% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Chicken Spawn Egg}}
| {{EntityLink|Chicken}}
| Chickens have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Cod Spawn Egg}}
| {{EntityLink|Cod}}
|Cods have a 0% chance of spawning as a baby. Baby cods can only be found naturally.
|-
|align="center"| {{InvSprite|Cow Spawn Egg}}
| {{EntityLink|Cow}}
| Cows have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Donkey Spawn Egg}}
| {{EntityLink|Donkey}}
| Donkeys spawn untamed and have a 20% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Fox Spawn Egg}}
| {{EntityLink|Fox}}
| Foxes spawn untrusting, with their skins depending on the biome. They can spawn holding items and have 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Frog Spawn Egg}}
| {{EntityLink|Frog}}
| Frog skins are biome-dependent.
|-
|align="center"| {{InvSprite|Glow Squid Spawn Egg}}
| {{EntityLink|Glow Squid}}
| {{IN|bedrock}}, glow squids have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Horse Spawn Egg}}
| {{EntityLink|Horse}}
| Horses spawn untamed and have a 20% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Mooshroom Spawn Egg}}
| {{EntityLink|Mooshroom}}
| Mooshrooms always spawn red and have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Mule Spawn Egg}}
| {{EntityLink|Mule}}
| Mules have a 20% chance of spawning as a baby.
|-
|align=“center” | {{InvSprite|Spawn NPC}}
| {{EntityLink|NPC}}
|There is an equal chance of spawning each of the 5 variants of this mob from the egg.
|-
|align="center"| {{InvSprite|Ocelot Spawn Egg}}
| {{EntityLink|Ocelot}}
| Ocelots spawn untrusting.<br>{{frac|1|7}} of the time (14.3%), an ocelot spawns with two ocelot kittens.
|-
|align="center"| {{InvSprite|Parrot Spawn Egg}}
| {{EntityLink|Parrot}}
| Parrots spawn untamed and with a random color.
|-
|align="center"| {{InvSprite|Pig Spawn Egg}}
| {{EntityLink|Pig}} 
| Pigs spawn without a [[saddle]] and have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Pufferfish Spawn Egg}}
| {{EntityLink|Pufferfish}}
|
|-
|align="center"| {{InvSprite|Rabbit Spawn Egg}}
| {{EntityLink|Rabbit}}
| Rabbit skins are random and biome-dependent. The black-and-white rabbit spawns only if the spawn egg is renamed <code>[[Rabbit#Toast|Toast]]</code>. Rabbits have a 25% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Salmon Spawn Egg}}
| {{EntityLink|Salmon}}
| {{IN|bedrock}}, salmon spawn with a random size.
|-
|align="center"| {{InvSprite|Sheep Spawn Egg}}
| {{EntityLink|Sheep}}
| Sheep spawn with the colors that can appear naturally; see {{slink|Sheep|Spawning}} for details. Sheep have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Skeleton Horse Spawn Egg}}
| {{EntityLink|Skeleton Horse}}
| Skeleton horses have a 20% chance of spawning as a baby and never spawn as a skeleton trap.
|-
|align="center"| {{InvSprite|Sniffer Spawn Egg}}
| {{EntityLink|Sniffer}}
|Baby sniffers can also be spawned by the [[Sniffer Egg|Sniffer Egg.]]
|-
|align="center"| {{InvSprite|Snow Golem Spawn Egg}}
| {{EntityLink|Snow Golem}}
| 
|-
|align="center"| {{InvSprite|Squid Spawn Egg}}
| {{EntityLink|Squid}}
| {{IN|bedrock}}, squid have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Strider Spawn Egg}}
| {{EntityLink|Strider}}
| Striders have a {{frac|1|10}} chance of spawning ridden by a baby strider and a {{frac|1|30}} chance of spawning ridden by a [[zombified piglin]].
|-
|align="center"| {{InvSprite|Tadpole Spawn Egg}}
| {{EntityLink|Tadpole}}
| Also spawned from [[frogspawn]].
|-
|align="center"| {{InvSprite|Tropical Fish Spawn Egg}}
| {{EntityLink|Tropical Fish}}
| Shapes, colors, and patterns are randomized, though 90% of the time the tropical fish will spawn as 1 of the 22 uniquely-named variants.
|-
|align="center"| {{InvSprite|Turtle Spawn Egg}}
| {{EntityLink|Turtle}}
| Turtles have a 10% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Villager Spawn Egg}}
| {{EntityLink|Villager}}
| Villagers' professions are randomized{{only|bedrock|short=1}}<ref>{{bug|MCPE-46034}}</ref> or unemployed{{only|java|short=1}}, but their outfit is biome-dependent. They have a 5% chance of spawning as a baby.
|-
|align="center"| {{InvSprite|Wandering Trader Spawn Egg}}
| {{EntityLink|Wandering Trader}}
| {{IN|bedrock}}, wandering traders always spawn with two leashed trader llamas.
|-
|align="center"| {{InvSprite|Zombie Horse Spawn Egg}}
| {{EntityLink|Zombie Horse}}
| Zombie horses have a 20% chance of spawning as a baby.
|}

=== Mobs without spawn eggs ===
The following mobs do not have explicitly defined spawn eggs. Custom spawn eggs can be created with a custom NBT tag that changes the spawned entity, however no spawn egg explicitly associated with any of the mobs exist.

{| class="wikitable" data-description="spawn eggs and availability"
! Mob
! Reason
|-
! colspan="2" | Variants
|-
! {{EntityLink|Brown Mooshroom}}
| Shares ID with red variant
|-
! colspan="2" | Other mobs
|-
! {{EntityLink|Giant}}
| Unused<ref>{{bug|MC-257115|||WAI}}</ref>
|-
! {{EntityLink|Illusioner}}
| Unused<ref>{{bug|MC-257115|||WAI}}</ref>
|}

=== Education Edition spawn eggs ===
These spawn eggs exist {{in|education}} and {{in|bedrock}}:
* {{InvSprite|Spawn Agent}} {{EntityLink|Agent}}
* {{InvSprite|Spawn NPC}} {{EntityLink|NPC}}

The NPC and agent can both be spawned {{in|bedrock}}, however, the agent is not visible or interactable in any way, though it still prevents the placing of blocks and entities.

=== Minecraft Earth spawn eggs ===
These unused spawn egg textures existed {{in|earth}}:
* {{InvSprite|Cluckshroom Spawn Egg}} {{EntityLink|Cluckshroom}}
* {{InvSprite|Horned Sheep Spawn Egg}} {{EntityLink|Horned Sheep}}
* {{InvSprite|Jumbo Rabbit Spawn Egg}} {{EntityLink|Jumbo Rabbit}}
* {{InvSprite|Moobloom Spawn Egg}} {{EntityLink|Moobloom}}

=== April Fools spawn eggs ===
* {{InvSprite|Moon Cow Spawn Egg}} {{EntityLink|Moon Cow}}

== Sounds ==
When a mob is spawned, it immediately makes its ambient sound.

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Allay Spawn Egg
|spritetype=item
|nameid=allay_spawn_egg
|form=item}}
{{ID table
|displayname=Axolotl Spawn Egg
|spritetype=item
|nameid=axolotl_spawn_egg
|form=item}}
{{ID table
|displayname=Bat Spawn Egg
|spritetype=item
|nameid=bat_spawn_egg
|form=item}}
{{ID table
|displayname=Bee Spawn Egg
|spritetype=item
|nameid=bee_spawn_egg
|form=item}}
{{ID table
|displayname=Blaze Spawn Egg
|spritetype=item
|nameid=blaze_spawn_egg
|form=item}}
{{ID table
|displayname=Camel Spawn Egg
|spritetype=item
|nameid=camel_spawn_egg
|form=item}}
{{ID table
|displayname=Cat Spawn Egg
|spritetype=item
|nameid=cat_spawn_egg
|form=item}}
{{ID table
|displayname=Cave Spider Spawn Egg
|spritetype=item
|nameid=cave_spider_spawn_egg
|form=item}}
{{ID table
|displayname=Chicken Spawn Egg
|spritetype=item
|nameid=chicken_spawn_egg
|form=item}}
{{ID table
|displayname=Cod Spawn Egg
|spritetype=item
|nameid=cod_spawn_egg
|form=item}}
{{ID table
|displayname=Cow Spawn Egg
|spritetype=item
|nameid=cow_spawn_egg
|form=item}}
{{ID table
|displayname=Creeper Spawn Egg
|spritetype=item
|nameid=creeper_spawn_egg
|form=item}}
{{ID table
|displayname=Dolphin Spawn Egg
|spritetype=item
|nameid=dolphin_spawn_egg
|form=item}}
{{ID table
|displayname=Donkey Spawn Egg
|spritetype=item
|nameid=donkey_spawn_egg
|form=item}}
{{ID table
|displayname=Drowned Spawn Egg
|spritetype=item
|nameid=drowned_spawn_egg
|form=item}}
{{ID table
|displayname=Elder Guardian Spawn Egg
|spritetype=item
|nameid=elder_guardian_spawn_egg
|form=item}}
{{ID table
|displayname=Ender Dragon Spawn Egg
|spritetype=item
|nameid=ender_dragon_spawn_egg
|form=item}}
{{ID table
|displayname=Enderman Spawn Egg
|spritetype=item
|nameid=enderman_spawn_egg
|form=item}}
{{ID table
|displayname=Endermite Spawn Egg
|spritetype=item
|nameid=endermite_spawn_egg
|form=item}}
{{ID table
|displayname=Evoker Spawn Egg
|spritetype=item
|nameid=evoker_spawn_egg
|form=item}}
{{ID table
|displayname=Fox Spawn Egg
|spritetype=item
|nameid=fox_spawn_egg
|form=item}}
{{ID table
|displayname=Frog Spawn Egg
|spritetype=item
|nameid=frog_spawn_egg
|form=item}}
{{ID table
|displayname=Ghast Spawn Egg
|spritetype=item
|nameid=ghast_spawn_egg
|form=item}}
{{ID table
|displayname=Glow Squid Spawn Egg
|spritename=glow-squid-spawn-egg
|spritetype=item
|nameid=glow_squid_spawn_egg
|form=item}}
{{ID table
|displayname=Goat Spawn Egg
|spritetype=item
|nameid=Goat_spawn_egg
|form=item}}
{{ID table
|displayname=Guardian Spawn Egg
|spritetype=item
|nameid=guardian_spawn_egg
|form=item}}
{{ID table
|displayname=Hoglin Spawn Egg
|spritetype=item
|nameid=hoglin_spawn_egg
|form=item}}
{{ID table
|displayname=Horse Spawn Egg
|spritetype=item
|nameid=horse_spawn_egg
|form=item}}
{{ID table
|displayname=Husk Spawn Egg
|spritetype=item
|nameid=husk_spawn_egg
|form=item}}
{{ID table
|displayname=Iron Golem Spawn Egg
|spritetype=item
|nameid=iron_golem_spawn_egg
|form=item}}
{{ID table
|displayname=Llama Spawn Egg
|spritetype=item
|nameid=llama_spawn_egg
|form=item}}
{{ID table
|displayname=Magma Cube Spawn Egg
|spritetype=item
|nameid=magma_cube_spawn_egg
|form=item}}
{{ID table
|displayname=Mooshroom Spawn Egg
|spritetype=item
|nameid=mooshroom_spawn_egg
|form=item}}
{{ID table
|displayname=Mule Spawn Egg
|spritetype=item
|nameid=mule_spawn_egg
|form=item}}
{{ID table
|displayname=Ocelot Spawn Egg
|spritetype=item
|nameid=ocelot_spawn_egg
|form=item}}
{{ID table
|displayname=Panda Spawn Egg
|spritetype=item
|nameid=panda_spawn_egg
|form=item}}
{{ID table
|displayname=Parrot Spawn Egg
|spritetype=item
|nameid=parrot_spawn_egg
|form=item}}
{{ID table
|displayname=Phantom Spawn Egg
|spritetype=item
|nameid=phantom_spawn_egg
|form=item}}
{{ID table
|displayname=Pig Spawn Egg
|spritetype=item
|nameid=pig_spawn_egg
|form=item}}
{{ID table
|displayname=Piglin Spawn Egg
|spritetype=item
|nameid=piglin_spawn_egg
|form=item}}
{{ID table
|displayname=Piglin Brute Spawn Egg
|spritetype=item
|nameid=piglin_brute_spawn_egg
|form=item}}
{{ID table
|displayname=Pillager Spawn Egg
|spritetype=item
|nameid=pillager_spawn_egg
|form=item}}
{{ID table
|displayname=Polar Bear Spawn Egg
|spritetype=item
|nameid=polar_bear_spawn_egg
|form=item}}
{{ID table
|displayname=Pufferfish Spawn Egg
|spritetype=item
|nameid=pufferfish_spawn_egg
|form=item}}
{{ID table
|displayname=Rabbit Spawn Egg
|spritetype=item
|nameid=rabbit_spawn_egg
|form=item}}
{{ID table
|displayname=Ravager Spawn Egg
|spritetype=item
|nameid=ravager_spawn_egg
|form=item}}
{{ID table
|displayname=Salmon Spawn Egg
|spritetype=item
|nameid=salmon_spawn_egg
|form=item}}
{{ID table
|displayname=Sheep Spawn Egg
|spritetype=item
|nameid=sheep_spawn_egg
|form=item}}
{{ID table
|displayname=Shulker Spawn Egg
|spritetype=item
|nameid=shulker_spawn_egg
|form=item}}
{{ID table
|displayname=Silverfish Spawn Egg
|spritetype=item
|nameid=silverfish_spawn_egg
|form=item}}
{{ID table
|displayname=Skeleton Spawn Egg
|spritetype=item
|nameid=skeleton_spawn_egg
|form=item}}
{{ID table
|displayname=Skeleton Horse Spawn Egg
|spritetype=item
|nameid=skeleton_horse_spawn_egg
|form=item}}
{{ID table
|displayname=Slime Spawn Egg
|spritetype=item
|nameid=slime_spawn_egg
|form=item}}
{{ID table
|displayname=Sniffer Spawn Egg
|spritetype=item
|nameid=sniffer_spawn_egg
|form=item}}
{{ID table
|displayname=Snow Golem Spawn Egg
|spritetype=item
|nameid=snow_golem_spawn_egg
|form=item}}
{{ID table
|displayname=Spider Spawn Egg
|spritetype=item
|nameid=spider_spawn_egg
|form=item}}
{{ID table
|displayname=Squid Spawn Egg
|spritetype=item
|nameid=squid_spawn_egg
|form=item}}
{{ID table
|displayname=Stray Spawn Egg
|spritetype=item
|nameid=stray_spawn_egg
|form=item}}
{{ID table
|displayname=Strider Spawn Egg
|spritetype=item
|nameid=strider_spawn_egg
|form=item}}
{{ID table
|displayname=Tadpole Spawn Egg
|spritetype=item
|nameid=tadpole_spawn_egg
|form=item}}
{{ID table
|displayname=Trader Llama Spawn Egg
|spritetype=item
|nameid=trader_llama_spawn_egg
|form=item}}
{{ID table
|displayname=Tropical Fish Spawn Egg
|spritetype=item
|nameid=tropical_fish_spawn_egg
|form=item}}
{{ID table
|displayname=Turtle Spawn Egg
|spritetype=item
|nameid=turtle_spawn_egg
|form=item}}
{{ID table
|displayname=Vex Spawn Egg
|spritetype=item
|nameid=vex_spawn_egg
|form=item}}
{{ID table
|displayname=Villager Spawn Egg
|spritetype=item
|nameid=villager_spawn_egg
|form=item}}
{{ID table
|displayname=Vindicator Spawn Egg
|spritetype=item
|nameid=vindicator_spawn_egg
|form=item}}
{{ID table
|displayname=Wandering Trader Spawn Egg
|spritetype=item
|nameid=wandering_trader_spawn_egg
|form=item}}
{{ID table
|displayname=Warden Spawn Egg
|spritetype=item
|nameid=warden_spawn_egg
|form=item}}
{{ID table
|displayname=Witch Spawn Egg
|spritetype=item
|nameid=witch_spawn_egg
|form=item}}
{{ID table
|displayname=Wither Spawn Egg
|spritetype=item
|nameid=wither_spawn_egg
|form=item}}
{{ID table
|displayname=Wither Skeleton Spawn Egg
|spritetype=item
|nameid=wither_skeleton_spawn_egg
|form=item}}
{{ID table
|displayname=Wolf Spawn Egg
|spritetype=item
|nameid=wolf_spawn_egg
|form=item}}
{{ID table
|displayname=Zoglin Spawn Egg
|spritetype=item
|nameid=zoglin_spawn_egg
|form=item}}
{{ID table
|displayname=Zombie Spawn Egg
|spritetype=item
|nameid=zombie_spawn_egg
|form=item}}
{{ID table
|displayname=Zombie Horse Spawn Egg
|spritetype=item
|nameid=zombie_horse_spawn_egg
|form=item}}
{{ID table
|displayname=Zombie Villager Spawn Egg
|spritetype=item
|nameid=zombie_villager_spawn_egg
|form=item}}
{{ID table
|displayname=Zombified Piglin Spawn Egg
|spritetype=item
|nameid=zombified_piglin_spawn_egg
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|showaliasids=y
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=item.spawn_egg.name
|spritename=chicken-spawn-egg
|spritetype=item
|nameid=spawn_egg
|aliasid=spawn_egg / 0
|id=718
|form=item
|translationkey=-}}
{{ID table
|displayname=Spawn Agent
|spritetype=item
|nameid=agent_spawn_egg
|aliasid=spawn_egg / 56
|id=489
|form=item
|translationkey=item.spawn_egg.entity.agent.name}}
{{ID table
|displayname=Spawn Allay
|spritename=Allay Spawn Egg
|spritetype=item
|nameid=allay_spawn_egg
|aliasid=spawn_egg / 134
|id=639
|form=item
|translationkey=item.spawn_egg.entity.allay.name}}
{{ID table
|displayname=Spawn Axolotl
|spritename=Axolotl Spawn Egg
|spritetype=item
|nameid=axolotl_spawn_egg
|aliasid=spawn_egg / 130
|id=503
|form=item
|translationkey=item.spawn_egg.entity.axolotl.name}}
{{ID table
|displayname=Spawn Bat
|spritetype=item
|nameid=bat_spawn_egg
|aliasid=spawn_egg / 19
|id=455
|form=item
|translationkey=item.spawn_egg.entity.bat.name}}
{{ID table
|displayname=Spawn Bee
|spritetype=item
|nameid=bee_spawn_egg
|aliasid=spawn_egg / 122
|id=496
|form=item
|translationkey=item.spawn_egg.entity.bee.name}}
{{ID table
|displayname=Spawn Blaze
|spritetype=item
|nameid=blaze_spawn_egg
|aliasid=spawn_egg / 43
|id=458
|form=item
|translationkey=item.spawn_egg.entity.blaze.name}}
{{ID table
|displayname=Spawn Camel
|spritename=Camel Spawn Egg
|spritetype=item
|nameid=camel_spawn_egg
|aliasid=spawn_egg / 138
|id=663
|form=item
|translationkey=item.spawn_egg.entity.camel.name}}
{{ID table
|displayname=Spawn Cat
|spritetype=item
|nameid=cat_spawn_egg
|aliasid=spawn_egg / 75
|id=490
|form=item
|translationkey=item.spawn_egg.entity.cat.name}}
{{ID table
|displayname=Spawn Cave Spider
|spritetype=item
|nameid=cave_spider_spawn_egg
|aliasid=spawn_egg / 40
|id=459
|form=item
|translationkey=item.spawn_egg.entity.cave_spider.name}}
{{ID table
|displayname=Spawn Chicken
|spritetype=item
|nameid=chicken_spawn_egg
|aliasid=spawn_egg / 10
|id=437
|form=item
|translationkey=item.spawn_egg.entity.chicken.name}}
{{ID table
|displayname=Spawn Cod
|spritetype=item
|nameid=cod_spawn_egg
|aliasid=spawn_egg / 112
|id=482
|form=item
|translationkey=item.spawn_egg.entity.cod.name}}
{{ID table
|displayname=Spawn Cow
|spritetype=item
|nameid=cow_spawn_egg
|aliasid=spawn_egg / 11
|id=438
|form=item
|translationkey=item.spawn_egg.entity.cow.name}}
{{ID table
|displayname=Spawn Creeper
|spritetype=item
|nameid=creeper_spawn_egg
|aliasid=spawn_egg / 33
|id=443
|form=item
|translationkey=item.spawn_egg.entity.creeper.name}}
{{ID table
|displayname=Spawn Dolphin
|spritetype=item
|nameid=dolphin_spawn_egg
|aliasid=spawn_egg / 31
|id=486
|form=item
|translationkey=item.spawn_egg.entity.dolphin.name}}
{{ID table
|displayname=Spawn Donkey
|spritetype=item
|nameid=donkey_spawn_egg
|aliasid=spawn_egg / 24
|id=467
|form=item
|translationkey=item.spawn_egg.entity.donkey.name}}
{{ID table
|displayname=Spawn Drowned
|spritetype=item
|nameid=drowned_spawn_egg
|aliasid=spawn_egg / 110
|id=485
|form=item
|translationkey=item.spawn_egg.entity.drowned.name}}
{{ID table
|displayname=Spawn Elder Guardian
|spritetype=item
|nameid=elder_guardian_spawn_egg
|aliasid=spawn_egg / 50
|id=473
|form=item
|translationkey=item.spawn_egg.entity.elder_guardian.name}}
{{ID table
|displayname=Spawn Ender Dragon
|spritetype=item
|nameid=ender_dragon_spawn_egg
|aliasid=spawn_egg / 53
|id=508
|form=item
|translationkey=item.spawn_egg.entity.ender_dragon.name}}
{{ID table
|displayname=Spawn Enderman
|spritetype=item
|nameid=enderman_spawn_egg
|aliasid=spawn_egg / 38
|id=444
|form=item
|translationkey=item.spawn_egg.entity.enderman.name}}
{{ID table
|displayname=Spawn Endermite
|spritetype=item
|nameid=endermite_spawn_egg
|aliasid=spawn_egg / 55
|id=462
|form=item
|translationkey=item.spawn_egg.entity.endermite.name}}
{{ID table
|displayname=Spawn Evoker
|spritetype=item
|nameid=evoker_spawn_egg
|aliasid=spawn_egg / 104
|id=477
|form=item
|translationkey=item.spawn_egg.entity.evocation_illager.name}}
{{ID table
|displayname=Spawn Fox
|spritetype=item
|nameid=fox_spawn_egg
|aliasid=spawn_egg / 121
|id=492
|form=item
|translationkey=item.spawn_egg.entity.fox.name}}
{{ID table
|displayname=Spawn Frog
|spritetype=item
|nameid=frog_spawn_egg
|aliasid=spawn_egg / 132
|id=636
|form=item
|translationkey=item.spawn_egg.entity.frog.name}}
{{ID table
|displayname=Spawn Ghast
|spritetype=item
|nameid=ghast_spawn_egg
|aliasid=spawn_egg / 41
|id=456
|form=item
|translationkey=item.spawn_egg.entity.ghast.name}}
{{ID table
|displayname=Spawn Glow Squid
|spritename=glow-squid-spawn-egg
|spritetype=item
|nameid=glow_squid_spawn_egg
|aliasid=spawn_egg / 129
|id=505
|form=item
|translationkey=item.spawn_egg.entity.glow_squid.name}}
{{ID table
|displayname=Spawn Goat
|spritename=spawn-goat
|spritetype=item
|nameid=goat_spawn_egg
|aliasid=spawn_egg / 128
|id=504
|form=item
|translationkey=item.spawn_egg.entity.goat.name}}
{{ID table
|displayname=Spawn Guardian
|spritetype=item
|nameid=guardian_spawn_egg
|aliasid=spawn_egg / 49
|id=463
|form=item
|translationkey=item.spawn_egg.entity.guardian.name}}
{{ID table
|displayname=Spawn Hoglin
|spritetype=item
|nameid=hoglin_spawn_egg
|aliasid=spawn_egg / 124
|id=498
|form=item
|translationkey=item.spawn_egg.entity.hoglin.name}}
{{ID table
|displayname=Spawn Horse
|spritetype=item
|nameid=horse_spawn_egg
|aliasid=spawn_egg / 23
|id=460
|form=item
|translationkey=item.spawn_egg.entity.horse.name}}
{{ID table
|displayname=Spawn Husk
|spritetype=item
|nameid=husk_spawn_egg
|aliasid=spawn_egg / 47
|id=465
|form=item
|translationkey=item.spawn_egg.entity.husk.name}}
{{ID table
|displayname=Spawn Iron Golem
|spritetype=item
|nameid=iron_golem_spawn_egg
|aliasid=spawn_egg / 20
|id=506
|form=item
|translationkey=item.spawn_egg.entity.iron_golem.name}}
{{ID table
|displayname=Spawn Llama
|spritetype=item
|nameid=llama_spawn_egg
|aliasid=spawn_egg / 29
|id=475
|form=item
|translationkey=item.spawn_egg.entity.llama.name}}
{{ID table
|displayname=Spawn Magma Cube
|spritetype=item
|nameid=magma_cube_spawn_egg
|aliasid=spawn_egg / 42
|id=457
|form=item
|translationkey=item.spawn_egg.entity.magma_cube.name}}
{{ID table
|displayname=Spawn Mooshroom
|spritetype=item
|nameid=mooshroom_spawn_egg
|aliasid=spawn_egg / 16
|id=442
|form=item
|translationkey=item.spawn_egg.entity.mooshroom.name}}
{{ID table
|displayname=Spawn Mule
|spritetype=item
|nameid=mule_spawn_egg
|aliasid=spawn_egg / 25
|id=468
|form=item
|translationkey=item.spawn_egg.entity.mule.name}}
{{ID table
|displayname=Spawn NPC
|spritetype=item
|nameid=npc_spawn_egg
|aliasid=spawn_egg / 51
|id=472
|form=item
|translationkey=item.spawn_egg.entity.npc.name}}
{{ID table
|displayname=Spawn Ocelot
|spritetype=item
|nameid=ocelot_spawn_egg
|aliasid=spawn_egg / 22
|id=453
|form=item
|translationkey=item.spawn_egg.entity.ocelot.name}}
{{ID table
|displayname=Spawn Panda
|spritetype=item
|nameid=panda_spawn_egg
|aliasid=spawn_egg / 113
|id=491
|form=item
|translationkey=item.spawn_egg.entity.panda.name}}
{{ID table
|displayname=Spawn Parrot
|spritetype=item
|nameid=parrot_spawn_egg
|aliasid=spawn_egg / 30
|id=480
|form=item
|translationkey=item.spawn_egg.entity.parrot.name}}
{{ID table
|displayname=Spawn Phantom
|spritetype=item
|nameid=phantom_spawn_egg
|aliasid=spawn_egg / 58
|id=488
|form=item
|translationkey=item.spawn_egg.entity.phantom.name}}
{{ID table
|displayname=Spawn Pig
|spritetype=item
|nameid=pig_spawn_egg
|aliasid=spawn_egg / 12
|id=439
|form=item
|translationkey=item.spawn_egg.entity.pig.name}}
{{ID table
|displayname=Spawn Piglin Brute
|spritetype=item
|nameid=piglin_brute_spawn_egg
|aliasid=spawn_egg / 127
|id=501
|form=item
|translationkey=item.spawn_egg.entity.piglin_brute.name}}
{{ID table
|displayname=Spawn Piglin
|spritetype=item
|nameid=piglin_spawn_egg
|aliasid=spawn_egg / 123
|id=499
|form=item
|translationkey=item.spawn_egg.entity.piglin.name}}
{{ID table
|displayname=Spawn Pillager
|spritetype=item
|nameid=pillager_spawn_egg
|aliasid=spawn_egg / 114
|id=493
|form=item
|translationkey=item.spawn_egg.entity.pillager.name}}
{{ID table
|displayname=Spawn Polar Bear
|spritetype=item
|nameid=polar_bear_spawn_egg
|aliasid=spawn_egg / 28
|id=474
|form=item
|translationkey=item.spawn_egg.entity.polar_bear.name}}
{{ID table
|displayname=Spawn Pufferfish
|spritetype=item
|nameid=pufferfish_spawn_egg
|aliasid=spawn_egg / 108
|id=483
|form=item
|translationkey=item.spawn_egg.entity.pufferfish.name}}
{{ID table
|displayname=Spawn Rabbit
|spritetype=item
|nameid=rabbit_spawn_egg
|aliasid=spawn_egg / 18
|id=461
|form=item
|translationkey=item.spawn_egg.entity.rabbit.name}}
{{ID table
|displayname=Spawn Ravager
|spritetype=item
|nameid=ravager_spawn_egg
|aliasid=spawn_egg / 59
|id=495
|form=item
|translationkey=item.spawn_egg.entity.ravager.name}}
{{ID table
|displayname=Spawn Salmon
|spritetype=item
|nameid=salmon_spawn_egg
|aliasid=spawn_egg / 109
|id=484
|form=item
|translationkey=item.spawn_egg.entity.salmon.name}}
{{ID table
|displayname=Spawn Sheep
|spritetype=item
|nameid=sheep_spawn_egg
|aliasid=spawn_egg / 13
|id=440
|form=item
|translationkey=item.spawn_egg.entity.sheep.name}}
{{ID table
|displayname=Spawn Shulker
|spritetype=item
|nameid=shulker_spawn_egg
|aliasid=spawn_egg / 54
|id=471
|form=item
|translationkey=item.spawn_egg.entity.shulker.name}}
{{ID table
|displayname=Spawn Silverfish
|spritetype=item
|nameid=silverfish_spawn_egg
|aliasid=spawn_egg / 39
|id=445
|form=item
|translationkey=item.spawn_egg.entity.silverfish.name}}
{{ID table
|displayname=Spawn Skeleton Horse
|spritetype=item
|nameid=skeleton_horse_spawn_egg
|aliasid=spawn_egg / 26
|id=469
|form=item
|translationkey=item.spawn_egg.entity.skeleton_horse.name}}
{{ID table
|displayname=Spawn Skeleton
|spritetype=item
|nameid=skeleton_spawn_egg
|aliasid=spawn_egg / 34
|id=446
|form=item
|translationkey=item.spawn_egg.entity.skeleton.name}}
{{ID table
|displayname=Spawn Slime
|spritetype=item
|nameid=slime_spawn_egg
|aliasid=spawn_egg / 37
|id=447
|form=item
|translationkey=item.spawn_egg.entity.slime.name}}
{{ID table
|displayname=Spawn Sniffer
|spritetype=item
|nameid=sniffer_spawn_egg
|aliasid=spawn_egg / 139
|id=502
|form=item
|translationkey=item.spawn_egg.entity.sniffer.name}}
{{ID table
|displayname=Spawn Snow Golem
|spritetype=item
|nameid=snow_golem_spawn_egg
|aliasid=spawn_egg / 21
|id=507
|form=item
|translationkey=item.spawn_egg.entity.snow_golem.name}}
{{ID table
|displayname=Spawn Spider
|spritetype=item
|nameid=spider_spawn_egg
|aliasid=spawn_egg / 35
|id=448
|form=item
|translationkey=item.spawn_egg.entity.spider.name}}
{{ID table
|displayname=Spawn Squid
|spritetype=item
|nameid=squid_spawn_egg
|aliasid=spawn_egg / 17
|id=452
|form=item
|translationkey=item.spawn_egg.entity.squid.name}}
{{ID table
|displayname=Spawn Stray
|spritetype=item
|nameid=stray_spawn_egg
|aliasid=spawn_egg / 46
|id=464
|form=item
|translationkey=item.spawn_egg.entity.stray.name}}
{{ID table
|displayname=Spawn Strider
|spritetype=item
|nameid=strider_spawn_egg
|aliasid=spawn_egg / 125
|id=497
|form=item
|translationkey=item.spawn_egg.entity.strider.name}}
{{ID table
|displayname=Spawn Tadpole
|spritetype=item
|nameid=tadpole_spawn_egg
|aliasid=spawn_egg / 133
|id=637
|form=item
|translationkey=item.spawn_egg.entity.tadpole.name}}
{{ID table
|displayname=Spawn Trader Llama
|spritetype=item
|nameid=trader_llama_spawn_egg
|aliasid=spawn_egg / 157
|id=656
|form=item
|translationkey=item.spawn_egg.entity.trader_llama.name}}
{{ID table
|displayname=Spawn Tropical Fish
|spritetype=item
|nameid=tropical_fish_spawn_egg
|aliasid=spawn_egg / 111
|id=481
|form=item
|translationkey=item.spawn_egg.entity.tropicalfish.name}}
{{ID table
|displayname=Spawn Sea Turtle
|spritetype=item
|nameid=turtle_spawn_egg
|aliasid=spawn_egg / 74
|id=487
|form=item
|translationkey=item.spawn_egg.entity.turtle.name}}
{{ID table
|displayname=Spawn Vex
|spritetype=item
|nameid=vex_spawn_egg
|aliasid=spawn_egg / 105
|id=478
|form=item
|translationkey=item.spawn_egg.entity.vex.name}}
{{ID table
|displayname=Spawn Villager
|spritetype=item
|nameid=villager_spawn_egg
|aliasid=spawn_egg / 15, 115
|id=451
|form=item
|translationkey=item.spawn_egg.entity.villager_v2.name, item.spawn_egg.entity.villager.name}}
{{ID table
|displayname=Spawn Vindicator
|spritetype=item
|nameid=vindicator_spawn_egg
|aliasid=spawn_egg / 57
|id=476
|form=item
|translationkey=item.spawn_egg.entity.vindicator.name}}
{{ID table
|displayname=Spawn Wandering Trader
|spritetype=item
|nameid=wandering_trader_spawn_egg
|aliasid=spawn_egg / 118
|id=494
|form=item
|translationkey=item.spawn_egg.entity.wandering_trader.name}}
{{ID table
|displayname=Spawn Warden
|spritetype=item
|nameid=warden_spawn_egg
|aliasid=spawn_egg / 131
|id=640
|form=item
|translationkey=item.spawn_egg.entity.warden.name}}
{{ID table
|displayname=Spawn Witch
|spritetype=item
|nameid=witch_spawn_egg
|aliasid=spawn_egg / 45
|id=454
|form=item
|translationkey=item.spawn_egg.entity.witch.name}}
{{ID table
|displayname=Spawn Wither
|spritetype=item
|nameid=wither_spawn_egg
|aliasid=spawn_egg / 52
|id=509
|form=item
|translationkey=item.spawn_egg.entity.wither.name}}
{{ID table
|displayname=Spawn Wither Skeleton
|spritetype=item
|nameid=wither_skeleton_spawn_egg
|aliasid=spawn_egg / 48
|id=466
|form=item
|translationkey=item.spawn_egg.entity.wither_skeleton.name}}
{{ID table
|displayname=Spawn Wolf
|spritetype=item
|nameid=wolf_spawn_egg
|aliasid=spawn_egg / 14
|id=441
|form=item
|translationkey=item.spawn_egg.entity.wolf.name}}
{{ID table
|displayname=Spawn Zoglin
|spritetype=item
|nameid=zoglin_spawn_egg
|aliasid=spawn_egg / 126
|id=500
|form=item
|translationkey=item.spawn_egg.entity.zoglin.name}}
{{ID table
|displayname=Spawn Zombie Horse
|spritetype=item
|nameid=zombie_horse_spawn_egg
|aliasid=spawn_egg / 27
|id=470
|form=item
|translationkey=item.spawn_egg.entity.zombie_horse.name}}
{{ID table
|displayname=Spawn Zombified Piglin
|spritetype=item
|nameid=zombie_pigman_spawn_egg
|aliasid=spawn_egg / 36
|id=450
|form=item
|translationkey=item.spawn_egg.entity.zombie_pigman.name}}
{{ID table
|displayname=Spawn Zombie
|spritetype=item
|nameid=zombie_spawn_egg
|aliasid=spawn_egg / 32
|id=449
|form=item
|translationkey=item.spawn_egg.entity.zombie.name}}
{{ID table
|displayname=Spawn Zombie Villager
|spritetype=item
|nameid=zombie_villager_spawn_egg
|aliasid=spawn_egg / 44, 116
|id=479
|form=item
|translationkey=item.spawn_egg.entity.zombie_villager_v2.name, item.spawn_egg.entity.zombie_villager.name
|foot=1}}

=== Item data ===
{{el|java}}:
{{main|Player.dat format}}
<div class="treeview">
* {{nbt|compound|tag}}: The item's '''tag''' tag.
{{:Player.dat_format/Entity Spawners}}
</div>

{{el|bedrock}}:
: {{IN|bedrock}}, spawn eggs have no additional tags.
: See [[Bedrock Edition level format/Item format]].

== History ==
{{for|information on the historical colors of spawn eggs|Spawn Egg colors}}
{{Info needed|{{Edition|BE}} is outdated}}
{{History|java}}
{{History||1.1|snap=11w49a|[[File:Creeper Spawn Egg JE1.png|32px]] [[File:Spider Spawn Egg JE1.png|32px]] [[File:Skeleton Spawn Egg JE1.png|32px]] [[File:Zombie Spawn Egg JE1.png|32px]] [[File:Slime Spawn Egg JE1.png|32px]] [[File:Ghast Spawn Egg JE1.png|32px]] [[File:Zombie Pigman Spawn Egg JE1.png|32px]] [[File:Enderman Spawn Egg JE1.png|32px]] [[File:Cave Spider Spawn Egg JE1.png|32px]] [[File:Silverfish Spawn Egg JE1.png|32px]] [[File:Blaze Spawn Egg JE1.png|32px]] [[File:Magma Cube Spawn Egg JE1.png|32px]] [[File:Pig Spawn Egg JE1.png|32px]] [[File:Sheep Spawn Egg JE1.png|32px]] [[File:Cow Spawn Egg JE1.png|32px]] [[File:Chicken Spawn Egg JE1.png|32px]] [[File:Squid Spawn Egg JE1.png|32px]] [[File:Wolf Spawn Egg JE1.png|32px]] [[File:Mooshroom Spawn Egg JE1.png|32px]] [[File:Villager Spawn Egg JE1.png|32px]] Added spawn eggs for [[creeper]]s, [[spider]]s, [[skeleton]]s, [[zombie]]s, [[slime]]s, [[ghast]]s, [[zombie pigman|zombie pigmen]], [[endermen]], [[cave spider]]s, [[silverfish]], [[blaze]]s, [[magma cube]]s, [[pig]]s, [[sheep]], [[cow]]s, [[chicken]]s, [[squid]], [[wolf|wolves]], [[mooshroom]]s and [[villager]]s. 
|The spawn egg has a single texture file, which is [[tint]]ed different colors.}}
{{History|||snap=12w01a|[[File:Creeper Spawn Egg JE2 BE1.png|32px]] [[File:Spider Spawn Egg JE2 BE1.png|32px]] [[File:Skeleton Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Spawn Egg JE2 BE1.png|32px]] [[File:Slime Spawn Egg JE2 BE1.png|32px]] [[File:Ghast Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Pigman Spawn Egg JE2 BE1.png|32px]] [[File:Enderman Spawn Egg JE2 BE1.png|32px]] [[File:Cave Spider Spawn Egg JE2 BE1.png|32px]] [[File:Silverfish Spawn Egg JE2 BE2.png|32px]] [[File:Blaze Spawn Egg JE2 BE1.png|32px]] [[File:Magma Cube Spawn Egg JE2 BE1.png|32px]] [[File:Pig Spawn Egg JE2 BE1.png|32px]] [[File:Sheep Spawn Egg JE2 BE1.png|32px]] [[File:Cow Spawn Egg JE2 BE1.png|32px]] [[File:Chicken Spawn Egg JE2 BE1.png|32px]] [[File:Squid Spawn Egg JE2 BE1.png|32px]] [[File:Wolf Spawn Egg JE2 BE1.png|32px]] [[File:Mooshroom Spawn Egg JE2 BE1.png|32px]] [[File:Villager Spawn Egg JE2 BE1.png|32px]] The spawn egg and its markings now have their textures separated, allowing them to have entirely different colors. This allows their colors to better match the colors of the [[mob]]s themselves.}}
{{History||1.2.1|snap=12w03a|Spawn eggs can now be placed into a [[dispenser]]. Activating the dispenser spawns the mob, instead of dispensing the egg as an [[item]].
|Spawn eggs are now stackable, which allows dispensers to hold more than nine of them at one time.}}
{{History|||snap=12w04a|[[File:Ocelot Spawn Egg JE1 BE1.png|32px]] Added [[ocelot]] spawn eggs with the addition of the ocelot itself.
|Before 1.2, edited spawn eggs for [[snow golem]]s, [[ender dragon]]s and [[giant]]s (and other "unspawnable" [[mob]]s) produced mobs of their types. Now, this is restricted to those eggs available in the [[creative]] [[inventory]].}}
{{History||1.3.1|snap=12w18a|[[Villager]]s spawned from spawn eggs were always farmers before this update and now their professions are randomized.}}
{{History||1.4.2|snap=12w32a|[[Zombie villager]]s can now be spawned using [[zombie]] spawn eggs.
|[[Sheep]] from spawn eggs can now spawn naturally-colored sheep (white, gray, brown, pink, etc.).}}
{{History|||snap=12w36a|[[Wither skeleton]]s now have a high chance to spawn from a [[skeleton]] spawn egg, if the [[player]] is in [[the Nether]].
|[[Skeleton]]s on [[spider jockey]]s can now be replaced with [[wither skeleton]]s when using [[spider]] spawn eggs in the Nether.}}
{{History|||snap=12w38a|[[File:Witch Spawn Egg JE1 BE1.png|32px]] [[File:Bat Spawn Egg JE1 BE1.png|32px]] Added [[witch]] and [[bat]] spawn eggs.}}
{{History||1.4.4|snap=pre|Baby [[mob]]s are now spawn-able by right-clicking a mob with a corresponding mob egg. Although, this doesn't work with [[zombie]]s.}}
{{History||1.5|snap=January 7, 2013|slink={{tweet|Dinnerbone|288322623916617728}}|[[Dinnerbone]] tweeted the first image of a renamed mob appearing in a [[death messages|death message]].}}
{{History|||snap=13w02a|[[Mob]]s spawned from renamed eggs now have the name of the egg and the names appear in death messages.
|Mobs can now display their custom name as nametag using an NBT tag.}}
{{History||1.6.1|snap=13w16a|[[File:Horse Spawn Egg JE1 BE1.png|32px]] Added [[horse]] spawn eggs.}}
{{History|||snap=13w24a|Spawn eggs now work on [[water]].}}
{{History|||snap=1.6|Renaming a spawn egg "''Dinnerbone''" or "''Grumm''" now cause the [[mob]] to spawn upside-down.}}
{{History||1.7.4|snap=13w48b|Renaming a [[sheep]] or sheep spawn egg "''jeb_''" give it a rainbow wool changing effect. This does not affect the wool dropped after death or [[shear]]ing, however.}}
{{History||1.8|snap=14w11a|[[File:Endermite Spawn Egg JE1 BE1.png|32px]] Added [[endermite]] spawn eggs.}}
{{History|||snap=14w25a|[[File:Guardian Spawn Egg JE1 BE1.png|32px]] Added [[guardian]] spawn eggs.}}
{{History|||snap=14w27a|[[File:Rabbit Spawn Egg JE1 BE1.png|32px]] Added [[rabbit]] spawn eggs.}}
{{History|||snap=14w28b|Spawn eggs can now be used to program [[monster spawner]] blocks.}}
{{History||1.9|snap=15w31a|[[File:Shulker Spawn Egg JE1 BE2.png|32px]] Added [[shulker]] spawn eggs.}}
{{History|||snap=15w33a|Spawn eggs can no longer be addressed by numeric data id, like: <code>give @p spawn_egg 1 50</code>. The spawnable [[entity]] from a spawn egg is now addressed by a datatag: <code>/give @p spawn_egg 1 0 <nowiki>{EntityTag:{id:"Creeper"}}</code>.}}
{{History||1.10|snap=16w20a|[[File:Polar Bear Spawn Egg JE1 BE1.png|32px]] [[File:Wither Skeleton Spawn Egg JE1 BE1.png|32px]] [[File:Stray Spawn Egg JE1 BE2.png|32px]] [[File:Husk Spawn Egg JE1 BE2.png|32px]] [[File:Elder Guardian Spawn Egg JE1 BE1.png|32px]] [[File:Cat Spawn Egg JE1.png|32px]] [[File:Donkey Spawn Egg JE1 BE1.png|32px]] [[File:Mule Spawn Egg JE1 BE1.png|32px]] [[File:Skeleton Horse Spawn Egg JE1 BE1.png|32px]] [[File:Zombie Horse Spawn Egg JE1 BE2.png|32px]] Added spawn eggs for [[polar bear]]s, [[wither skeleton]]s, [[stray]]s, [[husk]]s, [[elder guardian]], [[cat]]s, donkeys, mules, skeleton horses and zombie horses.}}
{{History|||snap=pre2|Removed spawn eggs for wither skeletons, strays, husks, elder guardians, cats, donkeys, mules, skeleton horses and zombie horses that were added in [[16w20a]].}}
{{History||1.11|snap=16w32a|[[File:Polar Bear Spawn Egg JE1 BE1.png|32px]] [[File:Wither Skeleton Spawn Egg JE1 BE1.png|32px]] [[File:Stray Spawn Egg JE1 BE2.png|32px]] [[File:Husk Spawn Egg JE1 BE2.png|32px]] [[File:Elder Guardian Spawn Egg JE1 BE1.png|32px]] [[File:Donkey Spawn Egg JE1 BE1.png|32px]] [[File:Mule Spawn Egg JE1 BE1.png|32px]] [[File:Skeleton Horse Spawn Egg JE1 BE1.png|32px]] [[File:Zombie Horse Spawn Egg JE1 BE2.png|32px]] Re-added the spawn eggs that were removed in [[1.10-pre2]], except the [[cat]] spawn egg.
|[[File:Zombie Villager Spawn Egg JE1 BE1.png|32px]] Added a [[zombie villager]] spawn egg. It can spawn only zombie farmers.
|Using a spawn egg on top of a block such as a [[fence]] no longer cause the spawned [[mob]] to fall inside the fence.<ref>{{bug|MC-88096|| When using spawn eggs on fences the mobs fall through}} – resolved as "Fixed"</ref>}}
{{History|||snap=16w32b|The [[zombie villager]] spawn egg now spawns different zombie professions.}}
{{History|||snap=16w39a|[[File:Evoker Spawn Egg JE1 BE1.png|32px]] [[File:Llama Spawn Egg JE1 BE1.png|32px]] [[File:Vex Spawn Egg JE1 BE1.png|32px]] [[File:Vindicator Spawn Egg JE1 BE1.png|32px]] Added spawn eggs for [[evoker]]s, [[llama]]s, [[vex]]es and [[vindicator]]s.}}
{{History||1.12|snap=17w13a|[[File:Parrot Spawn Egg JE1 BE1.png|32px]] Added spawn egg for [[parrot]]s.}}
{{History||1.13|snap=17w47a|The different {{nbt|compound|EntityTag}} [[entity]] IDs for the <code>spawn_egg</code> ID have now been split up into their own IDs.
|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 383.}}
{{History|||snap=18w07a|[[File:Phantom Spawn Egg JE1.png|32px]] [[File:Turtle Spawn Egg JE1 BE1.png|32px]] Added spawn eggs for [[phantom]]s and [[turtle]]s.}}
{{History|||snap=18w08b|[[File:Cod Spawn Egg JE1 BE2.png|32px]] [[File:Salmon Spawn Egg JE1 BE2.png|32px]] [[File:Pufferfish Spawn Egg JE1 BE2.png|32px]] Added spawn eggs for the 3 [[fish mob]] variants: cod, salmon, and "puffer fish".}}
{{History|||snap=18w10a|[[File:Tropical Fish Spawn Egg JE1 BE2.png|32px]] Added a spawn egg for the new [[tropical fish]].}}
{{History|||snap=18w11a|[[File:Drowned Spawn Egg JE1 BE1.png|32px]] Added [[drowned]] spawn eggs.}}
{{History|||snap=18w15a|[[File:Dolphin Spawn Egg JE1 BE1.png|32px]] Added [[dolphin]] spawn eggs.}}
{{History|||snap=18w19a|[[File:Phantom Spawn Egg JE2 BE1.png|32px]] The [[phantom]] spawn egg has been changed to look more like [[mob]]'s updated texture.}}
{{History|||snap=18w20a|"Spawn ''x''" has been changed to "''x'' Spawn Egg".}}
{{History||1.14|snap=18w43a|[[File:Panda Spawn Egg JE1.png|32px]] [[File:Pillager Spawn Egg JE1 BE1.png|32px]] [[File:Ravager Spawn Egg JE1 BE1.png|32px]] Added [[panda]], [[pillager]] and [[ravager|"illager beast"]] spawn eggs.}}
{{History|||snap=18w44a|[[File:Cat Spawn Egg JE2.png|32px]] Re-added [[cat]] spawn eggs.}}
{{History|||snap=19w05a|The "illager beast" spawn egg has been renamed to "ravager" spawn egg.
|[[File:Wandering Trader Spawn Egg JE1.png|32px]] [[File:Trader Llama Spawn Egg JE1 BE1.png|32px]] Added [[wandering trader]] and [[trader llama]] spawn eggs.}}
{{History|||snap=19w07a|[[File:Fox Spawn Egg JE1 BE1.png|32px]] Added [[fox]] spawn eggs.}}
{{History||1.15|snap=19w34a|[[File:Bee Spawn Egg JE1.png|32px]] Added [[bee]] spawn eggs.}}
{{History|||snap=19w41a|[[File:Bee Spawn Egg JE2 BE1.png|32px]] The texture of the bee spawn egg has been changed.}}
{{History|||snap=19w46a|[[Drowned]], [[husk]], [[zombie]], and [[zombie villager]] spawn eggs can now be used on adult versions of these [[mob]]s to spawn baby variants.}}
{{History|||snap=Pre-release 1|[[Zombie pigmen]] spawn eggs can now be used on adult zombie pigmen to spawn the baby variant.}}
{{History||September 28, 2019|link={{ytl|OZqNaEX8208&t|t=2h17m19s}}|[[File:Hoglin Spawn Egg BE1.png|32px]] [[File:Piglin spawn egg.png|32px]] [[Hoglin]] and [[piglin]] spawn eggs were shown.}}
{{History||1.16|snap=20w06a|[[File:Hoglin Spawn Egg JE1.png|30px]] Added [[hoglin]] spawn eggs. 
|Currently, the hoglin spawn egg substitutes the [[zombie pigman]]'s spawn egg texture.}}
{{History|||snap=20w07a|[[File:Piglin Spawn Egg JE1.png|32px]] Added [[piglin]] spawn eggs.
|[[File:Hoglin Spawn Egg JE2.png|30px]] The texture of the hoglin spawn egg has been changed.}}
{{History|||snap=20w09a|"Zombie Pigman Spawn Egg" has been renamed to "Zombified Piglin Spawn Egg".}}
{{History|||snap=20w13a|[[File:Strider Spawn Egg JE1 BE1.png|32px]] Added [[strider]] spawn eggs.}}
{{History|||snap=20w14a|[[File:Zoglin Spawn Egg JE1 BE1.png|32px]] Added [[zoglin]] spawn eggs.}}
{{History||1.16.2|snap=20w27a|[[File:Piglin Brute Spawn Egg JE1 BE1.png|32px]] Added [[piglin brute]] spawn eggs.}}
{{History||October 6, 2020|link={{tweet|kingbdogz|1313451032383574017}}|[[File:Warden Spawn Egg (pre-release).png|32px]] [[Kingbdogz]] showed a warden spawn egg.}}
{{History||1.17|snap=20w51a|[[File:Axolotl Spawn Egg JE1 BE1.png|32px]] Added [[axolotl]] spawn eggs.}}
{{History|||snap=21w03a|[[File:Glow Squid Spawn Egg JE1 BE1.png|32px]] Added [[glow squid]] spawn eggs.}}
{{History|||snap=21w13a|[[File:Goat Spawn Egg BE2.png|32px]] Added [[goat]] spawn eggs.}}
{{History||October 16, 2021|link={{ytl|w6zLprHHZOk&t|t=7447s}}|[[File:Frog Spawn Egg (pre-release).png|32px]] [[File:Tadpole Spawn Egg (pre-release).png|32px]] [[Frog]] and [[tadpole]] spawn eggs were shown.}}
{{History||1.19|snap=Deep Dark Experimental Snapshot 1|[[File:Warden Spawn Egg JE1 BE1.png|32px]] Added [[warden]] spawn eggs.}}
{{History|||snap=22w11a|[[File:Frog Spawn Egg JE1 BE1.png|32px]][[File:Tadpole Spawn Egg JE1 BE1.png|32px]] Added [[frog]] and [[tadpole]] spawn eggs.
|As with the warden itself, warden spawn eggs are not added in this snapshot.}}
{{History|||snap=22w12a|[[File:Warden Spawn Egg JE1 BE1.png|32px]] Re-added [[warden]] spawn eggs.}}
{{History|||snap=22w13a|[[File:Allay Spawn Egg JE1 BE1.png|32px]] Added [[allay]] spawn eggs.}}
{{History||1.20<br>(Experimental)|link=1.19.3|snap=22w42a|[[File:Camel Spawn Egg JE1 BE1.png|32px]] Added [[camel]] spawn eggs behind the [[Java Edition 1.20|Update 1.20 experimental datapack]].}}
{{History|||snap=22w43a|[[File:Camel Spawn Egg JE2 BE2.png|32px]] The texture of the camel spawn egg has been changed.}}
{{History||1.19.3|snap=22w44a|[[File:Iron Golem Spawn Egg JE1 BE1.png|32px]] [[File:Snow Golem Spawn Egg JE2 BE1.png|32px]] [[File:Wither Spawn Egg JE1 BE1.png|32px]] [[File:Ender Dragon Spawn Egg JE2 BE1.png|32px]] Added [[iron golem]], [[snow golem]], [[wither]], and [[ender dragon]] spawn eggs. The wither and ender dragon spawn eggs are only available through [[commands]] to prevent accidental destruction of [[Creative]] builds.
|[[File:Polar Bear Spawn Egg JE2 BE2.png|32px]] The texture of the polar bear spawn egg has been changed.<ref>{{bug|MC-242097||Ghast and Polar Bear Spawn Eggs are nearly indistinguishable|Fixed}}</ref>}}
{{History||1.20<br>(Experimental)|link=1.19.4|snap=23w07a|[[File:Sniffer Spawn Egg JE1 BE1.png|32px]] Added [[sniffer]] spawn eggs behind the [[Java Edition 1.20|Update 1.20 experimental datapack]].}}
{{History|||snap=1.19.4-pre1|[[File:Sniffer Spawn Egg JE2.png|32px]] The texture of the sniffer spawn egg has been changed.}}
{{History||1.20|snap=23w12a|Camel and sniffer spawn eggs are now available without using the "Update 1.20" experimental datapack.}}

{{History|pocket alpha}}
{{History||v0.7.0|[[File:Chicken Spawn Egg JE2 BE1.png|32px]] [[File:Sheep Spawn Egg JE2 BE1.png|32px]] [[File:Cow Spawn Egg JE2 BE1.png|32px]] [[File:Pig Spawn Egg JE2 BE1.png|32px]] Added spawn eggs for [[chicken]]s, [[sheep]], [[pig]]s and [[cow]]s.}}
{{History||v0.7.0|All spawn eggs with damage/metadata values 30 and higher, would display a unique texture.}}
{{History||v0.8.0|snap=build 1|The texture of the default spawn egg is now [[File:Chicken Spawn Egg JE2 BE1.png|32px]], instead of having a completely blank texture.}}
{{History||v0.9.0|snap=build 1|[[File:Mooshroom Spawn Egg JE2 BE1.png|32px]] [[File:Creeper Spawn Egg JE2 BE1.png|32px]] [[File:Enderman Spawn Egg JE2 BE1.png|32px]] [[File:Silverfish Spawn Egg BE1.png|32px]] [[File:Skeleton Spawn Egg JE2 BE1.png|32px]] [[File:Slime Spawn Egg JE2 BE1.png|32px]] [[File:Spider Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Pigman Spawn Egg JE2 BE1.png|32px]] [[File:Wolf Spawn Egg JE2 BE1.png|32px]] Added more spawn eggs, including [[mooshroom]], [[creeper]], [[enderman]], [[silverfish]], [[skeleton]], [[slime]], [[spider]], [[zombie]], [[zombie pigman]] and [[wolf]].
|Spawn eggs now have the correct name in the [[inventory]].}}
{{History|||snap=build 2|[[File:Villager Spawn Egg JE2 BE1.png|32px]] Added (Old) [[villager]] spawn eggs.
|Spawn eggs can now be used to program [[monster spawner]] blocks.}}
{{History||v0.11.0|All spawn eggs that are obtained in this version with an invalid damage/metadata value would result in the name of that spawn egg displaying as the following: item.monsterPlacer.name.name.}}
{{History||v0.11.0|snap=build 1|[[File:Squid Spawn Egg JE2 BE1.png|32px]] [[File:Bat Spawn Egg JE1 BE1.png|32px]] Added [[squid]] and [[bat]] spawn eggs.
|[[File:Ghast Spawn Egg JE2 BE1.png|32px]] [[File:Magma Cube Spawn Egg JE2 BE1.png|32px]] [[File:Cave Spider Spawn Egg JE2 BE1.png|32px]] Added [[ghast]], [[magma cube]] and [[cave spider]] spawn eggs, which are currently unobtainable.}}
{{History|||snap=build 3|Added [[cave spider]] spawn eggs to the [[creative]] mode [[inventory]].}}
{{History|||snap=build 8|Added [[magma cube]] spawn eggs to the creative mode inventory.}}
{{History||v0.12.1|snap=build 1|[[File:Blaze Spawn Egg JE2 BE1.png|32px]] [[File:Ocelot Spawn Egg JE1 BE1.png|32px]] [[File:Zombie Villager Spawn Egg JE1 BE1.png|32px]] Added [[blaze]], [[ocelot]], and (Old) [[zombie villager]] spawn eggs.
|Added [[ghast]] spawn eggs to the [[creative]] mode [[inventory]].
|[[Wither skeleton]]s now have a high chance to spawn from an [[skeleton]] spawn egg, if the [[player]] is in [[the Nether]].}}
{{History|||snap=build 9|[[Mob]]s spawned from renamed eggs now have the name of the egg and the names appear in [[death messages]].}}
{{History|||snap=build 12|[[Zombie villager]]s can now be spawned using [[zombie]] spawn eggs.}}
{{History||v0.13.0|snap=build 1|[[File:Rabbit Spawn Egg JE1 BE1.png|32px]] Added [[rabbit]] spawn eggs.}}
{{History||v0.14.0|snap=build 1|[[File:Witch Spawn Egg JE1 BE1.png|32px]] Added [[witch]] spawn eggs.}}
{{History||v0.15.0|snap=build 1|[[File:Horse Spawn Egg JE1 BE1.png|32px]] [[File:Mule Spawn Egg JE1 BE1.png|32px]] [[File:Donkey Spawn Egg JE1 BE1.png|32px]] [[File:Zombie Horse Spawn Egg BE1.png|32px]] [[File:Skeleton Horse Spawn Egg JE1 BE1.png|32px]] [[File:Stray Spawn Egg BE1.png|32px]] [[File:Husk Spawn Egg BE1.png|32px]] [[File:Wither Skeleton Spawn Egg JE1 BE1.png|32px]] Added [[horse]], [[mule]], [[donkey]], [[zombie horse]], [[skeleton horse]], [[stray]], [[husk]] and [[wither skeleton]] spawn eggs to the [[creative]] [[inventory]].}}
{{History||v0.15.1|snap=build 1|The texture of the default spawn egg has been changed from [[File:Chicken Spawn Egg JE2 BE1.png|32px]] to [[File:Spawn Egg.png|32px]].
|The empty spawn egg named "Spawn" is now available through [[inventory]] editing, but crashes the game.{{info needed|How? On use? Simply by being in the inventory?}}}}
{{History||v0.16.0|snap=build 1|[[File:Guardian Spawn Egg JE1 BE1.png|32px]] Added [[guardian]] spawn eggs.
|[[File:Spawn Egg.png|32px]] Added [[elder guardian]] spawn egg without colors, which is currently unavailable in the [[creative]] [[inventory]].
|[[File:NPC Spawn Egg BE1.png|32px]] Added a non-functional [[NPC]] spawn egg.}}
{{History|||snap=build 2|The NPC spawn egg has been removed from the creative inventory.}}
{{History|||snap=build 4|The NPC spawn egg has been removed completely.}}
{{History|||snap=build 5|[[File:Elder Guardian Spawn Egg JE1 BE1.png|32px]] Added [[elder guardian]] spawn eggs to the [[creative]] [[inventory]].}}
{{History|pocket}}
{{History||1.0.0|snap=alpha 0.17.0.1|[[File:Shulker Spawn Egg BE1.png|32px]] [[File:Endermite Spawn Egg JE1 BE1.png|32px]] [[File:Polar Bear Spawn Egg JE1 BE1.png|32px]] Added spawn eggs for [[shulker]]s, [[endermite]]s and [[polar bear]]s.}}
{{History||1.1.0|snap=alpha 1.1.0.0|[[File:Llama Spawn Egg JE1 BE1.png|32px]] [[File:Vindicator Spawn Egg JE1 BE1.png|32px]] [[File:Evoker Spawn Egg JE1 BE1.png|32px]] [[File:Vex Spawn Egg JE1 BE1.png|32px]] Added spawn eggs for [[llama]]s, [[vindicator]]s, [[evoker]]s and [[vex]]es.}}
{{History|||snap=alpha 1.1.0.9|[[File:Husk Spawn Egg JE1 BE2.png|32px]] [[File:Shulker Spawn Egg JE1 BE2.png|32px]] [[File:Silverfish Spawn Egg JE2 BE2.png|32px]] [[File:Stray Spawn Egg JE1 BE2.png|32px]] [[File:Zombie Horse Spawn Egg JE1 BE2.png|32px]] The spawn egg textures for [[husk]]s, [[shulker]]s, [[silverfish]]ses, [[stray]]s and [[zombie horse]]s have been updated; probably due to {{bug|MCPE-18348}}.}}
{{History|bedrock}}
{{History||1.2.0|snap=beta 1.2.0.2|[[File:Parrot Spawn Egg JE1 BE1.png|32px]] [[File:Zombie Villager Spawn Egg JE1 BE1.png|32px]] Added [[parrot]] and [[zombie villager]] spawn eggs.}}
{{History||1.4.0|snap=beta 1.2.13.8|[[File:Drowned Spawn Egg JE1 BE1.png|32px]] Added [[drowned]] spawn eggs.}}
{{History|||snap=beta 1.2.14.2|[[File:Cod Spawn Egg BE1.png|32px]] [[File:Salmon Spawn Egg BE1.png|32px]] [[File:Pufferfish Spawn Egg BE1.png|32px]] [[File:Tropical Fish Spawn Egg BE1.png|32px]] Added spawn eggs for each [[fish]], which have different textures compared to {{JE}}.}}
{{History|||snap=beta 1.2.20.1|[[File:Cod Spawn Egg JE1 BE2.png|32px]] [[File:Salmon Spawn Egg JE1 BE2.png|32px]] [[File:Pufferfish Spawn Egg JE1 BE2.png|32px]] [[File:Tropical Fish Spawn Egg JE1 BE2.png|32px]] The fish spawn egg textures have been made less unique; it matches {{JE}}.
|[[File:Dolphin Spawn Egg JE1 BE1.png|32px]] Added [[dolphin]] spawn eggs.}}
{{History||1.5.0|snap=beta 1.5.0.4|[[File:Turtle Spawn Egg JE1 BE1.png|32px]] Added spawn eggs for [[turtle]]s.}}
{{History||1.6.0|snap=beta 1.6.0.1|[[File:Phantom Spawn Egg JE2 BE1.png|32px]] Added spawn eggs for [[phantom]]s.}}
{{History||1.8.0|snap=beta 1.8.0.8|[[File:Panda Spawn Egg BE1.png|32px]] [[File:Cat Spawn Egg BE1.png|32px]] Added spawn eggs for [[panda]]s and [[cat]]s.
|[[File:NPC Spawn Egg BE1.png|32px]] The NPC spawn egg has been re-added. 
|[[File:Agent Spawn Egg BE1.png|32px]] Added spawn eggs for [[agent]]s.
|[[File:Spawn Egg BE2.png|32px]] Unknown spawn eggs now use a completely black spawn egg as the default texture.
|[[File:Mask Spawn Egg BE1.png|32px]] Added mask spawn egg texture.}}
{{History||1.9.0|snap=beta 1.9.0.0|[[File:Pillager Spawn Egg JE1 BE1.png|32px]] Added [[pillager]] spawn eggs.}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Ravager Spawn Egg JE1 BE1.png|32px]] [[File:Wandering Trader Spawn Egg BE1.png|32px]] [[File:Villager Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Villager Spawn Egg JE1 BE1.png|32px]] Added [[wandering trader]], [[Ravager|"illager beast"]], (New) [[villager]] and (New) [[zombie villager]] spawn eggs.}}
{{History||1.11.0|snap=beta 1.11.0.1|The old villager and old zombie villager spawn eggs have been removed.
|"Spawn Illager Beast" has been renamed to "Spawn Ravager".}}
{{History||1.13.0|snap=beta 1.13.0.1|[[File:Fox Spawn Egg JE1 BE1.png|32px]] Added [[fox]] spawn eggs.}}
{{History||1.14.0|snap=beta 1.14.0.1|[[File:Bee Spawn Egg JE2 BE1.png|32px]] Added [[bee]] spawn eggs.}}
{{History||1.16.0|snap=beta 1.16.0.51|[[File:Hoglin Spawn Egg BE1.png|32px]] [[File:Piglin Spawn Egg BE1.png|32px]] Added [[hoglin]] and [[piglin]] spawn eggs.
|"Spawn Zombie Pigman" has been renamed to "Spawn Zombified Piglin".}}
{{History|||snap=beta 1.16.0.57|[[File:Strider Spawn Egg JE1 BE1.png|32px]] [[File:Zoglin Spawn Egg JE1 BE1.png|32px]] Added [[strider]] and [[zoglin]] spawn eggs.}}
{{History|||snap=beta 1.16.0.59|[[File:Piglin Spawn Egg JE1.png|32px]] [[File:Hoglin Spawn Egg JE2.png|30px]] The textures of the piglin and hoglin spawn eggs have been changed to match [[Java Edition]].}}
{{History||1.16.20|snap=beta 1.16.20.50|[[File:Piglin Brute Spawn Egg JE1 BE1.png|32px]] Added [[piglin brute]] spawn eggs.}}
{{History||1.16.100|snap=beta 1.16.100.56|The different [[entity]] IDs for the <code>spawn_egg</code> ID have now been split up into their own IDs.
|Unused spawn eggs (such as [[Iron Golem]], [[End Crystal]] and [[Wither]]) are completely removed. Attempts to put such spawn eggs in an inventory gives the default spawn egg instead.
|The texture of the default spawn egg is now [[File:Chicken Spawn Egg JE2 BE1.png|32px]], instead of having a completely black texture.}}
{{History||1.16.200|snap=beta 1.16.200.52|[[File:Goat Spawn Egg BE1.png|32px]] Added [[goat]] spawn eggs behind the "Caves and Cliffs" experimental toggle.}}
{{History|||snap=beta 1.16.210.51|[[File:Goat Spawn Egg BE2.png|32px]] The texture for [[goat]] spawn eggs has been changed.}}
{{History||1.16.210|snap=beta 1.16.210.59|[[File:Glow Squid Spawn Egg JE1 BE1.png|32px]] Added [[glow squid]] spawn eggs.}}
{{History|||snap=beta 1.16.210.60|[[Glow squid]] spawn egg is temporarily removed.}}
{{History||1.16.220|snap=beta 1.16.220.50|[[File:Glow Squid Spawn Egg JE1 BE1.png|32px]] Re-added [[glow squid]] spawn egg.}}
{{History||1.17.0|snap=beta 1.16.230.52|[[File:Axolotl Spawn Egg JE1 BE1.png|32px]] Added [[axolotl]] spawn eggs.}}
{{History|||snap=beta 1.17.0.52|[[Goat]], [[glow squid]] and [[axolotl]] spawn eggs are now available without enabling [[experimental gameplay]].}}
{{History||1.18.10|snap=beta 1.18.10.24|[[File:Frog Spawn Egg JE1 BE1.png|32px]][[File:Tadpole Spawn Egg JE1 BE1.png|32px]] Added [[frog]] and [[tadpole]] spawn eggs behind the "Wild Update" experimental toggle.}}
{{History||1.18.30|snap=beta 1.18.30.22|[[File:Allay Spawn Egg JE1 BE1.png|32px]] Added [[allay]] spawn eggs behind the "Wild Update" experimental toggle.}}
{{History|||snap=beta 1.18.30.32|[[File:Warden Spawn Egg JE1 BE1.png|32px]] Added [[warden]] spawn eggs behind the "Wild Update" experimental toggle.}}
{{History||1.19.0|snap=beta 1.19.0.20|Both spawn eggs mentioned above are now available without enabling experimental gameplay.}}
{{History||1.19.10|snap=beta 1.19.10.20|[[File:Trader Llama Spawn Egg JE1 BE1.png|32px]] Added the [[trader llama]] spawn egg.}}
{{History||Next Major Update<br>(Experimental)|link=Bedrock Edition 1.19.50|snap=beta 1.19.50.21|[[File:Camel Spawn Egg JE1 BE1.png|32px]] Added [[camel]] spawn eggs behind the "[[Bedrock Edition 1.20|Next Major Update]]" [[experimental]] toggle.}}
{{History|||snap=beta 1.19.50.22|[[File:Camel Spawn Egg JE2 BE2.png|32px]] The texture of the camel spawn egg has been changed.}}
{{History||1.19.60|snap=beta 1.19.60.20|[[File:Iron Golem Spawn Egg JE1 BE1.png|32px]] [[File:Snow Golem Spawn Egg JE2 BE1.png|32px]] [[File:Wither Spawn Egg JE1 BE1.png|32px]] [[File:Ender Dragon Spawn Egg JE2 BE1.png|32px]] Added [[iron golem]], [[snow golem]], [[wither]], and [[ender dragon]] spawn eggs. The wither and ender dragon spawn eggs will only be available through [[commands]] to prevent accidental destruction of [[Creative]] builds.|[[File:Polar Bear Spawn Egg JE2 BE2.png|32px]] The texture of the polar bear spawn egg has been changed.}}
{{History||1.19.60|snap=beta 1.19.60.25|The wither and ender dragon spawn eggs are no longer available in the creative inventory, only via [[command]]s.}}
{{History||Sniffer<br>(Experimental)|link=Bedrock Edition 1.19.70|snap=beta 1.19.70.23|[[File:Sniffer Spawn Egg JE1 BE1.png|32px]] Added [[sniffer]] spawn eggs behind the "[[Bedrock Edition 1.19.70|Sniffer]]" [[experimental]] toggle.}}
{{History||1.20.0|snap=beta 1.20.0.20|Sniffer spawn eggs are now available without using the "Sniffer" experimental toggle.}}
{{History|||snap=beta 1.20.0.21|Camel spawn eggs are now available without using the "Next Major Update" experimental toggle.}}

{{History|console}}
{{History||xbox=TU9|xbone=CU1|ps=1.0|wiiu=Patch 1|switch=1.0.1|[[File:Creeper Spawn Egg JE2 BE1.png|32px]] [[File:Skeleton Spawn Egg JE2 BE1.png|32px]] [[File:Spider Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Spawn Egg JE2 BE1.png|32px]] [[File:Slime Spawn Egg JE2 BE1.png|32px]] [[File:Ghast Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Pigman Spawn Egg JE2 BE1.png|32px]] [[File:Enderman Spawn Egg JE2 BE1.png|32px]] [[File:Cave Spider Spawn Egg JE2 BE1.png|32px]] [[File:Silverfish Spawn Egg JE2 BE2.png|32px]] [[File:Blaze Spawn Egg JE2 BE1.png|32px]] [[File:Magma Cube Spawn Egg JE2 BE1.png|32px]] [[File:Pig Spawn Egg JE2 BE1.png|32px]] [[File:Sheep Spawn Egg JE2 BE1.png|32px]] [[File:Cow Spawn Egg JE2 BE1.png|32px]] [[File:Chicken Spawn Egg JE2 BE1.png|32px]] [[File:Squid Spawn Egg JE2 BE1.png|32px]] [[File:Wolf Spawn Egg JE2 BE1.png|32px]] [[File:Mooshroom Spawn Egg JE2 BE1.png|32px]] [[File:Villager Spawn Egg JE2 BE1.png|32px]] Added spawn eggs for [[creeper]]s, [[skeleton]]s, [[spider]]s, [[zombie]]s, [[slime]]s, [[ghast]]s, [[zombie pigman]]s, [[enderman]]s, [[cave spider]]s, [[silverfish]]s, [[blaze]]s, [[magma cube]]s, [[pig]]s, [[sheep]]s, [[cow]]s, [[chicken]]s, [[squid]], [[wolf]]s, [[mooshroom]] and [[villager]]s.
|Spawn eggs can now be placed into a [[dispenser]]. Activating the dispenser spawns the [[mob]], instead of dispensing the egg as an [[item]].}}
{{History||xbox=TU11|Added a message when the user tries to spawn a [[hostile mob]] from a spawn egg in Peaceful [[difficulty]].}}
{{History||xbox=TU12|[[File:Ocelot Spawn Egg JE1 BE1.png|32px]] Added [[ocelot]] spawn eggs.}}
{{History||xbox=TU19|xbone=CU7|ps=1.12|[[File:Horse Spawn Egg JE1 BE1.png|32px]] [[File:Witch Spawn Egg JE1 BE1.png|32px]] [[File:Bat Spawn Egg JE1 BE1.png|32px]] [[File:Donkey Spawn Egg CE1.png|32px]] [[File:Mule Spawn Egg CE1.png|32px]] Added [[horse]], [[witch]], [[bat]], donkey and mule spawn eggs.}}
{{History||xbox=TU31|xbone=CU19|ps=1.22|wiiu=Patch 3|[[File:Endermite Spawn Egg JE1 BE1.png|32px]] [[File:Guardian Spawn Egg JE1 BE1.png|32px]] [[File:Rabbit Spawn Egg JE1 BE1.png|32px]] Added [[endermite]], [[guardian]] and [[rabbit]] spawn eggs.}}
{{History||xbox=TU46|xbone=CU36|ps=1.38|wiiu=Patch 15|[[File:Shulker Spawn Egg JE1 BE2.png|32px]] Added [[shulker]] spawn eggs.
|[[File:Donkey Spawn Egg JE1 BE1.png|32px]] [[File:Mule Spawn Egg JE1 BE1.png|32px]] Donkey and mule spawn eggs now match the textures of their [[Bedrock Edition|Bedrock]] and [[Java Edition|Java]] edition counterparts.}}
{{History||xbox=TU54|xbone=CU44|ps=1.52|wiiu=Patch 24|switch=1.0.4|[[File:Skeleton Horse Spawn Egg JE1 BE1.png|32px]] [[File:Zombie Horse Spawn Egg JE1 BE2.png|32px]] [[File:Elder Guardian Spawn Egg JE1 BE1.png|32px]] [[File:Stray Spawn Egg JE1 BE2.png|32px]] [[File:Wither Skeleton Spawn Egg JE1 BE1.png|32px]] [[File:Husk Spawn Egg JE1 BE2.png|32px]] [[File:Zombie Villager Spawn Egg JE1 BE1.png|32px]] [[File:Parrot Spawn Egg JE1 BE1.png|32px]] [[File:Llama Spawn Egg JE1 BE1.png|32px]] [[File:Vindicator Spawn Egg JE1 BE1.png|32px]] [[File:Evoker Spawn Egg JE1 BE1.png|32px]] [[File:Vex Spawn Egg JE1 BE1.png|32px]] Added spawn eggs for [[skeleton horse]]s, [[zombie horse]]s, [[elder guardian]]s, [[stray]]s, [[wither skeleton]]s, [[husk]]s, [[zombie villager]]s, [[parrot]]s, [[llama]]s, [[vindicator]]s, [[evoker]]s and [[vex]]es.}}
{{History||xbox=TU69|xbone=none|ps=1.76|wiiu=Patch 38|switch=none|[[File:Drowned Spawn Egg JE1 BE1.png|32px]] [[File:Cod Spawn Egg JE1 BE2.png|32px]] [[File:Salmon Spawn Egg JE1 BE2.png|32px]] [[File:Pufferfish Spawn Egg JE1 BE2.png|32px]] [[File:Tropical Fish Spawn Egg JE1 BE2.png|32px]] [[File:Dolphin Spawn Egg JE1 BE1.png|32px]] [[File:Turtle Spawn Egg JE1 BE1.png|32px]] [[File:Phantom Spawn Egg JE2 BE1.png|32px]] Added spawn eggs for [[drowned]], [[cod]], [[salmon]], [[pufferfish]], [[tropical fish]], [[dolphin]]s, [[sea turtle]]s and [[phantom]]s.}}
{{History||xbox=none|ps=1.83|wiiu=none|[[File:Panda Spawn Egg BE1.png|32px]] [[File:Cat Spawn Egg BE1.png|32px]] Added spawn eggs for [[panda]]s and [[cat]]s.}}
{{History||ps=1.90|[[File:Pillager Spawn Egg JE1 BE1.png|32px]] Added [[pillager]] spawn eggs.}}
{{History||ps=1.91|[[File:Ravager Spawn Egg JE1 BE1.png|32px]] [[File:Wandering Trader Spawn Egg JE1.png|32px]] Added spawn eggs for [[ravager]]s and [[wandering trader]]s.}}

{{History|New 3DS}}
{{History||0.1.0|[[File:Creeper Spawn Egg JE2 BE1.png|32px]] [[File:Skeleton Spawn Egg JE2 BE1.png|32px]] [[File:Spider Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Spawn Egg JE2 BE1.png|32px]] [[File:Slime Spawn Egg JE2 BE1.png|32px]] [[File:Ghast Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Pigman Spawn Egg JE2 BE1.png|32px]] [[File:Enderman Spawn Egg JE2 BE1.png|32px]] [[File:Cave Spider Spawn Egg JE2 BE1.png|32px]] [[File:Silverfish Spawn Egg JE2 BE2.png|32px]] [[File:Blaze Spawn Egg JE2 BE1.png|32px]] [[File:Magma Cube Spawn Egg JE2 BE1.png|32px]] [[File:Pig Spawn Egg JE2 BE1.png|32px]] [[File:Sheep Spawn Egg JE2 BE1.png|32px]] [[File:Cow Spawn Egg JE2 BE1.png|32px]] [[File:Chicken Spawn Egg JE2 BE1.png|32px]] [[File:Squid Spawn Egg JE2 BE1.png|32px]] [[File:Wolf Spawn Egg JE2 BE1.png|32px]] [[File:Mooshroom Spawn Egg JE2 BE1.png|32px]] [[File:Villager Spawn Egg JE2 BE1.png|32px]] [[File:Ocelot Spawn Egg JE1 BE1.png|32px]] [[File:Guardian Spawn Egg JE1 BE1.png|32px]] [[File:Rabbit Spawn Egg JE1 BE1.png|32px]] [[File:Horse Spawn Egg JE1 BE1.png|32px]] [[File:Witch Spawn Egg JE1 BE1.png|32px]] [[File:Bat Spawn Egg JE1 BE1.png|32px]] [[File:Donkey Spawn Egg JE1 BE1.png|32px]] [[File:Mule Spawn Egg JE1 BE1.png|32px]] Added spawn eggs.}}
{{History||1.7.10|[[File:Endermite Spawn Egg JE1 BE1.png|32px]] [[File:Polar Bear Spawn Egg JE1 BE1.png|32px]] [[File:Shulker Spawn Egg JE1 BE2.png|32px]] Added spawn eggs for [[endermite]]s, [[polar bear]]s and [[shulker]]s.}}
{{History||1.9.19|[[File:Llama Spawn Egg JE1 BE1.png|32px]] [[File:Vindicator Spawn Egg JE1 BE1.png|32px]] [[File:Evoker Spawn Egg JE1 BE1.png|32px]] [[File:Vex Spawn Egg JE1 BE1.png|32px]] Added spawn eggs for [[llama]]s, [[vindicator]]s, [[evoker]]s and [[vex]]es.}}

{{History|Education}}
{{History||1.0|[[File:Creeper Spawn Egg JE2 BE1.png|32px]] [[File:Skeleton Spawn Egg JE2 BE1.png|32px]] [[File:Spider Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Spawn Egg JE2 BE1.png|32px]] [[File:Slime Spawn Egg JE2 BE1.png|32px]] [[File:Ghast Spawn Egg JE2 BE1.png|32px]] [[File:Zombie Pigman Spawn Egg JE2 BE1.png|32px]] [[File:Enderman Spawn Egg JE2 BE1.png|32px]] [[File:Cave Spider Spawn Egg JE2 BE1.png|32px]] [[File:Silverfish Spawn Egg JE2 BE2.png|32px]] [[File:Blaze Spawn Egg JE2 BE1.png|32px]] [[File:Magma Cube Spawn Egg JE2 BE1.png|32px]] [[File:Pig Spawn Egg JE2 BE1.png|32px]] [[File:Sheep Spawn Egg JE2 BE1.png|32px]] [[File:Cow Spawn Egg JE2 BE1.png|32px]] [[File:Chicken Spawn Egg JE2 BE1.png|32px]] [[File:Squid Spawn Egg JE2 BE1.png|32px]] [[File:Wolf Spawn Egg JE2 BE1.png|32px]] [[File:Mooshroom Spawn Egg JE2 BE1.png|32px]] [[File:Villager Spawn Egg JE2 BE1.png|32px]] [[File:Ocelot Spawn Egg JE1 BE1.png|32px]] [[File:Guardian Spawn Egg JE1 BE1.png|32px]] [[File:Elder Guardian Spawn Egg JE1 BE1.png|32px]] [[File:Rabbit Spawn Egg JE1 BE1.png|32px]] [[File:Horse Spawn Egg JE1 BE1.png|32px]] [[File:Husk Spawn Egg JE1 BE2.png|32px]] [[File:Stray Spawn Egg JE1 BE2.png|32px]] [[File:Witch Spawn Egg JE1 BE1.png|32px]] [[File:Bat Spawn Egg JE1 BE1.png|32px]] [[File:Wither Skeleton Spawn Egg JE1 BE1.png|32px]] [[File:Donkey Spawn Egg JE1 BE1.png|32px]] [[File:Mule Spawn Egg JE1 BE1.png|32px]] [[File:Skeleton Horse Spawn Egg JE1 BE1.png|32px]] [[File:Zombie Horse Spawn Egg JE1 BE2.png|32px]] [[File:Endermite Spawn Egg JE1 BE1.png|32px]] [[File:Zombie Villager Spawn Egg JE1 BE1.png|32px]] [[File:Polar Bear Spawn Egg JE1 BE1.png|32px]] [[File:Shulker Spawn Egg JE1 BE2.png|32px]] [[File:Llama Spawn Egg JE1 BE1.png|32px]] [[File:Vindicator Spawn Egg JE1 BE1.png|32px]] [[File:Evoker Spawn Egg JE1 BE1.png|32px]] [[File:Vex Spawn Egg JE1 BE1.png|32px]] [[File:Parrot Spawn Egg JE1 BE1.png|32px]] [[File:NPC Spawn Egg BE1.png|32px]] Added spawn eggs.}}
{{History||1.4|[[File:Cod Spawn Egg JE1 BE2.png|32px]] [[File:Salmon Spawn Egg JE1 BE2.png|32px]] [[File:Pufferfish Spawn Egg JE1 BE2.png|32px]] [[File:Tropical Fish Spawn Egg JE1 BE2.png|32px]] [[File:Dolphin Spawn Egg JE1 BE1.png|32px]] Added spawn eggs for [[cod]], [[salmon]], [[pufferfish]], [[tropical fish]] and [[dolphin]]s.}}
{{History||1.7|[[File:Drowned Spawn Egg JE1 BE1.png|32px]] [[File:Turtle Spawn Egg JE1 BE1.png|32px]] [[File:Phantom Spawn Egg JE2 BE1.png|32px]] [[File:Agent Spawn Egg BE1.png|32px]] Added spawn eggs for [[drowned]], [[turtle|sea turtles]], [[phantom]]s and [[agent]]s.}}
{{History||?|[[File:Mask Spawn Egg BE1.png|32px]] Added mask spawn egg texture.}}
{{History||1.9|[[File:Panda Spawn Egg BE1.png|32px]] [[File:Cat Spawn Egg BE1.png|32px]] Added spawn eggs for [[panda]]s and [[cat]]s.}}
{{History||1.12.0|[[File:Pillager Spawn Egg JE1 BE1.png|32px]] [[File:Ravager Spawn Egg JE1 BE1.png|32px]] [[File:Wandering Trader Spawn Egg BE1.png|32px]] Added spawn eggs for [[pillager]]s, [[ravager]]s and [[wandering trader]]s.}}
{{History||1.14.31|[[File:Bee Spawn Egg JE2 BE1.png|32px]] [[File:Fox Spawn Egg JE1 BE1.png|32px]] Added spawn eggs for [[bee]]s and [[fox]]es.}}
{{History||1.17.30|[[File:Piglin Spawn Egg JE1.png|32px]] [[File:Hoglin Spawn Egg JE2.png|30px]] [[File:Strider Spawn Egg JE1 BE1.png|32px]] [[File:Zoglin Spawn Egg JE1 BE1.png|32px]] [[File:Piglin Brute Spawn Egg JE1 BE1.png|32px]] [[File:Goat Spawn Egg BE2.png|32px]] [[File:Axolotl Spawn Egg JE1 BE1.png|32px]] [[File:Glow Squid Spawn Egg JE1 BE1.png|32px]] Added spawn eggs for [[piglin]]s, [[hoglin]]s, [[strider]]s, [[zoglin]]s, [[piglin brute]]s, [[goat]]s, [[axolotl]]s and [[glow squid]]s.}}
{{History|earth}}
{{History||Release|[[File:Cluckshroom Spawn Egg.png|32px]] [[File:Horned Sheep Spawn Egg.png|32px]] [[File:Moobloom Spawn Egg.png|32px]] Added [[cluckshroom]], [[horned sheep]] and [[moobloom]] spawn egg textures.}}
{{History||0.4.0|[[File:Jumbo Rabbit Spawn Egg.png|32px]] Added [[jumbo rabbit]] spawn egg texture.}}
{{History|foot}}

== Issues ==
{{issue list}}

== Gallery ==
{{Hidden begin|View all renders}}
<gallery>
Spawn Egg.png|frame|Uncolored Spawn Egg
Agent Spawn Egg.png|Agent Spawn Egg
Allay Spawn Egg.png|Allay Spawn Egg
Axolotl Spawn Egg.png|Axolotl Spawn Egg
Bat Spawn Egg.png|Bat Spawn Egg
Bee Spawn Egg.png|Bee Spawn Egg
Blaze Spawn Egg.png|Blaze Spawn Egg
Camel Spawn Egg.png|Camel Spawn Egg
Cat Spawn Egg.png|Cat Spawn Egg (Java)
Cat Spawn Egg BE1.png|Cat Spawn Egg (Bedrock)
Cave Spider Spawn Egg.png|Cave Spider Spawn Egg
Chicken Spawn Egg.png|Chicken Spawn Egg
Cod Spawn Egg.png|Cod Spawn Egg
Cow Spawn Egg.png|Cow Spawn Egg
Creeper Spawn Egg.png|Creeper Spawn Egg
Dolphin Spawn Egg.png|Dolphin Spawn Egg
Donkey Spawn Egg.png|Donkey Spawn Egg
Drowned Spawn Egg.png|Drowned Spawn Egg
Elder Guardian Spawn Egg.png|Elder Guardian Spawn Egg
Ender Dragon Spawn Egg.png|Ender Dragon Spawn Egg
Enderman Spawn Egg.png|Enderman Spawn Egg
Endermite Spawn Egg.png|Endermite Spawn Egg
Evoker Spawn Egg.png|Evoker Spawn Egg
Fox Spawn Egg.png|Fox Spawn Egg
Frog Spawn Egg.png|Frog Spawn Egg
Ghast Spawn Egg.png|Ghast Spawn Egg
Glow Squid Spawn Egg.png|Glow Squid Spawn Egg
Goat Spawn Egg.png|Goat Spawn Egg
Guardian Spawn Egg.png|Guardian Spawn Egg
Hoglin Spawn Egg.png|Hoglin Spawn Egg
Horse Spawn Egg.png|Horse Spawn Egg
Husk Spawn Egg.png|Husk Spawn Egg
Iron Golem Spawn Egg.png|Iron Golem Spawn Egg
Llama Spawn Egg.png|Llama Spawn Egg
Magma Cube Spawn Egg.png|Magma Cube Spawn Egg
Mooshroom Spawn Egg.png|Mooshroom Spawn Egg
Mule Spawn Egg.png|Mule Spawn Egg
NPC Spawn Egg.png|NPC Spawn Egg
Ocelot Spawn Egg.png|Ocelot Spawn Egg
Panda Spawn Egg.png|Panda Spawn Egg (Java)
Panda Spawn Egg BE1.png|Panda Spawn Egg (Bedrock)
Parrot Spawn Egg.png|Parrot Spawn Egg
Phantom Spawn Egg.png|Phantom Spawn Egg
Pig Spawn Egg.png|Pig Spawn Egg
Piglin Spawn Egg.png|Piglin Spawn Egg
Piglin Brute Spawn Egg.png|Piglin Brute Spawn Egg
Pillager Spawn Egg.png|Pillager Spawn Egg
Polar Bear Spawn Egg.png|Polar Bear Spawn Egg
Pufferfish Spawn Egg.png|Pufferfish Spawn Egg
Rabbit Spawn Egg.png|Rabbit Spawn Egg
Ravager Spawn Egg.png|Ravager Spawn Egg
Salmon Spawn Egg.png|Salmon Spawn Egg
Sheep Spawn Egg.png|Sheep Spawn Egg
Shulker Spawn Egg.png|Shulker Spawn Egg
Silverfish Spawn Egg.png|Silverfish Spawn Egg
Skeleton Spawn Egg.png|Skeleton Spawn Egg
Skeleton Horse Spawn Egg.png|Skeleton Horse Spawn Egg
Slime Spawn Egg.png|Slime Spawn Egg
Sniffer Spawn Egg.png|Sniffer Spawn Egg
Snow Golem Spawn Egg.png|Snow Golem Spawn Egg
Spider Spawn Egg.png|Spider Spawn Egg
Squid Spawn Egg.png|Squid Spawn Egg
Stray Spawn Egg.png|Stray Spawn Egg
Strider Spawn Egg.png|Strider Spawn Egg
Tadpole Spawn Egg.png|Tadpole Spawn Egg
Trader Llama Spawn Egg.png|Trader Llama Spawn Egg
Tropical Fish Spawn Egg.png|Tropical Fish Spawn Egg
Turtle Spawn Egg.png|Turtle Spawn Egg
Vex Spawn Egg.png|Vex Spawn Egg
Villager Spawn Egg.png|Villager Spawn Egg
Vindicator Spawn Egg.png|Vindicator Spawn Egg
Wandering Trader Spawn Egg.png|Wandering Trader Spawn Egg (Java)
Wandering Trader Spawn Egg BE1.png|Wandering Trader Spawn Egg (Bedrock)
Warden Spawn Egg.png|Warden Spawn Egg
Witch Spawn Egg.png|Witch Spawn Egg
Wither Spawn Egg.png|Wither Spawn Egg
Wither Skeleton Spawn Egg.png|Wither Skeleton Spawn Egg
Wolf Spawn Egg.png|Wolf Spawn Egg
Zoglin Spawn Egg.png|Zoglin Spawn Egg
Zombie Spawn Egg.png|Zombie Spawn Egg
Zombie Horse Spawn Egg.png|Zombie Horse Spawn Egg
Zombie Villager Spawn Egg.png|Zombie Villager Spawn Egg
Zombified Piglin Spawn Egg.png|Zombified Piglin Spawn Egg
Mask Spawn Egg.png|Mask Spawn Egg (texture)
</gallery>
{{Hidden end}}

=== Screenshots ===
<gallery>
Classic eggs.png|Various spawn eggs utilizing their old color scheme before [[12w01a]].
Upsidedownmob.png|An example of an upside-down mob by renaming the spawn egg "Dinnerbone".
UpsideDownMobsEasterEgg.png|Two mobs spawned with the names "Grumm" and "Dinnerbone," respectively.
TheLeadPig.png|First screenshot relating to a named mob shown, through a spawn egg.
</gallery>

== Notes ==
{{notelist|fn}}

== References ==
{{reflist}}

== External Links ==
*[https://www.minecraft.net/en-us/article/taking-inventory--spawn-egg Taking Inventory: Spawn Egg] – Minecraft.net on January 6, 2022

{{Items}}

[[de:Spawn-Ei]]
[[es:Huevo generador]]
[[fr:Œufs d'apparition]]
[[it:Uovo generatore]]
[[ja:スポーンエッグ]]
[[ko:생성 알]]
[[nl:Spawnei]]
[[pl:Jajo przyzywające]]
[[pt:Ovo gerador]]
[[ru:Яйца призывания]]
[[th:ไข่เสก]]
[[zh:刷怪蛋]]
[[Category:Non-renewable resources]]</li></ul></nowiki>
Added Easy and Hard difficulties.

Issues[]

Issues relating to "Difficulty" are maintained on the bug tracker. Report issues there.

See also[]

Notes[]

  1. An eye of ender requires a blaze rod to craft; but a blaze rod can be obtained only as a drop from a blaze, which is a hostile mob that cannot spawn in Peaceful.
  2. Since each end portal frame has a 110 chance of being filled, there is a (110)12 = 11 trillion chance of all 12 end portal frames being filled.
  3. Mobs accept fall damage if their health would not be reduced below 33% of their maximum health (rounded up to the nearest 1♥), plus a constant reserve based on difficulty. This even applies to ground-based mobs immune to fall damage.

References[]

Advertisement